2010-04-14 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blobf57258da7f76653c30cf65482070fc4a302a5ce8
1 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3         * reflection.c (_mono_reflection_parse_type): MS supports
4         non-assembly-qualified types in a generic type parameter list
5         when enclosed in '[]' (which signals that they should be a fqn).
7         This breaks ECMA specs for how type names are encoded in cattr
8         blobs but F# does it.
10         Fixes #576342.
12 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
14         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
15         for instance methods/ctors.
17         Fixes #422113.
19 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
21         * reflection.c: Use the new verifier support for checking
22         custom attributes.
24         Fixes #595306.
26 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
28         * metadata-verify.c: Implement structural verification
29         of custom attributes. This check requires access to the
30         loader since to resolve the size of an enum we have to
31         look it up.
32         We don't check if named argumenments are encoded in a
33         compatible fashion to their underlying field/prop.
34         Maybe we should?
36         * verify-internals.h: Add two new cattr verification API.
38 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
40         * metadata-verify.c (decode_signature_header): Fix signature.
42 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
44         * verify.c (mono_verifier_is_enabled_for_method): Handle
45         assembly less images.
47         * verify.c (mono_verifier_is_class_full_trust): Ditto.
49 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
51         * loader.c (mono_method_signature_checked): Properly
52         init MonoError.
54         * loader.c (mono_method_signature): It's the calee
55         resposibility to init the error object.
57 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
59         * metadata-verify.c (decode_signature_header): Do proper
60         overflow checking.
62 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
64         * reflection.c: maintain the invariants required by
65         mono_class_layout_fields() also in typebuilder_setup_fields ().
67 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
69         * security-core-clr.c: Call mono_class_setup_methods in 
70         get_default_ctor before checking klass->methods. Fix typo in
71         comment
73 2010-04-10  Jb Evain  <jbevain@novell.com>
75         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
76         add .net 4.0 RTM version.
78 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
80         * reflection.c (resolve_object): Properly inflate generic
81         methods when a context is supplied.
83         Fixes #591226.
85 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
87         * verify.c (mono_method_verify): A switch op don't empty
88         the stack for the next one. Fixes a bug when running fsi
89         under --verify-all.
91 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
93         * metadata-verify.c (is_valid_standalonesig_blob): Accept
94         fields as valid standalone sig too. F# does generate them.
96         * metadata-verify.c (verify_typedef_table_full): Ignore
97         what <module> extends.
99 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
101         * verify.c (do_invoke_method): It's ok to do use call with
102         virtual, non-final methods if their class is sealed.
104 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
106         * icall.c (ves_icall_MonoField_GetValueInternal): This function
107         is a near identical copy of mono_field_get_value_object. So simply
108         call it.
110         * object.c (mono_field_get_value_object): Handle literal fields
111         on open generic classes.
113         Fixes #594942.
115 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
117         * reflection.c (mono_reflection_create_runtime_class): Setup
118         parent/supertype information again since it can be changed
119         without notice.
121 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
123         * verify.c (verify_type_compatibility_full): Properly handle
124         stores between arrays of primitives.
126         Fixes the verifier side of #555950.
128 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
130         class.c (mono_bounded_array_class_get): Properly init
131         cast_class to take the fact that uint[] and int[] can be
132         casted between each other.
134         Fixes #555950.
136 2010-04-07  Geoff Norton  <gnorton@novell.com>
138         * domain.c: Avoid a deadlock on osx.  Fixes #565765
140 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
142         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
143         builders. Fixes #594464.
145 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
147         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
148         waiting for all threads to suspend, as those threads can't be suspended.
150 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
152         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
153         to avoid crashes on newly created threads.
155 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
157         * file-io.c: reset the MonoIOStat structure in case of error.
158         Fixes bug #582667.
160 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
162         * class.c (print_implemented_interfaces): Print proper type name.
164         * class.c (mono_class_setup_vtable): Don't try that hard to produce
165         the override map for generic instances since it later ignored.
167         * class.c (mono_class_implement_interface_slow): Don't break for
168         dynamic generic instances.
170         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
172         * reflection.c (mono_reflection_method_get_handle): New method that
173         resolves a method handle.
175         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
176         case when we override methods from a dynamic generic instance interface.
178         Fixes #575941.
180 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
182         * threadpool.c: don't attempt to close the pipe when it has not been
183         created.
185 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
187         * threadpool.c: if there are no waiting threads, try to start a new
188         one. This fixes the not-so-random hangs in System.ServiceModel tests.
189         No need to use InterlockedCompareExchange to read volatile variables.
191 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
193         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
194         and reference types that point to the same class.
196         Fixes #565598.
198 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
200         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
201         when verifying compatibility between a generic instance and a generic
202         parameter.
204         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
206         * verify.c (stack_slot_stack_type_full_name): Improve verification type
207         name.
209         Fixes #587849.
211 2010-04-04  Mark Probst  <mark.probst@gmail.com>
213         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
215 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
217         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
219 2010-04-03  Marek Habersack  <mhabersack@novell.com>
221         * process.c: when cross-compiling with MinGW, force GetProcessId
222         lookup using GetProcAddress.
224 2010-04-02  Mark Probst  <mark.probst@gmail.com>
226         * sgen-gc.c: parse_environment_string_extract_number() must be
227         static.
229 2010-04-02  Mark Probst  <mark.probst@gmail.com>
231         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
232         gray_object_dequeue(), to make sure they're inlined.
234 2010-04-02  Mark Probst  <mark.probst@gmail.com>
236         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
237         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
239 2010-04-02  Jb Evain  <jbevain@novell.com>
241         * exception.c: remove dead code.
243 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
245         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
246         with mono-gc.h.
248 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
250         * sgen-gc.c: Make the nursery size adjustable by the
251         MONO_GC_PARAMS environment variable.
253         Code is contributed under MIT/X11 license.
255 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
257         * threadpool.c: threadpool threads wait is alertable.
258         Fixes bug #592964.
259         Reduced the stack size of the *poll_wait thread.
261 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
263         * exception.c|metadata-internals.h: Add new mono_get_exception_
264         field_access_msg and mono_get_exception_method_access_msg 
265         functions that accept a const char* parameter to provide more 
266         details when the exception is thrown.
267         * security-core-clr.c|h: Rework code to allow logging exceptions
268         (export MONO_LOG_MASK="security") and to supply more details in
269         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
270         mono_security_core_clr_is_field_access_allowed and 
271         mono_security_core_clr_is_call_allowed to return an exception,
272         with messages and logging, that can be emitted by method-to-ir.c
274 2010-04-01  Mark Probst  <mark.probst@gmail.com>
276         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
277         pinned object.
279 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
281         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
282         the assembly name is not well formed utf8. Fixes #567882.
284 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
286         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
287         the generic parameters from the builder. Fixes #473298.
289 2010-03-31  Miguel de Icaza  <miguel@novell.com>
291         * object.c (mono_class_proxy_vtable): Eliminate warning. 
293         * marshal.c (emit_marshal_boolean): Eliminate possible
294         uninitialized local warning. 
296 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
298         * class.c (mono_class_init): Postpone coreclr inheritance check
299         until the end of the initialization (so we can check up the 
300         default ctor manually for the core-clr inheritance rules).
301         * security-core-clr.c: Add the missing (undocumented) checks on
302         default constructors when verifying inheritance rules.
304 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
306         * domain-internals.h (MonoJitExceptionInfo): Add new field
307         handler_end to the data union. To be used to point the end
308         of a finally block.
310 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
312         * reflection.c: Add support for new v4 type
313         System.Reflection.MonoModule that is the concrete version
314         of Module which is abstract unver v4.
316 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
318         * class.c (mono_class_init): Don't set class failure after
319         inited = 1 is set. It must be done before.
321 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
323         * mono-config.c: Add support for OS "haiku"
324         * ChangeLog: Fix UTF-8 encoding
326         Code is contributed under MIT/X11 license.
328 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
330         * console-unix.c: fixed include logic for sys/ioctl.h.
332 2010-03-30  Mark Probst  <mark.probst@gmail.com>
334         * threads.c: Fix bitmap generation for TLS marking on 64 bit
335         systems.
337 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
339         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
340         unfinished/broken typebuilders.
342 2010-03-29  Mark Probst  <mark.probst@gmail.com>
344         * sgen-gc.c: Use the same heuristic for the LOS target that we use
345         for the minor section allowance.
347 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
349         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
350         "NoOptimization".
352 2010-03-29  Mark Probst  <mark.probst@gmail.com>
354         * sgen-gc.c: Count bytes allocated with heavy statistics.
356 2010-03-29  Mark Probst  <mark.probst@gmail.com>
358         * sgen-gc.c: More detailed time statistics.
360 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
362         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
363         fix the user defined mark interface to pass a pointer
364         to the object location and not the object itself.
366 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
368         * reflection.c (mono_method_body_get_object): Release
369         the method header before the call to CACHE_OBJECT since
370         this is a macro that returns.
372 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
374         * class.c (inflate_generic_type): mono_metadata_type_dup
375         already dupes array information, the g_memdup was just
376         leaking memory.
378 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
380         * verify.c: Add stack_peek function. Fix CEE_DUP
381         to not read from invalid memory if push did expand
382         the stack.
384 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
386         * verify.c: Remove old table verification code that has
387         been superseeded by the new metadata verifier.
389         * verify.h: Remove mono_image_verify_tables from the public
390         API.
392         * pedump.c: Fix for removed bits.
394 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
396         * verify.c: Allocate stack slows lazily to reduce stack usage
397         in case of methods with huge stacks. Reduces memory consumption
398         for mcs yyparse from 459Mb to 1.8Mb.
400 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
402         * threadpool.c: don't try executing items from domains being
403         unloaded. Fixes appdomain-async-invoke test.
405 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
407         * threadpool.c: spin while the threadpool initializes.
408         * mono-wsq.c: if the WSQ has not been initialized or has been shut
409         down, don't do anything.
411 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
413         * threads.c (mono_thread_create_internal): Set the GC type of the
414         threads_starting_up hash table.
416 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
418         * threadpool.c: reset 'state' to avoid returning non-null when the
419         event type is not found.
421 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
423         * sgen-gc.c: make copy_object () take the address of the
424         slot holding the reference. This allows saving memory stores
425         when not needed and it allows keeping track of oldspace->nursery
426         references for the card table code.
428 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
430         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
432         Code is contributed under MIT/X11 license.
434 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
436         * object.c, threads.c, threads-types.h, threads.h: make the
437         managed thread local storage references precisely tracked.
439 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
441         * threadpool.[ch]: reworked the threadpool:
442                 -Threadpool threads use a work-stealing queue. Adding a work
443                 item from a threadpool thread will queue it in the thread
444                 local queue without locking (in most cases).
445                 -epoll events are coalesced before being added to the IO
446                 queue.
447                 -Dynamically change the number of active threads
448                 -Changed the global queue to be more GC friendly
450         * class-internals.h: add 2 new performance counters for the number of
451         threads in the threadpool and the IO threadpool.
453         * object-internals.h: new field in MonoAsyncResult.
454         * icall-def.h: new internal call for queueing work items.
456         * Makefile.am: add 2 new files.
458         * appdomain.c: bump up corlib version.
460         * mono-wsq.[ch]: an implementation of a work-stealing queue.
462         * mono-perfcounters-def.h:
463         * mono-perfcounters.c: added 2 new performance counters.
465 2010-03-26  Mark Probst  <mark.probst@gmail.com>
467         * sgen-gc.c: More FIXME/TODO updates.
469 2010-03-25  Mark Probst  <mark.probst@gmail.com>
471         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
472         function mono_gc_invoke_with_gc_lock() which invokes a function
473         with the guarantee that no collection will occur during its execution.
475 2010-03-25  Mark Probst  <mark.probst@gmail.com>
477         * sgen-gc.c: Update a few comments.
479 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
481         * reflection.c: Add support for new v4 type
482         System.Reflection.MonoAssembly that is the concrete version
483         of Assembly which is abstract unver v4.
485 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
487         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
488         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
490         Expose a few macros that are needed for SR but not SRE to the
491         world (previous inside the SRE ifdef)
493 2010-03-24  Mark Probst  <mark.probst@gmail.com>
495         * sgen-gc.c (gc_register_current_thread): We need
496         stack_start_limit as well in the non-attribute pthread case.
498 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
500         * threads.c: Fix windows build.
502 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
504         * thread-types.h: Add mono_thread_resume_interruption.
506         * threads.c: Add mono_thread_resume_interruption, this
507         function should be called after the last protected handler
508         found at interruption time has finished.
510 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
512         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
513         Check MonoInternalThread's ::state instead of ::abort_exc
514         since the later can be lazily created.
516         This is specially problematic when running a finally block
517         under AbortRequested state. ResetAbort must work, but the
518         abort_exc object has not been created because interruption
519         has not began.
521 2010-03-22  Geoff Norton  <gnorton@novell.com>
523         * locales.c: Its possible for CFStringGetCStringPtr
524         to return null and not convert encodings.  Use
525         CFStringGetCString instead.
527 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
529         * class-internals.h, class.c, object.c: introduce compressed
530         interface bitmaps (for now only under small config): this saves
531         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
532         startups.
534 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
536         * mono-debug.c: don't try to get the method header, it causes a
537         deadlock and it is not used for anything anymore.
539 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
541         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
542         broken by the last change.
544 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
546         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
547         SOCK_RDM.
548         
549         Code is contributed under MIT/X11 license.
551 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
553         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
554         nursery.
556         Code is contributed under MIT/X11 license.
558 2010-03-19  Martin Baulig  <martin@ximian.com>
560         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
561         dummy field, containing an empty string.
562         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
565 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
567         * class.c: setup_interface_offsets() refactor to not call
568         mono_class_get_implemented_interfaces () more times than needed and
569         to reduce the runtime memory requirements to be O(num_interfaces)
570         instead of O(max_interface_id).
572 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
574         * mono-mlist.[ch]: add mono_mlist_set_next ().
576 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
578         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
579         associated changes to support holes in the protected range of a
580         try block.
582         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
583         retrieves the holes table from a given MonoJitInfo.
585 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
587         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
588         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
589         hide the contents of the MonoString and MonoArray structs from the
590         public API. Change the accessor macros to accessors functions where
591         needed. Adjusted the array API to allow for pointer-sized lengths and
592         starting positions, so 64 bit arrays can be optionally provided in an
593         API compatible way if needed on 64 bit systems.
595 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
597         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
598         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
600 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
602         * class-internals.h: remove the method header from MonoMethod since
603         from now on it will be transient. We have a header pointer for method
604         wrappers, since in that case we need to keep track of it. For this
605         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
606         structs now. The same happens with MonoMethodInflated.
607         * class.c: reset the sre_method flag for inflated method structures:
608         this makes the code that cares look at the header in the MonoMethodInflated
609         structure.
610         * loader.c: lookup the method header in the appropriate field now that
611         it is removed from MonoMethod.
612         * metadata-internals.h: add a flag to the method header to know if it
613         can be freed inside mono_metadata_free_mh ().
614         * method-builder.c: updates after moving the header field from
615         MonoMethod to MonoMethodWrapper.
616         * reflection.c: MonoMethods generated from Reflection.Emit use
617         MonoMethodWrapper structs if they need a method header now (later take
618         advantage of this and remove all the current unsafe uses of method_aux_hash).
619         * metadata.c: make method header parsing not leak when verification
620         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
621         These changes save a few hundred KB of runtime memory in a mcs
622         bootstrap or a monodevelop startup.
624 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
626         * verify.c: Improve error message.
628 2010-03-12  Jb Evain  <jbevain@novell.com>
630         * reflection.c (add_exported_type): populate the exported
631         table with the type's nested type.
633 2010-03-10  Mark Probst  <mark.probst@gmail.com>
635         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
636         can't read parentheses.
638 2010-03-10  Mark Probst  <mark.probst@gmail.com>
640         * threads.c (thread_cleanup): Add a guard to dereferencing
641         "thread" to avoid an unlikely race condition.
643 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
645         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
646         instead of an empty string.
648 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
650         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
651         convert to a boolean, recent gcc versions compile this differently.
653 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
655        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
656        inlined.
658 2010-03-09  Mark Probst  <mark.probst@gmail.com>
660         * sgen-gc.c (STRING_SIZE): Off by one.
662 2010-03-09  Mark Probst  <mark.probst@gmail.com>
664         * sgen-archdep.h: Fix the signal context register access for
665         AMD64.
667 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
669         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
671 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
673         * verify.c: Store the initial basic block returned by mono_basic_block_split
674         so we can release the whole list and not just the first one.
676 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
678         * verify.c, debug-helpers.c, profiler.c, loader.c,
679         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
680         MonoMethodHeader a transient entity.
682 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
684         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
685         uncontrolled growth of the gray stack.
687         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
688         added items are removed first, improving cache locality. Avoid freeing queue
689         segments in the fast path, use the list of segments as the free list, truncate
690         it to its max size at the start of collection.
692 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
694         * metadata-internals.h: more memory savings, both with small config and without.
697 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
699         * appdomain.c, domain-internals.h, domain.c, object.c:
700         make class_vtable_hash into an array to reduce memory usage.
702 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
704         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
705         object-internals.h, object.c, reflection.c, threadpool.c:
706         reduce resource usage when the small config is selected.
707         In particular, up to 64K of methods/fields/properties/events
708         are allowed and "other" methods in events are ignored.
710 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
712         * threads.c: reduce resource usage when compiled for a small config.
714 2010-03-05  Mark Probst  <mark.probst@gmail.com>
716         * sgen-gc.c: Also collect number of degraded-alloced objects with
717         heavy statistics.
719 2010-03-04  Geoff Norton  <gnorton@novell.com>
721         * assembly.c: Only support OSX bundling if the bundle is 
722         actually detectable.
724 2010-03-04  Geoff Norton  <gnorton@novell.com>
726         * loader.c: The marshal specs are freed at the end of the call
727         but it explicitly frees the strings as well as the container,
728         so we need to dup them too to avoid referencing free'd memory.
730 2010-03-04  Geoff Norton  <gnorton@novell.com>
732         * icall-def.h:
733         * icall.c: Add a new private internal icall to construct
734         an object from its type without running the ctor.
736 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
738         * profiler.c: allow multiple profiler engines to be loaded
739         at the same time.
741 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
743         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
744         profiler event to track object moves.
746 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
748         * object.c, profiler.c, profiler.h, string-icalls.c:
749         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
751 2010-03-03  Miguel de Icaza  <miguel@novell.com>
753         * decimal.c (mono_double2decimal): Add support for reducing the
754         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
755         expected.
757 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
759         * icall-def.h:
760         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
762 2010-03-03  Marek Habersack  <mhabersack@novell.com>
764         * mono-config.c (mono_config_parse_assembly_bindings): added -
765         parses assembly binding redirections from appdomain's config
766         file.
768         * metadata-internals.h: added definition of a new function -
769         mono_config_parse_assembly_bindings - to support parsing assembly
770         binding redirections defined in appdomain's config file.
772         * domain-internals.h: added two new fields to _MonoDomain - a list
773         of assembly bindings and a flag to parse the config file only
774         once.
776         * assembly.c (assembly_binding_maps_name): empty culture name and
777         NULL culture name are considered equal.
778         (mono_assembly_apply_binding): added support for domain specific
779         assembly binding redirections, read from the appdomain's
780         configuration file. Fixes bug #580185
782 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
784         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
785         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
786         support.
788 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
790         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
791         from this function. The new function receive the parent token instead of a type.
793         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
794         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
795         typebuilders. This make it possible to properly encode generic type builders since
796         their unmanaged type don't have generics data while unfinished.
798         Fixes #583655.
800 2010-03-02  Mark Probst  <mark.probst@gmail.com>
802         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
803         writing binary log files (can be enabled by #define'ing
804         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
805         bugs in longer running programs.
807 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
809         * metadata.c: added some API documentation.
811 2010-03-01  Robert Jordan  <robertj@gmx.net>
813         * filewatcher.h: Include glib.h to fix the MSVC build.
815 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
817         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
818         a GC handle instead. This is a bit slower to access, but avoids burdening the
819         GC with 100s of individual roots.
821         * reflection.c (mono_class_get_ref_info):
822         (mono_class_set_ref_info):
823         (mono_class_free_ref_info): New internal helper fuctions.
825         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
826         of accessing klass->reflection_info directly.
828         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
829         words.
831         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
832         the previous array.
834 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
836         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
837         needs an indirection.
839 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
841         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
842         so all generic sharing code is in one place.
844         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
845         we don't call setup_interface_offsets () for unfinished types.
847 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
849         * class.c (mono_class_generic_sharing_enabled): Move this to
850         generic-sharing.c.
852         * image.c: Add an unload hook which is called before an image is unloaded.
854         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
855         metadata.c having to depend on generic sharing.
857 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
859         * class.c: reduce size of ridiculously large cache.
861 2010-02-26  Martin Baulig  <martin@ximian.com>
863         * mono-debug.h
864         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
866         * threads.c (mono_thread_internal_reset_abort): New method; resets
867         the abort, but doesn't throw any exception if no abort was requested.
869 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
871         * class.c (get_implicit_generic_array_interfaces): Call
872         mono_class_setup_interface_offsets () before accessing
873         eclass->interface_offsets_count. This only shows up on platforms without IMT for
874         some reason.
876 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
878         * environment.c, environment.h, icall.c: make the GetOSVersionString()
879         icall internal.
881 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
883         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
884         direct access to the MonoType fields.
886 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
888         * threads.h: Move some internal functions which were added to this header by
889         mistake to threads-types.h.
891         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
893 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
895         * class-internals.h, class.h, object.h: make MonoRemoteClass
896         and mono_remote_class() internal.
898 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
900         * metadata-internals.h, class-internals.h, metadata.h: make the
901         MonoType guts internal as well.
903 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
905         * reflection.h: the MonoTypeNameParse guts are internal now.
906         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
907         are internal now, provide accessors as needed.
908         * metadata.h, metadata-internals.h: the MonoMethodSignature
909         guts are internal now.
910         * Makefile.am: mempool.h is an internal header now.
911         * *.h, *.c: remove glib.h usage from the public headers.
913 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
915         * culture-info-table.h : regenerated.
917 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
919         * metadata.c: Add mono_method_get_header_summary which returns minimal
920         information about the header of a method. This is the information used
921         by the inline oracle to reject methods.
923         This method doesn't decode local variables and doesn't cache it's result,
924         so it should cause a minimal reduction in memory usage.
926         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
927         mono_method_get_header_summary.
929 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
931         * threads.c (mono_thread_exit): Make sure that the main thread is
932         non-null before dereferencing it.
934 2010-02-21  Geoff Norton  <gnorton@novell.com>
936         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
937         locale.
938         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
939         before falling back to the posix lookup.
941 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
943         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
944         the DONT_MANAGE flag set.
946 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
948         * domain.c: Remove old v1 version strings. Let the runtime
949         default to 2.0 instead of failing because it can't find a
950         working 1.0 instalation.
952 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
954         * domain.c: Add v4 RC version string.
956 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
958         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
959         of overflow checking function.
961 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
963         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
964         generic methods.
966         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
967         cases for ParameterInfo.
969         Fixes #579493.
971 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
973         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
974         have has_cctor set. Fixes #575946.
976 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
978         * appdomain.c: display a warning if the parsing the config file
979         produces any error.
980         Skip the BOM in UTF-8 files.
981         Copy the AppDomainSetup before setting the privateBinPath so that the
982         correct configuration file is read.
984 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
986         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
987         vtable trampoline per vtable slot index. Not used yet.
989 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
991         * icall-def.h:
992         * icall.c: add internal call that returns the system page size.
994 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
996         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
997         'int' for system classes.
999 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1001         * icall.c, icall-def.h: new icall to check for sufficient
1002         stack space.
1004 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1006         * reflection.c (ensure_complete_type): Check that reflection_info
1007         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1009 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1011         * attrdefs.h:
1012         * tabledefs.h: Add NoOptimization flag.
1014 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1016         * sgen-gc.c: Don't consider it a missing remset if the target
1017         object is pinned - we might have done the store but not added the
1018         remset yet.
1020 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1022         * sgen-gc.c: When checking for missing remsets, don't assert on
1023         the first one, but print them all and then assert.
1025 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1027         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1029 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1031         * console-unix.c: On OSX Control-Y is assigned to
1032         VDSUSP (non-Posix), the
1033         suspend-program-next-time-it-tries-to-read-input command (this is
1034         different than C-z, which suspends immediately).
1036         Do the same thing that bash does and ignore this setting,
1037         making our repl/getline support pasting.
1039 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1041         * sgen-gc.c: Simple plausibility check for scan_starts.
1043 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1045         * sgen-gc.c: Round up when calculating the number of scan starts.
1047 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1049         * reflection.c: Export mono_get_object_from_blob.
1051         * object-internals.h: Ditto.
1053         * icall.c: New icall property_info_get_default_value to get the default
1054         value of a property. Since using this is not common, no caching is done.
1056         * icall-def.h: Add new icall.
1058 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1060         * class.c: Add mono_class_get_property_default_value.
1062         * class-internal.h: Export mono_class_get_property_default_value.
1064 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1066         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1068 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1070         * sgen-gc.c: introduced critical regions to allow some lockless
1071         operations and increase scalability.
1073 2010-02-10  Geoff Norton  <gnorton@novell.com>
1075         * reflection.c: Support building with DISABLE_REFLECTION
1077 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1079         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1080         Closes bug #566057.
1082         * exception.c: fix typo in comment.
1084 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1086         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1087         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1089         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1091         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1092         the internal API.
1094         Fixes #574434.
1096 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1098         * threads.c: Removed two assertions that were too strict.  Added a
1099         clarifying comment.  Fixes #577090.
1101 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1103         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1104         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1106         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1108         * verify.c (mono_type_get_stack_name): Fix a warning.
1110 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1112         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1113         mono_marshal_wrapper_info_from_wrapper.
1115         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1116         mono_marshal_method_set_wrapper_data, and export.
1118         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1119         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1120         by calling mono_marshal_get_wrapper_info ().
1122         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1123         small objects which does no size checks.
1125 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1127         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1129 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1131         * verify.c (mono_method_verify): Use the new basic block formation pass
1132         to avoid verifying dead basic blocks. This is the same behavior as the
1133         runtime MS verifier.
1135 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1137         * mono-basic-block.c:
1138         * mono-basic-block.h: New implementation of a basic block formation pass.
1139         The formation pass does static liveness analysis as well to detect dead
1140         basic blocks.
1142 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1144         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1145         'this' argument in icalls.
1147 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1149         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1151 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1153         * object.c, domain.c: When using SGen, we must register
1154         vtable->type as a root if it's not a MonoType, because then it
1155         wasn't pin-alloced.
1157 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1159         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1160         at the start of nursery collections, because we might have had
1161         degraded allocations which changed next_data.
1163 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1165         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1166         custom attr so this function works in cross-compiling mode.
1168 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1170         * class.c (make_generic_param_class): Initialize interface offsets since we
1171         set klass->inited. Fixes #574819.
1173 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1175         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1176         calling the JIT domain cleanup hook.
1178 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1180         * pedump.c (main): Properly set the verifier mode when running the metadata
1181         verifier.
1183 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1185         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1186         overlapping fields now that we're called before has_references is set.
1188         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1189         method. Otherwise all sort of weird stuff happens.
1191 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1193         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1194         Fixes #572874.
1196 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1198         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1199         Fixes #573322.
1201 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1203         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1204         pin_staging_area_index is greater than 0.
1206 2010-01-22 Miguel de Icaza (miguel@novell.com)
1208         * loader.c: Since we do nothing with the error returned, pass NULL
1209         to ignore the error.
1211 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1213         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1214         happened before starting to encode the actual fields. This avoid ciclic
1215         dependencies and eventual crashes.
1217         Fixes #572660.
1219 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1221         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1222         atomic and remove the half-constructed hack in SGen.
1224 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1226         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1227         has a recursive reference to itself.
1229         Fixes #571863.
1231 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1233         * loader.c (mono_method_signature): Fix error message.
1235 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1237         * sgen-gc.c: Reuse to-space sections between nursery collections.
1239 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1241         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1242         from the current assembly or mscorlib. Fixes bug #322957.
1244 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1246         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1247         get_wrapper_target_class.
1249 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1251         * sgen-gc.c: Fix warnings.
1253 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1255         * verify.c (store_local): Better error message.
1257 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1259         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1260         arguments.
1262 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1264         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1265         function is generics variance aware.
1267 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1269         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1270         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1272 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1274         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1275           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1277         Code is contributed under MIT/X11 license.
1279 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1281         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1282         on a GTD.
1284 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1286         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1287         return a point to a wrapper specific info structure describing the wrapper.
1288         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1290 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1292         * sgen-gc.c: Make minor collection section allowance adaptive,
1293         depending on the amount of memory reclaimed in the last major
1294         collection.  If more memory was reclaimed (i.e. more garbage
1295         produced), do the next collection earlier.
1297 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1299         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1300         to itself.
1302         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1303         the token as parameter.
1305         * verify-internals.h: Ditto.
1307         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1309         Fixes #571460.
1311 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1313         * sgen-gc.c: Make store_remset_buffer_index long.
1315 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1317         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1319         Fixes #569579.
1321 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1323         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1324         off precise marking if it is available.
1325         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1327 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1329         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1331         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1332         pinned objects.
1334         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1335         to the array allocator.
1337 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1339         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1340         result of mono_compile_method (), it already includes an ftnptr.
1342 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1344         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1346 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1348         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1349         hash value which doesn't depend on glib/eglib versions.
1350         (mono_metadata_type_hash): Use it.
1352         * object.c (mono_method_get_imt_slot): Ditto.
1354 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1356         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1357         independently of the GTD.
1359         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1361         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1362         to the upper limit since instance_size includes this amount.
1364         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1366         Fixes #569544.
1368 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1370         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1371         with static methods.
1373         * object.c (build_imt_slots): Avoid asserting when static methods are
1374         encountered in an interface.
1376 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1378         * sgen-gc.c (to_space_expand): Fix assertion.
1380 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1382         * string-icalls.c: missing declaration fixes.
1383         * sgen-gc.c: portability fixes.
1385 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1387         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1389         * class.c:
1390         * cominterop.c:
1391         * icall.c:
1392         * object.c: 
1393         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1395 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1397         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1398         it can fail loading the type.
1400         * class.c: Add mono_class_inflate_generic_class_checked.
1402         * class.c:
1403         * verify.c:
1404         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1406 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1408         * loader.c (mono_method_signature_checked): New internal function taking an
1409         MonoError argument.
1411         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1412         Fixes build on rh 7.3.
1414 2010-01-10  Aaron Bockover  <abockover@novell.com>
1416         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1417         at runtime in the same way as on Windows, which yields a relocatable
1418         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1419         of the running mono process.
1421         On TARGET_ARM, fallback () will always be executed.
1423 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1425         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1427 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1429         * class.c (mono_class_is_assignable_from_slow): Support variant
1430         generic delegates.
1432         * class.c (mono_class_implement_interface_slow): Support types with
1433         variant generic arguments.
1435 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1437         * verify.c: Remove some code duplication.
1439 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1441         * object.c: Update docs.
1443 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1445         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1447         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1448         fallback trampoline as well.
1450         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1451         out argument that is set to TRUE if the match was direct. 
1453         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1455         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1457 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1459         * class.c: Add mono_class_interface_offset_with_variance function that does same
1460         as mono_class_interface_offset but takes variance into account.
1462         * class-internal.h: Export mono_class_interface_offset_with_variance.
1464         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1466 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1468         * object.c:
1469         * icall.c:
1470         * class.c: Add some FIXME for due to variant generic arguments.
1472         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1473         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1474         the bitfield check fails.
1476 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1478         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1479         to be easier to read and fix bugs in the case a non generic type implements a variant
1480         interface.
1482         * class.c (mono_class_has_variant_generic_params): Make non static.
1484         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1485         the private API.
1487 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1489         * assembly.c: fix MONO_PATH debug output.
1491 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1493         * culture-info-table.h : regenerated.
1495 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1497         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1498         types that are meant to not have a parent.
1500 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1502         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1503         from the image mempool, so it is not leaked.
1505 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1507         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1509 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1511         * verify.c (verify_valuetype_layout_with_target): Fix case
1512         that can lead to infinite recursion. Fix bug #567861
1514 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1516         * pedump.c: Run code verifier even if image verification fails
1517         due to a failed type we. This allows more errors to be shown.
1519 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1521         * class.c (count_virtual_methods): Remove the assert and now
1522         fail properly.
1523         
1524         * class.c (setup_interface_offsets): This can fail now.
1526         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1527         errors. Check setup_interface_offsets errors.
1529         * class.c (setup_interface_offsets): Simplify the return error logic
1530         and remove class_init_ok.
1532         Fixes #560327.
1534 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1536         * class.c (mono_class_init): Do class verification at the beginning. Add
1537         some asserts to avoid tripping into invalid memory.
1539         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1540         g_error and a decent message.
1542         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1544         Fixes #567548.
1546 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1548         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1549         as inline functions instead of defining them in mempool.c.
1551         * metadata-internals.h (MonoImageSet): New structure representing a set of
1552         MonoImages, which own a collection of generic instances.
1554         * metadata.c: Get rid of the global generic caches, instead assign each generic
1555         instance to the image set which consists of all the images referenced by the
1556         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1557         the memory used by generic instances to be allocated from a per image-set mempool
1558         later.
1560 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1562         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1564 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1566         * appdomain.c (zero_static_data): Fix a warning.
1568         * locales.c (construct_culture_from_specific_name): Applied patch from
1569         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1570         not found. Fixes #567900.
1572 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1574         * loader.c (mono_method_get_signature_full): Remove two asserts.
1575         Return NULL instead so that the verifier can handle both cases 
1576         gracefully.
1578 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1580         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1581         so we can properly fail types instead of crashing.
1583         Fixes #567676.
1585 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1587         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1588         generic method.
1590 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1592         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1594 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1596         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1597         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1598         we can't remove it from it since we don't hold the lock.
1599         (mon_new): Free the orphaned events here when a mon structure is added to the
1600         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1601         this down.
1603 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1605         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1606         as max stack might be zero.
1608         Fixes #562320.
1610 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1612         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1614         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1615         instances if the GTD did.
1617         * class.c (mono_class_setup_properties): Ditto.
1619         * class.c (mono_class_setup_events): Ditto.
1621         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1623         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1624         error setting.
1626         * class.c (mono_class_init): Fail if GTD did.
1628         * cominterop.c:
1629         * generic-sharing.c:
1630         * icall.c:
1631         * loader.c:
1632         * object.c:
1633         * verify.c: Properly handle failure of mono_class_setup_methods.
1635 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1637         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1638         mono_class_inflate_generic_method_full internal.
1640         * class.c (inflate_generic_context): Now takes a MonoError argument.
1642         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1643         errors.
1645 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1647         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1648         they cannot be patched. Partly fixes #564408.
1650 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1652         * metadata-internals.h, reflection.c: Use the
1653         MonoDynamicImage.handleref hash table only with unmanaged keys,
1654         and add a managed hash table handleref_managed for managed keys.
1656 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1658         * sgen-gc.c: Unset to-space bumper between collections.  It might
1659         become invalid due to degraded allocations.
1661 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1663         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1664         with the one from the original method.
1666         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1667         compatibility.
1669         * verify-internals.h: Add new function to the internal API.
1671 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1673         * culture-info-tables.h: regenerated it to include the Georgian culture.
1675 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1677         * sgen-gc.c: Include mono/utils/memcheck.h.
1679         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
1680         instead of the current domain, since the two might not match if this is called
1681         from the debugger.
1683         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
1684         domain which created this assembly.
1686 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1688         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
1690 2009-12-17  Mark Probst  <mark.probst@gmail.com>
1692         * sgen-gc.c: Managed implementation of the specialized generic
1693         store write barrier.
1695 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
1697         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
1698         A private virtual newslot method is used to implement an interface method without exposing
1699         it to users. When querying for public instance methods, such method would hide a public one
1700         on a parent type.
1702         Fixes #564379.
1704 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1706         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
1707         conventions.
1709 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1711         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
1713 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1715         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
1716         as they are no longer used.
1717         
1718          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
1720         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
1722 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1724         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
1725         if the owner class has not been finished before returning reflection_info.      
1727         Fixes #565127.
1729 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1731         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
1732         param doesn't have custom attributes. Fixes #565117.
1734         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
1735         #565120.
1737 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1739         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
1741 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1743         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
1744         same amount done by a core-clr enabled runtime.
1746 2009-12-15  Marek Habersack  <mhabersack@novell.com>
1748         * appdomain.c (mono_make_shadow_copy): make sure access mode of
1749         the target files is reset to writable by owner and readable by
1750         everyone else to prevent problems when updating shadow copies of
1751         files whose source is read-only. Fixes bug #556884
1753 2009-12-15  Mark Probst  <mark.probst@gmail.com>
1755         * class.c (mono_generic_class_get_class): Allocate the generic
1756         class via malloc again, so that it can be freed when any one of
1757         the images of its constituent types is closed.
1759         * metadata.c: When closing an image, don't free generic insts and
1760         generic classes right away, but put them into a list for later
1761         freeing.
1763         * image.c, metadata-internals.h: Store the free list and in the
1764         second pass of closing an image, free it.
1766 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1768         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
1770         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
1771         types in type_hash.
1773         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
1775 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1777         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
1778         user type.
1780         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
1781         is used.
1783 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1785         * verify.c (mono_method_verify): The Unused opcodes produce an
1786         InvalidProgramException on .NET
1788 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
1790         * loader.c (mono_method_get_header): Move assert after the verifier
1791         has been called on the method header.
1793 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1795         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
1797         * appdomain.c: Bump corlib version.
1799 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1801         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
1802         types as well since otherwise generic instances would not return UT as arguments but
1803         their undelying system type.
1805         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
1806         to reflect the fact that they can have now multiple different types.
1808         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
1810         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
1812         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
1814         * reflection.c (mono_reflection_register_with_runtime): Init super types
1815         if the image is not dynamic.
1817         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
1818         check if the generic type definition is a TypeBuilder.
1820         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
1821         doesn't belong to a dynamic image, skip initialization.
1823         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
1824         base definition is not a dynamic type.
1826 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1828         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
1829         mono_profiler_string_allocation
1831         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1832         if string profiling is enabled, call
1833         mono_profiler_string_allocation
1835         * profiler.h: added two MonoProfileFlags -
1836         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1837         installation functions for the hooks below.
1839         * profiler-private.h, profiler.c: added two hooks:
1840         mono_profiler_string_allocation called whenever a string is
1841         allocated by InternalAllocateStr and mono_profiler_iomap called
1842         whenever IOMAP code performs an adjustement on a file path.
1844 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
1846         * boehm-gc.c: fixed race condition while getting the target of a
1847         disappearing link (bug #522233).
1849 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1851         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
1852         the error.
1854 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1856         * reflection.c: Add mono_reflection_register_with_runtime icall to
1857         allow a MonoGenericClass to register itself as the managed mirror of
1858         a given generic instance.
1859         This is a temporary workaround until all MGC instantiation happens in
1860         managed code.
1862         * object-internals.h: Ditto.
1864         * icall-def.h: Ditto.
1866 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1868         * sgen-gc.c (find_in_remsets): Also search the generic store
1869         remsets.
1871 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1873         * sgen-gc.c: Don't access class names in debugging code when
1874         unloading a domain, because they might not be valid anymore.
1876 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1878         * domain.c, domain-internals.h: New function mono_domain_unset().
1880         * appdomain.c (unload_thread_main): Detach the thread again at the
1881         end.
1883         * threads.c: When a thread exists or is detached, unset its domain
1884         so that it's NULL when, for example, a pthread destructor runs.
1886         * sgen-gc.c: Assert that there is no domain set after a thread is
1887         done.
1889 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1891         * class.c (mono_generic_class_get_class),
1892         metadata.c (free_generic_class): Allocate generic MonoClass's from
1893         the image mempool, not via malloc.  The problem with malloc is
1894         that when unloading a domain those classes are freed before
1895         clearing the heap and SGen needs the classes.  Rewriting the
1896         unloading code to do the free later would be more work and there's
1897         no point in using malloc anyway.
1899 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
1901         * loader.c (mono_method_signature): Always call mono_loader_unlock 
1902         before returning.
1904 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1906         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
1907         user string blobs.
1909         * verify-internals.h: Add new function to the internal API.
1911         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
1912         check if it's a valid string.
1914         * object.c (mono_ldstr): Ditto.
1916         Fixes #561943.
1918 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1920         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
1921         from a method before returning it. This is the expected behavior.
1923 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1925         * reflection.c (inflate_method): Handle the case of a regular system type.
1927 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1929         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
1930         gathering code.
1932         * mempool.c, mempool-internals.h: New function
1933         mono_mempool_get_bytes_allocated().
1935         * Makefile.am: sgen-pinning-stats.c added.
1937 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1939         * sgen-gc.c (create_allocator): Only use the fast path if the
1940         object size is within the small object size limit.
1942 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1944         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
1945         possibly adding padding to sizeof (GCMemSection).
1947 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1949         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
1950         reference is not in the nursery.
1952 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
1954         * class.c (mono_class_from_typeref): Bounds check idx against the 
1955         assemblyref table.
1957 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1959         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
1960         through the potential roots, then sort the results and find the
1961         pinned objects from there.
1963         * Makefile.am: sgen-pinning.c added.
1965 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1967         * sgen-gc.c: Record generic stores in specialized remset buffers.
1969 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1971         * sgen-gc.c: Make pinned chunks the same size as major heap
1972         sections, and align them as well, so that we can check whether an
1973         object is in a pinned chunk or a major section in constant time.
1975 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1977         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
1979 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1981         * sgen-gc.c: Make all major heap sections the same size (currently
1982         128k) and allocate them on aligned addresses.  Small heap sections
1983         give us better granularity with pinned objects - we can free up
1984         much more memory.
1986 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1988         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
1989         output removed.
1991 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1993         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
1995         * mono/metadata/assembly.c: When opening an assembly image, pass the real
1996         names in addition to the runtime generated one.
1998         * mono/metadata/image.h: Add a function to take the real name of the assembly
1999         image.
2001         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2002         use it instead of the runtime generated one.
2004         Code is contributed under MIT/X11 license.
2006 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2008         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2009         before the other checks to prevent problems if the DateTime class is blittable.
2010         Hopefully fixes #559600.
2012 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2014         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2015         returns the largest string length that will not be put into the
2016         LOS.
2018         * sgen-gc.c, gc-internal.h: New function that returns the largest
2019         object size that will not be put into the LOS.
2021         * appdomain.c: Bump corlib version.
2023 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2025         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2027         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2029 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2031         * reflection.c (inflate_method): Fix signature.
2033         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2034         in managed code.
2036 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2038         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2040 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2042         * sgen-gc.c: Abstract to-space handling.
2044 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2046         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2048         Fixes #559906.
2050 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2052         * sgen-gc.c: Only add references from outside the nursery to
2053         within the nursery to the global remset list.
2055 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2057         * appdomain.c (create_exceptions): Set the domain temporarily if
2058         necessary to avoid cross-domain references.
2060 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2062         * verify.c (get_stack_type): Return that the type is invalid instead of
2063         asserting.
2065         * verify.c (mono_method_verify): Verify that all locals and arguments
2066         have valid stack types.
2068         Fixes #559913.
2070 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2072         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2073         bounds checking overflow aware.
2075         Fixes #559910.
2077 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2079         * verify.c (do_invoke_method): Check for invalid method signatures.
2081         Fixes #553450.
2083 2009-12-02  Jb Evain  <jbevain@novell.com>
2085         * appdomain.c (MONO_CORLIB_VERSION): bump.
2086         * icall-def.h (get_base_definition): renamed to get_base_method
2087         and add a boolean argument indicating we want the original
2088         method definition, or the immediate base method.
2089         * icall.c: apply the get_base_definition to get_base_method change.
2091 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2093         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2095         Fixes #558042.
2097 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2099         * class.c: remove asserts for invalid type token in
2100         mono_class_name_from_token(), mono_assembly_name_from_token() and
2101         mono_class_create_from_typedef () (fixes bug #553318).
2103 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2105         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2106         incorrect assemblies (bug #553322).
2108 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2110         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2112         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2114         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2116         * class.c (inflate_generic_context): Ditto.
2118         * loader.c (method_from_methodspec): Ditto.
2120         Fixes #558230.
2122 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2124         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2126         * class.c (mono_class_create_from_typespec): Ditto.
2128         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2130         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2132         Fixes #558184.
2134 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2136         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2138         * verify.c (verify_delegate_compatibility): Ditto.
2140         * verify.c (do_newobj): Ditto.
2142         Fixes #558046.
2144 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2146         * sgen-gc.c: Use a gray queue instead of requiring that gray
2147         objects are in a contiguous region.
2149         * sgen-gray.c: The gray queue implementation.
2151         * Makefile.am: sgen-gray.c added.
2153 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2155         * appdomain.c: When unloading a domain, zero its static data and
2156         perform a minor collection when using SGen.  That will get rid of
2157         all the remsets pointing into that domain's static data.
2159         * sgen-gc.c: Allow remsets into static data.  By doing this we
2160         need less checks so we're more efficient.
2162 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2164         * verify.c (mono_method_verify): Check for catch clauses with broken
2165         types.
2167         Fixes #558465.
2169 2009-12-01  Jb Evain  <jbevain@novell.com>
2171         * class.c (make_generic_param_class): set the namespace of
2172         the generic parameter class from its owner, if available.
2174 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2176         * verify.c (code_bounds_check): Do proper overflow checking.
2178         * verify.c (mono_method_verify): The number of switch entries is
2179         an unsigned int. Properly bounds check it.
2181         Fixes #558594.
2183 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2185         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2186         mono_metadata_method_has_param_attrs which only checks if a given param
2187         list has a non zero flags entry.
2189         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2190         to inform how many params should we expect to decode.
2192         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2193         as it's faster than mono_metadata_get_param_attrs.
2195         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2196         add mono_metadata_method_has_param_attrs.
2198 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2200         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2201         failures.
2203         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2204         is -1 but its class is broken.
2206         Fixes #558522.
2208 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2210         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2211         for parameter overflow.
2213         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2214         of mono_metadata_get_param_attrs.
2216         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2217         API.
2219         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2221 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2223         * class.c (mono_class_setup_fields): Check for fields with broken types.
2225         Fixes #558741.
2227 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2229         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2230         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2231         its TypeBuilder::CreateType ().
2233         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2234         if not needed.
2236         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2237         to make setup_interface_offsets happy.
2239         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2240         compilation now works.
2242 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2244         * appdomain.c (create_exceptions): New helper function extracted from
2245         mono_runtime_init () to precreate objects used during exception handling.
2246         (mono_runtime_init): Call it.
2247         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2249 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2251         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2252         compilation until the proper one is found.
2254 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2256         * class.c (mono_class_setup_vtable_general): Cache the result of
2257         get_virtual_methods () since it can be slow because of the metadata
2258         optimization.
2260         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2261         from a MonoValueHashTable for now, since the later is based on an earlier
2262         version of hpj's internal probing code and seems to have serious collision
2263         issues.
2265         * loader.c (mono_get_method_full): Update after the change above.
2267 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2269         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2271 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2273         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2274         the GTD instead of the DGC instead of crashing.
2276         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2277         required. Inflate fields if needed.
2279         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2280         finished. Renamed.
2282 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2284         * class.c (check_interface_method_override): Check for NULL signatures and fail
2285         the type.
2287         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2289         Fixes #553428.
2291 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2293         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2294         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2296 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2298         * loader.c (field_from_memberref): Resolve the class first then the field
2299         signature. Remove a lot of duplicated code and make sure we don't pass valid
2300         values to mono_loader_set_error_field_load.
2302         Fixes #553306.
2304 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2306         * class.c (inflate_generic_type): Change code to use new signature of
2307         mono_error_set_bad_image.
2309         Fixes #558124.
2311 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2313         * verify.c (mono_method_verify): Don't free ctx.params items if 
2314         we aborted while inflating the ctx.locals. Complete previous fix
2316 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2318         * verify.c (mono_method_verify): Use the uninflated type name, 
2319         when the inflated is null, to report errors. Also take care when
2320         freeing, not to free everything since, in case of an error, some
2321         stuff would be copies (i.e. not allocated by the function itself)
2322         Fix bug #558145
2324 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2326         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2327         or overflow. The caller must have done this check explicitly. This guard us
2328         from accessing invalid memory.
2330         * verify.c (do_push_static_field): Check for stack overflow.
2332         Fixes #553333.
2334 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2336         * loader.c (find_method_in_class): Don't crash if the signature cannot
2337         be resolved.
2339         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2340         of asserting for the case of invalid params.
2342         Fixes #553304.
2344 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2346         * image.c (mono_image_load_module): Fix crash when a bad assembly
2347         has no module at all (fix bug #553412) and also replace the 
2348         g_assert with a return NULL (documented return value for failure)
2350 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2352         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2354 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2356         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2357         file attribute to managed code and avoid doing the mask/attribute
2358         checks here. 
2360 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2362         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2363         the managed world.
2365         * icall-def.h: New entry points.
2366         
2367 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2369         * process.c: Don't put references to managed objects into a
2370         g_ptr_array.
2372 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2374         * class.c (can_access_internals): Allow CoreCLR to participate in
2375         allowing (or not) [InternalsVisibleTo] between assemblies.
2376         * security-core-clr.c|h: Make sure that only trusted code (a 
2377         superset of platform code) can access the internals of platform
2378         code.
2380 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2382         * reflection.c: use the correct base class to get the virtual method
2383         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2385 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2387         * security-core-clr.c (get_caller_no_reflection_related): 
2388         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2389         it's still reflection and must be filtered correctly.
2391 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2393         * object.c (compute_class_bitmap): Fix for large bitmaps.
2395 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2397         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2399         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2400         koush@koushikdutta.com). Disable GC_no_dls on android.
2402 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2404         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2405         tlab_next points outside the TLAB because the allocator was
2406         interrupted.
2408 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2410         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2412 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2414         * object-internals.h: Change signature for mono_string_to_utf8_image.
2416         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2417         argument.
2419         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2420         exceptions due to mono_string_to_utf8.
2422 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2424         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2426         * object.c (mono_remote_class): Make sure all resources are released before
2427         raising an exception.
2429         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2431 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2433         * mono-perfcounters.c (network_get_impl): Change variable initialization
2434         ordering to fix potential memory leak in case of exceptions.
2436         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2437         encoded strings.
2438         
2439 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2441         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2442         variable initialization ordering to fix potential memory leak in case
2443         of exceptions.
2445 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2447         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2448         needed.
2450 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2452         * appdomain.c: Fix shadow path code to better deal with exceptions.
2454 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2456         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2457         exception in the middle of the runtime code.
2459 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2461         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2462         leak memory with broken envvar value.
2464 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2466         * reflection.c (mono_reflection_setup_internal_class): Because
2467         nested classes are not added to the name cache, we must put them
2468         in the reflection_info_unregister_classes list.
2470 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2472         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2473         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2474         platform (trusted) code. Instead we return a TypeLoadException to
2475         be thrown later. This is the exception thrown by Silverlight 2 if
2476         a type, inside application (user) code is marked with [ComImport]
2478 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2480         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2481         mono_is_debugger_attached () too.
2483         * mono-debug.c (mono_is_debugger_attached): New helper function.
2484         (mono_set_is_debugger_attached): Ditto.
2486 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2488         * object-internals.h: Add mono_string_to_utf8_checked.
2490         * object.c: Implement mono_string_to_utf8_checked.
2492 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2494         * class.c: Add missing check for load errors after every
2495         call to mono_class_setup_fields
2497         Fixes #552282.
2499 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2501         metadata-verify.c (verify_tables_schema): Fix the error message.
2503 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2505         * metadata.c: Change event table schema to use TDOR for event type
2506         as this is what it's meant to be.
2508         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2509         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2510         entry.
2512         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2513         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2514         rows in MONO_TABLE_GENERICPARAM.
2516         Fixes #552289.
2518 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2520         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2521         insertion.
2523         * reflection.c (mono_reflection_setup_internal_class): Avoid
2524         registering a gc root the same MonoClass multiple times.
2525         Don't register nested types on the global scope as they should
2526         not be available there.
2528 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2530         * culture-info-tables.h: regenerated.
2532 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2534         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2536 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2538         * string-icalls.c|h: Remove string internal calls that are not 
2539         used anymore by the class libraries.
2540         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2541         which is not used in the class librairies.
2542         * icall-def.h: Update tables.
2544 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2546         * class.h: Move mono_class_inflate_generic_type_checked...
2548         * class-internals.h: to here and make it internal. We don't want to
2549         further expose MonoGenericContext. 
2551 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2553         * verify.c (mono_method_verify): Improve error message.
2555 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2557         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2558         the token is already properly encoded. Fixs 4.0 build.
2560 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2562         * locales.c (construct_number_format): Check if the number index is
2563         valid before trying to use it, if not, just return.
2564         
2565 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2567         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2568         since that loses the abort state. Fixes #539394.
2570 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2572         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2573         explicit this argument to the call signature.
2574         (mono_marshal_get_icall_wrapper): Ditto.
2576 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2578         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2579         to indicate which assembly to use when resolving a custom-mod.
2581         Fixes handling of volatile fields used across assemblies as reported in #551513.
2583 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2585         * loader.c: Improve error messages.
2587 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2589         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2590         of interfaces. Fixes IKVM.
2592         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2594 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2596         * verify.c (verifier_inflate_type): Return the inflated type on success.
2598 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2600         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2602         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2604         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2606         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2607         flag set.
2609         * profiler.c: Add new profiler callbacks for runtime invoke.
2611         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2613 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2615         * sgen-gc.c: Keep track of the reason for a major collection and
2616         write it to the heap-dump file.
2618 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2620         * threads.c: refactor the code that initializes the
2621         thread_start_args into a reusable function and use this in the two
2622         methods that start up threads.
2624 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2626         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2627         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2629 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2631         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2632         Until now, we only had the per-cpu(core) counters.
2634 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2636         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2637         mono_gc_get_suspend_signal(), which returns the suspend signal
2638         number used by the GC.
2640 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2642         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2644         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2645         signalling start_notify.
2647 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2649         * appdomain.c: do not test the st_mode field for shadow-copies.
2650         Fixes bug #545276.
2652 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2654         * threadpool.[ch]: added hooks for thread start/finish and item
2655         processing begin/end. For monotouch use only.
2657 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2659         * threads.c (mono_thread_get_name): New helper function.
2661         * reflection.c (resolve_object): Set handle_class for strings too.
2662         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2663         a cattr blob into a set of arrays and structures without creating the custom
2664         attributes themselves.
2665         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2667         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2669         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2670         function.
2672 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2674         * verify.c: Replace calls to mono_class_inflate_generic_type with
2675         mono_class_inflate_generic_type_checked. Fixes #480005.
2677 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2679         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
2680         object since not all paths lead to callees initing it.
2682 2009-10-23  Alp Toker  <alp@nuanti.com>
2684         Fix embedding API breakage from r144688. mono-compiler.h is an internal
2685         header and should not be shipped:
2687         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
2688         which is specific to the mono build. Not going to work.
2690 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
2692         * security-manager.c: Report if core-clr is active from
2693         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
2694         to allow Moonlight BCL to behave appropriately (both in browser
2695         and outside, e.g. smcs)
2697 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2699         * mono-config.c: ignore UTF-8 BOM and report parser errors.
2700         Fixes bug #549108.
2702 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2704         * class.c: fix typo.
2706 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
2708         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
2709         a MonoError parameter.
2711         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
2712         version that can does proper error handling.
2714         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
2716         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
2718         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
2720 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2722         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
2723         NO_UNALIGNED_ACCESS is defined.
2725 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2727         * marshal.c (mono_string_builder_to_utf16): Applied patch from
2728         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
2729         Fixes #549173.
2731 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2733         * sgen-gc.c: Shorten sections whenever possible.
2735 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2737         * sgen-gc.c: Use our portable semaphore #defines.
2739 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2741         * sgen-gc.c: A debug option for dumping the heap layout to a file
2742         after each collection.
2744 2009-10-21  Mark Probst  <mark.probst@gmail.com>
2746         * sgen-gc.c: Make managed write barriers atomic via
2747         thread-restarts.
2749 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
2751         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
2752         methods. Fixes #543021.
2754 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2756         * socket-io.[ch]: fix VS build.
2758 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2760         * icall-def.h:
2761         * socket-io.[ch]: implemented SendFile.
2763 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2765         * class.c (mono_class_create_from_typedef): Initialize class->element_class
2766         before the interfaces to avoid crashes later if class initialization fails.
2767         Fixes #548417.
2769         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
2770         Fixes #548276.
2772 2009-10-20  Marek Safar  <marek.safar@gmail.com>
2774         * domain.c: Bump 4.0 version.
2776 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2778         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
2779         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
2780         check since 'pubkey' can't be NULL at this stage
2781         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
2782         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
2783         initialization of 'iter'
2785 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
2787         * cominterop.c : Search the interface parts of vtable to find 
2788           method matches.  Fixes 547030.
2790         Code is contributed under MIT/X11 license.
2792 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
2794         * marshal.c: BeginInvoke cannot be called on multicast delegates with
2795         multiple targets. Fixes bug #574426.
2797 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2799         * profiler.h: Put here the definition of
2800         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
2801         (and fix the build...).
2803 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2805         * profiler.c, profiler.h, profiler-private.h:
2806         Added support for different ways of getting call chains in stat mode.
2808 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2810         * object.c, object-internals.h: New function for computing the
2811         size of an array, factored out of mono_array_new_full().  Use
2812         SGen's functions for allocating arrays and vectors.
2814         * sgen-gc.c, gc-internal.h: Special functions for allocating
2815         arrays and vectors without race conditions.  A managed array
2816         allocator method.
2818         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
2820 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2822         * object.c, object.h, icall.c: Write barriers do the copying now,
2823         as well, so no need for an additional memcpy.
2825         * sgen-gc.c: Lock when storing remsets.  Do the memory
2826         copying/moving in the write barriers.
2828         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
2830         * reflection.c: Added an assert.
2832 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2834         * threads.c, process.c: A few missing write barriers.
2836 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2838         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2839         network performance counters for bytes sent per second, bytes
2840         received per second, and bytes total per second.
2842         Code is contributed under MIT/X11 license.
2844 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2846         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2847         Fix warning.
2849 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2851         * threads.c, object-internals.h, object.c: Move code for
2852         transferring an object to a different domain (via
2853         serialization/remoting) to object.c.
2855         * object.c (call_unhandled_exception_delegate): If the exception
2856         is in a different domain than the delegate, transfer the exception
2857         to that domain.
2859 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
2861         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
2862         Fixes #322934.
2864 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
2866         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
2868 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2870         * object.c (mono_method_return_message_restore): Handle the case
2871         where the argument is an instance of a generic type.  Fixes
2872         #544446.
2874 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2876         * object.c (set_value): Write barrier fix - we must pass the
2877         count, not the size.
2879 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
2881         * domain.c (mono_init_internal): Print a useful error message when encountering
2882         an old mscorlib, instead of crashing. Fixes #544307.
2884 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
2886         * appdomain.c (copy_app_domain_setup): Fix a warning.
2888         * debug-helpers.c (dis_one): Ditto.
2890 2009-10-04  Mark Probst  <mark.probst@gmail.com>
2892         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
2893         into the new domain, instead of referencing the original one.
2895         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
2896         non-static.
2898         * appdomain.c: Corlib version bump.
2900 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2902         * threadpool.c: one more...
2904 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2906         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
2907         threads to die because we're shutting down. delgate5.exe works again.
2909 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
2911         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
2912           ccw_interface_hash table when a ccw is finalized.
2914         Code is contributed under MIT/X11 license.
2916 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2918         * assembly.c, domain.c, image.c, metadata-internals.h: Split
2919         domain and image unloading into two steps.  We must do this
2920         because clearing the domain in SGen requires the class metadata to
2921         be intact, but we need to free the mono_g_hash_tables in case a
2922         collection occurs during domain unloading and the roots would trip
2923         up the GC.
2925 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2927         * object-internals.h: Remove serialized culture fields from
2928         MonoInternalThread.
2930         * icall-def.h, thread-types.h, threads.c: Remove serialized
2931         culture icalls.
2933         * appdomain.c: Corlib version bump.
2935 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
2937         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
2938         Fixes #543133.
2940 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2942         * sgen-gc.c: Try to shorten the new section after a major
2943         allocation to avoid ever-growing sections.
2945 2009-10-13  Martin Baulig  <martin@ximian.com>
2947         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
2948         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
2949         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
2950         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
2952         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
2954 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
2956         * threadpool.c: fixed the order in which 'completed' and the wait
2957         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
2958         No need to use the wait_handle field of ASyncCall. Make sure the
2959         threadpool is active when adding a job or queueing an idle thread.
2961 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
2963         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
2965         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
2966         when using --compile-all.
2968 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2970         * metadata.c (free_generic_class): Unregister the field_objects
2971         roots if we're using SGen.
2973 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2975         * reflection.c (mono_dynamic_image_free): Deregister the GC root
2976         for GenericParamTableEntry.gparam.
2978 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2980         * marshal.c: don't create the handle when calling. It is created later
2981         if needed.
2983 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2985         * sgen-gc.c: Warning fixes.
2987 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2989         * sgen-gc.c: New debug option "xdomain-checks", which scans the
2990         whole heap for cross-domain references before each collection.
2992         * sgen-scan-object.h: The scan action can now use SCAN to scan the
2993         object.
2995         * threadpool-internals.h, threadpool.c: New function
2996         mono_thread_pool_is_queue_array() for checking whether a given
2997         array is used as a (cross-domain) queue by the thread pool code.
2999 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3001         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3002         searches the whole heap for objects containing a specific
3003         reference.  Only for debugging.
3005 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3007         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3009         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3010         byte arrays between domains.
3012 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3014         * threadpool.c:
3015         * class-internals.h:
3016         * mono-perfcounters-def.h:
3017         * mono-perfcounters.c:
3018         -There is a list of idle threads
3019         -Each of those idle threads wait on their own WaitHandle instead
3020         of all of them using the same semaphore. When a new work item is
3021         added, the job is assigned directly to an idle thread or a newly
3022         created one if possible and then the handle for that thread is
3023         signaled. Compare that to the current approach where all the
3024         threads in the pool compete to dequeue a job from the same
3025         queue.
3026         -New struct ThreadPool that brings together the bunch of static
3027         variable for each threadpool (IO and regular).
3028         -New performance counters: # of items added and its rate per
3029         threadpool. The rate will be used later, perhaps together with
3030         other perf. counters, to decide when idle threads should exit.
3032 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3034         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3035         Fix typo on Windows build.      
3036         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3037         
3038         Code is contributed under MIT/X11 license.
3040 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3042         * object-internals.h: The Thread class is split up into Thread and
3043         InternalThread now.  We have exactly one InternalThread per
3044         thread, and at most one Thread per appdomain per thread.  Most
3045         data is stored in InternalThread.  All InternalThread objects live
3046         in the root domain.
3048         * class-internals.h: Add internal_thread_class to MonoDefaults.
3050         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3051         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3052         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3053         resulting from the split of the Thread class.
3055         * gc-internal.h: Prototype for new function for checking whether a
3056         thread is the finalizer thread.
3058         * appdomain.c: Corlib version bump.
3060 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3062         * appdomain.c|h: Add a mono_domain_try_unload method which is
3063         equivalent to mono_domain_unload, except that it returns an exception
3064         instead of throwing it. Make mono_domain_unload use the
3065         mono_domain_try_unload method to avoid code-duplication.
3067 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3069         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3070         a problem.
3072 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3074         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3075         aborting when a conversion is not implemented.
3077 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3079         * verify.c: when comparing culture strings, use g_ascii_strcmp
3081         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3082         when comparing public key tokens to use memcmp on 16 bytes.   I do
3083         not believe this ever worked as advertised in the past.
3085         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3086         which would have always failed earlier.
3088 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3090         * gc.c: Raise a NullArgumentException if the object passed is
3091         null.
3093 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3095         * image.c (mono_image_close): Atomically decrement the reference count and
3096         remove the image from the hash tables, to prevent another thread from seeing a
3097         dying MonoImage. Fixes #541194.
3099 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3101         * threadpool.c: actually use the minimum number of 'completion ports'
3102         (for us is just a potential worker thread).
3104 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3106         * threadpool.c: remove ares_htable. It does not make sense any more
3107         since the same objects are now stored in GC-tracked arrays while they are
3108         in the queue.
3110 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3112         * threadpool.c: increase the minimum length of the queues to 128.
3113         Remove warning.
3115 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3117         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3118         return the modified signature used by string ctors.
3120 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3122         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3123         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3124         method, to be used by full-aot.
3126 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3128         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3129         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3130         be known to be good.
3132         * class.c (mono_class_init): Fail array types if their element type fails initialization
3133         as well.
3135         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3136         initialization, additionally we request the element_type vtable to be initialized as well.
3138         This is fine and should not increase the working set in any meaningful way since it's reasonable
3139         to assume       that most code will create an array and eventually populate it, which will require the
3140         type's vtable to be initialized.
3142         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3144 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3146         * normalization-tables.h : regenerated.
3148 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3150         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3151         a leb128 encoding can take up to 5 bytes.
3153 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3155         * class.c (verify_class_overrides): Remove useless argument.
3157         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3158         before interface enumeration as this is no longer required.
3160 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3162         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3163         used under mono_class_init context. This functions avoid any code path that
3164         calls mono_class_init, which leads it to be slow as some things like the interface
3165         bitmap are not available.
3167         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3168         of it's own broken version. Fixes the verifier part of #538588.
3170         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3171         API.
3173 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3175         * class.c (mono_class_init): Always set an exception in a class if
3176         vtable setup fails.  Fixes #538577.
3178         * generic-sharing.c: Raise an exception if mono_class_vtable()
3179         returns NULL.
3181 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3183         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3184         methods of vtypes, as they could be incorrectly shared with static methods
3185         taking an IntPtr argument.
3187 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3189         * domain.c:
3190         * object.c:
3191         * class-internals.h: renamed waithandle_class to
3192         manualresetevent_class.
3193         * marshal.c: propagate the exception if a remoting BeginInvoke call
3194         fails.
3196 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3198         * object.c: Properly handle vtable failures.
3200 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3202         * socket-io.c: Assert on vtable failure.
3204         * mono-mlist.c: Assert on vtable failure.
3206 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3208         * marshal.c: Assert on vtable failure.
3210 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3212         * icall.c: Properly handle vtable failures.
3214 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3216         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3218 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3220         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3222         * console-unix.c (do_console_cancel_event): Same.
3224 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3226         * class-internals.h: Add mono_class_vtable_full function that allows control
3227         if an exception should be raised or not.
3229         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3230         to do what its documentation say, that is to return NULL and set exception_type on
3231         failure.
3233         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3234         and change the code to honor it.
3236 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3238         * verify.c: Fix typo in error message.
3240 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3242         * security-core-clr.c: Fix default_platform_check so it can run
3243         the runtime coreclr tests (without an infinite recursion when
3244         throwing an exception).
3246 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3248         object.c (mono_delegate_ctor_with_method): Guard against null method.
3250 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3252         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3253         that should be replaced with error handling later.
3255 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3257         * marshal.c (mono_delegate_end_invoke): Fix warning.
3259 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3261         * loader.c (mono_field_from_token): Properly handle invalid
3262         dynamic tokens.
3264 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3266         * pedump.c (verify_image_file): Skip types that can't be
3267         decoded.
3269 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3271         * verify.c: Look for recursive valuetypes only against the
3272         type been initialized as this is a lot simpler and works.
3274 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3276         * verify.c: Ensure that fields are properly loaded before
3277         checking them.
3279 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3281         * object.c (mono_object_get_virtual_method) : Call 
3282           mono_cominterop_get_invoke if the object is a COM object.
3284         Code is contributed under MIT/X11 license.
3286 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3288         * verify.c: Check for recursive valuetype definitions.
3290 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3292         Use inheritance-aware interface offsets. Inherited types use the same offsets
3293         of their parents. This reduce offset duplication in case more than one type in
3294         the inheritance tree explicitly implements the same interface.
3296         This also removes a source of vtable bubbles found in #532409. An abstract type
3297         isn't required to provide abstract methods to all interfaces it implements, which
3298         resulted in a bubble with the previous scheme as the child would get a non-full
3299         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3300         should be fixed.
3302         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3303         it's expected to not cause any significant increase beyond that.
3305         * class.c (setup_interface_offsets): Compute super class iface offsets
3306         first to force sharing.
3308         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3309         dumping only the relevant ones.
3311         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3312         methods a new slot regardless if they belong to an interface or not. This allows
3313         an inherited type to override the iface method separately from the class one.
3315 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3317         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3318         applications that take less than 2s to execute.
3319         Bug #524984 fixed.
3321 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3323         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3325         * object.c (mono_get_runtime_callbacks): New helper function to return
3326         the runtime callbacks.
3328         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3329         mono_get_runtime_build_info () as the display name.
3330         
3331 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3333         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3334         argument, since NEWARR expects a native int. Fixes #481559.
3336 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3338         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3339         against broken SRE methods.
3341 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3343         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3344         a NULL variable. Abort early on failure.
3346 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3348         * class.c (can_access_type): Fail visibility test for non nested
3349         types with nested visibility.
3351 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3353         * assembly.c (parse_public_key): Avoid allocating (and not 
3354         freeing) the public key array when it's not requested by the 
3355         caller.
3356         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3357         ves_icall_System_Threading_Thread_Thread_internal): Free 
3358         allocated memory on error.
3360 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3362         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3364 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3366         * class.c (mono_class_setup_fields): Remove duplicated local variable
3367         named gklass.
3368         Rename gklass to gtd to reflect the fact that it points to the generic
3369         type definition.
3370         Remove the duplicated call to mono_class_setup_fields on gtd and move
3371         the error check to the beginning.
3373 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3375         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3376         Remove cruft of the previous patch.
3378 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3380         * metadata-verify.c (verify_method_table): Check for abstract + final.
3381         Fixes #534175.
3383 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3385         * verify.c (verify_class_fields): Check for duplicate fields.
3387 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3389         * metadata-verify.c: Verify the typeref table for duplicates.
3391 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3393         This reverts r140936 and properly handles interfaces with static methods. The
3394         right fix is to ensure vtables without bubles which is an easier to verify
3395         constraint. We should avoid such special cases as of the reverted patch as those
3396         only make the runtime more brittle.
3398         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3399         static methods on interfaces.
3401         * class.c (setup_interface_offsets): Use the number of virtual methods when
3402         calculating interface offsets instead of the number of methods. This way we
3403         avoid bubles on the layout.
3405 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3407         * metadata-verify.c (verify_metadata_header): Some very smart
3408         obfuscators like to add extra stream headers. Ignore them.
3410 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3412         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3413         methods correctly.
3415 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3417         * metadata-verify.c: Verify for duplicated types.
3419 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3421         * metadata-verify.c (verify_typedef_table): Verify for nested types
3422         without an entry on the nested class table.
3424 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3426         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3427         <tom_hindle@sil.org>. Add locking around hash table accesses.
3429 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3431         * verify.c (mono_verifier_verify_class): Verify all interface if
3432         really are interfaces. Fixes #534184.
3434 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3436         * pedump.c: Initialize all types during metadata validation so we report
3437         errors only detected as part of class initialization.
3439 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3441         * metadata-verify.c (verify_method_table): PInvoke requires method to
3442         be static. Fixes #534189
3444 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3446         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3447         being NULL.
3449 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3451         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3452         for holes or bad methods. Fixes #525314.
3454 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3456         * class.c (setup_interface_offsets): Don't allocate slot
3457         for the same interface multiple times. This creates bubbles
3458         that waster space and make vtable verification harder.
3460         The same interface get a slot multiple times since we need
3461         to get the closure of all implemented interfaces, which means
3462         the same interface is reported multiple times.
3464 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3466         * verify.c (mono_verifier_verify_class): Don't check the fields
3467         of generic instances since the context on which they got expanded
3468         might lead to false positives.
3470         Such thing happens when a generic type is inflated in the context
3471         of a generic method and the inflated type of a field turns into a
3472         generic method argument, which causes the checking code to think
3473         it's an invalid class when it's not.
3475 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3477         * verify.c (mono_type_is_valid_in_context): Verify if type
3478         is NULL and remove duplicate test.
3480 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3482         * verify.c (mono_verifier_verify_class): Check fields for
3483         invalid generic arguments.
3485 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3487         * class.c (verify_class_overrides): Verify if for static
3488         and non virtual methods.
3490 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3492         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3493         Check for errors after retrieving the vtable.
3495 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3497         * class.c (mono_class_setup_vtable_general): Verify
3498         if method overrides are valid before processing them.
3500 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3502         * marshal.c (mono_array_to_lparray): Fix minimal build with
3503         cominterop disabled.
3505         * marshal.c (mono_free_lparray): Same.
3507 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3509         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3510         the hash function for the ares_htable.
3512 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3514         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3515         bit for assembly flags. MS is ok with it but there is no spec anywhere
3516         on its mean
3518 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3520         * class.c (mono_class_create_from_typedef): Emit profiler events
3521         in all cases.
3523 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3525         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3526         Release memory on failure.
3528 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3530         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3531         to the internal API.
3533         * metadata.c (get_constraints): Use a single-linked table as we don't
3534         traverse it backward. Fail and return FALSE if only of the contraint types
3535         is not found.
3537         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3538         to mono_metadata_load_generic_param_constraints except for having a return value.
3539         This has to be done since the later is part of the public API.
3541         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3542         and fail the type.
3544         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3545         and fail the method.
3547 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3549         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3550         with MS broken behavior of emmitting EH section sizes without the
3551         header size added.
3553 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3555         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3556         memory until we're sure that we'll need it. This avoids leaking for
3557         broken types or duplicated instantiation.
3559 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3561         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3562         mistake.
3564 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3566         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3567         and expected size calculation.
3569 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3571         * class.c (mono_class_get_field_idx): Add fixme for broken
3572         behavior for types with multiple fields with the same name.
3573         I would rather fix it, but have no idea on how to generate
3574         such artifact for testing.
3576 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3578         * verify.c (verifier_load_field): We should allow references to
3579         fields to be made using the generic type definition. It's up to
3580         the loader system to fail invalid ops.
3582         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3583         are invalid.
3585 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3587         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3589         * metadata-internals.h: Fix declaration of 
3590         mono_metadata_interfaces_from_typedef_full.
3592         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3593         heap_alloc_result parameter that controls if the result should be
3594         g_malloc'd.
3596         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3597         array be g_malloc'd and properly document this public API function.
3599 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3601         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3602         remove METHOD_HEADER_TINY_FORMAT1.
3604         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3606         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3608         Both spec and MS uses only 2 bits to enumerate the kind of header.
3609         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3610         is superfluous, only used for tiny headers with odd code lengths.
3612         This change also make sure that mono doesn't wronly interpret bit 2
3613         of fat header flags, which is currently reserved.
3615 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3617         * metadata.c (do_mono_metadata_parse_type): Do error
3618         checking for element types. Don't abort if presented
3619         with a broken type kind.
3621 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3623         * metadata.c (mono_metadata_parse_method_signature_full):
3624         Gracefully fail bad vararg signatures.
3626 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3628         * profiler.c:
3629         * class.c: Fix warnings for uninitialized variables.
3631 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3633         * icall.c: Fix _NSGetEnviron method declaration warning.
3635 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3637         * icall.c:
3638         * reflection.c: Make bitwise checks explicit.
3640 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3642         * debug-helpers.c:
3643         * marshal.c: Fix printf warnings.
3645 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3647         * reflection.c (encode_cattr_value): Fix a warning.
3649 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3651         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3652         of array bounds.
3654 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3656         * loader.c (mono_method_signature): Don't assert on broken
3657         signature. Print a more useful error message.
3659 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3661         * loader.c (mono_method_get_marshal_info): Assert if
3662         signature is invalid. Bounds check stores to the
3663         mspecs array;
3665 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3667         * loader.c (field_from_memberref): Fix warning.
3669 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3671         * loader.c (mono_method_get_param_names): Check if signature
3672         is null. Don't store beyond the size of the name array.
3674 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3676         * loader.c (mono_get_method_constrained): Check if signature
3677         is null.
3679 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3681         * loader.c (mono_loader_set_error_bad_image): Improve
3682         error messages.
3684 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3686         * loader.c (mono_get_method_full): Convert an assertion
3687         into a loader error.
3689 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3691         * class-internals.h, class.c: Better naming and documentation.
3693 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
3695         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
3696         obj is NULL.
3698 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3700         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
3701         parsing fails.
3703 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3705         * loader.c (mono_loader_error_prepare_exception): Handle missing field
3706         errors with no class set.
3708         * loader.c (field_from_memberref): If the field signature is of the wrong
3709         type fail with a MissingFieldException instead of a BadImageException as
3710         this is the behavior observed on MS. 
3712 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3714         * loader.c (field_from_memberref): Don't crash if either the field
3715         signature or the typespec class are invalid.
3717 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3719         * verify.c (verifier_load_field): Don't allow field related
3720         ops to reference fields on generic type definition.
3722 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3724         * metadata-verify.c: Add new warning level for errors specified
3725         by ECMA 335 but that MS ignores.
3727         * metadata-verify.c (verify_method_table): Make compiler controled
3728         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
3729         this check is safe because the end result will only be some visibility
3730         exceptions been thrown.
3732 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3734         * verify.c (get_boxable_mono_type): Don't allow the
3735         use of the generic type definition on boxed type positions.
3737         Fixes #531237.
3739 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3741         * threadpool.c: Make sure no cross-domain references remain in
3742         ares_htable or the arrays that are thrown away when resizing.
3744 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3746         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
3747         list of classes for which we have to unregister reflection_info
3748         with the GC and which are not in the namespace cache.
3750         * reflection.c (mono_reflection_initialize_generic_parameter): Add
3751         the class to the list.
3753 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3755         * domain.c (mono_domain_free): Unregister the GC roots in
3756         MonoDomain.
3758 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3760         * reflection.c (mono_reflection_type_get_handle): Fix typo.
3762 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3764         * class.c: Add mono_class_get_field_from_name_full which does
3765         the same as mono_class_get_field_from_name but does check field
3766         signature as well.
3768         * class-internals.h: Export mono_class_get_field_from_name_full as
3769         part of the internal API.
3771         * loader.c (field_from_memberref): Search fields by name and signature
3772         as it's valid to have two fields with same name but different types.
3774         Fixes #528055.
3776 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
3778         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
3780         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
3782         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
3783         System.Type.
3785 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
3787         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
3789         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
3791 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3793         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
3794         to sgen-scan-object.h, which can be included and parameterized via
3795         macros.
3797         * Makefile.am: sgen-scan-object.h added.
3799 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3801         * gc.c: #define GC_dont_gc if we're compiling with SGen.
3803 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3805         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
3806         before clearing a domain in the GC.
3808 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3810         * exception.c (mono_exception_from_name_domain): Actually create
3811         the exception in the specified domain.
3813         * appdomain.c (mono_domain_create_appdomain_internal): Create the
3814         OutOfMemoryException a bit later so that the domain is inialized
3815         "enough" that it works.
3817 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3819         * threads.c (thread_cleanup): Clean up the cached_culture_info
3820         array to prevent cross-domain references.
3822 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3824         * metadata.c: more documentation for MonoType accessors.
3826 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
3828         Fix incorrect size definitions where the tail array isn't a list
3829         of pointers
3830         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3831         define size.
3832         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3833         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3834         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3836 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3838         * reflection.h:
3839         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
3841 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3843         * metadata.c:
3844         * loader.c:
3845         * metadata-internals.h:
3846         * method-builder.c:
3847         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
3849 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3851         * cominterop.c:
3852         * metadata.c:
3853         * metadata.h:
3854         * loader.c:
3855         * marshal.c:
3856         * reflection.c: #define for sizeof in MonoType and
3857         MonoMethodSignature.
3859 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3861         * domain.c:
3862         * domain-internals.h: add and use #define's instead of sizeof()
3863         for MonoJitInfo and MonoJitInfoTable.
3865 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3867         * object.c:
3868         * class.h: use #define instead of sizeof() for MonoRemoteClass.
3870 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3872         * metadata.c:
3873         * metadata.h:
3874         * object.c:
3875         * class-internals.h:
3876         * generic-sharing.c:
3877         * marshal.c: use a #define instead of sizeof() for a few
3878         structures that use a zero-length array.
3880 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3882         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
3883         to handle inflated generic methods.
3885         * appdomain.c: Bump corlib version.
3887         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
3888         instances.
3890         * reflection.c (fixup_method): Same
3892         * reflection.c (resolve_object): Same.
3894         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
3895         g_error and a decent message.
3897 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
3899         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
3900         from the object because it could not yet be available globally
3901         (it happens if the profiler tries to create a gchandle on the
3902         MonoThread object of a thread that is still registering itself
3903         with the runtime).
3905 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
3907         * reflection.c (mono_generic_class_get_object): Initialized the
3908         managed type arguments array.
3910         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
3912         * appdomain.c: Bump corlib version.
3914 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
3916         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
3917         #527902.
3919 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
3921         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3922         Avoid a crash if synch_cs is not set.
3923         
3924         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3925         Handle the case when the handle is 0.
3927         * appdomain.c: Bump corlib version.
3929 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
3931         * reflection.c (mono_type_get_object): Fix a warning.
3933 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3935         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
3936         descriptor here.  We assume it's already been computed.
3938         * generic-sharing.c (instantiate_other_info): Compute the GC
3939         descriptor for info type MONO_RGCTX_INFO_KLASS.
3941 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3943         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
3944         type, so don't use MONO_OBJECT_SETREF to set a field.
3946 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3948         * gc.c: We were missing one case where invoking a finalizer would
3949         not reset the domain.  Also, in the finalizer thread loop, assert
3950         that we're in the root domain.
3952 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3954         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
3955         if the type is not an array.
3957 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3959         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
3960         method bound to the declaring type of the method. Raise an exception
3961         if the type is not a generic param.
3963 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3965         * class.c (print_unimplemented_interface_method_info): Print the
3966         full type name.
3968         * class.c (mono_class_setup_vtable_general): When dealing with a
3969         generic instance first check if the generic type definition is
3970         not broken.
3972 2009-02-11 Tom Hindke <tom_hindle@sil.org>
3974         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
3976         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
3978         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
3980         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
3982         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
3984         Code is contributed under MIT/X11 license
3986 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
3988         * verify.c: Fix naming of stelem and ldelem.
3990 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3992         * generic-sharing.c: Replace the templates lock with the loader
3993         lock because of very hard to resolve deadlock issues.
3995 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
3997         * icall.c (ves_icall_Type_GetMethodsByName): Use 
3998         mono_class_get_vtable_size () instead of accessing klass->vtable_size
3999         directly. Fixes #525338.
4001         * class.c (mono_class_get_vtable_size): New helper function.
4003         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4004         the field belongs to the type. Fixes #525733.
4006 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4008         * sgen-gc.c: When we stop a thread and its stack top is not within
4009         its allocated stack (because it's in an altstack signal handler),
4010         restart it and stop it again, until it is.
4012 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4014         * sgen-gc.c: Take a thread's stack top and registers from the
4015         sigcontext in the suspend signal handler.
4017         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4018         stuff to sgen-archdep.h.
4020         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4021         caller, because have code in sgen-archdep.h to acquire that data.
4023 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4025         * profiler.c, profiler.h, profiler-private.h:
4026         Added support for keeping track of code chunks and buffers.
4028 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4030         * metadata-verify.c: Fix endianness problems on decoding functions.
4031         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4033 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4035         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4036         schema for vectors and one dimension SZARRAY.
4038 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4040         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4041         schema for vectors and one dimension SZARRAY.
4043 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4045         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4046         Interlocked.(Compare)Exchange with object arguments, which invoke
4047         write barriers.
4049 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4051         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4052         passed invalid arguments.   Fixes another crasher in the
4053         Silverlight test suite.
4055         * class.c (mono_class_array_element_size): Return 0 for the size
4056         of the class;  This fixes the crasher exposed by :
4058         typeof (void).MakeArrayType ();
4060         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4061         if there is no method to dereference.    Put all the code that
4062         depends on this inside the if (method) block.
4064         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4065         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4067         With this change, we pass the test.
4068         
4069         * reflection.c (mono_reflection_sighelper_get_signature_local):
4070         Only dereference the assembly if it has been set.    Fixes a
4071         crasher exposed by #525328
4073 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4075         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4076         don't perform the store in mono_gc_wbarrier_generic_nostore().
4077         Remove the second argument (value), which is not needed.
4079 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4081         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4082         the build.
4084         * boehm-gc.c: Ditto.
4085         
4086 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4088         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4089         not perform the store itself.  Introduce
4090         mono_gc_wbarrier_generic_nostore(), which is the same as
4091         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4092         store.
4094 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4096         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4097         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4098         we still need the memcpy().
4100 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4102         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4103         so that big arrays are handled correctly.  Always use
4104         safe_object_get_size() to calculate array object sizes, which
4105         takes bounds into account.
4107 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4109         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4110         GC descriptor is computed before we use it.
4112 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4114         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4115         write barrier if necessary.
4117 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4119         * icall-def.h, icall.c, thread-types.h: New separate icall for
4120         VolatileWrite(object&,object) that uses a write barrier.
4122         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4123         barriers in icalls which write to "ref" or "out" arguments.
4125 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4127         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4128         handler in a separate icall, to reduce the size of the wrappers.
4130 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4132         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4134 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4136         * metadata-verify.c (parse_field): Allow byref field.
4138         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4140         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4142 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4144         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4145         Fixes #522784.
4147 2009-07-20  Robert Jordan  <robertj@gmx.net>
4149         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4150         Fix invalid IL in valuetype handling (STOBJ must push the
4151         corresponding class). Fixes bug #523149.
4153         Code is contributed under MIT/X11 license.
4155 2009-07-20  Geoff Norton  <gnorton@novell.com>
4157         * gc.c: Use proper semaphores where available on posix and darwin.
4159 2009-07-19  Geoff Norton  <gnorton@novell.com>
4161         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4163 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4165         * refletion.c (is_sre_usertype): Change name to is_usertype and
4166         invert it's result so it returns true if the type is an user type
4167         and not the opposite.
4169         * reflection.c (is_*_type): Change all of those to use new macro
4170         check_corlib_type_cached that cached the type lookup so we don't
4171         need to do string comparisons all the type. Changed the signature
4172         to take a MonoClass instead.
4174         * reflection.c: Change mono_image_create_token and resolve_object
4175         to use is_sre_* functions.
4177 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4179         * sgen-gc.c: Check for writes to the stack in the managed
4180         wbarrier as well.
4182 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4184         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4185         but put them on a list which is processed with the other thread's
4186         remsets.
4188 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4190         * sgen-gc.c: Fix and enable the internal allocator instead of
4191         using malloc/free (which causes deadlocks).
4193 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4195         * refletion.c: Fix builds with SRE disabled by adding a minimal
4196         implementation of mono_reflection_type_get_handle.
4198 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4200         * refletion.c: Make mono_reflection_type_get_handle non static.
4202         * object-internals.h: Export mono_reflection_type_get_handle.
4204         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4205         unmanaged handle using mono_reflection_type_get_handle.
4207 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4209         * refletion.c: Replace all reads of MonoReflectionType::type with
4210         calls to mono_reflection_type_get_handle. Only the functions that
4211         deal with constructing TypeBuilder::type have not been changed
4212         because they have to deal with NULL values.
4214         This is a first step into supporting reflection types that don't
4215         map directly into their unmanaged counterpart.
4217 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4219         * metadata-verify.c (parse_locals_signature): Don't complain
4220         on signature with zero locals since MS generates it and doesn't
4221         bother with.
4223 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4225         * reflection.c (mono_image_get_array_token): Resolve return
4226         type using mono_reflection_type_get_handle.
4228         * reflection.c (mono_image_get_array_token): Resolve array method
4229         parent type using mono_reflection_type_get_handle.
4231 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4233         * reflection.c (mono_image_basic_init): Applied patch from
4234         <Dax@daxxfiles.net>. Set the public key token from the assembly
4235         builder. Fixes #518909.
4237         * appdomain.c: Bump corlib version.
4239 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4241         * class.c (mono_class_needs_cctor_run): Make this return false if
4242         the class has no cctor.
4244 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4246         * sgen-gc.c: When the minor GC needs to allocate a new section,
4247         invoke the major GC afterwards.
4249 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4251         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4252           Applying the window_style field to the SHELLEXECUTEINFO struct.
4254         Code is contributed under MIT/X11 license.
4256 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4258         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4259         locking earlier.  Fix it in the managed allocator by making sure
4260         that no thread is stopped there before the GC runs.  If we do stop
4261         a thread there, we restart it and let it run a but, until it stops
4262         somewhere else.
4264         * gc-internal.h, gc.c: Function for getting the IP from a signal
4265         context via a function registered by mini.
4267 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4269         * object-internals.h (MonoIntPtr): New structure describing a boxed
4270         IntPtr.
4272         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4273         returns. Fixes #519953.
4275         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4277 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4279         * class-internals.h, generic-sharing.c: New RGCTX info type for
4280         getting a remoting invoke with check wrapper.
4282 2009-07-07  Geoff Norton  <gnorton@novell.com>
4284         * icall-def.h: Fix the enable-minimal build.
4286 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4288         * object-internals.h: Add MonoReflectionDerivedType.
4290         * reflection.c: Implement support for PointerType.
4291         Fixed tons of warnings.
4293 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4295         * object-internals.h: Add MonoReflectionByRefType.
4297         * reflection.c: Implement support for ByRefType.
4299 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4301         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4303         * object-internals.h: Add MonoReflectionArrayType and
4304         mono_reflection_create_unmanaged_type.
4306         * reflection.c: Implement support for ArrayType.
4308 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4310         * metadata-verify.c (is_valid_method_header): Parse EH block
4311         flags correctly.
4313 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4315         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4316         processing the disappearing links, and process disappearing links
4317         in a loop until no new objects are copied.
4319 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4321         * object.c (handle_enum): Invoke the write barrier when copying
4322         value type instances.
4324         * sgen-gc.c: Register remsets for unmanaged write barriers only
4325         when the address written to is actually on the heap.  This makes
4326         set_value() in object.c work without requiring that the result be
4327         on the heap.
4329 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4331         The runtime wrappers are all bound to a given type that must
4332         exist in the same image. For regular images we use the <Module>
4333         type, which is required to exist for all images.
4335         The <Module> type can't be used for dynamic images because it
4336         might not exist at the time the wrapper is required, so we create
4337         a synthetic type to use instead.
4339         The current code works because of the 2 stage setup of MonoClass,
4340         but once this is gone it will no longer work.
4342         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4344         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4346         * object-internals.h: Export mono_image_set_wrappers_type icall
4347         as part of the internal API.
4349         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4350         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4352         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4353         image wrappers_type to the provided value.
4355 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4357         * appdomain.c (deregister_reflection_info_roots): No need
4358         to use the image lock here.
4360 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4362         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4364 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4366         * threads.c: Store the thread start argument in a hash table instead of
4367         registering it as a root, as libgc doesn't support unregistering roots
4368         under windows, leading to 'too many root sets' errors when many threads
4369         are created.
4371         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4372         shutdown, they can still be referenced by the other dying objects.
4373         Fixes #514506.
4375 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4377         * socket-io.c: DontLinger does not allow LingerOptions.
4379 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4381         * metadata-verify.c: The spec doesn't mention that it's possible to add
4382         custom attribute to a generic parameter. Fixed.
4384 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4386         * class.c (inflate_generic_type): Don't crash while trying to output a message
4387         on why we're aborting.
4389 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4391         * socket-io.c: DontLinger can take an int or a boolean too.
4393 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4395         * gc.c: check for a null argument to SuppressFinalize () and
4396         ReRegisterForFinalize ().
4398 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4400         * loader.c (method_from_methodspec): Call into the verifier to check
4401         the signature.
4403         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4405         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4406         part of the internal API.
4408 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4410         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4411         the signature.
4413         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4415         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4416         part of the internal API.
4418 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4420         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4421         the signature.
4423         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4424         blob verification.
4426         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4427         part of the internal API.
4429 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4431         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4432         when doing basic verification. 
4434         This check must be done since the runtime peeks into signatures in much
4435         more places than it does decoding so it makes sense to ensure that all
4436         pointers to blob objects are well formed.
4438 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4440         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4441         Use proper overflow dectection. Fix usage of it.
4443 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4445         * loader.c (field_from_memberref): Call into the verifier to check
4446         the signature.
4448         * loader.c (mono_method_get_signature_full): Same.
4450         * loader.c (method_from_memberref): Same.
4452         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4454         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4455         part of the internal API.
4457 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4459         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4460         or unloaded, still return an AsyncResult, but don't add it to the
4461         threadpool.
4463 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4465         * threads.c: fix missing colon when DEBUG is defined.
4467 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4469         * threadpool.c: Don't add new calls to a threadpool if the domain
4470         of the call is unloading or unloaded.  When dequeuing a job, null
4471         the reference in the queue.
4473 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4475         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4476         generation if an object was moved.
4478 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4480         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4481           parameters of type SAFEARRAY[VARIANT].
4483         * reflection.c (encode_marshal_blob): Properly generate element type
4484           (SafeArraySubType marshal attribute option).
4486         Code is contributed under MIT/X11 license.
4488 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4490         * reflection.c: in mono_method_clear_object () really ensure all the
4491         objects are removed.
4493 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4495         * loader.c (mono_method_signature): Call into the verifier to check
4496         the method signature.
4498         * metadata-verify.c (verify_method_table): Move signature verification
4499         to verify_method_table_full.
4501         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4503         * verify-internals.h: Export mono_verifier_verify_method_signature as
4504         part of the internal API.
4506 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4508         * loader.c (mono_method_get_header): Call into the verifier to
4509         check the method header.
4511         * metadata-verify.c: Add mono_verifier_verify_method_header.
4513         * verify-internals.h: Export mono_verifier_verify_method_header as
4514         part of the internal API.
4516 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4518         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4519         check the field signature. Replace an assert with an explicit check.
4521         * class.c (mono_class_setup_fields): Call into the verifier to check
4522         the field signature.
4524         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4526         * verify-internals.h: Export mono_verifier_verify_field_signature as
4527         part of the internal API.
4529 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4531         * class.c (mono_class_find_enum_basetype): Simplify this function
4532         by moving code outside of the loop and not decoding static fields.
4534 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4536         * metadata-verify.c (verify_typedef_table): Check the extends
4537         token here. Move to here a flags check from verify_typedef_table_full.
4539 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4541         * metadata-verify.c (is_valid_method_header): Fix a warning.
4543         * metadata-internals.h (MonoImage): Remove the unused 
4544         static_rgctx_invoke_wrapper_cache.
4546         * image.c marshal.c: Ditto.
4548 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4550         * image.c (do_mono_image_load): Enable table data verification.
4552 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4554         * metadata-verify.c (is_valid_constant): Fix nullref check.
4556 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4558         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4560 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4562         * sgen-gc.c: Managed allocation with pthreads TLS.
4564         * threads.c, threads-types.h: Functions for the JIT to tell the
4565         runtime whether it supports the MONO_TLS opcode.
4567 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4569         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4570         without methods.
4572 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4574         * metadata-verify.c (is_valid_constant): Fix the string length check.
4575         Use safe overflow checking. Add decent error messages.
4577 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4579         * metadata-verify.c: Move remaininh blob checks to the offline
4580         verification path.
4582 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4584         * metadata-verify.c: Move more blob checks to the offline verification
4585         path.
4587 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4589         * object-internals.h : Adding interrupt_on_stop field.
4591         * threads.c (mono_thread_request_interruption) : On Windows exit the
4592           thread if interrupt_on_stop is set.
4594         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4595          Removing old interrupt logic and setting the interrupt_on_stop for the
4596          thread when calling accept.
4598         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4599          setting the interrupt_on_stop for the thread when calling accept.
4601         Contributed under MIT/X11 license.
4603 2009-06-20  Martin Baulig  <martin@ximian.com>
4605         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4607 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4609         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4610         running in no-exec mode.
4612 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4614         * metadata-verify.c (verify_method_table): Move header
4615         checking to verify_method_table_full.
4617         * metata-verify.c (mono_verifier_verify_full_table_data):
4618         Call verify_method_table_full.
4620 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4622         * metadata-verify.c (verify_field_table): Move signature
4623         checking to verify_field_table_full.
4625         * metata-verify.c (mono_verifier_verify_full_table_data):
4626         Call verify_field_table_full.
4628 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4630         * metadata-verify.c (verify_typedef_table): Move remaining
4631         stuff to verify_typedef_table_full.
4633 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4635         * metadata-verify.c: Kill is_corlib from VerifyContext.
4636         It is only used by the offline mode.
4637         So we better remove it from the runtime path.
4639 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4641         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4642         function that perform the offline metadata verification steps.
4644         * metadata-verify.c (verify_typedef_table): Move some checks to
4645         verify_typedef_table_full and make it been called by new function
4646         mono_verifier_verify_full_table_data.
4648         * pedump.c: Call mono_verifier_verify_full_table_data.
4650         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4651         part of the internal API.
4653 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4655         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4656         check.
4658         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4659         flags bits. SupportLastError was confused as bit 7 instead of 6.
4661         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4662         to check against the module ref table instead of module.
4664         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4666         * pedump.c: Call mono_image_load_names.
4668 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4670         * image.c: Extract mono_image_load_names from do_mono_image_load.
4672         * metadata-internals.h: Export mono_image_load_names as part of
4673         the internal API.
4674         
4675 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4677         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4678         first, as it could reference data in the other caches.
4680 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4682         * metadata-verify.c: Finished with method header verification.
4684 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4686         * metadata-verify.c: Added more header verification code.
4687         Now only EH clauses are missing.
4689 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4691         * marshal.c (get_runtime_invoke_type): Don't share primitive types
4692         for return values.
4694 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4696         * metadata-verify.c: Initial method header verification.
4698 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4700         * metadata-verify.c (verify_import_table): The IAT contents
4701         might end been patched by the windows DL when running with
4702         coree enabled.
4704 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
4706         * class.c (mono_class_from_typeref): If the enclosing type is not
4707         found return null instead of crashing. Fixes #508487.
4709 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
4711         * normalization-tables.h : updated to the latest unicode charcter
4712           data.
4713         * appdomain.c : bump corlib version.
4715 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
4717         * class.c (mono_class_from_name): Fix support for assembly references
4718         in the EXPORTEDTYPE table. Fixes #511704.
4720 2009-06-13  Geoff Norton  <gnorton@novell.com>
4722         * domain.c: Ensure that mono_domain_assembly_open actually opens the
4723         assembly in the target domain.
4725 2009-06-12  Robert Jordan  <robertj@gmx.net>
4727         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
4728         because "this" of the managed signature has become an
4729         ordinary parameter in the unmanaged signature.
4731 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
4733         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
4734         field for owner-less generic containers.
4736         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
4737         image field of the owner-less generic containers created here.
4739         * metadata.c (mono_metadata_load_generic_params): Ditto, the
4740         contain is ownerless until the caller sets its owner.
4742         * metadata.c (type_in_image): Handle owner-less generic containers
4743         correctly.
4744         
4745 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4747         * image.c (mono_image_close): Support debug_assembly_unload for
4748         dynamic images too.
4750 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
4752         * class.c: Fix some typos in comments.
4754 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4756         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
4758         * threads.c (mono_thread_execute_interruption): Avoid creating the
4759         abort exception object while holding the synch_cs lock.
4761 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4763         * metadata-verify.c: Verify basic cattr content.
4765 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4767         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
4768         nested types.
4769         
4770         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
4771         support for nested types. Fixes #511704.
4773 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4775         * metadata-verify.c: Verify methodspec signatures.
4777 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4779         * metadata-verify.c: Verify typespec signatures.
4781 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4783         * metadata.c (free_inflated_method): Call 
4784         mono_marshal_free_inflated_wrappers (), which was missed earlier.
4786 2009-06-08  Miguel de Icaza  <miguel@novell.com>
4788         * mono-config.c: Small change to report the PPC64/ILP32 model.
4790 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4792         * metadata-verify.c (parse_type): Check szarray.
4794 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4796         * metadata-verify.c (parse_type): Check fnptr.
4798 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4800         * metadata-verify.c (parse_type): Check generic instances.
4802 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4804         * metadata-verify.c (parse_type): Check array shape.
4806 2009-06-05  Robert Jordan  <robertj@gmx.net>
4808         * class.c (mono_class_create_from_typedef): Check only for
4809         mscorlib's System.Array.
4811 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4813         * metadata-verify.c (parse_type): Check pointer, class/valuetype
4814         and generic params. 
4816         * metadata-verify.c (parse_field): Check the signature.
4818 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4820         * metadata-verify.c: Implement locals signature check.
4822 2009-06-04  Marek Safar  <marek.safar@gmail.com>
4824         * domain.c: Add .NET 4.0 Beta 1 version.
4826 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
4828         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
4829           For QueryInterface on CCWs consider the base class
4830           interfaces as well.
4832         Code is contributed under MIT/X11 license.
4834 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4836         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4838         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4839         used.
4841         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4842         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
4844         * generic-sharing.c (inflate_other_data): Ditto.
4845         
4846 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
4848         * metadata-verify.c: Implement property signature check.
4850 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4852         * sgen-gc.h: Register saving support for PPC.
4854 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4856         * sgen-gc.c: Fixed a pthread TLS screwup.
4858 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4860         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
4861         supported.
4863 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4865         * sgen-gc.c: Disable TLA and managed allocation if the __thread
4866         keyword is not supported.
4868 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4870         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
4871         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
4872         the inflated method is freed. Fixes #508389.
4874         The code is contributed under the MIT/X11 license.
4875         
4876 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
4878         * marshal.c (get_wrapper_target_class): New helper function.
4879         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
4880         the <Module> class of the image. Fixes #509049.
4882 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4884         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
4885         Check if the thread was interrupted and proccess it straight away.
4886         Makes abortion much more responsive.
4888 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4890         * threads.c (mono_thread_execute_interruption): Use atomic cas with
4891         MonoThread::interruption_requested to match it's counterpart.
4893         Fixes a hang in abort-stress-1 on a 2 core x86.
4895         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4896         Fix warning.
4898 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4900         Change MonoImage::name_cache to be protected by the image lock
4901         instead of the loader lock.
4903         * appdomain.c (deregister_reflection_info_roots): Protect access
4904         to name_cache.
4906         * class.c (mono_image_init_name_cache): Change from the loader lock
4907         to the image lock. Check if the cache wasn't already created.
4909         * class.c: Change from the loader to the image lock.
4911         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
4912         the code to hold the image lock while iterating over name_cache and
4913         not go into mono_array_new holding it.
4915         * metadata-internals.h: Add a comment about this change.
4917 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4919         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4920         Under the 2.0 profile raise the loader error.
4922         Fixes #508532.
4924 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4926         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
4927         of ldind opcode for generic instances so we don't fail for direct wrappers.
4928         This only affect direct calls.
4930 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4932         * reflection.c (create_dynamic_mono_image): Fix warnings.
4934         * generic-sharing.c (other_info_equal): Ditto.
4935         
4936 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4938         * metadata-verify.c: Implement field signature check.
4940 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4942         * metadata-verify.c: Implement standalone signature check.
4944 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
4946         * metadata-verify.c: Implement methodref signature check.
4948 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
4950         * object-internals.h (MonoRuntimeCallbacks): New structure containing
4951         callbacks supplied by the runtime.
4953         * object.c (mono_install_callbacks): New internal function to install
4954         the callbacks.
4956         * object.c (mono_create_ftnptr): Move the implementation of this to
4957         mini/.
4959         * object.c (mono_get_addr_from_ftnptr): Ditto.  
4961 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4963         * metadata-verify.c (parse_return_type): Proper byref check.
4964         * metadata-verify.c (is_valid_method_signature): Check for zero arity
4965         generic signatures and method params.
4967 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4969         * metadata-verify.c (decode_signature_header): Fix bounds check.
4971         * metadata-verify.c (parse_custom_mods): Check custom mods.
4973         * metadata-verify.c (parse_type): Do initial basic verification
4974         of valid values.
4975         
4976         * metadata-verify.c (is_valid_method_signature): Parse the generic
4977         param count.
4979 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
4981         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
4982         discarded based on their most specific definition so we set the method_slots
4983         array before checking if the method is acceptable or not.
4985         Fixes #506757.
4987 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4989         * icall.c: Free the old array when resizing a mono_ptr_array.
4991 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4993         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
4994         for the hashes whose keys are managed objects.
4996 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4998         * object-internals.h, threads.c: Set the execution context on
4999         thread start here, not in corlib.
5001         * appdomain.c: Bump corlib version.
5003 2009-05-27  Martin Baulig  <martin@ximian.com>
5005         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5006         if `_mono_debug_using_mono_debugger' is set to make things work
5007         properly when embedding Mono.
5009 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5011         * class.c (mono_class_setup_fields): Don't mark simd types as having
5012         16 bytes alignment as the whole runtime doesn't support.
5014 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5016         * metadata-verify.c (safe_read): Use endian safe read macros.
5018 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5020         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5021         it is read-only when using full aot.
5023 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5025         * metadata-verify.c (is_valid_method_signature): Verify parts
5026         of the return type. Provide an error message in case of failure.
5028 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5030         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5032 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5034         * metadata-verify.c: Include the size prefix in the bounds check.
5036 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5038         * icall.c: Remove warnings.
5040         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5041         prevent auto-detection based on GCC defines.
5043         Add PS3
5045         * metadata-verify.c: Do not include signal.h
5047         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5048         messages.  Not sure why the g_assert_not_reached is not enough to
5049         quiet the compiler.
5050         
5052         * appdomain.c: Remove code that is not used when
5053         DISABLE_SHADOW_COPY is set.
5055         * image.c: use g_getenv
5057 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5059         * reflection.c: Remove code that it not used with
5060         DISABLE_REFLECTION_EMIT is defined.
5062 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5064         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5065         invoke wrappers.
5067 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5069         * socket-io.c
5070         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5071         the ifdef here and instead put that on io-layer
5073 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5075         * metadata-verify.c: Verify the generic param constraint table.
5077 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5079         * metadata-verify.c (verify_generic_param_table): Fix
5080         thinko on the valid flags bits for generic params.
5082 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5084         * metadata-verify.c: Verify the methodspec table.
5086 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5088         * metadata-verify.c: Verify the generic param table.
5090 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5092         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5094 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5096         * sgen-gc.c: Use generation enum more consistently and use the
5097         correct generation in mono_gc_register_for_finalization().
5099 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5101         * metadata-verify.c: Verify the nested class table.
5103 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5105         * metadata-verify.c: Verify the manifest resource table.
5107 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5109         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5111 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5113         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5114         wrappers, this is now done in the JIT.
5115         
5116         * class.c (mono_set_generic_sharing_supported): New internal function.
5117         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5119 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5121         * metadata-verify.c: Verify the exported type table.
5123 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5125         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5127 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5129         * metadata-verify.c: Verify the file table.
5131 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5133         * metadata-verify.c (verify_assembly_table): Fix an error message.
5135         * metadata-verify.c: Verify the assemblyref table.
5137 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5139         * metadata-verify.c (verify_assembly_table): Fix the valid
5140         bits mask for flags.
5142 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5144         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5145         generic methods as well.
5147 2009-05-15  Geoff Norton  <gnorton@novell.com>
5149         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5150         use-case and is significantly more performant than the wapi layer.
5152 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5154         * metadata-verify.c: Verify the assembly table.
5156 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5158         * metadata-verify.c: Fix rows limit check.
5160 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5162         * metadata-verify.c: Verify the fieldrva table.
5164 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5166         * sgen.c: Speed up weak links and finalizers by grouping them by
5167         generation.
5169 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5171         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5172         free the old GCHandle (only applies to SGen).
5174 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5176         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5177         mono_metadata_load_generic_params () for non-generic methods.
5179 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5181         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5182         New function for returning a monitor's weak link if it has one.
5184         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5185         one) when clearing a domain.  These can still be around because
5186         the object might not have been collected.
5188 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5190         * gc.c: Fix a warning.
5192 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5194         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5195         prevous wait that resulted in a deadlock on Windows when initializing
5196         the runtime form DllMain. Also results in improved startup time.
5197         (finalizer_thread): Get rid of thread_started_event.
5198         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5199         resulting MonoThread.
5201         Contributed under MIT/X11 license.
5203 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5205         * metadata-verify.c: Verify the implmap table.
5206         Don't require that #US and #Strings be present.
5208 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5210         * security-core-clr.c: Delegate checks are done at creation time,
5211         not a invocation time. Fix exception for Telerik Silverlight demo
5213 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5215         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5216         case for the Thread class.
5218         * threads.c: Do clean-up of abort exception/state in
5219         thread_cleanup() instead of Thread.free_internal().  Also clean up
5220         current_appcontext.  The reason we have to do that is because
5221         those references might point into another domain and if that
5222         domain is unloaded before the thread is finalized, they point to
5223         invalid data.
5225 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5227         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5228         stub signatures.
5229         
5230         Contributed unter MIT/X11 license.
5232 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5234         * verify.c, metadata-verifier.c: Add support for disabling the
5235         verifier in some builds.
5237         [ Sorry, my previous commit accidentally commited some work in
5238         progress ]
5240 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5242         * class.c (mono_class_setup_fields): Set class->field.first for
5243         generic instances.
5245 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5247         * metadata-verify.c: Verify the typespec table.
5249 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5251         * metadata-verify.c: Verify the module table.
5253 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5255         * metadata-verify.c: Verify the methodimpl table.
5257 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5259         * metadata-verify.c: Verify the property table.
5261 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5263         * debug-helpers.c (mono_method_desc_match): Add support for generic
5264         glob patterns.
5266 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5268         * metadata-verify.c: Verify the propertymap table.
5270 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5272         * metadata-verify.c: Verify the event table.
5274         * metadata-verify.c (search_sorted_table): Fix offset
5275         calculation.
5277 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5279         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5281 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5283         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5284         because mono_delegate_free_ftnptr() needs it.
5286 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5288         * metadata-verify.c: Verify the eventmap table.
5290 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5292         * metadata-verify.c: Verify the standalonesig table.
5294 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5296         * metadata-verify.c: Verify the field layout table.
5298 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5300         * class.c (mono_type_get_name_recurse): Don't crash
5301         for ownerless generic params.
5303         * debug-helpers.c (mono_type_get_desc): Correct the format
5304         for ownerless generic params.
5306 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5308         * metadata-verify.c: Verify the class layout table.
5310 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5312         * metadata-verify.c: Verify the decl security table.
5314 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5316         * domain.c (mono_domain_set_internal_with_options): Don't do
5317         anything if the old domain is the same as the old one.  Fixes
5318         #499326.
5320 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5322         * appdomain.c: Deregister the reflection_info roots when unloading
5323         a domain.
5325         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5326         memory allocated by a domain and frees its disappearing links.
5328         * boehm-gc.c, null-gc.c: Empty implementation of
5329         mono_gc_clear_domain().
5331 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5333         * appdomain.c (clear_cached_vtable): Free the static fields memory
5334         block.
5336 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5338         * gc.c: Set the correct domain when invoking finalizers.
5340         * appdomain.c: Set the correct domain when creating threads.
5342 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5344         * sgen-gc.c: Fix skip size for vectors.
5346 2009-05-03  Martin Baulig  <martin@ximian.com>
5348         * mono-debug-debugger.c
5349         (mono_debugger_check_breakpoints): Check class init handlers even
5350         if we don't have any method load handers.
5352 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5354         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5355         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5357 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5359         * metadata-verify.c: Verify the field marshal table.
5361 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5363         * metadata-verify.c: Verify the custom attribute table.
5365 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5367         * metadata-verify.c: Verify the constant table.
5369 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5371         * metadata-verify.c: Verify the memberef table.
5373 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5375         * metadata-verify.c (get_coded_index_token): Remove
5376         dead argument.
5378 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5380         * metadata-verify.c: Verify the interfaceimpl table.
5382 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5384         * verify.c: Improve error message.
5386         * debug-helpers.c (mono_type_get_desc): Harden the code that
5387         deals with VAR and MVAR.
5389 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5391         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5392         part of #498692.
5394 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5396         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5397         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5399 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5401         * security-core-clr.c: Avoid redundant checks for platform code, 
5402         e.g. check for method and for class (very common) and check
5403         for class and outer class (less common)...
5405 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5407         * reflection.c: Avoid returning random cattrs for synthetic methods.
5408         Fixes #498545.
5410 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5412         * assembly.c: assemblies in the GAC should never be shadow-copied.
5414 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5416         * domain.c, domain-internals.h: Disable
5417         track_resurrection_{objects,handles}_hash in MonoDomain if using
5418         SGen.
5420 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5422         * metadata-verify.c: Verify the param table.
5424 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5426         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5427         MethodList.
5429         * metadata-verify.c (verify_method_table): Proper check the ParamList
5430         field.
5432 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5434         * metadata-verify.c (verify_method_table): Check for runtime
5435         implemented functions such as delegate .ctors. Remove spurious
5436         printf.
5437         
5438 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5440         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5442 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5444         Don't allocate MonoGenericInfo for ownerless generic params.
5445         * class-internals.h (MonoGenericParam::info): Move field to ...
5446         (MonoGenericParamFull): ... this.  New struct.
5447         (MonoGenericContainer::type_params): Change type to
5448         MonoGenericParamFull.
5449         (MonoGenericParam, MonoGenericContainer): Update accessors.
5450         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5451         'info' field for ownerless generic param.
5452         (mono_metadata_load_generic_params): Update to changes.
5453         * reflection.c (mono_reflection_create_generic_class): Likewise.
5454         (reflection_methodbuilder_to_mono_method): Likewise.
5455         (mono_reflection_initialize_generic_parameter): Likewise.
5457 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5459         Don't use MonoGenericParamInfo for ownerless generic params.
5460         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5461         use ParamInfo class at all.
5462         (mono_class_from_generic_parameter): Use them.
5463         (make_generic_param_class): Fix a couple of instances where 'pinfo
5464         == NULL' wasn't handle.
5466 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5468         * class.c (make_generic_param_class): Carve out of ...
5469         (mono_class_from_generic_parameter): ... here.
5471 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5473         Simplify mono_class_from_generic_parameter
5474         * class-internals.h (MonoGenericParamInfo::token): New field.
5475         * metadata.c (mono_metadata_load_generic_params): Initialize it
5476         from metadata.
5477         * class.c (mono_class_from_generic_parameter): Use it instead of
5478         searching through metadata.
5480 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5482         * metadata-verify.c: Add verification of the method table.
5484 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5486         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5487         Delegate::Invoke optimization.
5489 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5491         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5492         string returned by get_shadow_assembly_location_base.
5494         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5495         about caller's ownership.
5497 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5499         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5500         reflection memory on domain unload.
5502         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5503         reflection cleanup code do it.
5505         * domain-internals.h: Add mono_reflection_cleanup_domain.
5507         This fixes a memory leak for managed mirrors of reflection objects
5508         on domain unload. 
5510 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5512         * metadata-verify.c: Implement more verification of the field table.
5514 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5516         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5517         doesn't try to parse the input assembly, which can be broken.
5519 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5521         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5522         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5523         by using the lowest bit in the link to store whether the link is
5524         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5526 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5528         * Makefile.am: Split the console support in platform specific code
5529         and put together a framework for making this easy in the future so
5530         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5532 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5534         * pedump.c: Fix a warning.
5536 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5538         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5539         mono_class_from_mono_type to avoid bad interactions with the dual representation
5540         of the generic type definition.
5542 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5544         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5545         get the MonoClass for the call context type as it might be a generic
5546         instance.
5548         Fixes #491483.
5550 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5552         * object-internals.h: The Thread object has no execution_context
5553         member anymore.
5555         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5556         the execution context.
5558         * appdomain.c: Bump corlib version.
5560 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5562         * verify.c (do_newobj): Improve error message.
5564 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5566         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5567         is nested in the filter block.
5569         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5570         block is not fully nested.
5572         Fixes #495656.
5574 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5576         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5577         not MonoType to check for equality of valuetypes as the generic type
5578         definition allows for two different encodings: the generic type definition
5579         class or a generic instance over the GTD arguments.
5581         Fixes #496175.
5583 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5585         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5587         * verify.c (do_initobj): Improve error message.
5589 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5591         * metadata-verify.c: Enable pe verification as the issue with #496453
5592         is that the authenticode data directory have a different unspecified
5593         format. Ignore it for now.
5595         * pedump.c: Run the metadata verifier together with the IL verifier.
5597         Fixes ##496453.
5599 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5601         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5603 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5605         * class.c (can_access_type): Check visibility against
5606         the element type for pointers and arrays.
5608         Fixes #496150.
5610 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5612         * metadata-verify.c: Fix cli and table verification to use information
5613         from the MonoImage. A lot of duplicated code got killed.
5615 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5618         This patch starts to integrate the metadata verifier with the runtime code.
5620         This patch causes major regression in functionality for the metadata verifier
5621         as cli and table verification are disabled since they require to be ported to
5622         use MonoImage information.
5624         * image.c (do_mono_image_load): Split the code in this function
5625         into mono_image_load_pe_data and mono_image_load_cli_data.
5626         Add     care_about_pecoff parameter to not load pecoff data.
5627         Call into the metadata verifier for pecoff and cli verification.
5629         * image.c (mono_image_open_raw): New function that doesn't perform
5630         any parsing of the image contents.
5631         
5632         The reason for the 3 new functions is to give pedump better control
5633         into the interaction with the verifier.
5635         * metadata-internals.h: Add new functions from image.c as part of the
5636         internal mono API.
5638         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5639         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5640         to make those functions work together with the runtime.
5642         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5643         true if the image needs to be verified.
5645         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5647         * pedump.c: Use new metadata verifier API.
5649 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5651         * object.c (mono_install_vtable_trampoline): Make this receive a
5652         trampoline creation function instead of trampoline, allowing the JIT
5653         to use a different trampoline for each vtable.
5655 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5657         * object.c (mono_raise_exception): Don't reset the thread abort
5658         exception state here.
5660 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5662         * icall-def.h: New icall for getting the thread abort exception
5663         state for a thread.
5665         * object.c, thread.c, object-internals.h: A thread's abort
5666         exception state is now a GC handle.  To get the object it stands
5667         for, we must move it into the current app domain, if it's
5668         different than the one where it originated from.
5670         * appdomain.c: Bump corlib version.
5672         * domain.c, domain-internals.h: New function for setting the
5673         domain and migrate the thread abort exception or not.
5675 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5677         * metadata-verify.c: Add initial verification of the
5678         field table.
5680 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5682         * metadata-verify.c: Add a macro to conditionally enable
5683         dumping of verification information. Add  make_coded_token
5684         and search_sorted_table to enable search sorted tables
5685         by a given coded token.
5687 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5689         * metadata-verify.c: Add array mapping from table index
5690         to description offset. Add get_col_offset and get_col_size
5691         functions.
5693 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5695         * metadata-verify.c: Add remaining table descriptions offsets.
5696         Add remaining coded index descriptions.
5698 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5700         * metadata-verify.c: Fixed constant table description.
5701         Fixed calculation of HasCustomAttribute coded index size.
5702         Fixed calculation of size for many table indexes. 
5704 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5706         * pedump.c (dump_metadata): Dump table offset instead
5707         of useless pointer in memory.
5709 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5711         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
5713 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5715         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
5716         a missing of for interface types.
5718 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5720         * metadata-verify.c (verify_pe_optional_header): Add comment of why
5721         the code is commented.
5723         * metadata-verify.c (verify_resources_table): Remove spurious printf
5724         and don't fail if there are unmanaged resources. Gmcs generates a useless
5725         one     for all assemblies - I bet it's some MS compatibility junk.
5727 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5729         * metadata-verify.c (verify_typedef_table): Verify the extends field.
5731         * metadata-verify.c (mono_image_verify): Add a is_corlib.
5733         * verify-internals.h: Same.
5735         * pedump.c: Fix for mono_image_verify new signature.
5737 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5739         * metadata-verify.c (verify_typedef_table): Verify for some invalid
5740         flags combinations.
5742 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5744         * metadata-verify.c (verify_module_table): Ignore the generation field.
5746 2009-04-15  Martin Baulig  <martin@ximian.com>
5748         * debug-mono-symfile.c
5749         (mono_debug_symfile_lookup_location): Don't print a warning for
5750         unknown extended opcodes if they're within 0x40 and 0x7f.
5752 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
5754         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
5755         invoke signatures returning an enum. Fixes #494847.
5757 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5759         * metadata-verify.c: Initial code to verify the typedef table.
5761 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5763         * verify.c (mono_method_verify): Don't fail if an unconditional branch
5764         with non empty stack happens before the beginning of a try block.
5766         Fixes #494812.
5768 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5770         * metadata-verify.c: Verify typename and typenamespace fields of
5771         the typeref table.
5773 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5775         * metadata-verify.c: Initial code to verify the typeref table.
5777 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5779         * verify.c (verify_delegate_compatibility): Fix error message.
5781 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5783         * security-core-clr.c: Fix typo
5785 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5787         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
5788         a MonoGHashTable to keep its values alive.
5789         (emit_marshal_boolean): Fix a warning.
5791 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5793         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
5794         not have any interface configured for IPv4/IPv6.
5796 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5798         * assembly.c: fix typo in error message.
5800 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5802         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
5803         allocating the location holding the this argument to prevent
5804         'too many root sets' errors.
5806         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
5807         to mark fields as special static.
5808         (mono_field_static_get_value): Handle special static fields.
5809         (mono_field_static_set_value): Ditto.
5811         * class-internals.h (struct _MonoClassField): Document this.
5813 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5815         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
5816           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
5817           case.  This will handle when managed code returns null to native code.
5819         Code is contributed under MIT/X11 license.
5821 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5823         * object.c (build_imt_slots): Changing a free to a g_free to match
5824           the g_malloc0 in add_imt_builder_entry that allocated this memory.
5826         Code is contributed under MIT/X11 license.
5828 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5830         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5831           the correct TRUE value is passed through the marshaling layer.
5833         Code is contributed under MIT/X11 license.
5835 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5837         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5838         correctly. Fixes #492330.
5839         
5840         * marshal.c: Fix the embedding of object pointers into JITted code in
5841         the native-to-managed wrappers by allocating some GC tracked memory, and
5842         embedding the address of that.
5844 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5846         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
5847         pointers into the vtable.
5849 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
5851         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
5853         * verify.c (verify_ldftn_delegate): Improve error message.
5855 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5857         * reflection.c (my_mono_class_from_mono_type): Remove.
5859 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5861         Prepare to reduce memory usage of owner-less generic parameters (1/n)
5862         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
5863         and constraints fields into ...
5864         (MonoGenericParamInfo): ... this.
5865         (mono_generic_param_info, mono_generic_container_get_param_info):
5866         New accessors.
5867         * class.c, debug-helpers.c, icall.c: Update to changes.
5868         * metadata.c, reflection.c, verify.c: Likewise.
5870 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
5872         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
5874         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
5875         
5876         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
5877         booleans with sbytes.
5879 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5881         * class.c (can_access_instantiation): Verify accesibility of element types
5882         for arrays and pointers.
5884         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
5886         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
5888         Fixes #493068.
5890 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5892         * verify.c (do_invoke_method): Improve error messages.
5894 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5896         * verify.c:  Fixing the MSVC build.
5898         Code is contributed under MIT/X11 license.
5900 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
5902         * security-core-clr.c: Simplify get_reflection_caller not to call
5903         mono_method_get_last_managed (another stack walk) and adjust the
5904         callers to handle a (should not happen) NULL return value.
5906 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5908         Add accessors to some MonoGenericParam fields
5909         * class-internals.h (mono_generic_param_owner): New accessor.
5910         (mono_generic_param_num): Likewise.
5911         (mono_type_get_generic_param_owner): New helper.
5912         (mono_type_get_generic_param_num): New helper.
5913         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
5915 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5917         * class-internals.h (mono_generic_container_get_param): New wrapper.
5918         * class.c, icall.c, metadata.c, verify.c: Use it.
5920 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5922         Fix gtest-252.cs
5923         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
5924         the standard case/loop.  In particular, don't complain about
5925         references to generic type definitions.
5927 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
5929         * debug-helpers.c (dis_one): Decode string arguments.
5931 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5933         * pedump.c (dump_verify_info): Dump type name correctly.
5935 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5937         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
5938         are larger than code size.
5940         This can happen in valid code if the try/catch block is not followed by any instruction
5941         and do a backward branch on the leave instruction.
5943         Fixes #492494.
5945 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
5947         * security-core-clr.c: Fix typo while comparing second method names
5948         in can_avoid_corlib_reflection_delegate_optimization
5950 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5952         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
5954         Fixes #487738.
5956 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5958         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
5959         a MVAR using a class context.
5961         Fixes #490335.
5963 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
5965         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
5967         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
5969         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
5970         functions supplied by the JIT for the SGEN GC.
5972         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
5973         
5974 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5976         monitor.c (mono_monitor_try_enter_internal):
5977         Added calls to profile monitor contentions.
5978         Also duplicated a small piece of code (the "get the monitor" logic)
5979         from the fast path to the slow path, and changed the relevant goto
5980         statements, so that monitor acquisition events can be emitted from the
5981         slow path (this is by Paolo Molaro).
5983 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5985         * profiler.c, profiler.h, profiler-private.h:
5986         Added support for profiling monitor contentions.
5988 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
5990         * metadata-verify.c: Verify the modules table.
5992 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
5994         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
5995         using the context of the method been verifier and not of the method been called.
5997         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
5998         safely inflate generic types. 
6000 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6002         * security-core-clr.c: Change the strategy for checking the 
6003         "reflection using delegates optimization" to avoid unneeded 
6004         attributes in multiple class libraries.
6006 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6008         * sgen-gc.c: Remove object element in the disappearing link struct
6009         by storing the object pointer in the link.
6011 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6013         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6015 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6017         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6019         * verify.c (mono_method_verify): Do proper bounds checking of exception
6020         clause ranges.
6022 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6024         * loader.c (mono_field_from_token): Don't crash if the field parent could
6025         not be decoded.
6027 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6029         * sgen-gc.c: Execute critical finalizers after ordinary
6030         finalizers.
6032         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6033         mono_defaults.
6035 2009-03-31 Jb Evain <jbevain@novell.com>
6037         * verify.c (do_ldstr): don't check if a string is in the user strings
6038         heap if the current image is dynamic.
6040 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6042         * sgen-gc.c: Wait until the last finalizer has executed when
6043         returning from WaitForPendingFinalizers.
6045 2009-03-31  Martin Baulig  <martin@ximian.com>
6047         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6048         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6049         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6050         (mono_debugger_event_create_appdomain): New function.
6051         (mono_debugger_event_unload_appdomain): New function.
6053         * appdomain.c (mono_domain_create_appdomain_internal): Call
6054         mono_debugger_event_create_appdomain().
6056 2009-03-31  Martin Baulig  <martin@ximian.com>
6058         * mono-debug-debugger.c
6059         (mono_debugger_register_class_init_callback): Also register the
6060         class init callback if the class is already initialized to make
6061         things work with shadow copied assemblies.
6063 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6065         * security-core-clr.c
6066         (mono_security_core_clr_ensure_reflection_access_field): Let 
6067         critical code access the field (just like we do for methods). Use
6068         check_field_access helper.
6069         (mono_security_core_clr_ensure_reflection_access_method): Use 
6070         check_field_access helper.
6072 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6074         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6075         call the run-finalize function directly.
6077         * gc.c, gc-internal.h: Make run_finalize() non-static.
6079 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6081         * sgen-gc.c: Use a separate struct for disappearing links.
6083 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6085         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6086         * MaxIOVectorLength enabled, just ignore them.
6087         Fixes bug #349688.
6089 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6091         * metadata-verify.c: Fix eglib build.
6093 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6095         * threads-types.h: Fix the win32 build.
6097 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6099         * class.c: move coreclr inheritance/override checks to 
6100         security-core.clr.c
6101         * security-core.clr.c|h: add code from class.c with additional
6102         documentation. Fix override check when the method is not critical.
6104 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6106         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6107         (match_class): Ditto.
6109 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6111         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6113         * metadata-verify.c: Implement table layout row size calculation. Verify
6114         the total size of the tables.
6116 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6118         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6120 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6122         * appdomain.c:
6123         * console-io.[ch]: added new mono_console_init() to make sure that
6124         file descriptors 0, 1 and 2 are opened.
6125         Bug #489019 fixed.
6127 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6129         * appdomain.h: Export a new callback type and a new function to
6130         set this callback. This allow a mono host to provide it's own
6131         definition for "platform code".
6132         * metadata-internals.h: Add a core_clr_platform_code flag on 
6133         _MonoImage to (cache and) know if it is representing platform 
6134         code.
6135         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6136         on platform code images.
6137         * security-core-clr.c|h 
6138         (mono_security_set_core_clr_platform_callback): Allow the host
6139         to provide it's own platform check definition.
6140         (mono_security_core_clr_determine_platform_image): Detect if an 
6141         image is platform code (using the specified callback).
6142         (mono_security_core_clr_is_platform_image): Return cached value 
6143         for platform code.
6145 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6147         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6148         which has different parameter types for the 'tid' argument in windows and
6149         the io-layer.
6151         * appdomain.c attach.c threads.c: Use the new helper.
6153 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6155         * metadata-verify.c: Verify valid table bits.
6157 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6159         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6161         * metadata-verify.c: Add initial table schema verification.
6163 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6165         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6166         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6167         #488383.
6169         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6171         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6173 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6175         * security-core-clr.c: Add/update documentation
6177 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6179         * marshal.c (emit_marshal_object): Generate code to throw an exception
6180         instead of throwing it. Fixes #488670.
6182 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6184         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6185         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6186         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6187         and add a call to mono_security_core_clr_ensure_delegate_creation
6188         to do the extra checks required by CoreCLR.
6189         * security-core-clr.c|h: Add function to check delegate creation,
6190         both in the binding and accessibility, under CoreCLR.
6192 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6194         * reflection.c (mono_reflection_create_dynamic_method): when 
6195         coreclr is enabled make sure that every resolved object are
6196         checked (e.g. field and method access).
6197         * security-core-clr.c|h: Add function to check objects resolved
6198         when a dynamic method is created.
6200 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6202         * metadata-verify.c: Cache directory rva translations.
6204         * metadata-verify.c: Add cli-header and streams verification.
6206 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6208         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6209         the wrong offset (8 instead of 6).
6211 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6213         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6214         methods, return the native function address itself. Fixes
6215         #487758.
6217 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6219         * console-io.c: some of the values for control characters might not be
6220         present.
6222 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6224         * exception.c|h: Add helpers to create [Field|Method]AccessException
6225         * icall.c: Add required coreclr check calls for field reflection.
6226         Move the existing (method) check logic into security-core-clr.c
6227         * security-core-clr.c: Add functions to check if the access of a
6228         field or method is allowed when reflecting under coreclr. This is
6229         mostly done using a stack walk to find the "real" caller: i.e. the
6230         code that is calling the reflection
6232 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6234         * gc-internal.h: Change location of gc_wrapper.h
6236 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6238         * class.c: Simplification to coreclr checks for overrides that
6239         makes it easier to set breakpoints.
6241 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6243         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6244         mono_security_core_clr_method_level): Avoid potential 
6245         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6246         user/application code) and make it easier to set breakpoints
6248 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6250         * metadata-verify.c: Reject cli header tables that mono don't handle.
6252 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6254         * pedump.c: Fix CLI header dumping.
6256 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6258         * metadata-verify.c: More CLI header verification.
6260 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6262         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6264 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6266         * metadata-verify.c: Initial verification of the CLI header.
6268 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6270         * metadata-verify.c (verify_resources_table): Fix verification of zero
6271         sized resource section and id entries count.
6273 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6275         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6277 2009-03-17  Jb Evain  <jbevain@novell.com>
6279         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6281 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6283         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6284         (mono_gc_make_descr_for_array): Ditto.
6286 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6288         * verify.c (mono_verifier_is_class_full_trust): Add support for
6289         CoreCLR security mode where trusted assemblies are defined as
6290         "platform code".
6292 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6294         * metadata-verify.c: Add minimal PECOFF resource verification.
6296 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6298         * metadata-verify.c: Be less restrictive with some coff fields.
6300 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6302         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6303         params as boxed values on stack. Fixes #485706.
6305 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6307         * console-io.c: the termios values may vary in different flavors of unix.
6309 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6311         * console-io.[ch]: return the entire set of control characters when
6312         initializing the terminal.
6313         * appdomain.c: bump corlib version.
6315 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6317         * mono-perfcounters.c: added support for in-process custom
6318         performance counters.
6320 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6322         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6324 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6326         * metadata-verify.c: Verify the data pointed by the import table. 
6328 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6330         * metadata-verify.c (load_data_directories): Store data
6331         directory contents.
6333         * metadata-verify.c: Verify the import table. 
6335 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6337         * metadata-verify.c: Verify data directories.
6339 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6341         * metadata-verify.c: Check section header flags.
6343 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6345         * appdomain.c: if the assembly name is a shadow-copied file, return
6346         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6347         in mono_make_shadow_copy.
6348         * icall.c: if the assembly name is a shadow-copied file, replace it
6349         with the original assembly path.
6351         Bug #484244 fixed. NUnit tests for corlib can be run without
6352         --noshadow now.
6354 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6356         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6357         entries when the table is reallocated.
6359         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6360         mono_gc_alloc_fixed () since it contains GC refs.
6362 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6364         * reflection.c (ensure_complete_type): New helper function to call
6365         type resolve handlers for unfinished dynamic types.
6366         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6368 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6370         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6371         #483247.
6373 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6375         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6377 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6379         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6380         between GCHandles of type WeakTrackResurrection and the objects they
6381         point to.
6383         * gc.c: Partly implement the sematics of GCHandles of type 
6384         WeakTrackResurrection: these handles should only be cleared after the
6385         finalizer of the object they are pointing to has ran.
6387 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6389         * icall.c: Partially revert r126631 because using the jump
6390         trampolines for generic shared methods makes it superfluous.
6392 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6394         * threads.c (handle_store): Create the 'threads' hash table with the proper
6395         MONO_HASH_VALUE_GC type.
6397 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6399         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6400         FIRST_GC_TRACKED.
6402         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6403         and LAST_GC_TRACKED as a GC root.
6405         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6407         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6408         the static data even if it consists of 1 reference.
6410         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6411         if there is a GC descriptor.
6413         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6414         instead of through the GC since they contain no object references.
6416 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6418         * generic-sharing.c (instantiate_other_info): Always return a jump
6419         trampoline for method code.
6421 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6423         * culture-info-tables.h: generated to include the en-tt culture.
6425 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6427         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6428         capture the thread context.
6430         * object.c (mono_async_result_new): Cache the invoke wrappers to
6431         ExecutionContext::Capture.
6433 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6435         * marshal.h: Add a prototype for what mono_compile_method returns
6436         for invoke wrappers.
6438         * gc.c: Use the new prototype declaration.
6440 2009-03-04  Geoff Norton  <gnorton@novell.com>
6442         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6443         * gc-internal.h:
6444         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6446 2009-03-04  Martin Baulig  <martin@ximian.com>
6448         * mono-debug.h
6449         (mono_debugger_runtime_invoke): Removed.
6451         * mono-debug-debugger.c
6452         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6454 2009-03-02  Martin Baulig  <martin@ximian.com>
6456         * mono-debug.h
6457         (mono_debugger_unhandled_exception): Removed.
6458         (mono_debugger_handle_exception): Removed.
6459         (mono_debugger_throw_exception): Removed.
6461         * mono-debug.c
6462         (mono_debug_debugger_version): Bump to 5.
6464         * mono-debug-debugger.c: Moved the exception handling code to
6465         ../mini/debug-mini.c
6467 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6469         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6470         finalize_objects_hash.
6472         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6473         
6474         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6475         field.
6477         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6478         cache.
6480         * image.c (mono_image_close): Free it.
6481         
6482         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6483         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6484         on the this argument.
6486         * gc.c (run_finalize): Optimize the calling of the finalizers.
6488 2009-03-03  Martin Baulig  <martin@ximian.com>
6490         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6491         of the `MonoGenericInst' changes.
6493 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6495         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6496         mono_array_class_get_cached to reduce locking contention. Extract
6497         a domain var.
6499         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6500         intermediary managed arrays. Use caching version of mono_array_new
6501         to allocate the result array.
6503         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6505         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6507         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6508         to reduce locking contention.
6510 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6511                 
6512         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6513         thunk builder code for the non-interface case.
6515 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6517         * object.c (get_generic_virtual_entries): New helper function to collect
6518         the virtual generic method instances which need to be added to an IMT
6519         thunk.
6520         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6521         Instead of creating a new IMT thunk, reset the vtable slot to the
6522         trampoline, the thunk will be created the next time the trampoline is called.
6523         (build_imt_slots): Add support for virtual generic methods in interfaces by
6524         adding to the IMT thunk all the methods registered using 
6525         mono_method_add_generic_virtual_invocation ().
6527         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6528         (struct _MonoIMTCheckItem): Ditto.
6530         * object.c (mono_method_add_generic_virtual_invocation): Take a
6531         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6532         the IMT thunk to include all items.
6533         
6534         * object.c (mono_class_create_runtime_vtable): Add a missing
6535         mono_loader_unlock ().
6537 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6539         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6541         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6543 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6545         * object-internals.h: Rename _MonoReflectionEvent to
6546         MonoReflectionMonoEvent so it reflects the right managed type.
6547         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6549         * icall.c:
6550         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6551         type.
6553 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6555         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6556         intermediary managed arrays. Use caching version of mono_array_new
6557         to allocate the result array.
6559 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6561         * reflection.c: Use cached version of mono_array_new alongside
6562         the mono_reflection_get_custom_attrs_by_type call path.
6564 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6566         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6567         intermediary managed arrays. Use caching version of mono_array_new
6568         to allocate the result array.
6570         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6572 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6574         * icall.c: Add small implementation of a growable stack bound array.
6576         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6578         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6579         intermediary managed arrays. Use caching version of mono_array_new
6580         to allocate the result array.
6582 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6584         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6585         helps Enum::CompareTo to be implemented without reboxing all enums
6586         to their underlying type.
6587 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6589         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6590         since it acquires a global lock leading to scalability problems.
6592         * profiler.c: Make the stat profiler work with multiple appdomains, this
6593         currently only works when no appdomains are unloaded.
6595 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6597         * appdomain.c: make the check to avoid copying when the assembly is
6598         already shadow copied actually work.
6600 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6602         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6604         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6605         changes to the managed side.
6607 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6609         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6610         classes + a separate lock for it, as it is used frequently at runtime, not
6611         just during metadata loading/JIT compilation.
6613         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6614         for szarrays.
6615         
6616         * object-internals.h (mono_class_from_name_cached): New macro to cache
6617         the results of the lookup locally without having to declare a static
6618         variable to hold it.
6619         (mono_class_get_field_from_name_cached): Ditto.
6620         (mono_array_class_get_cached): Ditto.
6622         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6623         the new macros.
6624         
6625         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6626         slower search in metadata.
6628         * pedump.c: Fix a warning.
6630 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6632         * reflection.c (encode_locals): Add checks for user types.
6633         (method_encode_clauses): Ditto.
6634         (method_encode_code): Ditto.
6635         (mono_image_create_token): Ditto.
6637         * object-internals.h: Change the type of more fields from MonoReflectionType*
6638         to MonoObject*.
6640 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6642         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6643         the a thread does not suspend within 100ms.
6645         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6646         in addition to StopRequested as well.
6648         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6650         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6651         search the method_hash before inserting a new entry, to avoid crashes when
6652         the same method is inserted multiple times, causing the old 
6653         MonoDebugMethodInfo structure to be freed by the value dtor function.
6655 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6657         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6658         SO_EXLUSIVEADDRUSE where available.
6660 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6662         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6663         runtime invoke wrappers, this time it is string ctor wrappers, which
6664         pass a dummy string as 'this' instead of their obj argument. Fixes
6665         #478473.
6667 2009-02-21  Jb Evain  <jbevain@novell.com>
6669         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6670         only get create_culture once.
6672 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6674         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6675         check before the locking.
6676         
6677         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6678         (mono_reflection_create_runtime_class): Ditto.
6679         (mono_reflection_sighelper_get_signature_local): Ditto.
6680         (mono_reflection_sighelper_get_signature_field): Ditto.
6682         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
6683         is a System.MonoType object or similar.
6684         (monotype_cast): New helper function to cast a MonoObject to a 
6685         MonoReflectionType object.
6687         * object-internals.h: Change MonoReflectionType* members in structures to
6688         MonoObject* members to force the usage of the monotype_cast () function.
6690         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
6691         structures/arrays. This causes us to assert instead of crashing when 
6692         instances of user defined subclasses of System.Type are encountered.
6694 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6696         * cil-coff.h:
6697         * icall-def.h:
6698         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
6699         win32 resource loaded from a PE file.
6701         * image.c: fix mono_image_lookup_resource.
6703 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6705         * icall-def.h:
6706         * threads-types.h:
6707         * threads.c: added internal call for WaitHandle.SignalAndWait.
6709 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
6711         * cominterop.c : Adding cominterop_type_from_handle and 
6712           registering it as an icall.  Replacing all references
6713           to type_from_handle.
6715         Code is contributed under MIT/X11 license.
6717 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6719         * Makefile.am: Add lock-tracer.h and lock-trace.c.
6721         * appdomain.c: Call the tracer init function.
6723         * domain-internals.h: Enable the tracer for the domain locks.
6725         * image.c: Enable the tracer for image locks.
6727         * loader.c: Enable the trace for the loader lock.
6729         * lock-tracer.h:
6730         * lock-tracer.c: Initial implementation of the lock trace utility.
6731         The tracer requires a compile time define to be enabled and a env var
6732         to be enabled at runtime.
6734 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6736         * domain.c (mono_domain_code_foreach): Improve documentation.
6738 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6740         * appdomain.c:
6741         * generic-sharing.c:
6742         * object.c:
6743         * reflection.c:  Adjust locking order to the new semantics where the loader lock
6744         comes first.
6746 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6748         * domain.c: Add mono_domain_code_* functions that perform locking
6749         around the domain codeman.
6751         * domain-internals.h: Export those functions.
6753         * object.c: Use new functions instead of acquiring the domain lock.
6755 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
6757         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
6758         delegate. Fixes #477396.
6760 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6762         * reflection.c (create_custom_attr): Get rid of alloca.
6764 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
6766         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
6767           Adding exception handling for all CCW calls.
6769         Code is contributed under MIT/X11 license.
6771 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6773         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
6775         * marshal.c (emit_marshal_boolean): Add null checks to the new 
6776         native->managed marshalling code. Fixes #476247.
6778 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6780         * class.c (mono_class_get_vtable_entry): Move the addition of
6781         static rgctx invoke wrappers for vtable methods here, this simplifies
6782         a lot of code and causes fewer rgctx wrappers to be created.
6784         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
6785         name of the statistics to begin with an uppercase.
6787 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6789         * reflection.c: Revert previous change as it breaks the build.
6790         
6791 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6793         * verify.c: Properly handle SZARRAY element type.
6795         Fixes #474271.
6797 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6799         * reflection.c (mono_image_create_method_token): Correctly encode
6800         MethodDef MemberRefParent token.
6802         Fixes #472845.
6804 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6806         * image.c (mono_image_close): Delete the critical section before
6807         freeing the memory holding it.
6809 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6811         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
6812         Fixes #476257.
6814 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6816         * pedump.c (main): Call mono_marshal_init so pedump
6817         doesn't crash.
6819 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6821         * loader.c (method_from_memberref): Properly fix #474271 and
6822         don't break the runtime bad.
6824 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6826         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
6827         (mono_domain_alloc0): Ditto.
6829 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6831         * loader.c (method_from_memberref): Don't abort if the array
6832         method is not found. A regular loader failure is more informative
6833         and correct.
6835         Fixes #474271.
6837 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6839         *loader.c: Guard MonoImage::method_cache/methodref_cache
6840         using the image lock instead of the loader lock.
6842         * metadata.h: Add comments about which fields are protected by
6843         the image lock.
6845 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6847         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
6849         * generic-sharing.c (mono_method_construct_object_context): Remove the
6850         wrapper_type == NONE assert, it is not needed.
6852 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6854         * reflection.c (clear_cached_object): New helper function.
6855         (mono_method_clear_object): New function to clear the cached reflection
6856         objects for a dynamic method.
6858         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
6859         Partly fixes # 463323.
6860         
6861 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6863         * class.c:
6864         * loader.c:
6865         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
6867 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6869         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
6870         take the image lock instead of the loader lock.
6872         * metadata-internals.h: Export new functions.
6874 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6876         * domain.c (app_config_parse): Remove another use of stat that is
6877         not necessary as g_file_get_contents already does the presence
6878         check. 
6880 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6882         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
6884         * marshal.c: Move the bstr handling code to cominterop.c.
6886         * marshal.c: Remove some COM interop code missed previously.
6888 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6890         More Paolo patches from the Wii port:
6891         
6892         * security.c: Remove ves_icall_System_Environment_get_UserName
6893         from here.
6895         * icall.c: And put ves_icall_System_Environment_get_UserName
6896         here. 
6898         * appdomain.c (mono_set_private_bin_path_from_config): Remove
6899         redundant call to stat that was only used to test for the file
6900         existence.   Patch from Paolo.
6902         * gc.c (run_finalize): If COM is disabled, do not link in
6903         mono_marshal_free_ccw.
6905         * generic-sharing.c: Use alloca.h here as well.
6907 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
6909         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
6911 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6913         * cominterop.c cominterop.h: New files.
6915         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
6916         function/typedefs which are needed by cominterop.c global.
6918 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6920         * generic-sharing.c: Don't take the loader lock to guard image
6921         mempool allocs.
6923 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6925         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
6926         called without the loader lock which is required to guard MonoImage:tokens.
6928 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6930         * class.c:
6931         * metadata.c:
6932         * method-builder.c:
6933         * marshal.c:
6934         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
6936 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6938         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6939         Rework the code to use regular mono_image_alloc/0.
6941         * loader.c: Rework the code to use regular mono_image_alloc/0.
6943         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6945 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
6947         * object-internals.h : Fixing a typo in the 
6948           MonoReflectionComVisibleAttribute struct.
6950         * marshal.c (cominterop_com_visible): Check the implemented 
6951           interfaces for ComImport.
6953         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
6954           assume that bools should be treated as VARIANTBOOLs.
6956         * marshal.c (emit_marshal_boolean): Adding cases for 
6957           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
6959         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
6960           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
6962         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
6963           should be treated as VARIANTBOOLs.    
6965         Code is contributed under MIT/X11 license.
6967 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6969         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
6970         allocation with the image lock.
6972 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6974         This patch is the last of a series to remove explicit reference of MonoImage::mempool
6975         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
6977         * object.c: Add mono_string_to_utf8_image.
6979         * object-internals.h: Export mono_string_to_utf8_image.
6981         * reflection.c: Rework all explicit references to the the image mempool to go thought
6982         the mono_image_alloc set of functions.
6984 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6986         This patch is the third of a series to remove explicit reference of MonoImage::mempool
6987         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
6988         and generics-sharing.c.
6990         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
6991         as first argument. Note that this function remains broken as it doesn't perform locking around the
6992         mempool allocation.
6994         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
6996         * image.c: Add g_slist_append_image.
6998         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
6999         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7001         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7002         Fix all related code to do the same.
7004         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7006         * metadata-internals.h: Fix the signatures.
7008 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7010         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7011         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7012         and similar to work using MonoImage.
7014         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7015         MonoMemPool.
7017         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7019         * class.c (mono_metadata_signature_deep_dup): Same.
7021         * class.c (inflate_generic_type): Same.
7023         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7025         * metadata.c (mono_metadata_signature_dup_full): Same.
7027         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7028         mono_metadata_signature_dup_full.
7030         * metadata.c (mono_metadata_type_dup): Same.
7032         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7034         * reflection.c: Same.
7036         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7038         * metadata-internals.h: Fix the signatures.
7040         * class-internals.h: Same.
7042 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7044         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7045         and use mono_image_alloc set of functions instead. 
7047         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7048         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7049         of a MonoMemPool.
7051         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7053         * class.c (g_list_prepend_mempool): Removed.
7055         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7057         * image.c: Add g_list_prepend_image.
7059         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7061         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7064 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7066         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7067         mono_image_unlock.
7069         * image.c (mono_image_init): Init the lock field.
7071         * image.c (mono_image_init): Cleanup the lock field.
7073         * image.c: Add mono_image_(un)lock functions.
7075 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7077         * class.c, class-internals.h: mono_method_get_context_general()
7078         combines the functionality of mono_method_get_context() and
7079         mini_method_get_context().
7081         * generic-sharing.c, domain-internals.h:
7082         mono_method_construct_object_context() and
7083         mono_domain_lookup_shared_generic() moved from mini.
7085         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7086         method doesn't have the correct instantiation because it's shared
7087         generic code.  Fixes #473999.
7089 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7091         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7093         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7094         
7095 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7097         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7099         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7101         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7102         and recheck the cache for dups after it.
7104         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7106         Fixes one of the deadlocks found in #473150.
7108 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7110         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7111           For Win32, add additional break conditions for accept.
7113         Code is contributed under MIT/X11 license.
7115 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7117         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7118         lazily initialize the native wrapper cache.
7119         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7120         cache, since they are different from the normal wrappers.
7122         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7124         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7125         AOT compiled native wrappers.
7127 2009-02-09  Geoff Norton  <gnorton@novell.com>
7129         * appdomain.h:
7130         * security-core-clr.c: Allow enabling core-clr from the embedding
7131         API.
7133 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7135         * socket-io.c: when requesting all the local ips, if there are no
7136         interfaces up and running, MS returns 127.0.0.1.
7138 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7140         * mono-perfcounters-def.h: processor time is an inverse time.
7141         Fixes bug #468625.
7143 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7145         * socket-io.c: an empty host name returns the list of local IPs.
7146         Fixes bug #386637 part 1/2.
7148 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7150         * verify.c (mono_class_interface_implements_interface): Call
7151         mono_class_setup_interfaces ().
7152         (merge_stacks): Ditto.
7154 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7156         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7157         klass->interfaces.
7158         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7159         (mono_generic_class_get_class): Ditto.
7161 2009-02-06  U-QUACK\miguel  <miguel@quack>
7163         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7164         they live in security.c
7166         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7167         another bit from Paolo's code.
7169 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7171         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7172         methods which will be discarded by add_imt_builder_entry ().
7174         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7175         need to be boxed.
7177         * loader.c: Add a statistics for the size of the memberref signature cache.
7178         
7179         * loader.c (find_cached_memberref_sig): New helper function.
7180         (cache_memberref_sig): Ditto.
7182         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7183         they will be parsed again for every generic instantiation, leading to unbounded
7184         memory growth.
7186 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7188         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7189         parameters of generic methods.
7191         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7192         after the original method is copied to the inflated method.
7193         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7195         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7196         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7198         * class.c metadata.c: Update after the changes above.
7200 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7202         * metadata-verify.c: Simplified error handling and added
7203         section table validation.
7205 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7207         * class-internals.h (MonoClassExt): New structure containing rarely used
7208         fields of MonoClass.
7209         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7210         through a new 'ext' field.
7212         * class.c (mono_class_alloc_ext): New helper function to allocate 
7213         class->ext.
7215         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7217 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7219         * object.c (mono_object_get_virtual_method): Properly inflate
7220         generic methods.  Fixes #472692.
7222 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7224         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7225         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7226         for the parent type, the created type must be ready to be used on a generic
7227         instantiation.
7228         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7229         we won't have duplicated entries in generic_inst_cache.
7231         Fixes #469553.
7233 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7235         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7236         replace with plain BSD per the comments on the bug MONO77637.
7238 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7240         * class.c (mono_class_get_generic_class): New accessor function.
7241         (mono_class_get_generic_container): Ditto.
7243         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7244         fields, similar to the ones in MonoMethod.
7246         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7247         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7249         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7250         
7251         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7252         the same information as element_class->byval_arg.
7254         * class.c reflection.c: Remove references to class->byval_arg.
7256         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7257         klass->enum_basetype directly.
7259         * verify.c metadata.c object.c icall.c reflection.c: Use 
7260         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7261         directly.
7263 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7265         * icall-def.h: Remove internal calls for sockets when
7266         DISABLE_SOCKET is defined, file system writing features when the
7267         OS only support reading and not writing data and Policy support if
7268         the Policy is disabled.
7269         
7270         * image.c (do_mono_image_open): Apply Paolo's patches for using
7271         mono_file_map_ APIs here.
7273         * assembly.c: Add support for platforms to avoid prefix
7274         auto-detection. 
7276 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7278         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7279         warning.
7281         * class.c (mono_class_inflate_generic_class): New helper function.
7283         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7284         statistics for inflated methods/classes.
7286         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7288         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7289         the call is made from Delegate.CreateDelegate () for the invoke method of
7290         a delegate.
7292         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7294         * metadata.c (mono_metadata_signature_size): New helper function.
7296         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7297         generic instances.
7299         * metadata.c (inflated_method_in_image): Avoid calling 
7300         mono_method_signature () if the method does not already have a signature.
7302 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7304         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7305         valuetype is compatible with target type, check by inheritance as a
7306         VT is not really compatible with System.ValueType, for example.
7308         * verify.c (do_invoke_method): Improve error message.
7310         * verify.c (do_box_value): If boxing a nullable, use the type argument
7311         on stack instead.
7313         * verify.c (do_newobj): Improve error message.  
7315         Fixes #469549.
7317 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7319         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7321 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7323         * generic-sharing.c: Don't hold domain lock when calling
7324         instantiate_other_info().  Fixes #471958.
7326         * domain-internals.h, loader.c: Describe locking policy of domain
7327         lock vs loader lock.
7329 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7331         * verify.c (mono_delegate_signature_equal): Make it possible to check
7332         first-arg-bound delegates to static method.
7334         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7335         static methods with the first arg bound.
7337         Fixes #469529.
7339 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7341         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7342         errors.
7344         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7345         under strict mode. Any type, when boxed can be seen as a reference type.
7347         Fixes #469528.
7349 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7351         * object.h: The lower bound of an array is a signed integer value.
7352         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7353         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7355         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7356         calculate the upper bound.
7357         
7358         Fixes #471252.
7360 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7362         From Paolo's work, refactored, cleared up:
7363         
7364         * threadpool.c, icall.c: ifdef code that requires a working socket
7365         stack.
7367         * metadata.c (mono_metadata_field_info): Do not attempt to return
7368         a value from a function declared as void.
7370         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7371         from the console stack.
7373         * assembly.c: use strrchr instead of rindex.
7375         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7376         alloca.h on systems that have it.
7378         * environment.c: Avoid code that uses stuff from
7379         HAVE_SYS_UTSNAME_H
7380         
7381         * appdomain.c: Include sys/time.h.
7383         * console-io.c: include sys/ioctl.h if it is available.
7385 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7387         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7389         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7390         the method builder.
7392         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7393         after it was created and cached, as the later is not thread safe.
7394         
7395 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7397         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7398         called while the debugging module is not initialized. Fixes #471669.
7400 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7402         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7404         Fixes #471255.
7406 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7408         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7409         loader lock is not taken while the templates lock is held.  Fixes
7410         #471089.
7412 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7414         * metadata.c (type_in_image): Added a check to fix a monodis
7415         crash.
7417 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7419         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7420         nullable arguments.
7422         * object.c (mono_runtime_invoke_array): Ditto.
7423         
7424         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7425         freeing wrappers of dynamic methods.
7427         * loader.c (mono_free_method): Call it. Fixes #463323.
7428         
7429         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7430         methods taking vtype/byref arguments, to fix yet another bug caused by
7431         the sharing of runtime invoke wrappers. Partly fixes #471259.
7433 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7435         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7436         <first file in file table>:1 when the IL offset does not have an associated
7437         line number.
7439 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7441         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7442         variable info for a method.
7444         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7445         
7446 2009-01-30  Jb Evain  <jbevain@novell.com>
7448         * pedump.c: reuse code from monodis to make sure pedump honors
7449         MONO_PATH, which is needed to verify net_2_1 assemblies.
7451 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7453         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7454         there is no line number info.
7456 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7458         Avoid some MonoType allocations
7459         * reflection.c (mono_reflection_initialize_generic_parameter):
7460         Reuse MonoType from param->pklass rather than allocating one.
7461         (mono_dynamic_image_free): Update to changes.
7463 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7465         Rearrange some code to improve consistency
7466         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7467         (mono_reflection_initialize_generic_parameter): ... here.
7469 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7471         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7472         with type constraints as an experiment.
7474         * boehm-gc.c (on_gc_notification): Update mono_stats.
7476 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7478         Avoid some allocations
7479         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7480         pointer to tail array to avoid extra allocation.
7481         * metadata.c (free_generic_inst): Update to changes.
7482         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7483         on-stack struct.
7485 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7487         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7488         return TRUE if the two type objects are the same.
7490 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7492         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7493         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7494         klass->min_align, since klass->min_align contains the managed alignment,
7495         while the native alignment can be different, like for longs on x86.
7496         Fixes #469135.
7498         * class-internals.h (MonoMarshalType): Add a min_align field.
7500 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7502         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7503         the 1.0 format.
7505 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7507         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7508         some comments about the usage of the used_regs field.
7510         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7511         Fixes #469217.
7513 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7515         * appdomain.c: return NULL instead of throwing FileNotFoundException
7516         when LoadAssembly() fails.
7518 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7520         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7521         image if the owner is NULL.  Fixes the AOT failures.
7523 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7525         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7526         MonoGenericParam structure using memset so the image field is initialized
7527         as well.
7529 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7531         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7532         a plain store.
7534 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7536         * class.c (mono_class_setup_vtable_general): In the generic instance
7537         optimization, set method->slot for abstract virtual methods. Fixes part of
7538         #467834.
7540 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7542         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7543         which signals that the unloading has started but all appdomain services must
7544         remain operational.
7546         * appdomain.c (mono_domain_unload): The initial state for unloading now
7547         is unloading_start and we switch to unloading after the managed call to
7548         AppDomain::DomainUnload has finished.
7550         The new unloading state has to be created because managed code in the
7551         DomainUnload event can depend on things like the threadpool still working.
7552         The domain must remain fully functional while the event executes.
7554         This shown as an issue due to Process::WaitForExit, which waits for
7555         async reads of stdout and stderr to complete. Since those are processed
7556         in the threadpool the code deadlocks because the DomainUnload callback 
7557         waits for the async read finished event, which should have been set by a
7558         threadpool job but has been discarded due to the domain been in unload
7559         state.
7561 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7563         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7564         image must match.
7566 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7568         * reflection.c (resolve_object): For fields, inflate the class and
7569         then get the field in the inflated class.
7571 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7573         * object-internals.h (struct _MonoException): Added a comment
7574         explaining the new use of trace_ips.
7576 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7578         * generic-sharing.c (inflate_other_data): Inflate array methods
7579         correctly.
7581         * loader.c, class-internals.h: Rename search_in_array_class() to
7582         mono_method_search_in_array_class() and make it non-static.
7584 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7586         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7587         Hopefully fixes #458168.
7589 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7591         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7592         as it is performed elsewhere.
7594         Code is contributed under MIT/X11 license
7596 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7598         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7599         requests queued.
7600         * object.c (mono_raise_exception): Increment the exceptions total
7601         counter when an exception is thrown.
7602         * class-internals.h: Add a location for storing the total number of
7603         asp.net requests served.
7604         * mono-perfcounters.c: Implement update support for asp.net counters
7605         from the class libraries. Implement read support for asp.net counters
7606         and exceptions total counter.
7608 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7610         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7611         accessing klass->methods. Fixes #467385.
7613 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7615         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7616         for byval arguments without an [Out] attribute. Fixes #467212.
7618         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7619         Fix compilation under android.
7620         
7621         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7622         processed, scan them directly after they are copied, to achieve better locality
7623         and cache usage.
7625         * socket-io.c: Applied patch from Koushik Dutta
7626         (koush@koushikdutta.com). Disable IPV6 when running under android.
7628 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7630         * icall.c (ves_icall_InternalExecute): Add write barriers.
7632         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7633         the GC code.
7635         * sgen-gc.c: Implement write barriers in IL code.
7637 2009-01-17  Geoff Norton  <gnorton@novell.com>
7639         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7641 2009-01-17  Geoff Norton  <gnorton@novell.com>
7643         * image.c: When unloading the image->references table, there can be gaps
7644         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7645         when unloading an appdomain.
7647 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7649         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7650         speed up ptr-in-nursery checks.
7652         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7653         threads_lock () to prevent deadlocks.
7655         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7656         does not need to be scanned during minor collections, since writes to it
7657         must use write barriers.
7659 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7661         * metadata-verify.c: Add pe nt header verification.
7662         
7663 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7665         * gc.c: Fix a few warnings when using SGEN.
7667 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7669         * metadata-verify.c: Add pe optional header verification.
7671 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7673         * sgen-gc.c: Add support for user defined marker functions, used by
7674         MonoGHashTable to avoid registering a GC root for every hash node.
7676 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7678         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
7679         non-pinned roots into separate hashes to avoid having to traverse them
7680         in functions which are only interested in one kind.
7682 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7684         * metadata-verify.c: Add pe header machine field verification.
7685         
7686 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7688         * metadata-verify.c: Add pe header size verification.
7690 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7692         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
7693         using the GC, they don't contain references.
7695         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
7697 2009-01-13  Geoff Norton  <gnorton@novell.com>
7699         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
7700         AppDomains created on the native side can be cleaned up on the native side.
7702 2009-01-13  Geoff Norton  <gnorton@novell.com>
7704         * appdomain.c: Ensure that we call mono_context_init for the embedding api
7705         as well as the managed api.
7707 2009-01-13  Geoff Norton  <gnorton@novell.com>
7709         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
7710         with a MonoAppDomain initialized against it.
7712 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7714         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
7715         
7716         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
7718         * marshal.c: Avoid setting the exception clauses after a method has been entered 
7719         into the wrapper caches. Fixes #465700.
7721         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
7722         method builder.
7723         (mono_mb_create_method): Set the clauses from the method builder.
7725 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7727         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
7728         Patch from Makoto Kishimoto.
7730 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7732         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
7733         encoding them as ROOT_DESC_COMPLEX.
7734         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
7736 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7738         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
7739         no longer point to the nursery.
7741         * sgen-gc.c: Add a few comments/FIXMEs.
7742         
7743         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
7745         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
7746         initialization of the various _method variables thread safe. Fixes
7747         #465377.
7749 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7751         * domain.c, domain-internals.h: Remove the shared_generics_hash
7752         and its lookup functions.
7754 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
7756         * socket-io.c:  Fixing the MSVC build. 
7758         Code is contributed under MIT/X11 license.
7760 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
7762         * metadata-verify.c: Add pe header watermark verification.
7764 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7766         * metadata-verify.c: Add lfanew verification.
7768 2009-01-12  Jb Evain  <jbevain@novell.com>
7770         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
7771         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
7773 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7775         * socket-io.c: Fix the build.
7777         * environment.c: Fix an #ifdef.
7779 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7781         * threadpool.c (async_invoke_thread): Handle the wait function returning
7782         WAIT_IO_COMPLETION as well.
7783         (async_invoke_io_thread): Ditto.
7785 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
7787         * threads.c: Fixing the Windows build.
7789         Code is contributed under MIT/X11 license.
7791 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7793         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
7794         interrupt a wait.
7795         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
7796         the thread to wait again.
7798 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7800         * metadata-verify.c: Initial skeleton of the metadata verifier.
7802         * pedump.c: Add support for the metadata verifier.
7804         * verify-internal.h: Export the whole assembly metadata verifier function.
7806 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7808         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
7810 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7812         * Makefile.am: Upgrade dtrace-prelink.sh location.
7814 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7816         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
7817         well. Otherwise the shutdown deadlock that happens on unix will can happen
7818         as well.
7819         If the main thread code finishes too fast it's possible that the finalizer
7820         thread won't have executed yet, won't record itself as the finalizer thread
7821         and the shutdown sequence will wait on it forever.
7823 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7825         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
7826         with MSVC.
7828 2009-01-08  Miguel de Icaza  <miguel@novell.com>
7830         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7831         Robert Jordan for pointing this out.
7833 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7835         * icall.c
7836         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7837         ves_icall_System_IO_DriveInfo_GetDriveType.
7839 2009-01-07  Miguel de Icaza  <miguel@novell.com>
7841         * icall.c: Wrap calls to mono_strtod in CriticalSection
7842         invocations when using eglib, to work around #464316.
7844 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7846         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
7847         return value of GetCurrentDirectory to never access unitialized memory.
7849 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7851         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
7852         return value of GetCurrentDirectory and expand the buffer if needed.
7854         Fixes #459094.
7856 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
7858         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
7859           Adding a call to mono_init_com_types.
7861         Code is contributed under MIT/X11 license.
7863 2009-01-07  Geoff Norton  <gnorton@novell.com>
7865         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
7866         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
7867         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
7868         be the value of the ip buffer.
7870 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7872         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
7873         interfaces_packed here.
7875         Fixes part of #463294.
7877 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7879         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
7881         Fixes part of #463294.
7883 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7885         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
7886         is a boxed complex as well.
7888         Fixes part of #463294.
7890 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7892         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
7893         control if a methodspec should be created for the generic method definition from external assemblies.
7894         Caching of methodspec is done using the handleref hash table.
7896         Fixes #462592.
7898 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
7900         * loader.c (find_method): When searching the interfaces of a class
7901         check the transitive closure of implemented interfaces.
7903         Fixes #463303.
7905 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7907         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
7908         
7909 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7911         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
7912         interfaces calculation to fill_valuetype_array_derived_types.
7914         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
7915         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
7916         for example.
7918         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
7919         interfaces for valuetypes if needed.    
7921         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
7922         for their basetype as well. Types are array expanded if rank is > 0.
7924         Fixes #400716.
7926 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
7928         * socket-io.h : Changing the signature of
7929           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
7930           the blocking state.
7932         * icall-def.h :  Changing the signature of
7933           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
7935         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
7936           For Windows only.  Avoid blocking when calling accept by
7937           querying for a connection via select.  The loop also queries
7938           the thread state every 1000 micro seconds for the thread
7939           stop state.  This will avoid the process hanging on shutdown
7940           when using a TcpChannel that is never connected to.
7942         Code is contributed under MIT/X11 license.
7944 2008-12-30  Marek Safar  <marek.safar@gmail.com>
7946         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
7948 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7950         * class.c (get_implicit_generic_array_interfaces): Extract common
7951         code to a helper function making it a lot easier on the eyes.
7953 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7955         * class.c (get_implicit_generic_array_interfaces): If the internal
7956         enumerator is an interface inflate System.Object instead of itself.
7958         Fixes #461261.
7960 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
7962         * object.c (mono_runtime_invoke_array): Don't assert with
7963         byref nullable types.
7965         * marshal.c (mono_marshal_get_runtime_invoke): To handle
7966         byref nullables we unbox the object and store it on the
7967         stack. 
7968         We can't use the boxed object since it is the T of Nullable<T>
7969         and the boxed representation of a nullable it's underlying type
7970         or null.
7971         We could cheat and create a boxed nullable and use the same
7972         machinery of other byref VTs but this feels like a hack and
7973         using the stack has the bonus of reducing heap pressure.
7975         Fixes #461941.
7977 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
7979         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
7980         return value.
7982         Fixes #461867.
7984 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
7986         * icall-def.h : Adding an internal call definition for 
7987           System.Environment.internalBroadcastSettingChange.
7989         * icall.c : Adding a Windows only implementation to broadcast a 
7990           WM_SETTINGCHANGE when an environment variable has changed.
7992         Code is contributed under MIT/X11 license.
7994 2008-12-19  Mark Probst  <mark.probst@gmail.com>
7996         * class.c, class-internals.h: Made
7997         mono_class_has_parent_and_ignore_generics() non-static.
7999 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8001         * image.c: deal with the mmap failing when loading an image.
8003 2008-12-17  Geoff Norton  <gnorton@novell.com>
8005         * threadpool.c: Ensure that the io_queue_lock is initialized
8006         in all circumstances, as we always attempt to cleanup against it.
8008 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8010         * icall.c (ves_icall_System_Environment_get_Platform): For
8011         compatibility reasons for existing client code we will keep
8012         returning 4 for a while.   
8014         For how long will depend on the documentation being updated, and
8015         for us to give client code a chance to be updated.
8017         This reverts the original decison on #433108 since we did not
8018         catch roughly 33 instances of the broken code in our own source
8019         code base, we did not catch failures on the buildbots, and QA did
8020         not bring this as a problem.
8022         Only today I found some customer's code breaking due to our own
8023         class libraries not being fully updated and tracked it down to
8024         this change.  I am reverting it because if we could not even get
8025         our story straight in our own code base, how can we hope that our
8026         end user code be fixed?
8028         As of this morning, our Wiki page that documents how to detect
8029         Unix had not been fixed.    
8031 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8033         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8035         * class.c (mono_class_get_fields): Handle loading errors.
8037 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8039         * 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.
8040         
8041 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8043         * mono-perfcounters.c: avoid warning.
8045 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8047         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8048         make sure all interfaces have MonoClass::interface_id set.
8050         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8051         method table is property set.
8053 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8055         * class.c: New function mono_class_setup_interface_id that setup
8056         MonoClass::interface_id if needed.
8058         * class-internals.h: Export new function.
8060 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8062         * class.c: Add code to sanity check the vtable after setup_vtable_general
8063         has done it's work.
8065 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8067         * icall.c: make Assembly.GetExecutingAssembly work properly when
8068         reflection is used to invoke the method.
8069         Bug #321781 fixed.
8071 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8073         * metadata/generic-sharing.c: Look for constraints in all type
8074         arguments, not just the first one.
8076 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8078         * appdomain.c: return the correct CodeBase for an Assembly instance
8079         that was loaded from the shadow-copy directories.
8080         Bug #458190 fixed.
8082 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8084         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8086         * sgen-gc.c (check_object): New debugging helper function.
8088         * object.c: Fix calls to mono_value_copy_array ().
8090 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8092         * class.c (mono_class_setup_fields): If working on an inflated class
8093         first check if the generic definition did init with success.
8095         Fixes #445361.
8097 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8099         pedump.c (main): Fix a warning.
8101 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8103         * object-internals.h : Adding a definition for 
8104           MonoReflectionComVisibleAttribute.
8106         * marshal.c (cominterop_com_visible) :  Method added to check the 
8107           ComVisible attribute of a class.
8109         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8110           cominterop_raise_hr_exception added to consolidate common code 
8111           to raise hr exceptions.
8113         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8114           if a managed class should support IDispatch.
8116         * marshal.c 
8117           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8118           Added additional checks for managed object when getting 
8119           an IDispatch interface.
8121         Code is contributed under MIT/X11 license.
8123 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8125         pedump.c (main): Handle mono_get_method () returning NULL. 
8127 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8129         * marshal.h: Fix a warning.
8131 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8133         * marshal.c : Adding cominterop_release_all_rcws to release all
8134           runtime callable wrappers held by the runtime.
8136         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8137           
8138         Code is contributed under MIT/X11 license.
8140 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8142         * metadata.c (mono_image_alloc_lock): New helper function.
8143         (mono_image_alloc0_lock): Ditto.
8145         * metadata.c: Use the alloc_lock () helper functions for allocating
8146         memory from the image mempool.
8148 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8150         * class.c (mono_class_from_generic_parameter): Document it's
8151         locking behavior. Fix double checked locking here, we stored in
8152         param->pklass a partially initialized MonoClass and no membar was used.
8154 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8156         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8157         (3) functions are present in the C library use them to do the
8158         job. If they are absent, make sure that the sum of int_part and
8159         dec_part is rounded before returning. This is necessary due to the
8160         division of dec_part by the power of 10 before the final addition
8161         is performed - if the result is not rounded in some cases it will
8162         yield invalid results.
8164 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8166         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8167         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8168         instruction instead of a pointer constant.
8170 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8172         * loader.c (mono_method_get_header): Do most of the work outside the
8173         loader lock, to avoid assembly load hook deadlocks.
8175         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8176         (mono_metadata_parse_type_full): Ditto.
8178 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8180         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8181         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8182         funtions. Finally, use a lock to produce well ordered output.
8184         The lock looks silly, as all calls to the corlib mempool should be guarded
8185         with the loader lock, but for some reason this fact doesn't help. 
8187         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8189 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8191         * socket-io.c: 64 bit big-endian fixes.
8193 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8195         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8196         targets that require strict compatibility between the types.
8198         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8199         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8200         Kill the strict argument and create a new one valuetype_must_be_boxed.
8202         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8203         state that all valuetypes must be boxed.
8205         Fixes #448560.
8207 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8209         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8210         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8212         Contributed under MIT/X11 license.
8214 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8216         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8217         the inflate_generic_type machinery should handle it.
8219         This avoids a crash when the field's flags is zero and it's type is
8220         a primitive.
8221         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8222         is zero and will return one of the cached built-in primitive types. Since
8223         those types live in read-only memory, the code that copies it crashes.  
8225 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8227         * object.c: Don't put function descriptors into generalized IMT
8228         thunks.
8230 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8232         * class.c: Enable generic code sharing on PPC64.
8234 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8236         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8237         from mini/mini.c.
8239         * generic-sharing.c: Allocate the method template slists from the
8240         image mempool so it doesn't leak.
8242 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8244         * class.c (generic_array_methods): Release the linked list.
8246 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8248         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8249         invocation to g_utf16_to_utf8().
8251 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8253         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8254         arguments on big endian archs.
8256 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8258         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8259         the type name (test added in corlib).
8261 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8263         * pedump.c: initialize perf. counters. Fixes a segv.
8265 2008-11-25  Martin Baulig  <martin@ximian.com>
8267         * mono-debug-debugger.c
8268         (mono_debugger_runtime_invoke): Return the exception object if an
8269         exception was thrown.  Visual Studio displays the exception object
8270         in the locals window.
8272 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8274         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8275         ftnptr.
8277 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8279         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8280         MONO_TYPE_U are sizeof (gpointer), too.
8282 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8284         * marshal.c (mono_type_native_stack_size): Fixed size and
8285         alignment for reference types.
8287 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8289         * class.c (mono_class_generic_sharing_enabled): Disable generic
8290         code sharing for PPC64.
8292 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8294         * icall.c (mono_method_get_equivalent_method): Make sure
8295         method->klass->methods is inited before looping over it.
8297 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8299         * object.c: when calling ExecuteAssembly in a newly created domain,
8300         the configuration file and application base are already set up.
8301         Bug #446353 take 2 fixed.
8303 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8305         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8306         Fixes #444715. Fix a warning.
8308 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8310         * appdomain.c: write the full path of the assembly to the .ini file
8311         created when "shadow-copying"
8312         Bug #446353 fixed.
8314 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8316         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8317         if signature==FALSE.
8319 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8321         * marshal.h : Fix the cygwin build.
8322            marshal.c:12442: undefined reference to `_IID_IMarshal'
8323           
8324         Code is contributed under MIT/X11 license.
8326 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8328         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8329           free threaded marshaler when QueryInterface is called on a COM callable
8330           wrapper requesting the IMarshal interface.
8331           
8332         Code is contributed under MIT/X11 license.
8334 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8336         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8338         * reflection.c (mono_type_get_object): Special case the very common
8339         void type.
8341         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8342         hold typeof(void).
8344 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8346         * process.h : Adding method declaration for
8347           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8348           
8349         * process.c : Adding implementation for
8350           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8351           
8352         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8353           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8355         Code is contributed under MIT/X11 license.
8357 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8359         * appdomain.c (unload_thread_main): Clean up threadpool by
8360         calling mono_thread_pool_remove_domain_jobs.
8362         * domain-internals.h (struct _MonoDomain): Add new fields to
8363         help coordinate the cleanup of the threadpool.
8365         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8366         that cleans up the threadpool of all jobs associated with an appdomain.
8367         It does that by cleaning up the queues and making sure all active
8368         threads are accounted.
8370         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8371         unloaded or in the process of. Take this is such way that there is
8372         no race condition between another thread starting the unload and the
8373         current thread acknowledging it.
8375         * threadpool.c (async_invoke_thread): Same.
8377         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8378         firing the new thread.
8380         * threadpool.c (start_tpthread): Same.
8382         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8384         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8386 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8388         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8389         Add support for DuplicateHandle.
8390         
8391         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8392         Add support for DuplicateHandle.
8393         
8394         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8395         Add support for DuplicateHandle.
8397         Code is contributed under MIT/X11 license.
8399 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8401         * class-internals.h: Make min_align into a whole byte.
8403         * class.c: Set min_align for SIMD types to 16.
8405 2008-11-05  Geoff Norton  <gnorton@novell.com>
8407         * attach.c: Default the attacher to enabled for all cases including
8408         embedded.
8410 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8412         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8413         change r117650.
8415 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8417         * monitor.c, monitor.h: New function for querying offsets of
8418         members of MonoThreadsSync.
8420 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8422         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8423         to speed up this function and to avoid the boundless memory growth caused by
8424         the signature_dup () calls.
8426 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8428         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8429         wrapper.
8431         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8432         by 1 bit.
8434         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8436 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8438         * appdomain.c:
8439         * domain-internals.h: made mono_set_private_bin_path_from_config()
8440         "internal".
8441         * object.c: call the above function after setting the configuration
8442         file path for the root domain.
8443         Fixes bug #314478.
8445 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8447         * assembly.c: when the assembly is loaded from an absolute path, end
8448         basedir with a directory separator.
8449         Bug #440781 fixed.
8451 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8453         * monitor.c (mono_monitor_get_fast_enter_method): If
8454         CompareExchange is not available, don't create the fastpath
8455         instead of asserting.  (The method is missing in the 1.1 profile.)
8457 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8459         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8461         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8462         Monitor.Exit IL fastpaths.
8464 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8466         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8468 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8470         * class.c (mono_class_create_from_typedef): Added Vector2l.
8472 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8474         * class.c (mono_class_create_from_typedef): Added Vector2d.
8476 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8478         * appdomain.c: translate \ into / for cache_path.
8479         * domain-internals.h: new mono_is_shadow_copy_enabled().
8480         * icall.c: (fill_reflection_assembly_name) do the same path
8481         manipulations that get_code_base does.
8482         (get_code_base) use mono_is_shadow_copy_enabled.
8484 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8486         * appdomain.c: shadow-copied assemblies go to CachePath +
8487         ApplicationName when both are set. DynamicBase has nothing to do with
8488         shadow copies.
8489         Bug #406877 fixed.
8491 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8493         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8494         STANDALONESIG table.
8496         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8497         standalone signatures.
8499         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8500         comparison code: instead of comparing the signatures using a custom
8501         equals function, transform them to a common signature and compare that. This
8502         works better with AOT.
8504 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8506         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8508         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8509         call for generic instances.
8510         (mono_class_setup_properties): Call setup_properties () before accessing
8511         gklass->properties.
8513         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8514         over the virtual methods of a class using metadata if possible, avoiding the
8515         creation of MonoMethod's for non-virtual methods.
8516         
8517         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8518         get_virtual_methods () to iterate over the virtual methods of classes.
8520 2008-10-25  Martin Baulig  <martin@ximian.com>
8522         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8524 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8526         * class.c (mono_class_create_from_typedef): Added Vector4i.
8528 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8530         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8531         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8532         special-casing applies to eliminate the call completely.
8534 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8536         * class.c (mono_class_create_from_typedef): Added Vector8s.
8538 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8540         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8542 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8544         * icall.c: get rid of annoying warning.
8546 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8548         * threadpool.c: in 1.x, if you change the background status of the
8549         threadpool thread, it's not reset.
8550         Remove unnecessary calls to SetState.
8552 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8554         * threadpool.c: asynchronously create a set of idle threads upon first
8555         use of the threadpool. SetMinThreads will now start the appropriate
8556         number of idle threads if they are not already running. The default is
8557         1 threadpool thread per CPU. Increased the maximum number of threads
8558         per CPU to 10.
8560 2008-10-22  Martin Baulig  <martin@ximian.com>
8562         Revert r116521 from Zoltan, it breaks the debugger:
8564         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8565         over the virtual methods of a class using metadata if possible, avoiding the
8566         creation of MonoMethod's for non-virtual methods.
8567         
8568         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8569         get_virtual_methods () to iterate over the virtual methods of classes.
8571 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8573         * threads.c: when creating a threadpool thread, set its state to
8574         'background'.
8575         * threadpool.c: reset the background state of a threadpool thread
8576         after finishing each work item
8577         Bug #437888 fixed.
8579 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8581         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8582         
8583         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8584         generic instances which works by inflating the methods in the container
8585         class's vtable.
8587         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8588         variant which doesn't make a copy if no inflation was done.
8589         (mono_class_setup_fields): Use it.
8591         * metadata.c (mono_metadata_get_shared_type): New helper function to
8592         return a shared instance of a given MonoType.
8594         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8595         a copy of most non-generic types.
8597 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8599         * threadpool.c: remove one more GetSystemInfo () call.
8601 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8603         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8604         use the code in mono-proclib.h to get processor information.
8606 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8608         * appdomain.c: fixed the logic that determines whether assemblies in a
8609         directory are "shadow-copied" or not. Bug #433483 fixed.
8611 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8613         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8614         warning.
8616 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8618         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8619         returning a vtype.
8621         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8622         reflection.c: Use mono_field_get_name () for accessing a field's name.
8624         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8625         class.c
8627         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8628         field.
8630         * loader.c (find_method_in_class): Reenable the metadata optimization by
8631         not using it for generic instances.
8633         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8634         data/def_type fields from MonoClassField into a separate structure.
8635         (struct MonoClassField): Remove data/def_type fields.
8636         (struct _MonoClass): Add a 'field_def_values' array to store the default
8637         values/RVA for fields.
8639         * class.c reflection.c: Update after the changes.
8640         
8641         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8642         for accessing field->data.
8644         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8646         * loader.c (find_method_in_class): Revert the last change for now as
8647         it breaks Mono.C5 unit tests.
8649         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8650         'field_generic_types' and 'field_objects' which contain the information
8651         previously stored in MonoInflatedField.
8652         (MonoInflatedField): Delete.
8653         (struct _MonoClassField): Delete 'generic_info' field.
8655         * reflection.c: Store the information which was previously in 
8656         field->generic_info in MonoDynamicGenericClass instead.
8658         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8659         MonoClassField changes.
8661 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8663         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8664         store the value inside the data array of the MonoMethodWrapper.
8665         This saves memory, is faster and fixes the lifetime issues (methods
8666         were never removed from the hash previously). May also fix bug#436996.
8668 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8670         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8671         generic instances, compute the type from the generic definition instead of
8672         looking in field->generic_info.
8674         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8675         for inflated fields, the only user was get_fieldref_token () which no
8676         longer needs it.
8678         * class.c (mono_class_init): Revert the last change as it seems to cause
8679         crashes.
8681         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
8682         bytes on 64 bit platforms.
8684         * object.c (mono_class_create_runtime_vtable): Fix a warning.
8685         
8686         * object.c (mono_class_create_runtime_vtable): Don't initalize
8687         field->data/field->def_type here, it is done lazily by 
8688         mono_class_get_field_default_value ().
8690         * icall.c (ves_icall_get_enum_info): Call 
8691         mono_class_get_field_default_value () instead of directly accessing
8692         field->data and field->def_type.
8694         * object.c (get_default_field_value): Ditto.
8696         * class.c (mono_field_get_data): Ditto.
8697         
8698         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
8699         call for generic instances.
8701         * loader.c (find_method_in_class): If klass != from_class, then inflate
8702         the method with the context of from_class, since the caller assumes this.
8704 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
8706         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
8707         for accessing method->slot.
8709 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
8711         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
8713 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8715         * class.c (mono_method_get_vtable_index): Use
8716         mono_method_get_vtable_slot () for accessing method->slot.
8718         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
8719         accessing klass->methods.
8721         * class.c (mono_method_get_vtable_slot): New helper function.
8722         (mono_class_get_vtable_entry): Ditto.
8723         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
8724         accessing method->slot.
8726         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
8727         method to get_inflated_method ().
8729         * class.c (mono_class_get_inflated_method): New helper method to obtain
8730         a method of an inflated class without calling setup_methods ().
8731         (mono_class_get_cctor): Use get_inflated_method.
8733         * generic-sharing.c (mono_class_get_method_generic): Ditto.
8734         
8735         * marshal.c image.c: Lazily create all the marshal caches.
8737         * image.c (mono_image_init): Move initialization of runtime_invoke
8738         caches to marshal.c.
8740         * marshal.c (get_cache): New helper function to lazily initialize a 
8741         wrapper cache.
8742         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
8744         * debug-helpers.c (mono_method_full_name): Include generic arguments.
8746 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
8748         * loader.c: fixed check for interface type.
8750 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8752         * appdomain.c: check for NULL setup before it's referenced.
8755 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8757         * class.c: remove the unused old vtable setup code.
8759 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8761         * class.c: don't depend on interface order in
8762         setup_interface_offsets (bug #435777).
8763         * reflection.c: sort the InterfaceImpl table (patch from
8764         Jb Evain  <jbevain@novell.com>).
8766 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8768         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
8769         the low level assemblies lock.
8771 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
8773         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
8774         object.c, reflection.c, socket-io.c, threads.c: introduced
8775         mono_framework_version () to return the major framewrok version,
8776         changed the code that was using more complex patterns to use it.
8777         Return the correct value for PlatformID for OSX.
8779 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
8781         * icall-def.h, process.h, process.c: added an icall to get info about
8782         processes using mono-proclib.
8784 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
8786         * mono-perfcounters.c: use the mono-proclib functions to
8787         access process information.
8789 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8791         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
8792         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
8793         reflection.c: remove rawbuffer usage: mmap support is more sanely
8794         provided by utils/mono-mmap.
8796 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
8798         * gc.c: use posix semaphores when possible so that
8799         mono_gc_finalize_notify() is signal safe.
8801 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
8803         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
8804         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
8805         be #ifdef-ed out, the linker will remove the rest.
8807         * marshal.c: Implement DISABLE_COM.
8809         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
8811 2008-10-11  Miguel de Icaza  <miguel@novell.com>
8813         * locales.c (string_invariant_compare_char): Optimization: do not
8814         call g_unichar_type unless we actually need the information.
8816 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8818         * object.c, class-internals.h: Also create remoting trampolines
8819         for generic methods.  Pass the domain to the remoting trampoline
8820         creation function, too.
8822 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8824         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
8826 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8828         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
8829         Vector4ui.
8831 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8833         * assembly.c:
8834         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8836 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8838         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8839         for the least possible amount of time (extending the fix in r113458).
8841 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8843         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
8845 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8847         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
8848         as possible simd intrinsic types.
8849         Optimized the test to check for the common prefix first.
8851 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
8853         * class.c: back out part of a broken optimization committed on
8854         May 23th (bug #433908).
8856 2008-10-09  Mark Probst  <mark.probst@gmail.com>
8858         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
8859         Win32.  Should fix #432388 for most cases until we have the new
8860         profiler on Win32.
8862 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
8864         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
8865         instead of using inst->id so the hash is stable for AOT.
8867 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8869         * appdomain.c:
8870         * icall.c: create a .ini file for shadow-copied assemblies that
8871         contains the location of the original assembly. Use this to return the
8872         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
8873         Also fix the number of '/' for windows when returning the CodeBase.
8874         Fixes bug #430920.
8876 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8878         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
8880         Code is contributed under MIT/X11 license.
8882 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8884         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
8885           if if the class vtable needs initialized.
8887         Code is contributed under MIT/X11 license.
8889 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8891         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
8892           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
8893           STRING->BSTR, and CLASS->INTERFACE.
8895         Code is contributed under MIT/X11 license.
8897 2008-10-07  Marek Habersack  <mhabersack@novell.com>
8899         * sysmath.h: changed the declaration of the
8900         ves_icall_System_Math_Round2 icall by adding an extra
8901         away_from_zero parameter.
8903         * sysmath.c (ves_icall_System_Math_Round2): added support for
8904         away from zero rounding. The icall now takes an extra boolean
8905         parameter to signal that away from zero operation is requested.
8907 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8909         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
8910         the delegate klass so it can work with full-aot.
8911         (mono_marshal_get_delegate_end_invoke): Ditto.
8912         (mono_marshal_get_delegate_invoke): Ditto.
8914 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
8916         * gc.c, attach.h, attach.c: remove a bad pattern:
8917         add_finalizer_callback () is not implemented correctly, it can't
8918         without adding more overhead to the finalizer loop and it's not
8919         even needed, since we know exactly what we need to call, so there is
8920         no need to do so through an expensive function pointer.
8922 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
8924         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
8925         for the no-gc case.
8926         * attach.c (mono_attach_init): Remove the #ifdef.
8928 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
8930         * attach.c (mono_attach_init): Don't use
8931         mono_gc_add_finalizer_thread_callback when compiling without GC.
8932         Fixes #432306.
8933         
8934         Code is contributed under MIT/X11 license.
8936 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
8938         * class.c (mono_class_create_from_typedef): Remove the 
8939         #ifndef DISABLE_SIMD stuff.
8941 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
8943         * class-internals.h (MonoClass): Added simd_type bit field.
8945         * class.c (mono_class_create_from_typedef): Check if type is a simd
8946         intrinsic.
8948 2008-10-03  Mark Probst  <mark.probst@gmail.com>
8950         * object.c (mono_method_add_generic_virtual_invocation): Only add
8951         instantiations to the thunk whose count is at least as large as
8952         the threshold.
8954 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
8956         * icall.c: changed the Type of the exception thrown when trying to
8957         invoke a constructor on an abstract class. Part of the fix for bug
8958         #324185.
8960 2008-10-02  Mark Probst  <mark.probst@gmail.com>
8962         * class.c, class-internals.h (mono_method_get_vtable_index): New
8963         function which returns the index into the vtable and properly
8964         handles inflated virtual generic methods.
8966 2008-10-01  Mark Probst  <mark.probst@gmail.com>
8968         * object.c, domain.c, object-internals.h, domain-internals.h:
8969         Generalize IMT thunk machinery to also handle thunks for virtual
8970         generic method invokes.  When a virtual generic method is invoked
8971         more than a number of times we insert it into the thunk so that it
8972         can be called without lookup in unmanaged code.
8974         * generic-sharing.c, class-internals.h: Fetching a
8975         MonoGenericInst* for a method from an (M)RGCTX.
8977 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
8979         * marshal.c (emit_marshal_string): Applied a variant of a patch by
8980         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
8981         marshalling. Fixes #431304.
8983 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
8985         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8986           handle when ref is specified without In or Out.
8988         Code is contributed under MIT/X11 license.
8990 2008-09-30  Mark Probst  <mark.probst@gmail.com>
8992         * loader.c (mono_get_method_constrained): Don't expand method with
8993         the class's context, because it's already a method of that class.
8995 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
8997         * attach.c : should be correct build fix.
8999 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9001         * attach.c: Fix the previous change.
9003 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9005         * attach.c : quick w32 build fix.
9007 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9009         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9010         crashes MonoDevelop: #430455.
9012 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9014         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9015         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9017         * domain.c: Remove initialization/cleanup of the removed fields.
9019 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9021         * class.c (mono_class_generic_sharing_enabled): Enable generic
9022         code sharing for PPC.
9024 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9026         * attach.c : Fixing the Windows builds.
9028         Code is contributed under MIT/X11 license.
9030 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9032         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9033         the default generic sharing mode to 'all'.
9035 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9037         * generic-sharing.c, class-internals.h: New function for checking
9038         whether a method needs a static RGCTX invoke wrapper.  A few
9039         funtions moved from mini/generic-sharing.c.
9041         * icall.c: New function used.
9043 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9045         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9046         Static RGCTX invoke wrapping applies to value type methods, too.
9048         * class.c (mono_class_setup_vtable_general): In generic-shared
9049         value types, wrap methods with a static RGCTX invoke wrapper.
9051 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9053         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9054         osx build.
9056 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9058         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9059         register a callback which is called when the finalizer thread is woken
9060         up.
9061         (finalizer_thread): Call the callback if it exists.
9063         * attach.h attach.c: New files, implementing the attach mechanism.
9065         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9066         
9067         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9068         by the previous change.
9070 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9072         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9073         loader.c, marshal.c, metadata-internals.h, metadata.c,
9074         method-builder.c, object.c, reflection.c: introduced specific functions
9075         to allocate from the domain and image mempools and cleaned up most of
9076         the code to use them (still missing a few in reflection.c).
9077         Keep the loader bytes counter updated.
9079 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9081         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9082         loader-related counters.
9084 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9086         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9087         added more MS-compatible counters.
9089 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9091         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9092         class->blittable. Fixes #428217.
9094 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9096         * reflection.c (mono_image_get_field_on_inst_token): Call 
9097         field_encode_signature () since that handles custom modifiers too.
9098         Fixes #424663.
9100 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9102         * reflection.c (add_custom_modifiers): New helper function to merge custom
9103         modifiers stored in objects to a MonoType.
9104         (fieldref_encode_signature): Encode custom modifiers.
9105         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9106         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9108 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9110         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9111         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9112         64-bit IL only images because imports are not resolved for IL only images.
9113         Special thanks to Bill Holmes for finding this bug and testing the patch.
9114         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9116         Contributed under MIT/X11 license.
9118 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9120         * mono-config.c (dllmap_start): Add support for the bits keyword
9121         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9123 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9125         * reflection.c (inflate_mono_method): When the class the method is
9126         to be inflated for is itself not inflated, just return the method.
9128 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9130         * mono-perfcounters.c: use more user friendly process instance names.
9132 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9134         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9135           handle "[in] ref" and "[in][out] ref" cases.
9137         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9138           to mono_mb_create_method.  This was causing problems calling native to
9139           managed passing Variants by value.
9141         Code is contributed under MIT/X11 license.
9143 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9145         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9146         before accessing the friend_assembly_names field.
9148         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9149         times.
9150         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9151         called lazily when it is needed.
9153         * metadata-internals.h (struct _MonoAssembly): Add 
9154         'friend_assembly_names_inited' flag.
9156 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9158         * mono-perfcounters-def.h: fix the types of a few counters.
9159         * mono-perfcounters.c: implemented the instance names getter
9160         and a few bugfixes.
9162 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9164         * culture-info-table.h : regenerated.
9166 2008-09-17  Robert Jordan  <robertj@gmx.net>
9168         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9169         context bound objects. Fixes #415577.
9171         Code is contributed under MIT/X11 license.
9173 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9175         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9176         implementation (bug #423582).
9178 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9180         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9181         is not set. Fixes #426309.
9183 2008-09-16  Jb Evain  <jbevain@novell.com>
9185         * class.c (mono_class_from_name): fix the exported type look up
9186         when the type is defined in a referenced assembly.
9188 2008-09-16  Jb Evain  <jbevain@novell.com>
9190         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9191         increment the next index counter on each iteration to make that work
9192         for more than one type forwarder. Unmanaged part to fix #422929.
9194 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9196         * object-internals.h: enum ComInterfaceType in
9197         MonoInterfaceTypeAttribute is guint32, not guint16.
9199 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9201         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9202         writing code.
9204 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9206         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9207         not gboolean.
9209 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9211         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9212         Endianness fixes for MonoSymbolFileOffsetTable.
9214 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9216         * process.c (complete_path) : Removing quotes from the 
9217           input path.  The glib file routines do not handle file paths
9218           that have quotes around them.
9220         Code is contributed under MIT/X11 license.
9222 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9224         * socket-io.h : Adding a comment to provide locations where 
9225           changes to MonoSocketAsyncResult need to be synced.
9227         Code is contributed under MIT/X11 license.
9229 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9231         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9232         parameters as well. Fixes #425001.
9234 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9236         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9237         windows build.
9239 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9241         * console-io.c: Add support for tracking the window size if it
9242         changes.
9244         The setup is very simple: the TtySetup function will now return a
9245         pointer to a location in memory that tracks the current console
9246         size.  The managed code checks its current value every time its
9247         queried against the last value set, and updates accordingly.
9249         With this setup we can work with multiple consoles, and we do not
9250         require to poke into managed code from a signal handler.
9252         Additionally, the environment for COLUMNS and LINES is now handled
9253         in unmanaged code.
9255         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9257 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9259         * marshal.c (mono_type_native_stack_size): Treat
9260         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9262 2008-09-04  Jb Evain  <jbevain@novell.com>
9264         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9265         to nullables.
9267 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9269         * verify.c (verify_type_compatibility_full): Revert change
9270         to allow converting a native int to unmanaged pointer be verifiable
9271         under non-strict mode.
9272         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9274         * verify.c: Added some TODOs.
9276 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9278         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9279           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9280           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9282         Code is contributed under MIT/X11 license.
9284 2008-09-02  Jb Evain  <jbevain@novell.com>
9286         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9288 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9290         reflection.c (typebuilder_setup_fields): Handle classes with
9291         explicit size.
9293 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9295         class.c (mono_class_setup_events): Add memory barrier due to
9296         double checked locking.
9297         
9298         class.c (mono_class_setup_properties): Same.
9300 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9302         * class.c (mono_class_is_assignable_from): Fix the build.
9303         
9304         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9305         before accessing klass->interface_bitmap. Fixes #421744.
9307 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9309         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9310         the runtime into no-exec mode, useful when running the AOT compiler.
9312         * appdomain.c gc.c object.c: Avoid executing managed code when running
9313         in no-exec mode.
9314         
9315         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9317         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9318         special case when the mono_assembly_loaded () returns NULL because the 
9319         search hook is not installed.
9321 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9323         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9324         crashes in bstr marshalling on linux.
9326 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9328         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9329         with more than one parameter.
9331 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9333         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9334         start/stop flow control as well when turning off ICANON (allows
9335         C-s and C-q to be read by Console.ReadKey).
9337 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9339         * class.c (mono_class_init): Move the initialization of nested classes
9340         into mono_class_get_nested_types (). Fixes #418433.
9342         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9343         flag.
9345         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9346         iterating tough the nested classes of a class.
9348 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9350         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9351         on arm.
9353 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9355         * console-io.c (sigcont_handler): Support signal chaining for
9356         SIGCONT.
9358         (console_set_signal_handlers): Use best practices with sigaction,
9359         clear the structure before using it. 
9361 2008-08-22  Robert Jordan  <robertj@gmx.net>
9363         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9364         Fix the Windows build.
9366 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9368         * class.c (mono_class_generic_sharing_enabled): Make the default
9369         sharing mode 'corlib'.
9371 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9373         * console-io.c (console_set_signal_handlers): Fix a warning.
9375         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9376         method normally, the JIT will take care of avoiding recursion.
9378 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9380         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9382         Code is contributed under MIT/X11 license.
9384 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9386         * console-io.c (sigcont_handler): We need to restore the entire
9387         termios state, not only the original settings, as things like echo
9388         can be controlled after this (Booish exposes this issue with its
9389         own ReadLine implementation).
9391         Additionally, we need to set the terminal back into keypad_xmit
9392         mode.
9393         
9394         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9395         string as a paramter as well.   Otherwise we get different
9396         keyboard sequences.
9398 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9400         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9401         delegates with byref out parameter passing. Fixes #351520.
9403         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9404         a generic context.
9405         (mono_type_get_desc): Add the type arguments for GENERICINST.
9406         (mono_method_full_name): Stringify the class name using mono_type_full_name
9407         so it picks up generic arguments.
9409 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9411         * console-io.c: Removed debug output.
9413 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9415         reflection.c (mono_reflection_create_runtime_class): Alloc
9416         the nested classes linked list using the dynamic image mempool.
9417         Fixes leak in corlib compilation.
9419 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9421         * console-io.c: Fix incredibly annoying behavior on the console
9422         after resuming execution after control-z.   This affected every
9423         console application.
9425 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9427         * mempool-internals.h: Header for mono private mempool functions. The first
9428         two function are for allocating glib linked lists using pools.
9430         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9432         * Makefile.am: Added mempool-internals.h.
9434 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9436         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9437         (mono_domain_free): Ditto.
9439         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9440         be used by the JIT to store its domain-specific information, instead of putting
9441         it directly into MonoDomain.
9443         * domain.c (mono_install_create_domain_hook): New helper function to install
9444         a hook which initializes domain->runtime_info.
9446         * domain.c (mono_install_free_domain_hook): Ditto.
9447         
9448 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9450         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9451         asserting if the ares parameter is null.
9453         * mono-perfcounters.c: Fix warnings.
9455         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9456         is not needed, don't check for interruptions either.
9457         (mono_marshal_get_delegate_end_invoke): Ditto.
9459 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9461         * mono-perfcounters.c (predef_readonly_counter): added support for
9462         reading the ASP.NET Requests Queued counter from another process.
9464 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9466         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9467         MonoImage to simplify the AOT code.
9469 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9471         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9472         marshalling. Fixes #416078.
9474 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9475         
9476         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9477         it is set, looking up the icall address is deferred to the JIT, since 
9478         in embedded scenarios, the icall might not be registered in the runtime
9479         doing the AOT compilation. Backported from the 2.0 branch.
9481 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9483         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9484         Fixes #415621.
9486 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9488         * Makefile.am: added support for cross-compilation.
9490 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9492         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9494 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9496         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9498 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9500         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9501         mono-perfcounters.c: performance counters implementation.
9503 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9505         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9506         to gpointer, letting the AOT code decide what to store in it.
9508 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9510         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9511           mono_class_setup_methods if the methods are not initialized.
9513         Code is contributed under MIT/X11 license.
9515 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9517         * verify.c: Remove some debug code I commited by accident.
9519         * verify.c (mono_method_is_valid_in_context): Change the return value
9520         to make possible to distinguish between invalid and unverifiable.
9522         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9523         methods.
9525 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9527         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9528         constraints. Fixes regression in gtest-253.
9530 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9532         * verify.c (mono_verifier_verify_class): Don't allow generic types
9533         with explicit layout.
9535         * verify.c (mono_method_verify): Check locals and argument types.
9537 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9539         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9540         wait if the thread is in StopRequested state.
9542         * class.c (mono_class_from_name): Refactor the module searching code into
9543         a separate function so it can be reused in the AOT case too.
9545 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9547         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9548         Check both the type and it's generic type definition for loader errors.
9549         
9550         * verify.c (mono_method_is_valid_in_context): Don't generate another
9551         error when a type errors occur, this leads to the wrong exception been
9552         thrown.
9554 2008-07-28  Dick Porter  <dick@ximian.com>
9556         * icall-def.h
9557         * process.c
9558         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9559         New internal calls to duplicate and close a process handle.
9561 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9563         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9565 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9567         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9569 2008-07-27  Robert Jordan  <robertj@gmx.net>
9571         * class.c (mono_class_init): Don't compute class.has_finalize for
9572         valuetypes. Fixes #412477.
9574 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9576         * verify.c: Implement constraint equivalence checking.
9577         This is required when a generic parameter is used as
9578         argument to a constrained one.
9580         Fixes #410637.
9582 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9584         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9586         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9588         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9589         synch with managed object layout.
9591 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9593         * verify.c (do_branch_op): Handle valuetypes and generic
9594         arguments properly.
9596         * verify.c (do_cmp_op): Same.
9598         Fixes #410383.
9600 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9602         * generic-sharing.c: Fix memory leaks.
9604         * class.c, class-internals.h: Make
9605         mono_class_inflate_generic_type_with_mempool() non-static.
9607 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9609         * pedump.c (dump_verify_info): Dump full class name.
9611 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9613         * generic-sharing.c: Removed some old code that didn't do anything.
9615 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9616         * profiler.c: Added runtime_initialized_event,
9617         mono_profiler_install_runtime_initialized and
9618         mono_profiler_runtime_initialized. This new hook tells the profiler
9619         when the runtime is sufficiently initialized to be able to call
9620         mono_thread_attach on the root appdomain.
9621         * profiler.h, profiler-private.h: Likewise.
9623 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9625         * verify.c (do_cast): Do boxing for generic arguments as well.
9627         * class.c (is_nesting_type): Drop generic instantiations before
9628         checking for nesting.
9630         * class.c (can_access_instantiation): Allow access to generic
9631         arguments.
9633 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9635         * verify.c (verify_class_for_overlapping_reference_fields):
9636         On some cases, the field size might be zero, guard against that.
9637         Fix the explicit layout check to work as expected.
9639 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9641         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9642         mono_thread_resume () during shutdown, since the thread we want to abort
9643         might be suspended.
9645 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9647         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9648         warning.
9650         * debug-mono-symfile.c: Fix a warning.
9652         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9654         * object.c (mono_class_vtable): Check if exception_type is set, and return
9655         NULL as defined by the function comments.
9657 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9659         * mempool.c: Use malloc for every single mempool allocation if the
9660         configure option is set.  This makes it easier to track mempool
9661         allocations with tools like Valgrind.
9663 2008-07-22  Jb Evain  <jbevain@novell.com>
9665         * reflection.c (create_dynamic_mono_image): emit the same
9666         metadata version that SL2 does when creating a SL2 image.
9668 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9670         * icall-def.h:
9671         * icall.c: New icall System.Enum:get_hashcode. This function
9672         avoids the overhead of boxing the enum to the underlying type.
9674 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9676         * reflection.c (mono_method_get_object): Don't let static RGCTX
9677         invoke wrappers get into MonoReflectionMethods.
9679 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
9681         * object-internals.h:
9682         * object.c: New mono_runtime_class_init_full function
9683         that makes throwing the exception optinal.
9685         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
9686         for the case where the exception object is supplied.
9688 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
9690         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
9691         old ld versions.
9693         Contributed under MIT/X11 license.
9695 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9697         * string-icalls.c (ves_icall_System_String_InternalSplit):
9698         Optimize array allocation by caching the MonoClass of the
9699         array type.
9701         * icall.c (ves_icall_Type_GetMethodsByName): Same.
9703         * reflection.c (mono_param_get_objects): Same.
9705 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9707         * icall-def.h:
9708         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
9709         It inflates the given type using the class context.
9711 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
9713         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
9714         the vtable if it already exists.
9716         * object-internals.h: Add mono_class_try_get_vtable as part of the
9717         internal API.
9719         * reflection.c (mono_type_get_object): Use the MonoObject from the
9720         vtable when possible. Reduces locking contention on reflection heavy
9721         code.
9723 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
9725         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
9726         g_bit_nth_msf () since that macro is not implemented in eglib.
9728 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9730         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
9731         on platforms which do not support it.
9733 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9735         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
9737 2008-07-11  Martin Baulig  <martin@ximian.com>
9739         * mono-debug-debugger.h
9740         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
9742         * mono-debug-debugger.c
9743         (_mono_debugger_interruption_request): New global volatile variable.
9744         (mono_debugger_check_interruption): New public function.
9746         * threads.c
9747         (mono_thread_current_check_pending_interrupt): Call
9748         mono_debugger_check_interruption().
9749         (mono_thread_interruption_checkpoint_request): Likewise.
9751 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9753         * verify.c: Add more type checks for loaded types. Verify the result
9754         handle from ldtoken.
9756 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9758         * loader.c (field_from_memberref): Don't crash if the field
9759         wasn't found.
9761 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9763         * verify.c: Verify if type and method instantiations
9764         don't have invalid VAR or MVAR arguments.
9766 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9768         * verify.c: Fix double free of function pointer list.
9770 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9772         * object.c (mono_string_to_utf8): Comment the new code as it
9773         breaks under eglib.
9775 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
9777         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
9779 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9781         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
9782           is not throw too many times.
9784         Code is contributed under MIT/X11 license.
9786 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9788         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
9789         debugging is turned off.
9791 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9793         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
9795 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9797         * class-internals.h, class.c: Added new generic sharing option:
9798         Share only stuff in System.Collections.Generic, which is now the
9799         default.
9801 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9803         * generic-sharing.c, class-internals.h: New function for getting a
9804         generic method in a generic class given the corresponding method
9805         for a different instantiation of the class.  Partly refactored
9806         from mini-trampolines.c.
9808         * class.c: Make sure generic methods have a class_inst if they are
9809         part of a generic class.
9811         * metadata.c (mono_type_stack_size_internal): Handle type
9812         variables.
9814 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9816         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
9817         Signifies whether information on the this/vtable/mrgctx variable
9818         is available.
9820 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9822         * object.c, object-internals.h, icall.c: New function
9823         mono_delegate_ctor_with_method(), which does the same as
9824         mono_delegate_ctor(), but takes an explicit method argument
9825         instead of taking the method from the jit info.
9827         * marshal.c: When creating a delegate with an inflated method take
9828         the "this" argument as the target class for the castclass.
9830 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9832         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9833         mono_jit_info_table_find() to perform very badly in some cases.
9835 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9837         * icall.c (type_from_typename): Handle 'string'.
9839         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
9840         wrappers into the wrapper_hash, since the key is not a MonoMethod.
9842 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9844         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
9846         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
9847         number of available managed allocator types.
9849         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
9850         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
9852 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9854         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
9855         which is a low level lock protecting just the 'jit_code_hash' hash table.
9857         * domain.c: Initialize+cleanup jit_code_hash_lock.
9858         
9859 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9861         * coree.c (mono_load_coree): Set coree_module_handle global variable only
9862         after initialization.
9864         * coree.h: Make MonoFixupExe internal.
9866         Contributed under MIT/X11 license.
9868 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9870         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
9871         because that is platform independent. Check NumberOfRvaAndSizes in PE32
9872         as well.
9873         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
9874         image being loaded is a CLI image and _CorValidateImage gets called.
9876         * coree.h: Add MonoLoadImage.
9878         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
9879         instead of LoadLibrary.
9881         Contributed under MIT/X11 license.
9883 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
9885         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
9886         for any primitive type.
9888 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9890         * object.c (mono_array_new_specific): Optimize this and the other allocation
9891         functions a bit.
9892         
9893         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
9894         domains too if mono_dont_free_domains is set.
9896         * domain-internals.h (mono_dont_free_domains): New internal option controlling
9897         whenever to free appdomain data after it has been unloaded.
9899         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
9900         
9901 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
9903         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
9904         (mono_method_get_equivalent_method): Fix a warning.
9906         * object.c (mono_message_init): Avoid looking up array types for each call.
9908 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9910         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
9911         call.
9913         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
9914         even more.
9916         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
9917         each iteration.
9919         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
9920         fields of an enum.
9922 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
9924         * object.c (mono_value_box): Fix boxing of nullables.
9926 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
9928         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
9929         mono_module_handle that is defined by the linker; no initialization required.
9930         * coree.h: Remove mono_module_handle, add __ImageBase, update
9931         mono_image_open_from_module_handle.
9932         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
9933         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
9934         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
9935         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
9936         to 4 GB away from image base address. IA64 version is not tested but was very
9937         easy to implement and should work if we ever need it.
9938         * domain.c (mono_init_internal): Avoid system error message boxes.
9939         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
9940         with has_entry_point. Handle do_mono_image_load fauilre correctly.
9941         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
9942         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
9943         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
9945         Contributed under MIT/X11 license.
9947 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9949         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
9950         as part of the private mono API.
9951         
9952         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
9953         Do proper argument checking for methods that belong to generic classes.
9954         Do proper type resolution for GMFH/2.
9955         Fixes #377324.
9956         
9957 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9959         * verify.c (do_switch): Fix a memory corruption bug with
9960         the jump index is out of bound.
9962 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9964         * verify.c: Disable debug code.
9966 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9968         * reflection.c (mono_image_get_methodbuilder_token): Use
9969         mono_image_get_methodspec_token_for_generic_method_definition
9970         instead of mono_image_get_memberref_token. We cache more memberef
9971         entries now.
9973 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9975         * verify.c: Inflate exception clause types.
9976         Fixes #402606.
9977         
9978 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9980         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
9981         name.
9983         * reflection.c (mono_image_get_ctorbuilder_token): Same.
9985         * reflection.c (mono_image_create_method_token): Same.
9987 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9989         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
9990         It does the same as mono_image_get_methodref_token but works on
9991         MethodBuilder.
9993         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
9994         and always generate a methodspec. This follows the old behavior and fixes
9995         the regressions in System.Core. 
9997 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
9999         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10000         don't event mono_class_get () succeeds. Fixes #402182.
10002 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10004         * metadata-internals.h: Added MonoDynamicImage::methodspec
10005         hashtable to store methodspec tokens created for MethodBuilders.
10007         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10008         MethodBuilders as open instantiations if a methodspec was requested.
10010         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10012         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10014         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10016         Fixes bug #349190.
10018 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10020         * loader.c (method_from_methodspec): Avoid crashing if the
10021         method lookup fails.
10023 2008-06-20  Dick Porter  <dick@ximian.com>
10025         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10026         classes being in a different assembly.  Fixes bug 399184.
10028 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10030         * loader.c (mono_loader_init): Make this callable multiple times.
10031         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10032         the runtime is initialized. Fixes #401755.
10034 2008-06-19  Dick Porter  <dick@ximian.com>
10036         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10037         Fixes bug 349688.
10039 2008-06-19  Dick Porter  <dick@ximian.com>
10041         * socket-io.c:
10042         * icall-def.h: Implement Socket generic Send() and Receive()
10043         methods.  Fixes bug 395168.
10045 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10047         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10049         Contributed under MIT/X11 license.
10051 2008-06-18  Martin Baulig  <martin@ximian.com>
10053         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10054         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10055         set to 80.0.  The debugger <-> runtime interface is now frozen as
10056         well.   
10058         * mono-debug.c
10059         (mono_debug_debugger_version): Bump to 4.
10061 2008-06-18  Martin Baulig  <martin@ximian.com>
10063         * debug-mono-symfile.c
10064         (load_symfile): Don't check the minor version.
10066         * debug-mono-symfile.h: Bump the version number to 50.0.
10068 2008-06-18  Martin Baulig  <martin@ximian.com>
10070         * debug-mono-symfile.c
10071         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10072         minimum required version.
10074 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10076         * reflection.c (mono_custom_attrs_from_property): Fix support for
10077         retriveving cattrs of dynamic inflated generic types.
10079         * reflection.c (mono_custom_attrs_from_event): Same.
10081         * reflection.c (mono_custom_attrs_from_field): Same;
10083         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10085         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10086         Moved to metadata.c.
10088         * metadata.c: New functions to retrive the equivalent field, event
10089         of property from the generic type definition.
10091         * metadata-internals.h: Added new functions from metadata.c.
10093 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10095         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10096         to cached in a mempool is used.
10098         * metadata.c (free_generic_class): In some situations field generic_info type
10099         is not properly dup'ed and leads to double free'ing.
10101         Fixes #400643.
10103 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10105         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10106         this arguments (will be needed later for generic methods).
10107         Collect stats.
10109 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10111         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10112         Create a static RGCTX invoke wrapper for methods which require it.
10114 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10116         * object.c, class-internals.h: New function for checking whether
10117         an individual field is special static.
10119 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10121         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10122         linear search since the table is sorted.
10124         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10125         Fixes #324180.
10127 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10129         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10130         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10132         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10134         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10135         
10136         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10137         InterlockedCompareExchange to query and modify 
10138         thread->interruption_requested.
10140         * object-internals.h (struct _MonoThread): Change interruption_requested
10141         to a gint32 so it can be modified by atomic operations. Add 
10142         'critical_region_level' from the managed side, change small_id to a guint32,
10143         add new set of 'unused' fields.
10145         * appdomain.c: Bump corlib version.
10147 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10149         * class.c (mono_class_from_name): Search modules as well. Fixes
10150         #322332.
10152 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10154         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10155         templates.  Templates are generalized with an additional type_argc
10156         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10157         have type_argc>0.
10159         * domain-internals.h, domain.c: New hash table for looking up
10160         MRGCTXs.
10162         * metadata.c, metadata-internals.h: Rename hash and equal
10163         functions for MonoGenericInst's and make them public.
10165         * class-internals.h: New data structures for the MRGCTX.  Macros
10166         for distinguishing slots in the RGCTX and the MRGCTX.
10168 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10170         * object.c (mono_method_get_imt_slot): Put the same methods of
10171         different instantiations of the same generic interface in the same
10172         IMT slots, to make generic sharing simpler.
10174 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10176         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10178         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10179         This function works just like mono_metadata_field_info, but
10180         accept a mempool as argument to be used allocating memory.
10182         * marshal.c (mono_marshal_load_type_info): Use new function
10183         to load marshal data into image mempool.
10185 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10187         * class.c (mono_class_inflate_generic_type_with_mempool):
10188         This function allows to inflate a generic type using
10189         a mempool.
10191         * class.c (inflate_generic_type): Take a mempool as argument
10192         and use it to do type dup'ing.
10194         * class.c (mono_class_setup_fields): Field type for generic
10195         generic classes are allocated from the image mempool.
10197         * metadata.c (free_generic_class): Inflated field type is
10198         now allocated in the image mempool.
10200 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10202         * threads.c (thread_cleanup): Free MonoThread::name.
10204 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10206         * appdomain.c (ensure_directory_exists): avoid unnecessary
10207         mkdir(2) calls when the shadow directory already exists.
10208         (mono_make_shadow_copy): copy also satellite assemblies from the
10209         private bin directories.
10211 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10213         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10214         
10215         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10216         a page boundary. Fixes #396219.
10218 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10220         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10221         due to double-checked locking.
10223 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10225         * assembly.c (build_assembly_name): Release memory on failure.
10227         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10229 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10231         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10232         memory on failure.
10234 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10236         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10237         memory on failure.
10239 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10241         * loader.c (field_from_memberref): Check if field signature type is equal
10242         to the non-inflated type of the field. Fixes #398980.
10244 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10246         * assembly.c (mono_assembly_load_from_full): Call 
10247         mono_assembly_load_friends () outside the assemblies lock, since it can
10248         acquire the loader lock. Fixes #323696.
10250         * reflection.c (resolve_object): Inflate the inst with the context for
10251         FieldOnTypeBuilderInst. Fixes #399010.
10253 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10255         * reflection.c (mono_image_get_field_on_inst_token): Don't
10256         inflate the field to encode it's signature. If it's a
10257         VAR or MVAR it should stay that way in the signature.
10258         Fixes #399047.
10260 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10262         * reflection.c (resolve_object): Release memory of inflated types.
10264 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10266         * loader.c (mono_method_get_signature_full): Remove assert about
10267         loading a methodspec to a generic method. We have such methods, such as
10268         System.Threading.Interlocked::CompareExchange<T>.
10269         This assert was removed since it crashes the verifier when it checks
10270         methods calling CompareExchange<T>.
10272 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10274         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10275         of Type array and not MonoType.
10277 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10279         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10280         <lupus@ximian.com>
10282 2008-06-10  Martin Baulig  <martin@ximian.com>
10284         * debug-mono-symfile.h
10285         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10286         changes to the file format, but we were generating incorrect
10287         source file indices in the line number table due to a bug, which
10288         made backtraces report an incorrect source file.
10290 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10292         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10293         mini/debug-mini.c to here.
10295         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10297         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10298         use it to release structs returned by mono_debug_find_method.
10300 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10302         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10303         since it needs to set method->slot for all interface methods.
10305 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10307         * class-internals.h: Forgot to add.
10309 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10311         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10313         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10314         Lookup the custom attributes from property_hash.
10316         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10317         in property_hash. Allocate all data using the image mempool.
10319         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10320         for dynamic_custom_attrs to checks if the image is dynamic.
10322 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10324         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10325         assemblies array.
10326         
10327         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10328         runtime functions while holding the domain assemblies lock.
10330 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10332         * verify.c: Reapplied the last bit of the reverted changes.
10334 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10336         * verify.c: Reapplied more of the reverted changes.
10338 2008-06-09  Martin Baulig  <martin@ximian.com>
10340         * debug-mono-symfile.c (load_symfile): Check the major version
10341         first; if it's wrong, don't print the minor version in the error message.
10343 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10345         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10346         lock instead of the domain lock to avoid deadlocks, since the thread might
10347         already hold the loader lock.
10349         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10350         (mono_thread_attach): Ditto.
10352         * monitor.c: Use a TLS variable for holding the current thread id instead
10353         of calling pthread_self ().
10354         (mono_monitor_init_tls): New internal function to initialize the TLS
10355         variable.
10356         (mono_monitor_try_enter_internal): Put the owner == id check after the
10357         owner == 0 check.
10359         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10360         missed optimizations when using gcc-4.3.
10362 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10364         * reflection.c (mono_dynamic_image_free): Free the memory
10365         used by MonoGenericParam in MonoDynamicImage::gen_param.
10367         * reflection.c (mono_reflection_setup_generic_class): Allocate
10368         container from mempool.
10370         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10371         container from mempool.
10373 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10375         * threads.c (mono_set_pending_exception): New internal function to set the
10376         pending exception of the current thread.
10377         (mono_thread_get_and_clear_pending_exception): Check for 
10378         thread->pending_exception as well.
10380         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10382         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10383         it can trigger a collection.
10385 2008-06-06  Martin Baulig  <martin@ximian.com>
10387         Merged the `debugger-kahalo' branch.
10389         * mono-debug.h
10390         (MONO_DEBUGGER_VERSION): Bumped to 72.
10392         * debug-mono-symfile.h
10393         (MonoSymbolFileMethodIndexEntry): Removed.
10394         (MonoSymbolFileMethodEntry): New public typedef.
10395         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10396         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10397         `data_offset'.
10398         (MonoSymbolFileMethodEntry): Removed.
10399         (MonoSymbolFileLexicalBlockEntry): Removed.
10400         (MonoSymbolFileLineNumberEntry): Removed.
10401         (MonoDebugLexicalBlockEntry): Removed.
10402         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10403         removed `num_il_offsets' and `il_offsets'.
10404         (MonoSymbolFile): Replace `version' with `major_version' and
10405         `minor_version'.
10406         (MONO_SYMBOL_FILE_VERSION): Replace with
10407         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10408         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10410         * debug-mono-symfile.c
10411         (mono_debug_symfile_lookup_location): Add support for the new line
10412         number table format.
10414 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10416         * metadata.c (free_generic_class): Release the inflated
10417         MonoClass of dynamic generic classes if it's not a generic
10418         type definition.
10420 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10422         * verify.c: Reapplied more of the reverted changes.
10424 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10426         * reflection.c (lookup_custom_attr): Clean the cached flag or
10427         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10428         for SRE types.
10430 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10432         * verify.c: Reapplied a small part of the reverted changes.
10434 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10436         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10438         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10439         previously in managed code.
10440         (mono_monitor_exit): Ditto.
10441         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10443         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10444         the managed definition.
10446 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10448         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10450 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10452         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10453         
10454         * monitor.c: Add some micro optimizations.
10456         * icall.c (type_from_typename): Handle 'bool'.
10458 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10460         * verify.c: Implement constructor verification per P III 1.8.1.4.
10461         Fixes #396716.
10463 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10465         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10466         holding the assemblies lock here too.
10468 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10470         * verify.c: Kill stack_top function.
10472 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10474         * verify.c: Kill stack_get function.
10476 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10478         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10480 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10482         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10483         more reliable.
10485         * verify.c (mono_method_verify): Inflate params and locals to avoid
10486         mismatch when checking for compatibility.
10488 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10490         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10491         Length prefix should be size in bytes. Fix bug #339530.
10492         
10493         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10494         Length prefix should be size in bytes. Fix bug #339530.
10496         Code is contributed under MIT/X11 license.
10498 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10500         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10502         Contributed under MIT/X11 license.
10504 2008-06-05  Martin Baulig  <martin@ximian.com>
10506         * mono-debug-debugger.c
10507         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10509 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10511         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10512         while holding the assemblies lock to prevent deadlocks. Handle the case
10513         where the search hook returns NULL but the assembly was still loaded.
10514         Fixes #323696.
10516         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10517         modify domain state.
10519 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10521         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10522         * Makefile.am (pedump_LDADD): Post-process object files and
10523         add dtrace-generated object file, if necessary.
10525         Code is contributed under MIT/X11 license.
10527 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10529         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10531 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10533         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10535 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10537         * threads.c: Try to free everything from the delayed free table
10538         when shutting down threads, and set the variable to NULL after the
10539         table is freed so that calling
10540         mono_thread_hazardous_try_free_all() when shutting down the root
10541         domain doesn't crash.
10543 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10545         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10546         the caller if resulting type was inflated.
10548         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10549         was inflated.
10551         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10554 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10556         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10557         class library tests.
10559         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10560         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10561         #396989.
10563 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10565         * domain.c, domain-internals.h: The JIT infos are now freed by the
10566         JIT info table code.  They are freed immediately if there only a
10567         single JIT info table in circulation.  If there is more, the free
10568         is delayed via a queue.
10570         * threads.c, threads-types.h: New hazard pointer function for
10571         freeing all freeable delayed items in one sitting.
10573 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10575         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10577         * reflection.c (typebuilder_setup_properties): Same.
10579         * reflection.c (typebuilder_setup_events): Same.
10581 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10583         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10584         and use it for allocating memory.
10586         * reflection.c (mono_marshal_spec_from_builder): Same.
10588         * reflection.c: Change code to use new signatures.
10590         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10592 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10594         * decimal.c (rescale128): Put back one line which was accidently commented
10595         out.
10596         
10597         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10598         to cause crashes.
10600 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10602         * reflection.c (mono_reflection_generic_class_initialize): Name must
10603         be always malloc'ed so we can free it later on. Do this for field, property
10604         and event.
10606         * metadata.c (free_generic_class): Free field, property and event names.
10608 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10610         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10611         instead of g_memdup.
10613         * reflection.c (typebuilder_setup_fields): Same.
10615 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10617         * decimal.c (rescale128): Optimize this function a bit more.
10619 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10621         * metadata.c (free_generic_class): Release some memory from
10622         SRE generic classes.
10624 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10626         * reflection.c (mono_image_get_generic_field_token): No reference
10627         to name is kept, free it.
10629         * reflection.c (mono_reflection_generic_class_initialize): Free
10630         more memory of the inflated field.
10632 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10634         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10635         code.
10637 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10639         * reflection.c (mono_dynamic_image_free): Release memory used by
10640         MonoDynamicImage::array_methods elements.
10642         * reflection.c (assembly_add_win32_resources): Release memory after
10643         encoding.
10645 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10647         * decimal.c (log2_32): Use an optimized version for this function too.
10648         
10649         * decimal.c (log2_64): Fix this on 32 bit machines.
10651 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10653         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10655         * class.c (mono_metadata_signature_deep_dup): Same.
10657         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10658         a mempool.
10660         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10662         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10664         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10666         * class-internals.h: Update signatures to take a MonoMemPool.
10668 2008-06-02  Dick Porter  <dick@ximian.com>
10670         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10671         * icall-def.h: Add
10672         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10673         FormatMessage API to get the error text.  Fixes bug 321827.
10675 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10677         * decimal.c: Add some micro optimizations to make decimal operations faster.
10679 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
10681         * reflection.c (method_encode_clauses): Take a mempool
10682         as parameter and use it to allocate the clause array.
10684         * reflection.c (mono_image_get_field_on_inst_token): Free
10685         the inflated type after encoding it.
10687         * reflection.c (mono_dynamic_image_free): Free each element
10688         of MonoDynamicImage::gen_params.
10690         * reflection.c (reflection_methodbuilder_to_mono_method):
10691         Allocate the generic param array from the mempool.
10692         Allocate signature params from the mempool.
10694         * reflection.c (mono_reflection_generic_class_initialize):
10695         Free inflated fields after been used.
10697 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10699         * icall.c: Reapply the memory leak fixes as they no
10700         longer make mono crash.
10702 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10704         * reflection.c (mono_type_get_object): Don't store the suplied
10705         MonoType with type_hash. A caller which pass a type that
10706         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
10707         might end with a pointer to freed memory.
10708         The solution is to use byval_arg or this_arg from the associated
10709         MonoClass of the supplied type.
10711 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
10713         * icall.c: Revert the rest of the last change as it breaks the build too.
10715 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10717         * icall.c: Revert a leak fix as it's breaking the build.
10719 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10721         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
10723 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10725         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
10727 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10729         * icall.c: Fix some memory leaks.
10731 2008-05-29  Dick Porter  <dick@ximian.com>
10733         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
10734         async socket operations from the pending list when a socket
10735         closes.  Leaving it until the threadpool services the event
10736         exposes a race condition when a socket descriptor is reused.
10737         Fixes bug 377589.
10739 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10741         * object.c: Fix negative index check for array alocation.
10743 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10745         * icall.c, marshal.c: Delegate wrappers should skip visibility.
10746         This check is performed by the verifier for IL created delegates
10747         and by Delegate::CreateDelegate for programatically created ones.
10748         Fixes #372406.
10750 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10752         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
10753         Fix code to use mono_array_size_t instead of int.
10755         Based on patch by Luis F. Ortiz.
10756         Contributed under X11 license.
10757         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10759 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10761         * icall.c: Added ves_icall_System_Array_GetLongLength and
10762         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
10763         arrays.
10765         * icall.h: Export both new functions.
10767         Based on patch by Luis F. Ortiz.
10768         Contributed under X11 license.
10769         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10771 2008-05-28  Martin Baulig  <martin@ximian.com>
10773         The debugger now requires exactly r103463.
10775         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
10776         This version is not supported by the debugger, wait for 72.
10778 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10780         * object.h: Changed array related functions to use
10781         mono_array_size_t instead of guint32. Forgot to commit this file.
10783         Patch by Luis F. Ortiz.
10784         Contributed under X11 license.
10785         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10788 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10790         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
10791         don't define it. Use the number literal instead.
10793 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10795         * icall.c: Changed array related functions to use
10796         mono_array_size_t instead of guint32.
10798         * icall.c (ves_icall_System_Array_GetLength): Check for length
10799         overflow under MONO_BIG_ARRAYS.
10801         Based on patch by Luis F. Ortiz.
10802         Contributed under X11 license.
10803         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10805 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10807         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
10809         Based on patch by Luis F. Ortiz.
10810         Contributed under X11 license.
10811         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10813 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10815         * object.c, object.h: Changed array related functions to use
10816         mono_array_size_t instead of guint32.
10818         Patch by Luis F. Ortiz.
10819         Contributed under X11 license.
10820         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10822 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10824         * object.h: Introduced mono_array_size_t typedef. This must be used
10825         in all places an array length is expected. This is 64bits wide if
10826         MONO_BIG_ARRAYS is enabled.
10828         Patch by Luis F. Ortiz.
10829         Contributed under X11 license.
10830         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10832 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10834         * security-manager.c class.c: Set the class exception info by calling
10835         mono_class_set_failure ().
10837         * class.c (mono_class_get_exception_data): New accessor function.
10838         (mono_class_set_failure): Store exception_data in the property hash.
10840         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
10841         the struct as a property.
10843         * loader.c (mono_get_method_full): Store the lookup result for method
10844         tokens in method_cache, the others in methodref_cache to decrease the memory
10845         usage of hash tables.
10847         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
10848         (mono_image_init): method_cache is lazy inited now.
10850         * metadata-internals.h (struct _MonoImage): Change method_cache to
10851         a MonoValueHashTable, add a separate methodref_cache.
10853 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
10855         * number-formatter.h: Fix tables to avoid arithemtic overflow in
10856           Double.ToString as exposed by Bug #383531.
10858 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
10860         * number-formatter.h: Make some tables static.
10862         * class.c (mono_method_set_generic_container): New accessor function.
10863         (mono_method_get_generic_container): Ditto.
10865         * class-internals.h (struct _MonoMethod): Remove rarely used 
10866         'generic_container' field, store it in the property hash instead. Add 
10867         'is_generic' boolean field instead.
10869         * image.c (mono_image_init): Initialize property_hash.
10870         (mono_image_close): Destroy property_hash.
10872         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
10873         hold rarely used fields of runtime structures belonging to this image.
10875         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
10876         to get/set method->generic_container.
10878         * loader.c (mono_get_method_from_token): Avoid loading the method header for
10879         generic methods.
10881 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
10883         * class.c (mono_class_inflate_generic_method_full): Don't increase
10884         mono_stats.inflated_method_count for methods found in the cache.
10886         * threads.c (mono_thread_request_interruption): Add a comment about 
10887         QueueUserAPC ().
10889 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
10891         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
10892         interface_offsets_packed table.
10893         
10894         * class.c (mono_class_init): Remove some dead code.
10896         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
10897         mono_class_setup_vtable () when CAS is active to detect security problems.
10899 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
10901         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
10903         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
10904         parameters as it's irrelevant for delegate checking.
10906 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
10908         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
10910         * class.c (mono_class_init): Control the creation of a generic vtable using
10911         a global which is true by default, but set to false by the runtime startup code.
10912         
10913         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
10914         Disabled for now since it breaks the embedding API.
10915         Move the setup of class->methods for arrays to mono_class_setup_methods ().
10916         (mono_class_setup_methods): Add a memory barrier.
10918         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
10919         when mono_class_init () doesn't compute the generic vtable.
10920         
10921 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
10922         * profiler.c: Added mono_profiler_install_statistical_call_chain,
10923         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
10924         to support call chains (backtrace) in the stat profiler.
10925         * profiler.c, profiler-private.h: Likewise.
10927 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10929         * generic-sharing.c: Init generic class when a method of it is
10930         requested via a runtime generic context.
10932 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
10934         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
10936         * reflection.c (mono_type_get_object): Add a FIXME.
10938         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
10940         * class.c (mono_class_get_method_by_index): New helper function, returning an
10941         entry in the class->methods array.
10943 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10945         * class.c (mono_class_init): Only do the array optimization for szarrays. 
10946         Avoid creating a generic vtable for generic instances as well.
10947         (mono_class_get_method_from_name_flags): Don't search in the metadata for
10948         generic instances.
10950 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
10952         * loader.c (mono_get_method_constrained): Inflate the signature
10953         with class context. Fix #325283.
10955 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10957         * object.c (mono_class_create_runtime_vtable): Add a comment.
10959         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
10960         where needed.
10961         (setup_interface_offsets): Handle the case when this is called twice for arrays.
10962         (mono_class_setup_vtable_general): Add an assert.
10963         (mono_class_init): Avoid creating a generic vtable for arrays.
10965         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
10966         here, let mono_class_init () do that.
10968         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
10969         interfaces in mscorlib.
10971         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
10972         interfaces. Add some comments.
10973         (mono_class_init): Call mono_class_setup_methods () here since it is no
10974         longer called by mono_class_setup_vtable ().
10976         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
10977         not set in class->vtable.
10978         (mono_class_create_runtime_vtable): Reenable the disabled code.
10980         * object.c (mono_class_create_runtime_vtable): Disable the last change for
10981         now as it causes some test failures.
10983         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
10984         if using the vtable trampoline. Also remove some strange code which put the
10985         generic methods themselves into the vtable slots. Remove the AOT init_vtable
10986         stuff as it is no longer needed.
10988 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
10990         * pedump.c: Give make --verify all option check code as well.
10991         Using --verify code won't check for metadata now.
10993 2008-05-19  Martin Baulig  <martin@ximian.com>
10995         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
10997         * mono-debug.c
10998         (_mono_debug_using_mono_debugger): New global variable; it's set
10999         directly by the debugger, so mono_debug_using_mono_debugger() also
11000         works after attaching.
11002 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11004         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11005         as we do double checked locking on MonoClass::runtime_info and
11006         MonoClassRuntimeInfo::domain_vtables.
11008 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11010         * debug-helpers.c (print_field_value): Fix a warning.
11012 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11014         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11015         set in the AOT case.
11017 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11019         * class.c (mono_class_setup_vtable_general): Use memory barriers
11020         as we do double checked locking on MonoClass::vtable.
11022 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11024         * reflection.c (resolve_object): Inflate only if the generic context
11025         is not null. Fixes #389886.
11027 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11029         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11030         instead of g_free.
11032         Code is contributed under MIT/X11 license.
11034 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11036         * class.c: Revert unrelated change.
11038 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11040         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11041         a generic instantiation, use mono_class_from_mono_type instead of playing
11042         with MonoType directly.
11044 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11046         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11047         checks must ignore generic instantiations, so mono_class_has_parent is not
11048         suitable. Fixes #390128.
11050 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11052         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11053         it to avoid registering tokens during metadata generation. Fixes #390023.
11055 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11057         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11058         consistent.
11060         Contributed under MIT/X11 license.
11062 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11064         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11065         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11066         to fixup the EXE image.
11067         (mono_cleanup): Use mono_close_exe_image.
11068         (mono_close_exe_image): New function.
11069         * image.c: Include "marshal.h".
11070         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11071         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11072         counting when the image is loaded outside of mono_image_open_full. Set status
11073         based on GetLastError.
11074         * coree.c: Include required headers. Add init_from_coree.
11075         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11076         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11077         (_CorExeMain): Set init_from_coree.
11078         (CorExitProcess): Only call ExitProcess for now.
11079         (CorBindToRuntimeEx): New stub implementation.
11080         (CorBindToRuntime): New function.
11081         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11082         (MonoFixupExe): ILONLY executables require no fixups.
11083         (mono_set_act_ctx): New function to set activation context.
11084         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11085         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11086         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11087         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11088         as MONO_INTERNAL.
11089         * domain-internals.h: Add mono_close_exe_image.
11091         Contributed under MIT/X11 license.
11093 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11095         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11096         size for generic param and event tables. Fixes #388977.
11098 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11100         * loader.c (mono_method_signature): Use memory barriers because of the double
11101         checked locking pattern.
11103         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11104         aborting or aborted as well. Fixes #376391.
11105         
11106         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11107         existing runtime state in the Suspend handler during shutdown.
11109 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11111         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11113         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11114         which are starting up or shutting down.
11116         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11117         this function never returns if the runtime is already shutting down.
11119         * icall.c (ves_icall_System_Environment_Exit): Update after 
11120         mono_threads_set_shutting_down () signature change.
11121         
11122 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11124         * class.c: Added can_access_instantiation to verify if the instantiation
11125         is visible. Fix access check for nested types as they returned TRUE
11126         before doing type and generic instantiation visibility checks.
11128 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11130         * reflection.c (mono_reflection_create_generic_class): The created type
11131         must have a different container from its TypeBuilder. Otherwise they
11132         will end sharing generic arguments, which is wrong.
11134         Due to the sharing, making a generic instance of the created type using
11135         the TypeBuider generic arguments resulted in the generic type definition
11136         been returned, which is wrong as well.
11138         As a bonus the code was leaking the type_params array. This memory should
11139         be allocated from the image mempool.
11141         This fixes bug #354047.
11143 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11145         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11146         to here         as they are now used in assembly.c new code.
11147         Added a skipverification flag to MonoAssembly.
11148         New internal function mono_assembly_has_skip_verification.
11150         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11151         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11152         part of #387274.
11154 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11156         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11157         needed. Fixes #387034.
11159         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11161 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11163         * assembly.c (mono_assembly_load_reference): Prevent crash while
11164         disassembling Silverlight 2.0 executables while we still do not
11165         have GACed libraries.
11167 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11169         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11171 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11173         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11174         of the dynamic case. Fixes #387404.
11176 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11178         *verify.c (mono_verifier_is_class_full_trust): If under
11179         verify_all and the verifier mode was not set, only
11180         gac and corlib types are fulltrust. This makes --verify-all
11181         usable to detect unverifiable code, which is the expected
11182         use case.
11184 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11186         * verify.h: Ops, commited the header with debug
11187         enabled.
11189 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11191         * verify.c (merge_stack): Use the new value on unverifiable
11192         stack merges.
11194         * verify.c (verify_type_compatibility_full): Comparison
11195         of nullable types can't use mono_class_is_assignable_from.
11197         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11198         that makes all verification errors be reported.
11200         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11201         mono_method_verify.
11203 2008-05-05  Robert Jordan  <robertj@gmx.net>
11205         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11206         support for value types. See #386415.
11208         * object.c: comments.
11210         Code is contributed under MIT/X11 license.
11212 2008-05-05  Martin Baulig  <martin@ximian.com>
11214         * debug-mono-symfile.h
11215         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11216         for old pre-terrania symbol files.
11218 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11220         * mono-config.c: Add ppc64 architecture.
11222         Code is contributed under MIT/X11 license.
11224 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11226         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11227           PPC64 uses function descriptors as well.
11229         Code is contributed under MIT/X11 license.
11231 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11233         * object.c (compute_class_bitmap): Ignore literal static fields.
11235         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11236         var has an invalid format.
11237         (describe_ptr): Add some sanity checks for the vtable.
11238         (add_nursery_frag): Clear unused nursery fragments.
11239         (major_collection): Clear all remaining nursery fragments.
11241 2008-05-03  Robert Jordan  <robertj@gmx.net>
11243         * image.c, metadata-internals.h: add thunk_invoke_cache.
11245         * marshal.c, marshal.h: implement
11246         mono_marshal_get_thunk_invoke_wrapper ().
11248         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11250         Code is contributed under MIT/X11 license.
11252 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11254         * verify.c (do_leave): Empty the stack.
11256 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11258         * class.c (mono_class_is_assignable_from): Variance
11259         doesn't work between reference and value types. For example,
11260         given type C<T+>, C<int32> is not assignable to C<object>.
11261         Break the argument checking loop on first error. 
11263 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11265         * icall.c : base64_to_byte_array() needs some more strict
11266           check for sequence of '=' characters. Patch by Santa
11267           Marta (http://deee.g.hatena.ne.jp/santamarta).
11269           Contributed under MIT/X11 license.
11270           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11272 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11274         * domain.c: Disable LoadLibrary support to fix Win32 build.
11276         Code is contributed under MIT/X11 license.
11278 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11280         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11281         to help with cache behaviour.
11283 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11285         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11286         method. 
11288 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11290         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11292 2008-05-01  Dick Porter  <dick@ximian.com>
11294         * process.c (process_get_fileversion): Only pass 16 bits of
11295         language ID to VerLanguageName.  Fixes bug 381204.
11297 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11299         * verify.c (mono_method_verify): Fix the comparison
11300         operator for code bounds check.
11302 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11304         * verify.c (mono_method_verify): Check the bounds of
11305         all access of the code array.
11307 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11309         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11311 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11313         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11314         not valid.
11316 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11318         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11319         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11320         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11321         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11322         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11323         mono_runtime_load.
11324         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11325         runtime initialization from metadata.
11326         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11327         (mono_set_rootdir): Use mono_get_module_file_name.
11328         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11329         handles.
11330         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11331         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11332         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11333         MonoCLIImageInfo. Add support for module handles.
11334         (load_cli_header): Update mono_cli_rva_image_map signature.
11335         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11336         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11337         (mono_image_rva_map): Add support for module handles.
11338         (mono_image_ensure_section_idx): Add support for module handles.
11339         (mono_image_close): Add support for module handles.
11340         (do_load_header): Add support for module handles.
11341         (mono_image_open_from_module_handle): New function for internal use.
11342         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11343         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11344         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11345         handles.
11346         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11347         * image.h: Add mono_image_fixup_vtable.
11348         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11349         support.
11350         * coree.h: New file.
11351         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11352         unsupported native code.
11353         (mono_marshal_set_callconv_from_modopt): New function splitted from
11354         mono_marshal_get_managed_wrapper.
11355         (mono_marshal_get_managed_wrapper): Use
11356         mono_marshal_set_callconv_from_modopt.
11357         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11358         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11359         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11360         that results in a deadlock when the runtime is loaded in _CorDllMain.
11361         * Makefile.am: Add coree.c and coree.h.
11363         Contributed under MIT/X11 license.
11365 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11367         * generic-sharing.c: Search for type arguments in array element
11368         types as well.
11370 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11372         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11374         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11376         * object.c: Don't setup the RGCTX when the vtable is created,
11377         because we're setting it up lazily now.
11379 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11381         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11382         64 bit support.
11384 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11386         * verify.c (verify_class_for_overlapping_reference_fields): 
11387         If class is under fulltrust allow reference types to overllap
11388         if they have the same RVA.
11390 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11392         * pedump.c: Added new flag valid-only, that makes the verifier
11393         behaves just like --security=validil. It won't fail type load
11394         due to unverifiable restrictions.
11396 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11398         * class-internals.h (struct MonoMethod): Added a verification_success
11399         field to cache verifier executions. Reduced MonoMethod:slot size by
11400         one bit.
11402 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11404         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11405         instead of a 'vt' argument to save an indirection and to allow these to be used
11406         for valuetypes.
11407         (scan_vtype): New helper function to scan an area using a gc descriptor.
11408         (mono_gc_wbarrier_value_copy): Implement this.
11409         (handle_remset): Add support for REMSET_VTYPE.
11410         (find_in_remset_loc): Ditto.
11411         (mono_gc_base_init): Allow some debugging options to be controlled through the
11412         use of the MONO_GC_DEBUG env variable.
11413         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11414         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11416 2008-04-23  Martin Baulig  <martin@ximian.com>
11418         * domain.c (mono_domain_create): Move the call to
11419         mono_debug_domain_create() down, after allocating the domain id.
11421 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11423         verify.c (verify_class_for_overlapping_reference_fields): Skip
11424         static fields while verifying for overlapping fields as they
11425         don't matter at all.
11427 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11429         * domain-internals.h: added a declaration of
11430         mono_make_shadow_copy.
11432         * assembly.c (mono_assembly_open_full): shadow copying of
11433         assemblies moved to here, so that all the assemblies within the
11434         application domain's private binary directories can be
11435         processed. Fixes bug #380546
11437         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11438         mono_make_shadow_copy and made non-static. The decision whether
11439         to shadow-copy an assembly is made based on its location - it's
11440         copied if it's in one of the private application domain binary
11441         directories and its different to the target file in the shadow
11442         directory. Fixes bug #380546
11444 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11446         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11448         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11449         types.
11451         * reflection.c (mono_image_create_token): Handle 
11452         Method/ConstructorOnTypeBuilderInst.
11453         (resolve_object): Ditto.
11454         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11455         so it can be called from resolve_object. Also handle the case when the inflated
11456         class already has its methods setup.
11458 2008-04-21  Martin Baulig  <martin@ximian.com>
11460         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11462 2008-04-20  Geoff Norton  <gnorton@novell.com>
11464         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11465         pointer dereference.
11467 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11469         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11470         portability API to look up the assembly file. Fixes behavior in
11471         situations when the application has a bin/ directory, but the
11472         assembly search patch refers to Bin/ (and thus the requested file
11473         name is Bin/SomeLibrary.dll). Fixes bug #379888
11475 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11477         verify.c (mono_type_is_generic_argument): Extracted this check
11478         from a dozen places to here.
11480         verify.c: Fixed all issues related to boxing generic arguments
11481         and their constraints.
11483 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11485         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11487 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11489         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11490         isn't finished yet. Fixes #363447.
11492 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11494         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11495         Fixes #346419.
11497 2008-04-13  Jb Evain  <jbevain@novell.com>
11499         * domain.c: update the 2.1 profile versions.
11500         Merged from the Moonlight 2 branch.
11502 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11504         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11505         mscorlibs for the non-refonly case as well.
11507         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11508         in mono_assembly_load_from_full (). Fixes #378924.
11510 2008-04-11  Geoff Norton  <gnorton@novell.com>
11512         * icall.c: The global extern environ doesn't exist on Mac.  We
11513         need to call NSGetEnviron instead.
11515 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11517         verify.c: Add generic method constraint verification.
11519 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11521         class.c (mono_class_inflate_generic_method_full): Add a long
11522         explanation to the is_mb_open hack. Remove the FIXME.
11524 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11526         * verify.c (mono_method_verify): Mark all unknown opcodes
11527         as invalid. Mark jmp as unverifiable.
11529 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11531         * verify.c: Add code to do type constraint verification on class instances.
11533         * verify.c (mono_verifier_verify_class): Use the type constraint 
11534         verification code.
11536 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11538         * class.c (mono_class_get_field_default_value): Don't pass cindex
11539         as hint to mono_metadata_get_constant_index. The local is not initialized
11540         and should contain garbage most of the time. This could only work
11541         with a lot of luck.
11543 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11545         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11547 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11549         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11551         * class.c (mono_class_from_generic_parameter): Save the token of the
11552         generic param in MonoClass::sizes.generic_param_token.
11554         * reflection.c (mono_custom_attrs_from_class): If the class type is
11555         VAR or MVAR retrieve the attributes of the generic param.
11557 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11559         * class.c (mono_class_init): Do class verification if the verifier
11560         is enabled.
11562 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11564         * verify-internal.h: Added mono_verifier_verify_class.
11566         * verify.c: Added mono_verifier_verify_class. It checks for
11567         classes with explicit layout that have overlapping reference fields.
11569         * pedump.c: Init the verifier state prior to verification. Fixed
11570         command line arguments.
11572 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11574         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11576 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11578         * verify-internals.h: Fix a warning.
11580 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11582         * verify-internals.h: New header with the verifier configuration
11583         extracted from mini.c.
11585         * verify.c: Implemented the new functions exported by verify-internals.h.
11587 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11589         * verify.c: Add proper verification of ckfinite.
11591 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11593         * verify.c (do_conversion): Improved error message to something
11594         more meanfull.
11596         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11597         with primitive types.
11599 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11601         * verify.c: Added tail prefix checking. Marked icall
11602         as unverifible.
11604 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11606         * verify.c: Fix the detection of branches to the middle
11607         of an instruction.
11609 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11611         * verify.c: Implemented verification of volatile. and
11612         unaligned. prefix. Check if a type is valid after retrieving it.
11614 2008-04-01  Dick Porter  <dick@ximian.com>
11616         * process.c (process_get_fileversion): If there's no string block,
11617         set the file language to en_US.  Fixes the other new part of bug
11618         374600.
11620 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11622         * class.c: New functions mono_method_can_access_field_full and
11623         mono_method_can_access_method_full. They perform type visibility
11624         and type site check.
11626         * class-internal.h: Added exported functions.
11628         * verify.c: Use new functions to implement proper visibility checks.
11630 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11632         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11634 2008-03-28  Dick Porter  <dick@ximian.com>
11636         * process.c (process_get_fileversion): Use the first language ID
11637         we see, rather than insisting on an invariant language.  Fixes bug
11638         374600.
11640 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11642         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11643         the streams to fix reading of invalid memory later.
11645         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11646         to ease debugging.
11648 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11650         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11651         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11653 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11654         * threads.h: Added MonoThreadManageCallback type and
11655         mono_thread_set_manage_callback prototype
11656         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11657         (used to store the mono_thread_manage callback).
11658         * threads.c: Added mono_thread_set_manage_callback, and handle
11659         "MonoThread->manage_callback" in build_wait_tids.
11661 2008-03-26  Dick Porter  <dick@ximian.com>
11663         * process.c (process_get_fileversion): Set FileVersionInfo strings
11664         to Empty when the resource doesn't have the particular info.
11665         Fixes bug 355717.
11667 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11669         * verify.c (mono_method_verify): Proper prefix validation.
11671 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11673         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11674         itself in a separate argument instead of throwing them. Fixes #373448.
11676         * appdomain.c: Bump corlib version.
11678 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
11680         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
11682 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
11684         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
11685         version macros.
11687 2008-03-20  Mark Probst  <mark.probst@gmail.com>
11689         * generic-sharing.c, class-internals.h: Code for putting
11690         reflection types into the runtime generic context.
11692 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
11694         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
11695         Fixes #340662. 
11698 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
11700         * verify.c (VerifyContext): Added instruction prefix data to the struct.
11702         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
11704         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
11706         * verify.c (do_cast): Let the result value keep the boxed status.
11708         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
11710 2008-03-17  Jb Evain  <jbevain@novell.com>
11712         * reflection.c: when running on a 2.0 runtime, emit
11713         unconditionally the #~ header version as 2.0, and the
11714         CLI header version as 2.5, for symmetry's sake with csc.
11716 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11718         * class.c: Remove the unused cache_interface_offsets stuff.
11720         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
11721         profiler.c: Fix warnings.
11723 2008-03-16  Mark Probst  <mark.probst@gmail.com>
11725         * generic-sharing.c, class-internals.h: Support for putting
11726         methods into the runtime generic context.
11728 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11730         * class.c (mono_class_setup_fields): Ignore calls made to this function for
11731         classes which are generic instances of not-yet finished typebuilders. Fixes
11732         #351172.
11734         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
11736 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
11738         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
11740         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
11741         field, replace it with a hash table in MonoDynamicImage.
11743         * reflection.c (inflate_mono_method): Access the generic definition object from
11744         image->generic_def_objects instead of imethod->reflection_info.
11746         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
11748         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
11749         
11750         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
11751         function in reflection.c so it is easier to keep in sync with the dynamic image
11752         creation code.
11754         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
11755         mono_image_close ().
11757 2008-03-15  Mark Probst  <mark.probst@gmail.com>
11759         * class.c (mono_class_generic_sharing_enabled): Disable generic
11760         sharing for all architectures except AMD64 and x86 to fix build.
11762 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11764         * verify.c: Use the generic definition MonoGenericContext when available.
11765         Remove code for checking generics instance compatibility in favor of
11766         mono_class_is_assignable_from.
11768 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11770         * marshal.c, marshal.h, metadata-internals.h, image.c,
11771         wrapper-types.h: New wrapper for invoking a shared static method
11772         without having to pass the runtime generic context argument.
11774 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11776         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
11778 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11780         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
11781         
11782         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
11783         create a token from a FieldOnTypeBuilderInst.
11784         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
11785         (resolve_object): Ditto.
11787         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
11788         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
11790 2008-03-14  Martin Baulig  <martin@ximian.com>
11792         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
11794         * debug-mono-symfile.h
11795         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
11796         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
11798 2008-03-10  Martin Baulig  <martin@ximian.com>
11800         * debug-mono-symfile.h
11801         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
11802         `lexical_block_table_offset'.
11803         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
11804         `lexical_blocks'.
11805         (MonoSymbolFile): Added `version'.
11807         * mono-debug.h
11808         (MonoDebugLexicalBlockEntry): Removed.
11809         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
11810         `lexical_blocks'.
11812         * mono-debug.c (mono_debug_add_method): Don't compute lexical
11813         blocks here; the debugger now does this internally.
11815 2008-02-27  Martin Baulig  <martin@ximian.com>
11817         * object.c (mono_runtime_exec_main): Call
11818         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
11819         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
11821 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11823         * verify.c (verify_type_compatibility_full): Allow native int to be converted
11824         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
11826 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11828         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
11829         ldftn with a virtual method.
11831 2008-03-13  Geoff Norton  <gnorton@novell.com>
11833         * decimal.c:  Only include memory.h if the platform has it.
11835 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11837         * assembly.c, class.c, metadata-internals.h: make sure public key
11838         tokesns are compared in a case-insensitive way. Also, all
11839         the lookups in the GAC use a lowercase public key token
11840         (gaacutil already does the lowercasing on install). Fixes
11841         bug #369541.
11843 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
11845         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
11846         and return value.
11848 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
11850         * image.c: when someone loads a mscorlib from a file, return the
11851         currently loaded mscorlib (fixes bug #369253).
11853 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11855         * class.c: handle types with no parents by forcing them to have
11856         System.Object as a parent and marking them as broken (this currently
11857         allows the first part of bug #369173 to work as well, likely because
11858         we don't check for typeload exceptions everywhere yet).
11860 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
11862         * class.c: more complete check that types belong to corlib
11863         (fixes second part of bug #369173).
11865 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
11867         * generic-sharing.c:  Including glib.h for the MSVC builds to define
11868           "inline" to "__inline" before including mono-membar.h.
11869           
11870         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
11871           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
11872           MSVC builds.
11874         Contributed under MIT/X11 license.
11876 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11878         * verify.c (do_invoke_method): Remove return type validation.
11880         * verify.c (do_ret): Do return type validation at return site instead of
11881         call site.
11883 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11885         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
11887         * verify.c: Some todos cleaned and improved a few error messages.
11889 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
11891         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
11893 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11895         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
11896         system types correctly.
11898         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
11899         function.
11901 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11903         * assembly.c (build_assembly_name): Fix a warning.
11905 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
11907         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
11908         the called function takes an object type argument. Fixes storing or
11909         valuetypes across remoting as well as reducing memory usage.
11910         * image.c, metadata-internals.h: remove now unused ldfld_remote and
11911         stfld_remote wrapper caches.
11913 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11915         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
11916         is not found.
11918         * reflection.c (mono_image_register_token): New helper function to save
11919         a token->object mapping.        
11921         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
11922         managed code.
11924         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
11925         one dimension arrays. Fixes #367670.
11926         (mono_reflection_get_type_internal): Ditto.
11928 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
11930         * marshal.c: mono_load_remote_field_new() always returns object.
11931         so use the proper signature (fixes bug #366445).
11933 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11934         
11935         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
11936         add an 'inline_failure' flag instead.
11938 2008-03-04  Mark Probst  <mark.probst@gmail.com>
11940         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
11941         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
11942         contains the location of "this", used for exception handling.
11944 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11946         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
11947         their size on all platforms for perf reasons.
11949 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11951         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
11952         object-internal.h
11954         * object-internal.h: Same.
11956 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11958         * reflection.h: Fix the build I just broke.
11960 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11962         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
11963         Test if a token is valid, this remove explicit usage of 
11964         MonoDynamicImage::tokens from the verifier code.
11966         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
11968         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
11969         instead of direct access to MonoDynamicImage::tokens.
11971 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11973         * verify.c (token_bounds_check): Fix the build I just broke.
11975 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11977         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
11979         * verify.c (verifier_load_method): Fixed the errors message.
11981         * verify.c (mono_method_verify): Fixed a debug message.
11983 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
11985         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
11986         mono-perfcounters.h, class-internals.h: support for predefined
11987         writable counters, query of categories and counters, bugfixes.
11989 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11991         * verify.c (do_refanytype): Verify the refanytype opcode.
11993         * verify.c (mono_method_verify): Use do_refanytype.
11995 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11997         * verify.c (do_mkrefany): Verify the mkrefany opcode.
11999         * verify.c (mono_method_verify): Use do_mkrefany.
12001 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12003         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12004         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12005         implementation.
12007 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12009         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12010         the type load exception.
12012 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12014         * verify.c: Added a few FIXME for method signatures
12016         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12017         of mono_method_get_signature and get vararg call working. Removed unused
12018         checks for return value.
12020         * verify.c (do_refanyval): Verify the refanyval opcode.
12022         * verify.c (mono_method_verify): Implemented verification of arglist and
12023         use do_refanyval.
12025 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12027         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12028         vtypes to marshal.c.
12030         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12031         it works for AOT as well.
12033 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12035         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12036         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12037         the system time is adjusted.
12039 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12041         * icall.c, icall-def.h: use the new time functions (fixes the
12042         non-monotonic behaviour of TickCount).
12044 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12046         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12047         it breaks the build.
12048         
12049         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12050         cattr is not finished yet.
12052 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12054         * verify.c: Proper token validation for field, method and type.
12056 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12058         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12060         * loader.c (method_from_memberref): Generate type load error instead of method missing
12061         if the type is not found.
12063 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12065         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12066         some of the conversions caused the generation of a marshal directive exception.
12068 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12070         verify.c: Report which exception should be thrown by the JIT.
12071         Added a lot of FIXME notes.
12073 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12075         * generic-sharing.c: Runtime generic context slots are not
12076         instantiated on init anymore.  Instead, provide function to do the
12077         instantiating on demand.
12079         * class-internals.h: Added vtable to runtime generic context.
12080         Macros for encoding direct and indirect slot offsets in one
12081         guint32.
12083 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12085         * object.c, generic-sharing.c: Moved some generic sharing code
12086         from object.c to generic-sharing.c.
12088         * generic-sharing.c: Added support for extensible runtime generic
12089         context.
12091         * metadata-internals.h: Two new hash tables in MonoImage for
12092         extensible runtime generic context support.
12094         * domain.c: Unregister generic vtables upon domain unloading.
12096         * image.c: Destroy new hash tables upon image unloading.
12098         * metadata.c: Unregister generic subclasses upon image unloading.
12100         * class-internals.h: New data structure for runtime generic
12101         context template.  New fields in the runtime generic context for
12102         extensible part.
12104         * Makefile.am: Added generic-sharing.c.
12106 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12108         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12109         there is a pending loader exception, raise it.
12111         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12112         same.
12114         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12115         same.
12117         Fixes #363450.
12119 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12121         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12123         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12124         
12125         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12126         ref-only requests for compatibility with MS.
12128 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12130         * reflection.c (mono_custom_attrs_from_method): Don't silently
12131         return an empty list for generic method instances.
12132         (mono_custom_attrs_from_param): Likewise.
12134 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12135             Raja R Harinath  <harinath@hurrynot.org>
12137         Fix #354757
12138         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12139         * class.c (mono_class_inflate_generic_method_full): Initialize it
12140         when a fully-open method is instantiated.
12141         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12142         to new field.
12143         * reflection.c (inflate_mono_method): Don't create a temporary context.
12145 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12147         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12148         Compute correct value, to prepare for imethod->reflection_info going away.
12150 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12152         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12154 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12156         * verify.c: Implement skip visibility flag.
12158 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12160         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12161         which contains an extra field to tell the kind of exception that should be thrown.
12163         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12165 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12167         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12168         'method' is updated.
12170 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12172         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12173         explicit layout as well. Fixes #360375.
12175 2008-02-11  Geoff Norton  <gnorton@novell.com>
12177         * loader.c: Guard and dereference against inflated generic methods
12179 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12181         * class.c: Include Retargetable spec in assembly name.
12182         * assembly.c: Always include PublicKeyToken spec in assembly name
12183         (with value "null" if assembly is not signed), and include
12184         Retargetable spec.
12185         * icall-def.h: Added icall for Assembly.get_fullname.
12186         * icall.c: Added icall returning the fullname of an assembly.
12188 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12190         * class.c (mono_class_setup_vtable_general): Add a missing call to
12191         mono_class_setup_methods () which is needed in the AOT case.
12193 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12195         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12196         stack type of the given MonoType.
12198         * verify.c (verify_type_compatibility_full): Handle the void type.
12200         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12201         way stack merging works.
12203         * verify.c (store_local): Improved verification message.
12205         * verify.c (do_branch_op): If the merging is invalid, the method
12206         is unverifiable and not invalid. Improved error message.
12208         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12209         a reference type diferent than System.Object. Improved error
12210         message.
12212 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12214         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12216         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12217         type of an enum even if the argument is byref.
12219         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12220         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12222         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12224         *verify.c (verify_type_compatibility_full): Make enum types
12225         compatible with their base types.
12227         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12228         types are compatible for the special case of a boxed valuetype and
12229         System.Object.
12231         * verify.c (verify_stack_type_compatibility): The function
12232         is_compatible_boxed_valuetype was extracted from here.
12234         * verify.c (push_arg): Only set ctx->has_this_store if the method
12235         is not static.
12237         * verify.c (do_ldelem): Fixed a typo in an error message and added
12238         strict check for mixing int32 and native int as the array type
12239         and ldelem type.
12241         * verify.c (merge_stacks): Consider boxed valuetypes in the
12242         compatibility checks.
12244 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12245         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12247 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12248         *class.c: use_new_interface_vtable_code: renamed the env var to have
12249         a "MONO_" prefix, and fix the logic to enable it by default.
12251 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12252         *class.c:
12253         mono_class_setup_vtable_general: rewrote the way in which interface
12254         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12255         makes the code more maintainable.
12256         For now the old code is still there, and can be activated setting
12257         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12259 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12261         * verify.c: guarded some debug functions around and #ifdef.
12263         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12265 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12267         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12268         changes for now since they seem to break too many things.
12270 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12272         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12273         mono_marshal_find_nonzero_bit_offset): Added macro and function
12274         for finding the byte- and bit-offset of a bitfield within a
12275         struct.
12277 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12279         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12280         (mono_marshal_get_struct_to_ptr): Ditto.
12282         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12283         cctor_signature.
12285 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12287         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12288         between methods for non-corlib types.
12290 2008-02-02  Geoff Norton  <gnorton@novell.com>
12292         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12293         generic parameters as well. (Fixes #342536)
12295 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12297         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12299         * verify.c (do_invoke_method): Fix for calling with byref structs.
12301         * verify.c (do_cast): push a boxed value type based on the type token and not
12302         the type of stack.
12304 2008-01-31  William Holmes  <billholmes54@gmail.com>
12306         * process.c (process_module_string_read): Check the size returned form 
12307           VerQueryValue to avoid out of memory exception. 
12309 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12311         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12312         Handle properly modules which are not in the moduleref table. Fixes
12313         #356938.
12315 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12317         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12318         the dynamic case which is now in managed code.
12319         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12321         * marshal.c (mono_string_to_bstr): Fix a warning.
12322         (init_com_provider_ms): Ditto.
12324         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12326         * exception.c (mono_get_exception_out_of_memory): New helper function.
12328 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12330         * marshal.c: Add support for BSTR marshalling
12331         using other COM systems.
12333         Code is contributed under MIT/X11 license.
12335 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12337         * object.c (mono_runtime_invoke_array): reverted previous
12338         commit as it breaks the build.
12340 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12342         * object.c (mono_runtime_invoke_array): Verify arguments for
12343         invalid types. Fixes #348522.
12345 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12347         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12348         non-final virtual calls using call. 
12350         * verify.c (do_invoke): fixed some TODOs.
12352         * verify.c (push_arg): set has_this_store for "ldarga 0".
12354 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12356         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12357         which belong to an inflated class. Fixes #356531.
12359 2008-01-26  Robert Jordan  <robertj@gmx.net>
12361         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12362         which resort to FindFirstFile when a certain error condition
12363         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12364         Code is contributed under MIT/X11 license.
12366 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12368         * marshal.c (emit_marshal_string): Fix out string marshalling
12369         to use specified encoding. Fixes #323900.
12371         Code is contributed under MIT/X11 license.
12373 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12375         * class.c (mono_class_inflate_generic_method_full): Don't modify
12376         iresult->context after cache check.
12378 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12380         * class.c (mono_class_inflate_generic_method_full): Change the
12381         struct assignments to memcpy for better visibility and add some comments.
12383 2008-01-23  Dick Porter  <dick@ximian.com>
12385         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12386         procedure, and make it work on windows.
12388 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12390         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12391         a MonoReflectionTypeBuilder since it is always of that type.
12393         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12395         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12397         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12398         
12399         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12401         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12403         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12404         instantiations from the type cache.
12406 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12408         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12410         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12412 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12414         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12416         * verify.c (mono_method_verify): removed old TODO
12418 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12420         * verify.c (do_newobj): add visibility check.
12422 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12424         * verify.c (do_load_function_ptr): add visibility check.
12426 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12427         *class.c:
12428         mono_generic_class_get_class: hook profiler events.
12429         mono_field_get_offset: added to support heap-shot in the new profiler.
12430         *class.h: exported mono_field_get_offset.
12431         * reflection.c:
12432         mono_reflection_setup_internal_class: hook profiler events.
12434 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12436         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12437         argument here too and use it to avoid checking for pending exceptions if 
12438         possible.
12440 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12442         * assembly.c (build_assembly_name): add arg for passing the assembly
12443         flags. Do not consider a PublicKey with value "null" valid.
12444         (mono_assembly_name_parse_full): added boolean argument that will be
12445         set if the assembly name contains a PublicKeyToken spec. Added support
12446         for the Retargetable spec for which only Yes or No are allowed as valid
12447         value. Consider assembly name invalid if Retargetable spec is set, but
12448         either version, culture or public key (token) are not specified.
12449         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12450         with implementation in assembly.c.
12451         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12452         from MonoAssemblyName.
12453         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12454         introduced argument for mono_assembly_name_parse_full to know if the
12455         assembly name has a PublicKeyToken spec, and if it has instruct
12456         fill_reflection_assembly_name to use default value for keyToken (if
12457         PublicKeyToken is null).
12459 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12461         * verify.c (mono_method_verify): fixed ovf ops with
12462         float values. They are unverifiable now.
12464 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12466         * class.c (set_failure_from_loader_error): add BadImageException to the
12467         list of exceptions that can cause a type to fail to load.
12469         * class.c (mono_class_get_exception_for_failure): same.
12471 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12473         * verify.c (in_any_exception_block): added, check if offset
12474         is part of any exception handling clause.
12476         * verify.c (get_stack_type): added VAR and MVAR types.
12478         * verify.c (do_stobj): better error messages.
12480         * verify.c (do_cpobj): added, check cpobj.
12482         * verify.c (do_initobj): added, check initobj.
12484         * verify.c (do_sizeof): added, check sizeof.
12486         * verify.c (do_localloc): added, check localloc.
12488         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12490 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12492         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12493         save_lmf/restore_lmf opcodes.
12495         * threads.c (mono_threads_install_notify_pending_exc): New function to
12496         install a callback notifying the JIT there is a pending exception on a thread.
12497         (mono_thread_request_interruption): Call the new callback.
12498         (mono_thread_get_and_clear_pending_exception): New function to return the
12499         exception pending on a thread.
12501         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12502         to turn off checking for pending exceptions.
12503         (mono_marshal_get_native_wrapper): Ditto.
12505 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12507         * threads-types.h: Get rid of the unnecessary extern declarations.
12509 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12511         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12512         return field from parent class if not private.
12513         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12514         returns fields from parent class if they are not private.
12515         (method_nonpublic): added function to determine if a given method
12516         should be considered non-public. Returns false for private methods
12517         on parent class, and internal methods from parent on the 1.0 profile.
12518         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12519         use method_nonpublic function to determine whether method should be
12520         returned.
12521         (property_accessor_public): use newly introduced method_nonpublic
12522         function to determine whether accessor is non-public. 
12523         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12524         event from parent class if not private. Only return static event if
12525         Static flag is set, and only return static event from parent class if
12526         FlattenHierarchy flag is set.
12527         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12528         include non-private events from parent class.
12530 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12532         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12533         warning.
12535 2008-01-16  Wade Berrier <wberrier@novell.com>
12537         * security.c: Add assembly.h header to appease some warnings
12539 2008-01-16  Dick Porter  <dick@ximian.com>
12541         * process.c (process_module_string_read): Remove trailing null
12542         when saving string.
12544 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12546         * class-internals.h: A new data structure describing the layout of
12547         a runtime generic context (MonoRuntimeGenericContextTemplate).
12549         * metadata-internals.h: Added a hash table to MonoDomain that maps
12550         from open generic classes to their runtime generic context
12551         templates.
12553         * object.c: Building of the runtime generic context, including
12554         proper handling of generic type arguments of superclasses.
12555         Building of the runtime generic context according to the template.
12557 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12559         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12560         Fixes #350856.
12562         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12563         mono_portability_find_file (). Fixes #325466.
12564         (mono_image_get_public_key): Fix a warning.
12566 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12568         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12569         Fixes #353550.
12570         (mono_class_from_name_case): Ditto.
12572 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12574         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12575           common storage for the tables used in the System/NumberFormatter class.
12577 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12579         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12581 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12583         * verify.c (get_boxable_mono_type): check if the token is valid.
12585         * verify.c (set_stack_value): changed to add an error if an
12586         invalid type is set on stack. Changed all callers due to signature change.
12588         * verify.c (do_stobj): implement stobj validation.
12590 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12592         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12593         set container->is_method, it was set earlier.
12595         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12596         generic methods.
12598         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12599         is_method of the generic container to TRUE for methods.
12601 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12603         * metadata.c (type_in_image): Handle type parameters properly.
12605         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12606         memory ownership of this structure.
12608 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12610         * verify.c (get_boxable_mono_type): make typedref types been just
12611         unverifiable. check for void type.
12613         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12615         * verify.c (do_load_function_ptr): accept method spec tokens.
12617 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12619         * marshal.c (mono_class_native_size): Always set *align even if this is called
12620         recursively.
12622 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12624         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12625         out-of-date.
12627 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12629         * verify.c: removed some old unused tables. A huge bunch of small fixes
12630         to things found while testing the verifier with mono basic.
12632         * verify.c (dump_stack_value): dump null literal flag to.
12634         * verify.c (verify_type_compatibility_full): fix comparison
12635         for types that have a generic super type.
12637         * verify.c (verify_stack_type_compatibility): fix compatibility
12638         between null literals and reference types. fix compatibility between
12639         boxed valuetypes and object. fix corner case test for enums.
12641         * verify.c (do_cmp_op): proper verification of cgt.un in case
12642         of reference types.
12644         * verify.c (do_invoke_method): fix error message.
12646         * verify.c (do_store_indirect
12648         * verify.c (check_is_valid_type_for_field_ops): proper verification
12649         of managed pointers to valuetypes and boxed valuetypes. proper verification
12650         of null literals.
12652         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12653         allow token to be a reference type.
12655         * verify.c (do_cast): proper handling of boxes valuetypes.
12657         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12658         in object[].
12660         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12661         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12662         fixed the decoding of unbox_any
12664 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12666         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12668 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12670         * verify.c (do_newobj): do delegate verification.
12672         * verify.c (verify_delegate_compatibility): perform delegate
12673         verification.
12675         * verify.c (verify_ldftn_delegate): perform tests related to
12676         ldftn delegates.
12678         * verify.c (mono_delegate_signature_equal): perform the
12679         slightly diferent signature comparison required by delegates.
12681         * metadata.c (mono_metadata_type_equal_full): added and exported
12682         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
12683         allows signature only comparison.
12685         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
12686         as MONO_INTERNAL.
12688 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
12690         * verify.c: added a bunch of stack_slot_* functions to
12691         make access to stack slot type easier. This is required to
12692         allow optional flags, like null literal, boxed value and
12693         this pointer.
12694         All access paths to IlStackDesc::stype have been changed 
12695         to use these new funcions.
12696         Removed a bunch of unused functions and cleared all warnings.
12697         This patch introduces the usage of the this pointer and 
12698         boxed value flags.
12700 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
12702         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
12704 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
12706         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
12707         match managed version.
12709         * appdomain.c: Bump corlib version.
12710         
12711         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
12712         argument.
12714 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
12716         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
12717         Set public key token to zero-length byte array if assembly is not
12718         strongnamed.
12720 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12722         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
12723         writing a vtype array elem.
12725 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
12727         * assembly.c (build_assembly_name): return FALSE if length of token is
12728         not 16 (if not "null").
12729         (mono_assembly_name_parse_full): return FALSE if value of version,
12730         culture, token or key is 0.
12731         * icall.c (fill_reflection_assembly_name): add boolean arguments to
12732         specify whether public key and public key token must be set to default
12733         value (zero-length byte array) if not available. Set versioncompat to
12734         SameMachine. If public key is available or the default is set, then
12735         set PublicKey flag.
12736         (ves_icall_System_Reflection_Assembly_FillName): if no public key
12737         is available, use empty byte array as default value. On the 2.0
12738         profile, use default value for public key token if not set.
12739         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
12740         profile, use default value for public key if not set. On the 2.0
12741         profile, use default value for public key token if not set.
12742         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
12743         default values for public key and public key token.
12745 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12747         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
12748         field to keep it in synch with the managed object.
12750         * marshal.c (emit_marshal_object): Add support for byref marshalling of
12751         delegates. Fixes #351520.
12753         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
12754         contains defined memory.
12755         
12756         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
12758         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
12759         
12760         * sgen-gc.c (check_consistency): New helper function to do a consistency check
12761         of the GC data structures.
12763         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
12765         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
12766         
12767         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
12768         barrier.
12769         (mono_array_clone_in_domain): Ditto.
12770         (mono_array_clone_in_domain): Ditto.
12772         * threads.c (start_wrapper): Register the thread start argument as a GC root.
12773         (cache_culture): Use a write barrier.
12775         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
12776         (ves_icall_get_property_info): Ditto.
12778         * object.h (MONO_STRUCT_SETREF): New macro.
12780         * class-internals.h (MonoStats): Add some GC statistics.
12782         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
12784 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
12786         * exception.c (mono_exception_from_name_two_strings):
12787         Break from loop after method is found.
12789 2008-01-04  Dick Porter  <dick@ximian.com>
12791         * process.c (process_module_string_read): Rename variable to
12792         reflect correct usage, after fixing bug 345972.
12794 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
12796         * verify.c (mono_type_create_fnptr_from_mono_method): 
12797         created a MonoType function pointer instance to be used during
12798         verification. The verifier releases this memory at end.
12800         * verify.c (mono_method_is_constructor): extracted repeated
12801         checks for constructor into a single class.
12803         * verify.c (do_push_field): use new extracted method
12804         for constructor check.
12806         * verify.c (do_newobj): same.
12808         * verify.c (do_ldftn): renamed to do_load_function_ptr
12809         and make it verify ldvirtftn too.
12811         * verify.c (mono_method_verify: proper verification
12812         of ldvirtftn. release created MonoMethod instances.
12814 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12816         * verify.c (token_bounds_check): added.
12818         * verify.c (do_ldftn): added.
12820         * verify.c (mono_method_verify): proper verificartion of ldftn.
12822 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12824         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
12825         than the table row count. It's the resposibility of the caller to
12826         make the bounds check and raise the correct error.
12828         * metadata.c (mono_metadata_decode_row_col): Same.
12830         * loader.c (mono_get_method_from_token): perform bounds check
12831         on token for methoddef table.
12833 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12835         * icall.c
12836         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12837         assert into a negative result, the managed code already coped with
12838         that.
12840         Some folks on Windows reported this error. 
12842 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
12844         * appdomain.c: Bump corlib version.
12845         * icall.c:
12846         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
12847         CultureInfo.CreateCulture to create CultureInfo for name.
12848         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
12849         create CultureInfo for name. Fixes bug #347174.
12851 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12853         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
12854         flags.
12856         * verify.c (is_valid_branch_instruction): allow branching to the
12857         first instruction of the protected block.
12859         * verify.c (is_valid_cmp_branch_instruction): same.
12861         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
12862         avoid double initialization.
12864         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
12865         detect which cases the eval stack should just be copied.
12867         * verify.c (mono_method_verify): check if the eval stack
12868         is empty when entering a protected block.
12870 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12872         * verify.c: added is_clause_in_range, is_clause_inside_range,
12873         is_clause_nested and verify_clause_relationship. They perform
12874         the verifications stated in P1 12.4.2.7.
12876         * verify.c (mono_method_verify): remove some unused variables,
12877         add the new exception clause checks, add instruction border
12878         checks for protected block start/end, improved some error 
12879         messages and fixed a bug in the way invalid instruction access
12880         is detected.
12882 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
12884         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
12885         from GC 7.0 if available.
12887         * object.c: Remove an unused define.
12888         
12889         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
12891         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
12893         * null-gc.c (mono_gc_make_descr_for_array): Implement.
12895         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
12897         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
12898         to take the same arguments as the other make_descr functions.
12900         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
12902         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
12903         directly.
12905         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
12906         mini.c.
12908         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
12909         call to boehm-gc.c.
12911         * boehm-gc.c (mono_gc_register_root): Fix a warning.
12913         * null-gc.c (mono_gc_register_root): Fix a warning.
12915         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
12917         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
12918         (mono_gc_base_init): Call GC_init ().
12920         * null-gc.c: Define mono_gc_register_root () as a no-op.
12922         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
12924 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
12926         * verify.c: add prototype for merge_stacks at top
12928         * verify.c (do_switch): added.
12930         * verify.c (merge_stacks): on some cases the stack merging
12931         was not happening properly. Unequal stack sizes at merge
12932         points should be invalid.
12934         * verify.c (mono_method_verify): added more debug info on stack state.
12935         verify switch properly.
12937 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
12939         * method-builder.h: New file, moved the mono_mb_ declarations here from 
12940         marshal.h.
12942         * boehm-gc.c marshal.c: Include method-builder.h.
12944         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
12946         * marshal.c: Remove some code which is now in method-builder.c.
12948 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
12950         * method-builder.c: New file, extraction of the method builder functionality 
12951         from marshal.c.
12953         * marshal.c: Move the mb functions into method-builder.c.
12955         * marshal.h marshal.c: Export some mono_mb_... functions.
12957         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
12959         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
12960         the caller.
12962         * class.c (mono_class_get_full): Check the token type in the dynamic case.
12964         * loader.c (mono_field_from_token): Ditto.      
12966         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
12967         type as well.
12968         
12969         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
12970         Fixes #342565.
12972         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
12973         a helper function for setting it.
12975         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
12977         
12978         * assembly.c: Significally simplify code now that referenced assemblies are 
12979         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
12981         * threads.h: Don't include  the internal threads-types.h header file. Fixes
12982         #349952.
12984 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
12986         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
12987         instructions that were target of branches or are at protected block boundaries.
12989         * verify.c (in_same_block): handle filter clauses.
12991         * verify.c (is_valid_branch_instruction): added. checks the target of
12992         instructions br or brtrue/false.
12994         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
12995         binary branch instructions such as beq and bge.
12997         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
12998         and made it pin the instruction as been part of the exception block.
13000         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13001         of in_same_block.
13003         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13004         of in_same_block.
13006         * verify.c (do_ret): ret from a protected block is unverifiable and
13007         not invalid.
13009         * verify.c (do_static_branch): verify br and br.s instructions.
13011         * verify.c (merge_stacks): add extra param to support detection
13012         of branches in the middle of instructions.
13013         
13014         * verify.c (mono_method_verify): verify branches and exception blocks
13015         that target the middle of instructions. Proper verification of br and br.s.
13017 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13019         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13020         skip_visibility field.
13021         (reflection_methodbuilder_from_dynamic_method): Ditto.
13023         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13024         registrations. Fixes #348193.
13026         * threads.h: Move the internal mono_thread_get_pending_exception () to
13027         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13029 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13031         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13032         icall registration. Fixes #348193.
13034         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13035         for corlib classes into object. Fixes #349621.
13037 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13039         * icall.c (property_accessor_nonpublic): new function to determine
13040         whether an accessor allows a property to be considered non-public.
13041         Returns false for private accessor(s) from parent class, and internal
13042         accessor(s) from parent on 2.0 profile (and higher).
13043         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13044         to determine whether property should be included if NonPublic flag
13045         is set. Fixes bug #349078.
13047 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13049         * verify.c (init_stack_with_value): added.
13051         * verify.c (mono_method_verify): extracted common
13052         code for exception initialization into init_stack_with_value.
13054         * verify.c (mono_method_verify): initialize the exception
13055         for handler clauses as well.
13057         * verify.c (mono_method_verify): fix the exception clause
13058         ordering rules, it should use handler end offset and not
13059         start offset.
13061 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13063         * rawbuffer.c: remove useless warning.
13065 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13067         * threads.h, threads-types.h: move functions to the correct header
13068         (fixes bug#349952).
13070 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13072         * verify.c (mono_method_verify): proper verification
13073         of exception handling clauses ranges and fallthru in
13074         and out of protected blocks.
13076 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13078         * verify.c (mono_method_verify): fixed compilation issue.
13080 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13082         * verify.c (mono_method_verify): a printf slipped in, changed
13083         to use verifier debug macro.
13085 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13087         * verify.c (is_correct_leave): check for filter clauses.
13089         * verify.c (do_filter): added.
13091         * verify.c (mono_method_verify): property verification of leave.
13094 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13096         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13097         Win32 build, until we figure out how to do the proper thing on
13098         Win32.
13100 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13102         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13103         by the previous patch.
13104         
13105         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13106         the assembly resolve handler for refonly assemblies.
13108 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13110         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13111         Make sure only one thread is allowed to commence shutdown, and
13112         don't allow new threads to be started once shutdown is in
13113         progress.
13115 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13117         * verify.c (is_correct_endfilter): added.
13119         * verify.c (is_unverifiable_endfilter): added.
13121         * verify.c (do_endfilter): added.
13123         * verify.c (mono_method_verify): property verification of endfilter
13124         and fixed a corner case or endfinally.
13126 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13128         * verify.h: new flags to support fail fast of unverifiable code and
13129         do non-strict verification. Non-strict verification is required to
13130         have MS runtime compatibility. There are a huge amount of unverifiable
13131         code that it accepts as verifiable. The strict mode verifies the code
13132         as the specs says.
13133         Non-strict mode will be required in cases where code needs to be
13134         accepted as verifiable but fails under strict mode.
13136         * pedump.c: added support to fail fast and non-strict verification.
13138         * verify.c: added support for both fail fast and non-strict verification.
13140 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13142         * verify.c (is_correct_endfinally): added.
13144         * verify.c (mono_method_verify): property verification of endfinally.
13146 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13148         * verify.c (in_any_block): check for filter clauses.
13150         * verify.c (is_correct_rethrow): added.
13152         * verify.c (mono_method_verify): property verification of rethrow.
13154         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13156 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13158         * verify.c (do_throw): added.
13160         * verify.c (mono_method_verify): property verification of throw
13162 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13164         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13165         assemblies. Fixes #346425.
13167 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13169         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13170         FieldBuilders.
13172         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13174         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13175         prevent asserts when this is called with a token which might not be valid.
13177         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13178         lookup_dynamic_token_class with valid_token == FALSE.
13180         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13182         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13184         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13185         
13186 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13188         * gc.c: Don't delay threadpool thread finalization unless Mono is
13189         shutting down.
13191 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13193         * threads.c: turn an assert into a non-fatal warning.
13195 2007-12-09  Robert Jordan  <robertj@gmx.net>
13197         * icall.c (GetVirtualMethod): Add missing argument validation.
13199 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13201         * verify.c (do_cast): added.
13203         * verify.c (mono_method_verify): property verification of castclass and isinst.
13206 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13208         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13210         * verify.c (do_stelem): added.
13212         * verify.c (mono_method_verify): property verification of stelem.X.
13214 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13216         * class.c, class-internals.h: Introduce an environment variable
13217         (MONO_GENERIC_SHARING) through which the extent of generic code
13218         sharing can be controlled (share all classes, share only corlib
13219         classes, or share nothing).
13221         * object.c: Only create runtime generic context for classes for
13222         which sharing is enabled.
13224 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13226         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13228         * verify.c (mono_method_verify): property verification of ldelem.any.
13230 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13232         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13233         added ldelem.X opcodes.
13235         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13237         * verify.c: proper verification of ldelem.X 
13239 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13241         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13243 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13245         * verify.c (mono_method_verify): null literal requires special handling,
13246         the value pushed on stack need to be flagged as so.
13248         * verify.c (do_ldelema): Verify ldelema properly.
13250 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13252         * verify.c: Verify ldlen properly.
13254 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13256         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13257         to the target object's type. Fixes #346160.
13259 2007-12-05  Dick Porter  <dick@ximian.com>
13261         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13262         Solaris needs the same workaround as BSD-derived systems.  Fixes
13263         bug 323524, patch by Burkhard Linke
13264         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13266 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13268         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13269         handle to use when error dialog is shown; otherwise, update mask
13270         to show no error dialog when an error occurs.
13272 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13274         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13276         * class.c (mono_class_get_field_default_value): New helper function to initialize
13277         field->def_type and field->data.
13279 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13281         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13282         the general one.
13284         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13286         * marshal.c: Avoid depending on delegate->method_info being set.
13288         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13289         
13290         * object.c (mono_delegate_ctor): Set delegate->method.
13292         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13294         * appdomain.c: Bump corlib version.
13296 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13298         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13299         equality check if we're comparing canonicalized MonoGenericInsts.
13301 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13303         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13304         accessing class->methods.
13306 2007-11-22  Dick Porter  <dick@ximian.com>
13308         * threads.c: Ensure that the synch_cs is set before trying to use
13309         it.
13311 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13313         * profiler.c: r89126 broke the statistial profiler, unbreak.
13315 2007-11-22  Martin Baulig  <martin@ximian.com>
13317         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13319         * mono-debug.c
13320         (mono_debug_debugger_version): Bump to 3.
13321         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13322         -> mono_debugger_class_initialized().
13324         * mono-debug-debugger.c
13325         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13327         * class.c
13328         (mono_debugger_start_class_init_func): Removed.
13329         (mono_debugger_class_loaded_methods_func): Added.
13330         (mono_class_setup_methods): Call it here.
13332 2007-11-22  Martin Baulig  <martin@ximian.com>
13334         * mono-debug.c
13335         (mono_debug_add_delegate_trampoline): New public method.
13336         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13338         * mono-debug.h
13339         (MonoSymbolTable): Added `global_data_table'.
13340         (MonoDebuggerTypeKind): Removed.
13342 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13344         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13345         these methods.
13347         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13348         
13349 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13351         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13353 2007-11-20  Martin Baulig  <martin@ximian.com>
13355         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13357         * mono-debug-debugger.c
13358         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13359         (mono_debugger_remove_breakpoint): Likewise.
13360         (mono_debugger_check_breakpoints): Likewise.
13361         (mono_debugger_register_class_init_callback): New public method.
13362         (mono_debugger_remove_class_init_callback): Likewise.
13363         (mono_debugger_add_type): Likewise.
13365         * mono-debug-debugger.h
13366         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13368 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13370         * class.c: more interface implementations needed for the
13371         array enumerator (fixes bug #341112).
13373 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13375         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13376         fix ParamName of ArgumentNullExceptions.
13378 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13380         * reflection.c (mono_reflection_encode_sighelper): Generate the
13381         modopts and modreqs.   I have a useless test that crashes monodis,
13382         but that shows the code working.
13384 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13386         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13387         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13389 2007-11-15  Dick Porter  <dick@ximian.com>
13391         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13392         When joining a thread, it's the thread that's calling Join that
13393         gets WaitSleepJoin state not the target.  Fixes the standalone
13394         test case in bug 334740, and hopefully the whole bug too.
13396 2007-11-15  Dick Porter  <dick@ximian.com>
13398         * process.c: Read file version info from the files pointed at by
13399         process modules, not the current process.  Fixes bug 315969.
13401         Use windows typedef names in some places to fix warnings on the
13402         windows build.
13404 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13406         * image.c, metadata-internals.h: Added a generic_class_cache hash
13407         to MonoImage for looking up generic classes when sharing generics.
13409 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13411         * sgen-gc.c: warning cleanups.
13413 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13415         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13416         inherited properties.
13418 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13420         * object.c, class-internals.h: Added more information to the
13421         runtime generic context.
13423 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13425         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13426         instead of just the target method. Generalize the abstract method handling to
13427         handle any non-static method.
13429         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13430         mono_marshal_get_delegate_invoke () signature change.
13432 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13434         * class.c, class-internals.h: Made
13435         mono_type_get_basic_type_from_generic () public.  Fixed member
13436         access check for shared generics.
13438         * loader.c: Don't insert field into field cache if it's part of a
13439         non-inflated generic class.
13441         * domain.c, domain-internals.h: The generic sharing context is now
13442         part of the jit info data structure.  Added two accessor
13443         functions.
13445 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13447         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13448         the array Get/Set/Address methods, since the JIT inlines them.
13450         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13452         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13453         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13455         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13456         mono_marshal_get_delegate_invoke signature change.
13458         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13459         an additional argument. Add support for invoking abstract methods.
13461         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13463         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13465 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13467         * class.c: Do field layout for open generic classes as well.
13469 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13471         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13472         other objects, because the threadpool is still around.  Put them
13473         in a list instead and after finalizing all other objects in the
13474         root domain shut down the thread pool and then finalize the
13475         threads.  Fixes bug #337383.
13477         * threads.c, thread-types.h: New mono_thread_create_internal()
13478         function for marking a thread with the threadpool flag before it
13479         started.  Set synch_cs to NULL after freeing it.
13481         * threadpool.c: Mark threadpool threads before they start.
13483 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13485         * reflection.h, reflection.c: don't export random functions
13486         and lazy load dbnull and missing objects.
13488 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13490         * class.c: Initialize COM types if COM interfaces
13491         are present (not just COM classes).
13492         
13493         Code is contributed under MIT/X11 license.
13495 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13496         * reflection.c:
13497         create_dynamic_mono_image: hook module profiler events (dynamic case).
13498         mono_image_basic_init: hook assembly profiler events (dynamic case).
13500 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13501         * profiler.c:
13502         simple_appdomain_unload: completely terminate the profiler
13503         instead of only processing the statistical samples.
13504         simple_shutdown: make sure this is really called exactly once,
13505         even in multithreaded applications, and always listen to
13506         appdomain events.
13507         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13508         here, the "[un]load" functions will do it.
13509         Fixes bugs #333791 and #325261.
13511 2007-11-07  Geoff Norton  <gnorton@novell.com>
13513         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13514         rather than depend on __APPLE__.
13516 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13518         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13520 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13522         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13523         UTF16 MonoString. Fix the crash from bug #335488
13525 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13527         * marshal.c: Correct (for non-Win32 OS) length != size in 
13528         mono_string_from_bstr. Fix #339530.
13530 2007-11-06  Geoff Norton  <gnorton@novell.com>
13532         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13533         to succeed
13535 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13537         * process.c: Added run-time GetProcessId API detection for Windows.
13539 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13541         * reflection.c  (mono_param_get_objects): If a parameter has the
13542         attribute [System.Runtime.InteropServices.Optional] we should
13543         set the DefaultValue of the ParameterInfo to be
13544         System.Reflection.Missing instead of DBNull.
13546         See bug #339013.
13548         (mono_get_reflection_missing_object): New method,
13549         returns the System.Reflection.Missing.Value singleton instance.
13551 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13553         * culture-info-table.h : regenerated.
13555 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13557         * icall.c: Use GetEnvironmentStrings on windows
13558         so we are using the same environment block as 
13559         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13560         #333740.
13561         
13562         Code is contributed under MIT/X11 license.
13564 2007-10-31  Martin Baulig  <martin@ximian.com>
13566         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13568         * mono-debug-debugger.h
13569         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13571 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13573         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13574         classes.
13576 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13578         * culture-info-table.h : regenerated.
13580 2007-10-30  Robert Jordan  <robertj@gmx.net>
13582         * icall-def.h, icall.c:
13583         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13585         Code is contributed under MIT/X11 license.
13587 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13589         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13590         inflated class instead of inflating them again.
13591         
13592         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13593         dynamic case.
13595         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13596         Call setup_supertypes () after klass->parent is set.
13597         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13599         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13600         for inflated instances of not yet created dynamic generic classes.
13601         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13602         times from inflated_method.
13603         (methodbuilder_to_mono_method): Ditto.
13605 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13607         * gc.c: code cleanup and removed old untested option of not creating the
13608         finalizer thread.
13610 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13612         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13613         creating a jump trampoline for dynamic methods.
13615 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13617         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13618         generic TypeBuilders when called from another method of the same type (bug #335131).
13621 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13623         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13624         doesn't seem to work perfectly.
13625         
13626         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13627         called multiple times.
13628         (methodbuilder_to_mono_method): Ditto.
13629         (resolve_object): Inflate FieldBuilder's.
13631 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13633         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13634         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13635         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13637 2007-10-26  Dick Porter  <dick@ximian.com>
13639         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13640         Thread initialisation changes
13642 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13644         * verify.c: fix compatibility check between arrays and System.Array
13646 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13648         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13649         too. Fixes #336999.
13651 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13653         * object.c (mono_value_box): Use typed allocation here.
13655 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13657         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13658         trampoline instead of compiling the method right away.
13660         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13662 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13664         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13665         related fields for dynamic classes. Fixes #334493.
13667 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13669         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13670         
13671         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13673         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13674         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13676         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13678         * reflection.c (create_generic_typespec): Initialize klass->generic_container
13679         if needed.
13680         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
13682 2007-10-18  Jonathan Chambers <joncham@gmail.com>
13684         * marshal.c: Use correct key when removing item
13685         from ccw_hash.
13686         
13687         Code is contributed under MIT/X11 license.
13689 2007-10-17  William Holmes  <billholmes54@gmail.com>
13691         *marshal.c: Adding a case to marshal booleans to U1
13693         Code is contributed under MIT/X11 license.
13695 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
13697         * class.c (mono_class_from_name): Search the modules compromising dynamic
13698         assemblies. Fixes #331601.
13700 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
13702         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
13703         exception if the type name contains an assembly component. Fixes #334203.
13705         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
13706         modules inside dynamic assemblies. Fixes #334200.
13707         
13708         * reflection.c: Set image->public_key and image->public_key_length;
13710         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
13711         fields.
13713         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
13714         
13715 2007-10-16  Mark Probst  <mark.probst@gmail.com>
13717         * metadata.c: Implemented correct comparing of generic classes.
13718         An inflated generic class can be equal to a non-inflated one if it
13719         is inflated with generic type variables as type arguments.  Fixes
13720         bug #333798.
13722 2007-10-15  Dick Porter  <dick@ximian.com>
13724         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
13725         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
13726         81646.
13728         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
13729         instead of a monitor lock.  This means that monitor_try_enter and
13730         co can set the thread state safely.
13731         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
13732         thread_interrupt_requested, so interrupt actually works.
13734         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
13735         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
13736         state accessor function
13738 2007-10-15  Martin Baulig  <martin@ximian.com>
13740         * mono-debug.h
13741         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
13742         the debugger with the current runtime.
13744 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13746         * object.c, object-internals.h: added the ability to set a single
13747         trampoline for all the slots in a vtable.
13749 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13751         * marshal.c: deal with a possible race condition during multicast
13752         delegate invocation.
13754 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13756         * class.c: ensure value type methods don't have the synchronized
13757         flag set.
13759 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13761         * string-icalls.c, string-icalls.h: reverted unapproved patch that
13762         breaks the build.
13764 2007-10-11  Joel Reed  <joelwreed@comcast.com>
13766         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
13767         to take an options parameter so that empty entries can be removed during
13768         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
13770 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13772         * marshal.c: make sure we don't store the signature from a dynamic
13773         method into the runtime invoke cache (bug #327189).
13775 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13777         * marshal.c: make sure the wrapper methods are properly initialized.
13779 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13781         * metadata.c, metadata-internals.h: Generalized
13782         mono_type_stack_size() to mono_type_stack_size_internal() which
13783         takes an additional argument specifying whether it allows open
13784         types.
13786 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
13788         * verify.c (do_invoke_method): handle typedbyref params
13789         correctly and check for unverifiable return values.
13791         * verify.c (do_newobj): fix a warning.
13793 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13795         * verify.c: don't tread typedbyref as allways unverifable,
13796         so uses, like (ld/st)loc.0 are valid. verify for the cases
13797         that it matters, like boxing related operations.
13799 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13801         * verify.c: add verification of the newobj opcode. verification
13802         of delegate instantation still missing due ldftn and virldftn not
13803         pushing the function type on stack
13805 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13807         * class-internals.h: Runtime generic context data structure
13808         definition.
13810         * object.c: Initialization of runtime generic context at runtime
13811         vtable creation time.
13813 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
13814         * class.c (mono_class_create_from_typedef,
13815         mono_class_from_generic_parameter, mono_ptr_class_get,
13816         mono_fnptr_class_get, mono_bounded_array_class_get)
13817         * domain.c (mono_domain_create, mono_domain_free)
13818         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
13819         * image.c (do_mono_image_load, mono_image_close):
13820         Hooked up load-unload profiler events.
13822 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13824         * domain.c: track statistics about the actual amount of native code
13825         allocated.
13827 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13829         * class.c: the valuetype enumerators don't have the additional
13830         supertypes interfaces.
13832 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13834         * class.c: need more interfaces setup for the IEnumerator<T>
13835         object created for arrays (tests/ienumerator-interfaces.2.cs).
13837 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13839         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
13841 2007-10-05  Alp Toker  <alp@atoker.com>
13843         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13844         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13845         #315863.
13847 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13849         * verify.c (verify_type_compatibility_full): verification of
13850         compatibility improved, validates correctly non-strict checks between
13851         native int and I4 types different than (unsigned)int32.
13853         * verify.c (do_store_indirect): added, do all verification of
13854         ldind.X opcodes. 
13856         * verify.c (get_load_indirect_mono_type): renamed to
13857         get_indirect_op_mono_type, as it now returns the MonoType for 
13858         ldind.X and stind.X opcodes.
13860 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13862         * reflection.c: Fix the encoding of generic type definition for
13863         TypeBuilders.
13865         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
13866         mono_image_typedef_or_ref but allows to specify if typespec lookups should
13867         be made. Typespec check is done prior to typeref cache lookup.
13869         * reflection.c (mono_image_typedef_or_ref): now just delegate to
13870         mono_image_typedef_or_ref_full.
13872         * reflection.c (encode_generic_class): encode the generic class
13873         directly instead of calling encode_type.
13875         * reflection.c (encode_type): encode the generic type definition
13876         MonoClass as a generic instantiation.
13878         * reflection.c (create_typespec): cache typespec tokens in
13879         the assembly->typespec cache. Don't create typespec for a generic
13880         instance MonoClass. Create typespec for the generic type defintion.
13882         * reflection.c (create_generic_typespec): encode the generic
13883         class directly instead of calling encode_type.
13885         * reflection.c (mono_image_create_token): encode the generic
13886         type definition not using a typespec for MonoType instances.
13889 2007-10-04  Raja R Harinath  <rharinath@novell.com>
13891         Fix #328812
13892         * class.c (mono_image_init_name_cache): Don't return nested
13893         'protected internal' classes.
13894         (mono_class_from_name_case): Likewise.
13896 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
13898         * icall-def.h, icall.c : get_bundled_machine_config() is now the
13899           common function used by both DefaultConfig in System.dll and
13900           InternalConfigurationHost in System.Configuration.dll.
13902 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13904         * class.c: automatically add to vectors only a few essential explicit
13905         generic interfaces. The rest of the interfaces that arrays should
13906         provide are currently implicitly added (but still not lazily, see the
13907         design in the discussion of bug#325495 for the details of what is
13908         needed for that). Additionally, implicit interfaces are assigned the
13909         same vtable slot as the explicit interfaces (as they are compatible):
13910         this enables huge memory savings since we don't need to instantiate
13911         as many memthods and as large vtables anymore. Also, Since
13912         GetEnumerator<T> returns an instance of a type that is required to
13913         support a similarly large set of interfaces as arrays, we add
13914         implicit interfaces and interface offset sharing support to those
13915         types, too. This change adds all the required interfaces so that
13916         the anonarray.cs test case in the bug report works (we don't add
13917         all the interfaces to arrays of arrays 3-level deep and more because
13918         of the memory requirements explained in the bug and since they are much
13919         less common: the lazy-loading support will enabled them to work, too).
13921 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13923         * verify.c (merge_stacks): major clean up, all type compatibility
13924         checks are done by verify_type_compatibility. This fix my earlier lack
13925         of understanding of the CLR type system and merge_stacks no longer looks
13926         scary.
13928         * verify.c: fixed some bad spelling.
13930 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13932         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
13933         a given stack slock.
13934         
13935         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
13936         verify_type_compatibility_full. This removed a near indentical function and fixed
13937         handling of Int32 and IntPtr across all opcodes.
13939 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13941         * class.c: only vectors have the additional generic interfaces.
13943 2007-10-01  Jonathan Chambers <joncham@gmail.com>
13945         * mono-config.c: Use g_strcasecmp instead of
13946         strcasecmp like everywhere else to fix
13947         compilation with MSVC.
13948         
13949         Code is contributed under MIT/X11 license.
13951 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13953         * object.c, object-internals.h: refactored the IMT code to enable
13954         building a single slot at a time and lazily creating the IMT trampolines
13955         and thunks.
13957 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
13959         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
13961         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
13962         Fixes #328501.
13963         
13964 2007-09-29  Raja R Harinath  <harinath@gmail.com>
13966         * loader.c (method_from_methodspec): Rearrange to avoid
13967         un-necessary exposition.  Don't assert out if the method's
13968         declaring type is a generic type definition.
13970 2007-09-28  Martin Baulig  <martin@ximian.com>
13972         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
13974 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
13976         * class-internals.h: optimize field layout of MonoClass to
13977         requires less cachelines at runtime and save a few bytes on 64 bit
13978         systems.
13980 2007-09-28  Jb Evain  <jbevain@novell.com>
13982         * reflection.c: when encoding type names in custom attributes,
13983         if the type is a closed generic type, its generic arguments
13984         have to be serialized as AssemblyQualifiedName, so that when
13985         they are deserialized, it's possible to re-create them properly.
13986         Fixes #329450.
13989 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13991         * object.c, class-internals.h: added delegate-creation counter.
13993 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
13995         * class.c: cleanup of the code that synthetizes interfaces for
13996         arrays in 2.0: saves quit a bit of corlib mempool memory.
13997         Code to fix bug #325495 ifdeffed out for now until the issues
13998         with memory usage and O(n^2) behaviour are fixed.
14000 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14002         * marshal.c: when possible, do not duplicate the name of the methods
14003         in the method builder and in the generated MonoMethod.
14005 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14006         * verify.c: added support for type checking ldind_* opcodes.
14008 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14010         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14011         which is used to distinguish the fully open instantiation of a TypeBuilder
14012         with the rest. This temporary hack is required to restore the property that
14013         the fully open instantiation is the same type of the generic type definition.
14015         * class-internals.h (mono_generic_class_is_generic_type_definition):
14016         new function as part of the internal API.
14018         * class.c (inflate_generic_type): return NULL when the generic inst is
14019         fully open. The fully open generic type is now the same as the generic type
14020         definition for non TypeBuilder types.
14022         * class.c (mono_generic_class_get_class): removed assert since it is
14023         no longer valid, gklass->cached_class can point to the generic type definition.
14025         * class.c (mono_generic_class_is_generic_type_definition): new.
14027         * metadata.c (mono_generic_class_hash): added is_tb_open field
14028         to the hash calculation.
14030         * metadata.c (free_generic_class): if the generic class is associated
14031         with the generic type definition, its field will come from the mempool and
14032         must not be freed.
14034         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14035         new, this function identifies the corner case of a TypeBuilder fully open
14036         instantiation.
14038         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14039         for lookup. Set gclass->cached_class to be the container class in case of
14040         the fully open instantiation of non TypeBuilder types.
14042         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14043         to compare generic classes.
14045         * reflection.c (method_encode_methodspec): remove assert that
14046         no longer is valid.
14048         * reflection.c (mono_reflection_generic_class_initialize): add
14049         an aditional assert to ensure the proper type is used.
14051 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14053         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14054         to enjoy it.
14056 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14058         * verify.c (push_arg): Fixed support for ldarga
14059         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14060         MonoType used as first arg in case of instance calls.
14062 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14064         * verify.c: Support for verifying VAR and MVAR types, 
14066 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14068         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14069         accessors correctly.
14071 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14073         * threads.c: support OSX and other systems in
14074         mono_thread_get_stack_bounds (bug #328026).
14076 2007-09-25  Martin Baulig  <martin@ximian.com>
14078         * mono-debug.h
14079         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14081 2007-09-24  Martin Baulig  <martin@ximian.com>
14083         * mono-debug.h
14084         (MonoDebugClassEntry): Moved the definition of this struct into
14085         mono-debug.c to make it private.
14087         * mono-debug.c
14088         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14089         type table per symbol file, we don't need to store the symfile id
14090         any longer.
14092 2007-09-24  Martin Baulig  <martin@ximian.com>
14094         Create one type table per symbol file, since a `MonoClass *' gets
14095         invalid when its image is unloaded.
14097         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14098         (MonoDebugHandle): Added `type_table'.
14100 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14102         * mempool.c, mempool.h: added mono_mempool_new_size () API
14103         to be able to specify a smaller initial size for the pool.
14104         Adjusted the code to slowly increase pool size before using
14105         the previous default size.
14106         * image.c: use a small initial size for image mempools.
14108 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14110         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14111         Fixes ##320990.
14113         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14114         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14116 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14118         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14119         free. Fixes #327438.
14121 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14123         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14124         generic instantiations, etc.
14125         <MONO_TYPE_ARRAY>: Likewise.
14127 2007-09-21  Martin Baulig  <martin@ximian.com>
14129         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14130         these structs were never defined.
14131         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14133 2007-09-21  Martin Baulig  <martin@ximian.com>
14135         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14137 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14139         * image.c: removed the guid hash tables: we can get the same info
14140         without the additional memory usage hit (partially fixes also bug #327052).
14142 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14144         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14145         event to handle unloading methods. After the event is called, the
14146         corresponding MonoMethod* must be considered invalid.
14147         * loader.c (mono_free_method): call the new mono_profiler_method_free
14148         event.
14150 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14152         * domain-internals.h: New flag in MonoJitInfo which marks shared
14153         generic methods.  New hash table (shared_generics_hash) in
14154         MonoDomain to keep track of shared generic methods.  Prototypes
14155         for functions to register and lookup shared generic methods.
14157         * domain.c: Support for registering and looking up shared generic
14158         methods via a hash table (shared_generics_hash) in MonoDomain.
14160         * class-internals.h: New exception to signal failure of shared
14161         compilation of a generic method.  New counters for generics
14162         sharing in MonoStats.
14164 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14166         * image.c, metadata-internals.h: don't keep a file descriptor open
14167         for loaded assemblies (bug#325988).
14169 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14171         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14172         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14173         use the corresponding datatypes.
14174         (type_in_image): Update to changes.
14175         (CleanForImageUserData): Simplify.
14176         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14177         Avoid quadratic behaviour in handling the "stolen" list by
14178         separating the filter predicate out, and by prepending the stolen
14179         items rather than appending them.
14180         (steal_ginst_in_image): Likewise.
14181         (mono_metadata_clean_for_image): Update to changes.
14183 2007-09-19  Martin Baulig  <martin@ximian.com>
14185         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14187 2007-09-19  Martin Baulig  <martin@ximian.com>
14189         * mono-debug.c (mono_debug_cleanup): Don't call
14190         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14192 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14194         Fix crash on 'make run-test' in mcs/errors
14195         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14196         Avoid more potential allocations in mono_class_from_mono_type.
14197         (ginst_in_image): Update to changes.
14198         (gclass_in_image): Rearrange slightly.
14200 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14202         * class.c (mono_class_init): Move the code that sets up class->methods to 
14203         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14205         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14206         canonical instance of an inflated generic signature.
14207         (mono_type_create_from_typespec): Remove an invalid free.
14209         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14211 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14213         * domain-internals.h: added a declaration of the
14214         mono_assembly_load_full_nosearch internal function.
14216         * assembly.c (mono_assembly_load_with_partial_name): use
14217         mono_try_assembly_resolve return value properly.
14218         (mono_assembly_load_full_nosearch): copied the function body from
14219         mono_assembly_load_full, without the code to invoke assembly
14220         search hooks.
14221         (mono_assembly_load_full): calls the above new function and if the
14222         assembly is not resolved, invokes the search hooks.
14224         * appdomain.c (mono_runtime_init): restore the global postload
14225         assembly search handlers.
14227 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14229         * class.c (mono_class_init): Make sure class->methods and class->properties
14230         are never NULL in the generics case.
14232         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14234 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14236         * metadata.c (free_generic_class): Disable some code to fix the build.
14238         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14240         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14241         from the image mempool.
14243         * metadata.c (free_generic_class): Free more data from the inflated class.
14245         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14247         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14248         mempool.
14249         (mono_type_create_from_typespec): Ditto.
14251         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14252         MonoImage to the caller.
14253         (mono_init_internal): Save the opened image in a global variable.
14254         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14256         * reflection.c (resolve_object): Fix a leak.
14258         * metadata.c: Fix the freeing of data in the generics caches.
14259         
14260         * metadata.c (free_generic_inst): Comment this out to fix the build.
14261         (free_generic_class): Ditto.
14263         * metadata.c: Free cached generic methods, instantinations and classes when
14264         they are removed from the caches.
14265         (mono_metadata_free_type): Free the type itself.
14267         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14268         places.
14270 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14272         * boehm-gc.c: restrict managed allocs to __thread supporting
14273         architectures.
14275 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14277         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14278         (mono_generic_class_get_class): Fix a leak.
14280         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14281         mono_metadata_free_type ().
14282         (mono_metadata_inflate_generic_inst): Fix a leak.
14284 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14286         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14288         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14289         mempool.
14291         * mono-debug.c (mono_debug_close_image): Fix call to 
14292         g_hash_table_remove ().
14294 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14296         * icall-def.h: redirect all the string ctor to the managed
14297         CreateString () methods.
14298         * string-icalls.c, string-icalls.h: removed dead code for string
14299         ctors and icalls.
14301 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14303         * mono-debug.c: Fix memory leaks.
14305 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14307         * threads-types.h: Implement mono_hazard_pointer_set and 
14308         mono_hazard_pointer_clear macros using do/while(0) to fix
14309         compilation with MSVC.
14310         
14311         Code is contributed under MIT/X11 license.
14313 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14315         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14316         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14318 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14320         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14321         icalls.
14323 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14325         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14326         managed-code allocated as well.
14328 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14330         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14332 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14334         * boehm-gc.c: fixed the build after the AOT changes.
14336 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14338         * wrapper-types.h: Add an ALLOC wrapper type.
14340         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14341         reference managed allocator methods.
14343 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14345         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14346         of Type array and not MonoType, a fix suggested by Hari.
14347         
14348 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14350         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14351         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14352         
14353         Code is contributed under MIT/X11 license.
14355 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14357         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14359 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14361         * image.c (do_mono_image_open): if assembly file fails to open and
14362         MONO_IOMAP is in effect, try to find the path in a
14363         case-insensitive way.
14365         * appdomain.c (mono_runtime_init): do not install postload hooks -
14366         tests show that MS.NET doesn't use anything of that sort to
14367         trigger the AppDomain.AssemblyResolve event.
14368         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14369         made non-static.
14370         (mono_runtime_init): init portability helpers here.
14372         * assembly.c (mono_assembly_load_with_partial_name): if other   
14373         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14374         to resolve the assembly.
14376         * domain-internals.h: added mono_try_assembly_resolve and marked
14377         it as internal.
14379 2007-09-11  Jb Evain  <jbevain@novell.com>
14381         * object-internals.h (MonoReflectionDynamicMethod): add
14382         a `MonoReflectionType *owner` field. The owner is used
14383         * reflection.c:
14384         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14385         method as the class declaring the dynamic method.
14386         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14387         dynamic method to the declaring type of the methodbuilder.
14389 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14391         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14392         rules for calling methods via reflection.
14394 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14396         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14397         Inflate MonoType's.
14399 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14401         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14402         provide a managed method that does fast allocations without needing
14403         a managed->unmanaged transition. Boehm GC implementation currently
14404         enabled for ptrfree objects on sane architectures.
14406 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14408         * marshal.c, marshal.h: exported a couple of useful functions and
14409         added mono_mb_get_label () to easily handle backward branches.
14411 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14413         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14415 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14417         * loader.c (find_method): Fixed the regression introduced while
14418         fixing bug #81466.
14420 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14422         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14423         well.
14424         
14425         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14426         icall.c reflection.c: Pass a MonoGenericContext argument to 
14427         mono_lookup_dynamic_token ().
14429         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14430         #82744.
14431         
14432 2007-09-09  Robert Jordan  <robertj@gmx.net>
14434         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14435         for generic methods.
14437         * object.c (mono_object_get_virtual_method): Handle generic methods.
14438         Fixes bug #78882.
14440         Code is contributed under MIT/X11 license.
14442 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14444         * image.c: fix locking in mono_image_load_file_for_image ().
14446 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14448         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14449         used only as a cache: added an icall to fill it.
14451 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14453         * reflection.h: exposed mono_reflection_free_type_info
14454         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14455         since mono_reflection_bind_generic_parameters makes a copy of it.
14456         * reflection.c (free_type_info): subinfos should be freed.
14457         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14458         made non static.
14459         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14460         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14461         this fixes #82695 and #81726.
14462    
14464 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14466         * process.h, process.c:  added support for user profile/info in
14467           ProcessStartInfo. For now only Windows works.
14469 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14471         * metadata.c: consider the generic arguments when comparing
14472         signatures (bug #82614).
14474 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14476         * cil-coff.h, image.c: updated assembly loader to cope with the
14477         PE32+ 64 bit file format.
14479 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14481         * assembly.c, class.c, domain.c, loader.c: remove useless
14482         inclusion of cil-coff.h.
14484 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14486         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14487         if interface is marked with CoClassAttribute. 
14488    
14489         Code is contributed under MIT/X11 license.
14491 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14493         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14494         if it's seen twice in major collections.
14496 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14498         * sgen-gc.c: big objects are not copied to the gray area, but they
14499         need to be considered for scanning, too, if they are brought alive
14500         by an object ready for finalizations or a survived one.
14502 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14504         * sgen-gc.c: properly account the number of disappearing links when
14505         they are nullified.
14507 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14509         * sgen-gc.c: share the code to scan the registered roots between the
14510         different types of collections.
14512 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14514         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14516 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14518         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14519         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14521 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14523         * security-manager.c (mono_security_manager_get_methods):
14524         LinkDemandSecurityException now has 2 arguments instead of 3.
14526 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14528         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14529         platforms which need it.
14531 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14533         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14534         dtor.
14536 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14538         * threads.c: free the thread static data on thread exit.
14540 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14542         * class.c: walk the hierarchy to find the generic definition for
14543         a class (fixes runtime part of bug #82498).
14545 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14547         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14548         ...
14550         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14552 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14554         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14556 2007-08-24  Robert Jordan  <robertj@gmx.net>
14558         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14560 2007-08-24  Jb Evain  <jbevain@novell.com>
14562         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14563         for byref types.
14565 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14567         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14568         #82286.
14570 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14572         * assembly.c: Fix a warning.
14573         
14574 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14576         * appdomain.c: parse the <runtime> section looking for the probing
14577         element with the 'privatePath' attribute, which sets additional
14578         directories in which the runtime should look for assemblies.
14580 2007-08-23  Robert Jordan  <robertj@gmx.net>
14582         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14583         Fixes #82499.
14585 2007-08-23  Martin Baulig  <martin@ximian.com>
14587         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14588         _mono_debug_init_corlib() and remove it from the header file.
14590 2007-08-23  Martin Baulig  <martin@ximian.com>
14592         * mono-debug-debugger.c
14593         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14594         don't notify the debugger about it.
14596         * mono-debug-debugger.h
14597         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14599 2007-08-23  Robert Jordan  <robertj@gmx.net>
14601         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14602         Code is contributed under MIT/X11 license.
14604 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14606         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14608 2007-08-22  Martin Baulig  <martin@ximian.com>
14610         * mono-debug.c: Store debugging info on a per-domain basis and
14611         free it on domain unload.  Add support for unloading symbol files.
14613         * mono-debug.h
14614         (MonoDebugList): New typedef.
14615         (MonoSymbolTable):
14616         - add `data_tables and `type_table'.
14617         - replace 'symbol_files' and `num_symbol_files' with a
14618           `MonoDebugList *'.
14619         (mono_debug_data_table): Removed.
14620         (mono_debug_list_add): New public function.
14621         (mono_debug_list_remove): New public function.
14622         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14623         (mono_debug_init_2_memory): Renamed into
14624         mono_debug_open_image_from_memory().
14625         (mono_debug_close_image): New public function.
14626         (mono_debug_domain_create): Likewise.
14627         (mono_debug_domain_unload): Likewise.
14628         (MONO_DEBUGGER_VERSION): Bump to 60.
14630         * mono-debug-debugger.h
14631         (MonoDebuggerEvent):
14632         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14633         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14634         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14635         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14636           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14637         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14638           meaning.
14639         (mono_debugger_add_symbol_file): Removed.
14640         (mono_debugger_add_type): Removed.
14641         (mono_debugger_lookup_type): Removed.
14642         (mono_debugger_lookup_assembly): Removed.
14644         * domain.c
14645         (mono_domain_create): Call mono_debug_domain_create().
14646         (mono_init_internal): Call mono_debug_init_corlib().
14648         * assembly.c
14649         (mono_assembly_close): Call mono_debug_close_image().
14651 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14653         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14654         mmap call.
14656 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14658         * sgen-gc.c: ensure section->pin_queue_end is initialized
14659         correctly when non pinning objects in the section have been found.
14661 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14663         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14664         containing a list of directories separated by ':'. MSDN docs say
14665         the directories should be separated with ';'. Part of a bugfix for
14666         bug #81446
14668 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14670         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14671         it should MonoType and not MonoClass.
14673 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14675         * culture-info-table.h : regenerated.
14677 2007-08-20  William Holmes  <billholmes54@gmail.com>
14679         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
14680          to call ReplaceFile Kernel32 on windows or in io-layer.
14681         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
14682         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
14683          as an internal call.
14685         Code is contributed under MIT/X11 license.
14687 2007-08-20  Jb Evain  <jbevain@novell.com>
14689         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
14690         and MONO_EXCEPTION_FIELD_ACCESS.
14692         * debug-helpers.[c|h]: new mono_field_full_name function.
14694 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14696         * class.c: Removed class_security_level() and moved it to
14697         security-core-clr.c.
14699         * security-core-clr.c, security-core-clr.h: class_security_level()
14700         is now public and renamed to mono_security_core_clr_class_level().
14701         It also looks for security attributes in the classes a class is
14702         nested in.
14704 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14706         * security-core-clr.c, security-core-clr.h: CoreCLR security
14707         utility functions.
14709         * Makefile.am: Added security-core-clr.[ch].
14711         * security-manager.c, security-manager.h: Functions and enum for
14712         setting and getting the security mode.
14714         * class.c: CoreCLR security checks.
14716 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14718         * icall-def.h, process.c, process.h: implemented icall to get
14719         user/system processor times.
14721 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14723         * domain.c, threads.c, class-internals.h, domain-internals.h: New
14724         reader-lock-free jit_info_table.
14726 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
14728         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
14730         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
14732         * object-internals.h (MonoException): Add missing _data member.
14734 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14736         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
14737         checking that only methods with matching qname or fqname are picked
14738         from implemented interfaces.
14740 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14742         * verify.c (do_newarr):added, do type verification of
14743         newarr ops, push the right value on the eval stack.
14744         * verify.c (mono_method_verify): use do_newarr
14747 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14749         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
14750         factored the common code into get_boxable_mono_type, which
14751         is now using mono_type_get_full, this fixed byref related tests.
14753 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14755         * class.c: added mono_type_get_full, this function has the same
14756         behavior of mono_class_get_full but the returned MonoType has
14757         all metadata of the associated token in case of a typespec token.
14758         * class.c: added mono_type_retrieve_from_typespec, used by 
14759         mono_type_get_full to retrieve the token type.
14760         * class.c (mono_class_create_from_typespec): changed to use
14761         mono_type_retrieve_from_typespec.
14762         * class.c (mono_ldtoken): changed to use mono_type_get_full
14763         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
14764         * class-internals.h: exported mono_type_get_full for internal use.
14766 2007-08-16  Jb Evain  <jbevain@novell.com>
14768         * domain.c (supported_runtimes): add entry for
14769         the 'moonlight' runtime version.
14771 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14773         * verify.c (mono_method_verify): small typo sliped in.  
14775 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14777         * verify.c (do_unbox_value): added, do type verification of
14778         unboxing ops
14779         * verify.c (mono_method_verify): use do_unbox_value
14782 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14784         * verify.c (dump_stack_value): fixed typo, was printing string
14785         instead of object on stack.
14786         * verify.c (do_box_value): moved the byref check up as it leads
14787         to invalid code and should be done earlier.
14788         * verify.c: improved error messages for and ldobj
14790 2007-08-15  William Holmes  <billholmes54@gmail.com>
14792         * marshal.c (emit_marshal_custom): Omit the call to 
14793           marshal_native_to_managed when calling native to managed 
14794           and the argument is specified as an out argument.
14796         Code is contributed under MIT/X11 license.
14798 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14800         * verify.c: fixed the type checks for generics, function pointers and vectors.
14801         Added type verification for ldobj and ldtoken. The verifier
14802         would segfault if header or signature of a method contained references
14803         to non-existant types.
14805 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14807         * marshal.c (cominterop_get_ccw): Patch from
14808         Bill Holmes to no walk up interface hierarchy. 
14809         All parent methods should be present in the interface for COM.
14810    
14811         Code is contributed under MIT/X11 license.
14813 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14815         * marshal.c (emit_marshal_com_interface): Patch from
14816         Bill Holmes to handle COM Interfaces as return values
14817         for native->managed calls.
14818    
14819         Code is contributed under MIT/X11 license.
14821 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
14823         * marshal.c (cominterop_get_idispatch_for_object): Implement
14824         for runtime callable wrappers.
14825    
14826         Code is contributed under MIT/X11 license.
14828 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
14830         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14831         so 2.0 types are accessible
14834 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14836         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14837         once we load mscorlib.   Due to the order in which we initialize,
14838         the mono_assembly_load_full routine that loads mscorlib did not
14839         load friends.   We now load it once we load the
14840         mono_defaults.internals_visible_class class. 
14842         * assembly.c: Expose the mono_load_friend_assemblies method.
14844 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
14846         * verify.c: improved the handling of boxing, better
14847         type checking for unary ops and conversion. Fix bug
14848         regarding managed pointer compatibility checking
14850 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14852         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
14854         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
14856 2007-08-09  Raja R Harinath  <rharinath@novell.com>
14858         * reflection.c (dup_type): Remove.
14859         * class.c (dup_type): Remove.
14860         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
14861         instead of the dodgy 'dup_type'.
14862         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
14863         handle the case where 'dup_type' needed the second argument.
14865 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
14867         * domain.c: Fix a warning.
14869 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14871         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
14872         checking that methods with the same fqname are not overridden
14873         with a method from an ancestor.
14875 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
14877         * threads.c (free_thread_static_data_helper): Avoid a crash if
14878         thread->static_data is not yet set.
14880 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
14882         * marshal.c: Use correct image when emitting
14883         native wrapper for COM calls.
14884    
14885         Code is contributed under MIT/X11 license.
14887 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
14889         * icall-def.h, security.c, security.h :
14890           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
14892 2007-08-07  Martin Baulig  <martin@ximian.com>
14894         * mono-debug-debugger.h
14895         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
14897         * domain.c (mono_domain_free): Call
14898         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
14900 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
14902         * verify.c (check_underflow, check_overflow): error message now returns IL offset
14903         * verify.c (in_same_block): code should test if either offset is inside the clauses
14904         * verify.c (mono_method_verify): push the exception into the eval stack of exception
14905         and filter blocks
14907 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14909         * image.c (mono_image_close): Fix a leak.
14911         * object.c (mono_runtime_invoke_array): Avoid using alloca.
14913         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
14915 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14917         * domain.c, threads.c, threads-types.h: fix memory retention issue
14918         with thread static variables not being cleared on domain unload.
14919         Reuse thread static slots after domain unload.
14921 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14923         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
14924         nullable type.
14926         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
14927         now done in mono_runtime_invoke_array.
14929         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
14930         receiver is a nullable type.
14932         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
14933         generic parameter.
14935 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
14937         * marshal.c: Implement COM Objects as return type for 
14938         managed->unmanaged calls. Added Release calls for COM Object
14939         out/return values in managed->unmanaged calls.
14941         Code is contributed under MIT/X11 license.
14943 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14945         * threads.h, threads-type.h: move the hazard pointer declarations
14946         to the private header.
14948 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14950         * file-io.c, appdomain.c: memory leak fixes.
14952 2007-08-02  Dick Porter  <dick@ximian.com>
14954         * socket-io.c
14955         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
14956         SO_REUSEADDR setting into io-layer/sockets.c.
14958 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
14960         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
14961         from Object when called on a generic parameter. Fixes #82211.
14963 2007-08-01  Dick Porter  <dick@ximian.com>
14965         * file-io.c (convert_share): Test FileShare values bit-by-bit.
14966         Fixes bug 79250 yet again.
14968 2007-07-30  Martin Baulig  <martin@ximian.com>
14970         Merged the `debugger-dublin' branch.
14972         * mono-debug.h
14973         (MonoDebugDataTable): New typedef.
14974         (MonoDebugMethodAddressList): New typedef.
14975         (MonoDebugWrapperData): Removed.
14976         (MonoDebugSymbolTable): Removed `current_data_table',
14977         `current_data_table_size', `current_data_table_offset'.
14978         (MonoDebugDataItemType): Moved into mono-debug.c.
14979         (MonoDebugMethodJitInfo): Remove `address'.
14980         (mono_debug_data_table): New global variable.
14981         (mono_debug_lookup_method_addresses): New public function.
14982         (mono_debug_find_method): Take a `MonoMethod *', not a
14983         `MonoDebugMethodInfo *'.
14985         * mono-debug.c: Drop support for the old symbol tables.
14987 2007-06-28  Martin Baulig  <martin@ximian.com>
14989         * mono-debug.c (mono_debug_debugger_version): New public variable.
14991 2007-07-31  William Holmes  <billholmes54@gmail.com>
14993         * metadata.c Changed mono_type_create_from_typespec to not insert
14994           the type into the hash map until after
14995           do_mono_metadata_parse_type has completed.
14996         Fixes Bug #82194
14997         Code is contributed under MIT/X11 license.
14999 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15001         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15002         generic parameter. Fixes #82211.
15004 2007-07-27  Jb Evain  <jbevain@novell.com>
15006         * pedump.c (dump_metadata, dump_metadata_header): dump
15007         versions contained in the metadata header.
15009 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15011         * threads.c: register small_id_table with the GC.
15013 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15015         * threads.c, threads.h, class-internals.h, object-internals.h:
15016         Hazard pointers, to be used by lock-free parallel algorithms.
15018 2007-07-26  Dick Porter  <dick@ximian.com>
15020         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15021         routine on non-windows platforms, as I've not managed to think of
15022         a non-kludgy way of doing this.  Finishes off bug 78739.
15024 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15026         * object.c: properly setup interface_bitmap in proxy vtables.
15028 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15030         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15031         to create unique shadow copy target directories, use the domain's
15032         serial number instead. Each domain gets a unique target directory
15033         that way.
15035         * domain.c (mono_domain_create): added code to increment domain
15036         shadow copy serial number and cache the value in the current
15037         domain structure.
15039         * domain-internals.h (struct _MonoDomain): added a new field -
15040         shadow_serial to hold the serial number used in generation of
15041         shadow-copy directories. This is to make sure that the directory
15042         name is unique for each and every domain created. We avoid a race
15043         condition with overriding assemblies already in use by other app
15044         domains.
15046 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15048         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15049         binding generic parameters.
15051 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15053         * metadata.c (do_mono_metadata_parse_generic_class): Use
15054         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15055         error.
15057 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15059         * loader.c, class-internals.h, reflection.c: removed the per-method
15060         generics hashtable: we use the global one through the call of
15061         mono_class_inflate_generic_method ().
15063 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15065         * class.c, metadata.c, class-internals.h: introduce yet another
15066         generics global cache for inflated methods (fixes 98% of the perf
15067         issue in bug #81806).
15069 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15071         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15072         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15073         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15074         return a MonoGenericInst containing (a copy) of those types.
15075         (mono_metadata_inflate_generic_inst): Update to changes.
15076         (mono_metadata_parse_generic_inst): Likewise.
15077         (mono_get_shared_generic_inst): Likewise.
15078         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15079         (mono_reflection_bind_generic_method_parameters): Likewise.
15080         * metadata-internals.h: Likewise.
15081         * icall.c (free_generic_context): Kill.
15082         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15084         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15085         mono_metadata_type_dup.
15086         * marshal.c (mono_mb_create_method): Likewise.
15088         * metadata.c (mono_metadata_type_dup): Rename from
15089         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15090         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15091         * marshal.c, metadata-internals.h: Update to changes.
15093 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15095         * class.c: fixed a small leak for array classes and removed warning.
15097 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15099         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15100         Return 0x8000000 for return parameters. Fixes #82161.
15102 2007-07-21  Marek Habersack  <grendello@gmail.com>
15104         * appdomain.c (get_shadow_assembly_location): append the current
15105         ticks value to the path. Avoids overwriting the same assemblies by
15106         several threads at the same time.
15108 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15109         and Raja R Harinath  <rharinath@novell.com>
15111         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15112         Simplify slightly.
15113         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15114         property for testing if a method is a generic method definition.
15116 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15118         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15120 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15122         * verify.c: used function from private branch, reverted to the one in class.h 
15124 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15126         * verify.c: a typo slipped in and the code wont compile
15128 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15130         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15131         disabled box instruction as it is doing the wrong thing
15132         improved stack dump messages, now it is easier to debug type related issues
15135 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15137         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15139 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15141         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15142         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15143         grouped with class and valuetype. This change will simply 
15144         the code as it should be handled just like unmanaged pointers.
15146 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15148         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15150 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15152         * verify.c: several stack merge issues fixed, reference comparisons now
15153         check the type size. strict type check now works correctly.
15154         added more uses of IS_MANAGED_POINTER macro.
15155         fixed issues pointed by running the test suite against .net.
15156         
15158 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15160         * class.c, loader.c, class-internals.h: Removed the
15161         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15162         defines.
15164         * icall.c: Better error checking in some internal reflection
15165         methods.
15167 2007-07-18  William Holmes  <billholmes54@gmail.com>
15169         * filewatcher.c : removed unused variable 'filename' in 
15170           ves_icall_System_IO_FSW_SupportsFSW
15172 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15174         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15175         obsolete, removed.
15177 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15179         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15180         
15181         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15183 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15185         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15186         Implement generics support.
15187         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15189         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15190         type_args and method_args arguments.
15191         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15192         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15193         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15195 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15197         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15198           It adds a rootimage parameter to mono_reflection_get_type_internal,
15199           adds new function mono_reflection_get_type_with_rootimage and use
15200           the rootimage to resolve the types instead of the current image
15202 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15204         * culture-info-table.h: Forgot to update after r78304.
15206 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15208         * class.c (mono_class_is_open_constructed_type)
15209         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15211 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15213         * class.c (mono_bounded_array_class_get):  method fails if used with
15214         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15215         avoiding calculating the size for such array as it cannot be instantiated.
15216         Fix bug #82015
15218 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15220         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15221         field.
15222         * metadata.c, reflection.c: Update to changes.
15224 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15226         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15227         mono_class_is_valid_enum, they are used to valide a enum when loading.
15228         * reflection.c: used new functions to throw TypeLoadException when and
15229         invalid enum is build with TypeBuilder. Fixes #82018
15230   
15231 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15233         * object.c: forgot commit of mono_class_setup_methods () to access
15234         iface->methods.
15235         * object-internals.h: added a few more handy fields to
15236         MonoIMTCheckItem.
15238 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15240         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15241         iface->methods.
15243 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15245         * class-internals.h, object-internals.h, object.c: IMT-based
15246         interface invocation core from Massimiliano Mantione
15247         (massi@ximian.com) with a reworked arch-specific interface,
15248         bsearch implementation and a few bugfixes and memory savings by me.
15250 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15252         * class.c (mono_class_create_from_typedef): mono would segfault if 
15253         an enum did not have a __value field. It now throws a TypeLoadException
15254         for such cases. Fix bug #82022
15256 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15258         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15260 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15262         * class.c (mono_class_init): If a class is already inited but has
15263         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15265 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15267         * class.c: Properly handle the case of an unimplemented interface
15268         method.  Fixes: 81673.
15270 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15272         * class-internals.h, object.c: cleanup patch from massi: use
15273         MonoVTable->interface_bitmap since the vtable interfaces offset array
15274         is going away.
15276 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15278         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15279         GetMDStreamVersion icall instead.
15281 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15283         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15284         not use mono_dl_build_path() with a full library name: makes
15285         fallbacks to libgaim and libfam work.
15287 2007-07-06  William Holmes  <billholmes54@gmail.com>
15289         * assembly.c: Added a continue statement in probe_for_partial_name when
15290          parse_assembly_directory_name fails.  Fixes : 82002
15292 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15294         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15295         and added a verification  for TYPEDBYREF.
15296         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15297         make native int interchangeable with int32 and some small cleanup and formating.
15298         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15299         handle byref of byref.
15300         * verify.c (push_local): handle byref of byref.
15301         * verify.c (do_binop): invalid mix of values is unverifiable
15302         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15303         added visibility checks
15304         * verify.c (field related method): added visibility checks
15305         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15307 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15309         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15310         string.
15312 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15314         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15316         * marshal.c (emit_marshal_string): When returning a string from managed code,
15317         allways make a copy even for unicode strings. Fixes #81990.
15319 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15321         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15322         of byref generic inst types (bug #81997).
15324 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15326         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15327         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15329 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15331         * marshal.c (emit_marshal_string): Add support for unicode strings in
15332         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15334 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15336         * verify.c: field load/store are now verified, missing only access checks now
15338 2007-06-28  Martin Baulig  <martin@ximian.com>
15340         * mono-debug.c (mono_debug_debugger_version): New public variable.
15342 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15344         * locales.c: When constructing DateTimeFormat or NumberFormat for
15345         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15346         MonoCultureInfo contructed from the current locale is always
15347         read-only and has UseUserOverride set to true. All MonoCultureInfo
15348         instances returned for GetCultures have both IsReadOnly and
15349         UseUserOverride set to true. Fixes part of bug #81930.
15351 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15353        * icall-def.h: Update System.__ComObject icalls
15354        * marshal.c: Avoid managed transition (and object creation)
15355        when looking up COM interface in RCW.
15356        * marshal.h: Ditto.
15357        
15358        Code is contributed under MIT/X11 license.
15360 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15362         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15363         to avoid crashes during assembly unloading.
15365 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15367         Fix MethodInfo.IsGenericMethodDefinition
15368         * reflection.c (mono_reflection_bind_generic_method_parameters):
15369         Rearrange code to ensure we always uses a generic method definition.
15370         * class.c (mono_class_inflate_generic_method_full): Set
15371         'generic_container' field only for generic method definitions.
15372         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15373         Use presense of 'generic_container' field as indication of being a
15374         generic method definition.
15376 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15378         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15380         * object-internals.h: Reflect changes in the layout of the managed Delegate
15381         class.
15382         
15383         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15384         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15385         runtime memory used by the dynamic method. Fixes #77146.
15387 2007-06-21  Dick Porter  <dick@ximian.com>
15389         * file-io.h: 
15390         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15391         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15392         81767.
15394 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15396         * reflection.c (method_encode_methodspec): Add a tripwire.
15397         * class.c (inflate_generic_type): The fully open generic type is
15398         not the same as the generic type definition.
15400 2007-06-21  Martin Baulig  <martin@ximian.com>
15402         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15404         * mono-debug-debugger.h
15405         (MonoDebuggerBreakpointInfo): Removed.
15406         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15407         (mono_debugger_remove_breakpoint): Likewise.
15408         (mono_debugger_breakpoint_callback): Likewise.
15409         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15411 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15413         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15414         generic type is not the same as the generic type definition.
15415         * class.c (mono_generic_class_get_class): Likewise.
15417 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15419         * icall.c: The second argument to 
15420         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15421         is a MonoType not a MonoClass.
15423 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15425         * verify.c: support for function pointers in the verifier
15427 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15429         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15431 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15433         * assembly.c: removed Mono.Data.SqliteClient from the list of
15434         forward-compatible assemblies as it breaks the ABI (bug #81899).
15436 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15438         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15439         lookup/update with the loader lock.
15440         * reflection.c (mono_class_bind_generic_parameters): No need to
15441         protect mono_metadata_lookup_* with the loader lock.
15442         * class.c (inflate_generic_type): Likewise.
15443         
15444         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15445         on a generic instantiated type.
15447 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15449         *verify.c: produce meanfull error messages on verification error
15450         *verify.c: fixed some cases of verification errors reported as validation errors
15451         *pedump.c: fixed the error name array, now it shows validation errors properly
15452         *verify.h: fixed the contant that should be used for verification errors
15454 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15456         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15457         for bug #77596, 81858 and 80743 (generics data structures on domain
15458         unload).
15460 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15462         Avoid allocating 'MonoGenericContext' on the heap.
15463         * class-internals (_MonoMethodInflated::context): Make field
15464         inline, not a pointer.
15465         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15466         stack.  Use the context embedded within the inflated method as the
15467         hash key, rather than 'new_context'.
15468         * class.c (inflate_generic_context): Simplify.  Return a struct
15469         rather than allocating on the heap.
15470         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15471         doesn't salt away a copy of the context -- simplifying the
15472         lifetime rules of a 'MonoGenericContext *'.
15473         (mono_method_get_context): Return pointer to embedded context.
15474         (setup_generic_array_ifaces): Allocate temporary context on stack.
15475         * reflection.c (inflate_mono_method): Likewise.
15476         (mono_reflection_bind_generic_method_parameters): Likewise.
15477         Use the context embedded within the inflated method as the hash key.
15479         Avoid a source of allocation of 'MonoGenericContext'.
15480         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15481         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15482         * class.c: Update to changes.
15483         (mono_generic_class_get_context): Simplify drastically.  Now just
15484         returns a pointer to the field.
15485         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15486         argument as a const pointer.
15487         (mono_metadata_generic_context_equal): Likewise.
15488         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15489         Update to changes.
15491 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15493         * verify.c improved the handling of brtrue/brfalse, factored out common code
15495 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15497         Kill MonoGenericMethod.
15498         * class-internals.h (MonoGenericContext::method_inst): Rename from
15499         'gmethod' and convert to a MonoGenericInst.
15500         (MonoGenericMethod): Remove.
15501         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15502         * loader.c (method_from_methodspec): Update to changes.  Use a
15503         MonoGenericContext as the key to the hashtable.
15504         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15505         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15506         (mono_metadata_generic_context_hash): Likewise from
15507         'mono_metadata_generic_method_hash'.  Change hash function.
15508         (mono_metadata_load_generic_params): Update to changes.
15509         (mono_get_shared_generic_method): Remove.
15510         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15511         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15512         (inflate_generic_context): Likewise.
15513         (mono_class_inflate_generic_method_full): Likewise.
15514         (setup_generic_array_ifaces): Likewise.
15515         (mono_class_create_from_typespec): Likewise.
15516         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15517         (method_encode_methodspec): Update callsite.
15518         (reflection_methodbuilder_to_mono_method): Update to changes.
15519         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15520         MonoGenericContext as the key to the hashtable.
15521         (inflate_mono_method): Update to changes.
15523         * class-internals.h (MonoGenericMethod::container): Remove.
15524         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15526 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15528         * profiler-private.h, profiler.c, profiler.h: added API to profile
15529         exception events.
15531 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15533         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15535 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15537         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15538         Fixed overflow and underflow not aborting the verification process.
15540 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15542         * class-internals.h (MonoStats): Added stats entries for dynamic
15543         code allocations.
15545 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15547         * loader.c (mono_free_method): Free header->locals and header->clauses.
15549         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15550         dynamic case.
15552         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15554         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15556 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15558         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15559         the tables.
15561 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15563         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15565 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15567         MonoGenericMethod on a diet
15568         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15569         here ...
15570         (_MonoGenericMethod::reflection_info): ... from here.
15571         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15572         Update to changes.
15573         * reflection.c (inflate_mono_method): Likewise.
15574         (mono_reflection_bind_generic_method_parameters): Likewise.
15576 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15578         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15579         *verify.c: factored long ldarg forms to share code with short forms
15581 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15583         *verify.c: fixed code formating factored some duplicate code
15584         into a new function
15586         *verify.h: fixed binary incompatibility introduced earlier
15588         *pedump.c: fixed formating
15590 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15592         Fix assertion when disassembling Mono.C5.dll
15593         * loader.c (method_from_methodspec): Avoid inflating a method
15594         twice with the same context.  If the methodref is inflated, use
15595         the declaring method instead.
15597         * class.c (mono_class_from_generic_parameter): Fix case similar to
15598         bug #81830 handled below, but for method containers.
15600 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15602         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15603         get_shared_generic_class.  Directly inflate the instance.
15604         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15605         (inflate_generic_class): Delete.
15606         (get_shared_generic_class): Delete.  Move setting of
15607         'cached_class' and 'cached_context' ...
15608         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15610         * metadata.c (mono_metadata_lookup_generic_class): Change
15611         signature to take the components of a MonoGenericClass rather than
15612         an allocated MonoGenericClass.  Change semantics to be intern-like.
15613         * reflection.c (mono_class_bind_generic_parameters): Update to
15614         changes.  Make locking region tighter.
15615         * class.c (inflate_generic_class): Update to changes.
15616         (get_shared_generic_class): Likewise.
15617         * metadata-internals.h: Likewise.
15619         * reflection.c (mono_class_bind_generic_parameters): Take and
15620         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15621         (mono_reflection_bind_generic_parameters): Use
15622         'mono_class_bind_generic_parameters' rather than duplicate the code.
15623         * class.c (mono_bounded_array_class_get): Update to changes.
15624         * object-internals.h: Likewise.
15626         * reflection.c (mono_class_bind_generic_parameters): Only support
15627         parameterizing generic type definitions.  Remove support for other
15628         open types.
15630 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15632         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15634         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15635         in the dynamic case.
15637 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15639         * threads.c: When cleaning up thread, reset the Background bit.
15640         Fixes bug #81720.
15642 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15644        * metadata.c: Move variable declarations to top of scope.
15645        * verify.c: Move variable declarations to top of scope.
15647        Code is contributed under MIT/X11 license.
15649 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15651         * reflection.c (mono_class_bind_generic_parameters): Replace
15652         open-coded loop with mono_metadata_inflate_generic_inst.
15654         * class.c (get_shared_generic_class): Don't call
15655         mono_get_shared_generic_inst.  Use the container's own
15656         'class_inst'.
15658         * metadata.c (mono_metadata_load_generic_params): Move
15659         initialization of 'context' field here from ...
15660         * class.c (mono_class_create_from_typedef): ... here, and ...
15661         * loader.c (mono_get_method_from_token): ... here.
15663         * class.c (get_shared_generic_class): Rename from
15664         mono_get_shared_generic_class and make static.
15665         (mono_get_shared_generic_inst): Move to metadata.c.
15666         * loader.c (mono_get_shared_generic_method): Likewise.
15667         * class-internals.h, metadata-internals.h: Update to changes.
15669         Fix #81830
15670         * class.c (mono_class_from_generic_parameter): Don't assume a
15671         generic container owner exists.  Generic containers from monodis
15672         don't have any.
15674 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15676         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15677         * verify.h: new typedefs to returns the non-verifiable status
15678         * verify.c: initial implementation of generics, stack merging and object compatibility check
15680 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15682         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15683         a MonoInternalHashTable again (fixed bug in internal hash table
15684         code).
15686 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15688         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15689         MonoInternalHashTable again (fixed bug in internal hash table
15690         code).
15692 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15694         * class.c, image.c, class-internals.h, domain.c,
15695         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
15696         changes.  Have to figure out what makes them break the SWF
15697         regression.
15699 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15701         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15702         a MonoInternalHashTable now.
15704 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15706         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15707         MonoInternalHashTable now.
15709 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15711         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
15712         invoke_impl code.
15714         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
15716         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
15717         dependent trampoline.
15719         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15721         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
15723 2007-05-29  Robert Jordan  <robertj@gmx.net>
15725         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
15727 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
15729         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
15731 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
15733        * marshal.c: Fix interface lookup loops for
15734        cominterop_get_com_slot_for_method and 
15735        cominterop_get_method_interface. Only need to lookup
15736        if type is a class, else use interface type method is on.
15738        Code is contributed under MIT/X11 license.
15740 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
15742         * reflection.c: HasSecurity can be present even if no specially 
15743         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
15744         SecurityAttribute). Fix CAS regression tests on buildbot.
15746 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15748        * appdomain.c: Add configure checks for header files.
15749        * image.c: Add configure checks for header files.
15750        * file-io.c: Add configure checks for header files.
15751        * debug-mono-symfile.c: Add configure checks for header files.
15752        * threadpool.c: Add configure checks for header files.
15753        * console-io.c: Add configure checks for header files.
15754        * profiler.c: Add configure checks for header files.
15755        * rawbuffer.c: Add configure checks for header files.
15756        * icall.c: Add configure checks for header files.
15757        * rand.c: Add configure checks for header files.
15758        * socket-io.c: Add configure checks for header files.
15760        Code is contributed under MIT/X11 license.
15762 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
15764         * reflection.c (mono_custom_attrs_from_builders): Remove the 
15765         assertion as it breaks the build.
15766         
15767         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
15769         * reflection.c (lookup_custom_attr): Make a copy here too.
15771         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
15772         dynamic images.
15774         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
15775         images.
15777         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
15778         info.
15780 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15782         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
15783         (load_cattr_value): Ditto.
15785 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
15787         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
15789 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
15791         * threads.c: In "start_wrapper", set apartment_state to MTA if
15792         apartment_state is Unknown and we're running on 2.0 profile or
15793         higher.
15794         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
15795         to main method, then set apartment_state to Unknown on 1.0 profile,
15796         and MTA on 2.0 profile.
15798 2007-05-16  Jb Evain  <jb@nurv.fr>
15800         * class-internals.h (MonoDefaults): Add an attribute_class and
15801           customattribute_data_class.
15802         * domain.c (mono_init_internal): Populate them.
15803         * reflection.c: Use them to remove duplicates. Make a vew
15804         MonoClass variables `static'.
15806 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15808         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
15809         step in implementing IMT, so that all isinst checks now can go
15810         through the bitmap.
15811         This was needed because vtables for TransparentProxy need to look
15812         like the vtable of the "target" class, so they need to point to
15813         its interface bitmap directly.
15815         * object.c: inside "mono_class_create_runtime_vtable" and
15816         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
15818 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15820         * object-internals.h
15821           culture-info.h : added territory field in MonoCulture and
15822           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
15823         * locales.c : fill territory field above too.
15824         * culture-info-table.h : regenerated.
15826 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15828         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
15829         Fixes #81599.
15831 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15833         * object.c: Always initialize apartment, even if 
15834         there is no custom attributes on entry point.
15835         
15836         Code is contributed under MIT/X11 license.
15838 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15840         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
15841         * metadata.c: If no encoding is set, check for unicode
15842         on class.
15843         
15844         Code is contributed under MIT/X11 license.
15846 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15848         * threads.c: Handle if mono_thread_current returns NULL 
15849         
15850         Code is contributed under MIT/X11 license.
15852 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15854         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
15855         in start_wrapper. Added mono_thread_init_apartment_state and
15856         mono_thread_cleanup_apartment_state.
15857         * object.c: Initialize thread apartment state on main thread
15858         by checking for STAThreadAttribute on entry point.
15859         * object-internals.h: Add apartment_state field to MonoThread.
15860         * threads-types.h: Add unmanaged definition of 
15861         System.Threading.ApartmentState, MonoThreadApartmentState.
15862         
15863         Code is contributed under MIT/X11 license.
15864         
15865 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
15867         * class.c: Fix windows build.
15868         * class-internals.h: Fix windows build.
15869         
15870         Code is contributed under MIT/X11 license.
15872 2007-05-08  Robert Jordan  <robertj@gmx.net>
15874         * process.c (CreateProcess_internal):
15875         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
15876         .CreateNoWindow was specified. Fixes #81496.
15878 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15880         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
15881         step in implementing IMT, replaced it with two compact arrays
15882         (interfaces_packed and interface_offsets_packed) and a bitmap that
15883         is used for isinst checks (interface_bitmap).
15885         * class.c: (compare_interface_ids): compare function to pass to
15886         bsearch when looking for an interface with a given id.
15887         (mono_class_interface_offset): reimplemented using bsearch on
15888         interfaces_packed, getting the offset from interface_offsets_packed.
15889         (print_implemented_interfaces): utility debugging function.
15890         (setup_interface_offsets): reworked to initialize interfaces_packed,
15891         interface_offsets_packed and interface_bitmap.
15893         * object.c: replaced all accesses to "MonoClass.interface_offsets"
15894         with uses of interfaces_packed and interface_offsets_packed.
15896 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15898         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
15899         mono_class_interface_offset prototype to wrap all accesses to
15900         "MonoClass.interface_offsets".
15902         * class.c: Implemented mono_class_interface_offset, and wrapped all
15903         accesses to "MonoClass.interface_offsets".
15905         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
15906         "MonoClass.interface_offsets".
15908 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15910         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
15911         GetMethodFromHandle overloads (bug #78637).
15913 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15915         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
15916         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
15918 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
15920         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
15921         #81498.
15923         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
15924         gracefully.
15925         (mono_custom_attrs_from_index): Ditto.
15927         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
15928         Fixes #81501.
15930 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
15932         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
15933         is now allocated from a mempool.
15935 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
15937         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
15938         caller holds threads_lock, leading to deadlocks. Fixes #81476.
15940 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
15942         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
15943         mono_loader_clear_error () too late. Fixes #81463.
15945 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
15947         * culture-info-table.h : regenerated.
15949 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
15951         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
15952         is missing.
15954 2007-04-25  Dick Porter  <dick@ximian.com>
15956         * Makefile.am: Put the mingw enforced-optimisation back into the
15957         PLATFORM_WIN32 section.
15959 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
15961         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
15962         patch.
15964         * image.c (mono_image_load_module): New API function to load a module reference.
15966         * image.c (load_modules): Load modules lazily. Fixes #80812.
15968         * class.c (mono_class_from_typeref): Use mono_image_load_module.
15969         
15970         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
15972         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
15973         to mono_image_load_module_dynamic.
15975 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
15977         * marshal.c: Fix calling convention for CCW on non-windows
15978         platforms. STDCALL on windows, CDECL everywhere else to work 
15979         with XPCOM and MainWin COM.
15980         
15981         Code is contributed under MIT/X11 license.
15983 2007-04-23  Martin Baulig  <martin@ximian.com>
15985         Fix #80969.
15987         * loader.c
15988         (method_from_memberref): Added `gboolean *used_context' argument.
15989         (mono_get_method_from_token): Likewise.
15990         (mono_get_method_full): Don't insert the method in the cache when
15991         `used_context' is true.
15993 2007-04-23  Raja R Harinath  <rharinath@novell.com>
15995         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
15997         * reflection.c (mono_reflection_bind_generic_parameters): Don't
15998         create new MonoTypes for returned types.
15999         * class.c (mono_generic_class_get_class): Export mono-internal.
16000         * class-internals.h: Update to changes.
16002 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16004         * threadpool.c, threadpool.h, icall-def.h: patch from
16005         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16007 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16009         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16010         
16011         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16013         * threads.c (mono_thread_get_stack_bounds): New helper function.
16015         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16016         Correctly compute stack bounds when attaching. Fixes #81394.
16018 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16020         * reflection.c: fix handling of doubles in custom attributes
16021         for the arm-fpa format (bug #81368).
16023 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16025         * reflection.c (assembly_add_win32_resources): Mildly relax an
16026         bounds check to let the end pointer point just past the end of the
16027         allocated buffer.  (may fix #81384)
16029 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16031         * culture-info-table.h : regenerated.
16033 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16035         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16036         the thread is aborted early.
16038 2007-04-05  Dick Porter  <dick@ximian.com>
16040         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16041         FindFirstFile()/FindNextFile() to find entries.  This lets the
16042         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16043         81038.
16045         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16046         the parameters of
16047         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16049 2007-04-04  Martin Baulig  <martin@ximian.com>
16051         * debug-helpers.c
16052         (mono_method_desc_full_match): Add support for nested classes.
16054 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16056         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16058 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16060         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16061         waiting for too many threads.
16063 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16065         * environment.c: Fix return value check on uname so we can get the 
16066         executing version on Solaris operating systems.
16068 2007-03-28  Jb Evain  <jbevain@gmail.com>
16070         * class.c (mono_type_get_name_recurse): Complete the
16071         fix for the creation of assembly qualified names for
16072         pointer types. Fixes #81208.
16074 2007-03-27  Dick Porter  <dick@ximian.com>
16076         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16077         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16078         changed.
16080         * threads.c
16081         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16082         the value of ReleaseMutex().
16084 2007-03-27  Dick Porter  <dick@ximian.com>
16086         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16087         in little-endian order, not network endian, so must be converted
16088         to host endian here.  Fixes bug 80593.
16090 2007-03-22  Jb Evain  <jbevain@gmail.com>
16092         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16093         qualified names for pointer types. Fixes #81208.
16095 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16097         * marshal.c: Add support for PreserveSigAttribute. 
16098         
16099         Code is contributed under MIT/X11 license.
16101 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16103         * process.c: Fix endianness issues. Fixes #81126.
16105         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16106         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16108         * image.c (mono_image_lookup_resource): Make this work on big-endian
16109         machines.Change API contract so the caller needs to free the return value.
16110         
16111         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16112         API change.
16113         
16114 2007-03-14  Martin Baulig  <martin@ximian.com>
16116         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16117         mono_type_get_desc() as well.
16119 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16121         * icall.c:  Fix environ access in VS.  
16122         
16123 2007-03-13  Alp Toker  <alp@atoker.com>
16125         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16126         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16127         #63841.
16129 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16131         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16132         circular references among dynamic methods. Fixes #81091.
16134         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16136 2007-03-09  Martin Baulig  <martin@ximian.com>
16138         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16140 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16142         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16143         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16144         
16145         Code is contributed under MIT/X11 license.
16146         
16147 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16149         * loader.c: Reapply patch for bug #79424.
16151 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16153         * metadata.c (mono_type_to_unmanaged): Only convert object to
16154         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16156 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16158         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16159         (and incorrectly set) is_reference field from MonoGenericInst.
16161 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16163         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16164         a little earlier.
16166         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16168         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16170 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16172         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16173         FileOptions.1 value to mean "temporary", map that to
16174         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16176         Fixes 80688
16178 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16180         * appdomain.c: implement MS .Net style shadow copying. Copies of
16181         the assemblies are made in a subdirectory of the dynamic base
16182         directory, the assembly names are preserved.
16183         Copy .mdb and .config files along with the assemblies being shadowed.
16185 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16187         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16188         (emit_marshal_handleref): Ditto.
16190         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16191         on Visual C++. Fixes #80671.
16193 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16195         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16196         for clone operations.
16198 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16200         * marshal.c: Fix warnings.
16202 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16204         * loader.c: allow case-insensitive matching of the dll name
16205         in dllmap handling when prefixed with "i:".
16207 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16209         * threads.c: Fix #ifdef for dummy_apc function for VS.
16211 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16213         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16215 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16216         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16217         giving precedence to the methods with a fully qualified name
16218         (InterfaceName.MethodName) when building the interface sections
16219         of the vtable.
16221 2007-02-16  Dick Porter  <dick@ximian.com>
16223         * threadpool.c (append_job): Fix fast-path array handling, so it's
16224         less likely the array will grow exponentially when the load is
16225         heavy.
16227 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16229         * metadata-internals.h, loader.c: fix dllmap lookup order
16230         for non-function maps, too, and prepare for fallback code.
16232 2007-02-12  Robert Jordan  <robertj@gmx.net>
16234         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16235         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16236         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16237         GlobalFree. Fixes a part of bug #77075.
16239 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16241         * loader.c: implemented typedef parent in field memberref.
16243 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16245         * marshal.c: Fix warnings and remember to call Release on
16246         IUnknown of RCW.
16247         
16248         Code is contributed under MIT/X11 license.
16250 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16252         * class-internals.h: Add MonoHandleRef definition, and
16253         handleref_class to mono_defaults. 
16255         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16256         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16258         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16259         (do nothing on this stage)
16260         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16261         (emit_marshal_handleref): New method, used for argument handling
16262         of HandleRefs. 
16264 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16266         * class.c (mono_class_setup_parent): Lazily init com types.
16267         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16268         init com types.
16269         * object.c (mono_remote_class_vtable): Lazily init com types.
16270         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16271         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16272         * domain-internals.h: Expose mono_init_com_types.
16273         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16274         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16275         Add support for COM Callable Wrapper marshalling.
16276         * marshal.h: Add icall definitions.
16277         * gc.c: Handle freeing of CCWs in finalizer code.
16278         
16279         Code is contributed under MIT/X11 license.
16281 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16283         * reflection.c: changed all the signature encoding code to use
16284         a variable-sized buffer.
16286 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16288         * marshal.c: locking fixes: never take the loader lock
16289         or other runtime locks when holding the marshal lock
16290         (fixes bug#80664).
16292 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16294         * marshal.c: make the delegate function pointer mapping
16295         work for the moving GC.
16297 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16299         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16300         for bug #80618.
16302 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16304         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16305         gmodule.
16307 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16309         * threadpool.c: made the code moving-GC safe.
16311 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16313         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16314         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16315         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16316         warning cleanup.
16317         * reflection.c: warning cleanup, some threading and moving GC fixes.
16319 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16321         * class.c, loader.c: create the needed Set/Get/Address array methods
16322         as well as the .ctors in mono_class_init (), fixes bug #80567.
16324 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16326         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16327         we doesn't decrease its alignment. Should fix the sparc build.
16329 2007-01-24  Dick Porter  <dick@ximian.com>
16331         * socket-io.c
16332         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16333         Create the returned object if we need to ignore an unsupported
16334         socket option.  Fixes a segfault reported by Atsushi.
16336 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16338         * class.c, object.c: restrict GC-tracked fields to
16339         UIntPtr fields used inside corlib, so we provide better
16340         type info to the GC and also allow broken packing as in
16341         bug #80580.
16343 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16345         * sgen-gc.c: removed duplicated function.
16347 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16349         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16350         value that means that the value is not supported, but that we
16351         should not return a failure, but instead report this as a
16352         successful operation.
16354 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16356         Fix tests/bug79956.2.il
16357         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16358         (mono_generic_class_get_class): If the generic definition in an
16359         enum, copy over other fields related to it.
16361 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16363         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16364         genericinst enums (bug #79215).
16366 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16367         * class.c: Fix bug 80307.
16369 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16371         * image.c: if the file table is not present, try to load
16372         all the modules, since we don't have info about them
16373         having or not metadata (bug #80517).
16374         * assembly.c: allow mono_assembly_load_references () to
16375         work for netmodules.
16377 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16379         * image.c, metadata-internals.h, object.c: execute module
16380         cctors when running on the 2 runtime if present (bug #80487).
16382 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16384         * icall.c: optimized InitializeArray() on bigendian.
16386 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16388         * icall.c: fix for the broken ARM FPA double format.
16390 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16392         * icall.c: handle endian issues for r4 and r8 types, too, in
16393         the InitializeArray() icall.
16395 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16397         * loader.c (mono_loader_error_prepare_exception): Clear the error
16398         once we have extracted the information from it, do this before we
16399         call into the JIT's class loading mechanisms.
16401         * object.c (mono_class_create_runtime_vtable): Do not clear the
16402         loader error before calling mono_class_get_exception_for_failure
16403         as the loader error is needed inside
16404         mono_class_get_exception_for_failure to throw the error (thinko).
16406         Fixes #80521
16407         
16408 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16410         * reflection.c: align fields rva data so it's faster to load at
16411         runtime.
16413 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16415         Prepare to simplify GenericMethod handling.
16416         * class-internals.h (mono_method_get_context): New accessor function.
16417         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16418         rather than directly accessing '->context' field.
16420         * class-internals.h (_MonoGenericParam.method): Move ...
16421         (_MonoGenericContainer): ... here.  Add into union with klass field.
16422         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16423         Update to changes.
16425 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16427         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16428         the wrapper type enum and reduce relocations.
16430 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16432         * reflection.c (inflate_mono_method): Reuse method instantiation
16433         from the generic method, if available.
16435 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16437         * marshal.c (emit_marshal_variant): Fix conv_arg
16438         type in last commit, based on whether parameter is byref.
16439         
16440 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16442         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16443         marshalling.
16444         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16445         MONO_TYPE_OBJECT back for VARIANT support.
16447 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16449         * marshal.c, marshal.h, icall-def.h: Implement 
16450         Marshal.ReAllocCoTaskMem.
16452 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16454         * marshal.c: memory retention fixes: use the proper
16455         image cache for runtime_invoke method lookups.
16457 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16459         * mempool.c: added code to help debug mempool allocations.
16461 2007-01-11  Dick Porter  <dick@ximian.com>
16463         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16464         support (experimenting with faking it with IP_MTU_DISCOVER for
16465         systems that don't have IP_DONTFRAGMENT.)
16466         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16467         icall.
16469         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16471         * socket-io.h: Add new fields to MonoSocketAsyncResult
16472         corresponding to the new ones in Socket.cs.
16474 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16476         Fix IronPython regression mentioned in #80249
16477         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16478         'cached_context' field, since it may have been initialized as a
16479         side-effect of metadata parsing.
16481         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16482         (_MonoGenericClass.cached_class): Move here and rename from lone
16483         remaining field of ...
16484         (_MonoInflatedGenericClass): ... this.  Remove.
16485         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16486         to changes.
16488         Fix mcs/tests/test-128.cs regression.
16489         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16490         2007-01-10 change below.
16491         [MONO_TYPE_OBJECT]: Recurse into array case.
16493 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16495         * class-internals.h (mono_get_inflated_generic_class): Remove.
16496         * class.c (mono_get_inflated_generic_class): Remove.
16497         (mono_generic_class_get_class): Rename from
16498         mono_class_create_generic.
16499         (mono_class_from_mono_type) [GENERICINST]: Use it.
16500         * reflection.c, metadata.c: Update to changes.  Use
16501         'mono_class_from_mono_type'.
16503 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16505         * reflection.c: use passed type when encoding an array element
16506         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16508 2007-01-09  Robert Jordan  <robertj@gmx.net>
16510         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16511         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16512         Fixes bug #80392.
16514 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16516         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16518         * object.c (set_value): Avoid aliasing between type->data.klass
16519         and type->data.generic_class.
16521         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16523 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16525         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16526         between type->data.klass and type->data.generic_class.
16528 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16530         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16531         value in out parameters.
16533 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16535         Simplify invariant for MonoGenericClass::klass field.
16536         * class.c (mono_class_create_generic): Verify 'klass' is null.
16537         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16538         initialize 'klass' field.
16540 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16542         Ongoing work to avoid redundant data and simplify invariants.
16543         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16544         'generic_class', and change type to a GenericInst.
16545         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16546         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16548 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16550         * class.c : skip io-layer under PLATFORM_WIN32.
16552 2007-01-03  Tor Lillqvist  <tml@novell.com>
16554         Fix #80305: In a bundled executable, look in the bundled exe
16555         assembly to determine the runtime version. Add the possibility to
16556         bundle also the machine.config file.
16557         
16558         * assembly.c (mono_assembly_open_from_bundle): Make
16559         non-static. Allow being called even if we have no bundled
16560         assemblies, and return NULL right away in that case.
16562         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16563         here.
16565         * domain.c (app_config_parse): Take an assembly exe file name as
16566         parameter instead of a config file name. Check for a bundled
16567         config file for that assembly by calling
16568         mono_config_string_for_assembly_file() (see below) before looking
16569         for one in the file system.
16570         (get_runtimes_from_exe): Corrsponding change to call of
16571         app_config_parse().
16572         (get_runtimes_from_exe): Check for bundled assembly exe file first
16573         by calling mono_assembly_open_from_bundle(). If no bundled
16574         assembly exe file is found, call mono_image_open() as before to
16575         look it up in the file system.
16577         * mono-config.c: Add variable bundled_machinec_onfig.
16578         (mono_config_string_for_assembly_file): New function.
16579         (mono_config_for_assembly): Move code snippet that looks for a
16580         bundled assembly .config file into the above new function. Call
16581         it.
16582         (mono_register_machine_config, mono_get_machine_config): New
16583         functions to set and retrieve
16585         * assembly.h: Declare mono_register_machine_config().
16587         * mono-config.h: Declare mono_get_machine_config() and
16588         mono_config_string_for_assembly_file().
16590         * icall.c: No declaration of environ necessary on Win32. It is
16591         declared (as a macro expanding to a function call) in stdlib.h.
16592         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16593         New internal mono function. Returns the value of
16594         mono_get_machine_config() as a Mono string.
16596         * icall-def.h: Add get_bundled_machine_config().
16598 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16600         Remove redundant field
16601         * class-internals.h (_MonoGenericContext.container): Remove field.
16602         * loader.c (mono_method_get_signature_full): Don't parse a
16603         "container" for a signature parse when the signature is inflated
16604         immediately.
16605         (method_from_methodspec): Likewise, for a generic_inst.
16606         * class.c, metadata.c, reflection.c: Update to changes.
16608 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16610         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16611         'cached_context', and change semantics -- it starts off NULL, and
16612         is initialized on demand.
16613         * class.c (mono_generic_class_get_context): New accessor to
16614         replace 'context' field accesses.
16615         (mono_class_get_context): New helper.
16616         (*): Update to changes.
16617         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16619 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16621         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16622         before the memcpy.   Fixes Marshal2 regression.
16624 2007-01-02  Jb Evain  <jbevain@gmail.com>
16626         * blob.h: add a MONO_TYPE_ENUM definition
16627         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16628         fix the encoding of arrays of enums in custom attributes.
16630         Fixes #79666.
16632 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16634         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16635         string is null terminated, but only cut the string short if it
16636         overflows the buffer.   
16637         
16638         (mono_string_to_byvalstr): Also fix this routine.   The code here
16639         was not properly terminating a string (it was only terminated
16640         because of the previous catch-all memset). 
16642         I left the memset, because I do not know if applications expect
16643         the runtime to clear this region. 
16645         Fixes #79944.
16647         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16648         Clear the error before returning to unmanaged code to prevent the
16649         runtime from being confused later on (fixes  80420).
16650         (ves_icall_type_from_name): Always call mono_loader_clear_error
16651         after parsing a type that could have failed.
16652         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16654         * loader.c (mono_loader_clear_error): Fix indentation.
16656 2006-12-28  Martin Baulig  <martin@ximian.com>
16658         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16660 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16662         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16663         getting a token for an EnumBuilder.
16665 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16667         * reflection.c: be more careful in case resource generation
16668         fails to create the data array.
16670 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16672         * sgen-gc.c: write barrier for clone and fix unregister handles.
16674 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16676         * reflection.c: some fixes needed in the generics code for the moving GC.
16678 2006-12-22  Robert Jordan  <robertj@gmx.net>
16680         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
16681         account. Fixes bug #80299.
16683 2006-12-21  Raja R Harinath  <rharinath@novell.com>
16685         Fix WaitHandle usage in delegates.
16686         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
16687         * object.c (mono_wait_handle_new): Use the property set method to
16688         initialize the handle.
16689         (mono_wait_handle_get_handle): New.
16690         * threadpool.c (mono_async_invoke): Use it.
16691         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
16692         Likewise.
16693         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
16695 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
16697         * marshal.c (emit_marshal): Call emit_marshal_variant and
16698         emit_marshal_com_interface when applicable.
16699         (emit_marshal_variant, emit_marshal_com_interface): Add
16700         methods for this case and remove if's from emit_marshal_object.
16701         
16702 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
16704         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
16706 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
16708         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
16709         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
16710         and GlobalFree on Windows. Remove FIXME.
16712 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16714         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
16715         implementation for managed objects.
16717 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16719         * object.c: implemented code to be used for checking
16720         that no reference field overlaps with non-references.
16722 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16724         * threadpool.c: fix queue code to be compatible with the
16725         moving GC.
16727 2006-12-18  Miguel de Icaza  <miguel@novell.com>
16729         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
16730         in structures by throwing ArgumentNullException.
16732         (emit_marshal_safehandle): Also when they are null parameters.
16734         (emit_marshal_safehandle): Add support for ref
16735         SafeHandles parameters
16737 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16739         * profiler.c: updated to use the mono-dl API instead of
16740         gmodule.
16742 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16744         * profiler.c: updated to use the mono-dl dynamic loading
16745         API instead of gmodule.
16747 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16749         * profiler.c: use readlink, older versions of glib don't have
16750         g_file_read_link ().
16752 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16754         * profiler.c: try to detect the path to mono if libc fails to provide
16755         a useful name (bug #80286).
16757 2006-12-16  Raja R Harinath  <rharinath@novell.com>
16759         Fix #80242
16760         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
16761         instance, use the generic type definition instead.
16762         (ves_icall_Type_GetNestedTypes): Likewise.
16763         * class.c (mono_class_create_generic): Always set the
16764         nested_classes of a generic instance to NULL, even if the generic
16765         type definition has nested types.
16767 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
16769         * marshal.c (mono_string_from_bstr): Revert previous Windows change
16770         and fix on Linux.
16771         
16772 2006-12-15  Miguel de Icaza  <miguel@novell.com>
16774         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
16775         my arguments were in the wrong order.   I also fixed the Windows
16776         version which seems to have had the same issue.
16778         (mono_free_bstr): On Unix, this is g_free.
16779         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
16780         conversions (for the tests in corlib to pass).
16782 2006-12-14  Miguel de Icaza  <miguel@novell.com>
16784         * marshal.c (emit_ptr_to_object_conv): For now, ignore
16785         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
16786         exception if a ref SafeHandle in a struct has changed).
16787         
16788         (emit_struct_conv): Do not perform layout checks for classes
16789         derived from SafeHandle, as those are specially handled. 
16791         (emit_object_to_ptr_conv): Add support for
16792         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
16794         (emit_marshal_safehandle): Implement conversion of return values
16795         of safehandles (MARSHAL_ACTION_CONV_RESULT).
16796         
16797         * threads.c: WaitHandle now is compiled with two different handles
16798         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
16799         for 2.0.
16800         
16801         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
16802         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
16803         these routines to cope with both kinds of fields.
16805 2006-12-12  Miguel de Icaza  <miguel@novell.com>
16807         * metadata.c (mono_type_to_unmanaged): Handle the case where
16808         type->data.klass is a SafeHandle, and in that case, return the
16809         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
16810         MONO_MARSHAL_CONV_SAFEHANDLE. 
16812 2006-12-11  Miguel de Icaza  <miguel@novell.com>
16814         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
16815         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
16816         calling emit_marshal_object.
16818         (emit_marshal_safehandle): Implement marshalling of
16819         SafeHandle parameters (no ref support yet).
16821         (MarshalAction): Document the defines as I implement
16822         them for SafeHandle.
16824         (emit_marshal_object): indentation police.
16826         * class-internals.h: Define MonoSafeHandle.
16827         Add safehandle_class to MonoDefaults type.
16829         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
16830         list of classes to check for fields. 
16832         * domain.c (mono_init_internal): Add SafeHandle to the list of
16833         mono_defaults loaded.
16835 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16837         Fix #80253
16838         * reflection.c (mono_reflection_bind_generic_parameters): If the
16839         generic type definition is a type builder, ensure that it is fully
16840         initialized before instantiating it.  Kill some dead code.
16842 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16844         * object.c: clear the loader_error () before loading
16845         more metadata stuff (bug #80258).
16847 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
16849         * icall.c, icall-defs.h: type modifiers icalls for
16850         parameters and properties.
16852 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16854         * object.c, icall.c: fixed warnings.
16856 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16858         * marshal.c: fixed a couple of leaks and coding style in a few places.
16860 2006-12-08  Dick Porter  <dick@ximian.com>
16862         * process.c: Cope with NULL ProcessStartInfo arguments on windows
16863         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
16864         80173.
16866 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16868         * process.c: ProcessStartInfo may have only filename set and
16869         arguments can be NULL.
16871 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16873         * icall.c: fix leak found by Robert Jordan.
16875 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16877         * marshal.c, marshal.h: generate managed method to access an element
16878         of a multi-dimensional array.
16880 2006-11-30  Paolo Molaro (lupus@ximian.com)
16882         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
16884 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16886         * icall.c: back out GetFields () fix until the serialization code is
16887         fixed to not depend on the incorrect behaviour.
16889 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
16891         * profiler.c: provide defaults if none are set.
16893 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16895         * Makefile.am, attrdefs.h: new public header file with
16896         constants for attributes for use by embedders.
16898 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
16900         * icall.c: GetFields () fix for bug #80064.
16902 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
16904         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
16905         removed long unused icalls.
16907 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
16908   
16909         * marshal.c: 
16910                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
16911                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
16912                 can be generated without a delegate class.
16913                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
16914         
16915         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16917 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16919         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
16920         #80069.
16922 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16924         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
16925         icall-def.h: added icalls needed by System.GC.
16927 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
16929         * loader.c: ensure the class in catch clauses is handled
16930         correctly for generics methods (fixes bug#79980).
16932 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16934         * monitor.h, monitor.c: added mono_locks_dump () function
16935         to help debug deadlocks involving managed locks.
16937 2006-11-13  Dick Porter  <dick@ximian.com>
16939         * file-io.c (get_file_attributes): If the file is a symlink try
16940         and get the stat data for the target, but also add the
16941         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
16942         the specs for the windows symlink support, but will probably have
16943         to be reworked when I have test data from a vista machine.  Fixes
16944         bug 79887.
16946 2006-11-13  Dick Porter  <dick@ximian.com>
16948         * gc.c (mono_domain_finalize): 
16949         * marshal.c (mono_delegate_begin_invoke): 
16950         * threadpool.c (socket_io_init, mono_thread_pool_init)
16951         (mono_thread_pool_finish): 
16952         * monitor.c (mono_monitor_try_enter_internal): 
16953         * threads.c (mono_thread_resume, mono_thread_init)
16954         (mono_thread_suspend_all_other_threads)
16955         (mono_thread_execute_interruption): 
16956         * appdomain.c (mono_domain_unload): Check for NULL error returns
16957         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
16958         75733.
16960 2006-11-11  Miguel de Icaza  <miguel@novell.com>
16962         * process.c
16963         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
16964         Only close the handle if the value of the handle is not
16965         INVALID_HANDLE_VALUE.  This just makes the process a bit more
16966         robust.
16968         Improvement for #75733, so that we do not run into this problem. 
16970         
16971         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
16972         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
16973         internal variables.  Fixes #79462 
16974         
16976 2006-11-09  Dick Porter  <dick@ximian.com>
16978         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16979         Use poll() not select().  Fixes bug 79397.
16981 2006-11-09  Raja R Harinath  <rharinath@novell.com>
16983         Fix #79872
16984         * assembly.c (mono_assembly_load_from_full): Check that the given
16985         image has an assembly manifest.
16987 2006-11-09  Ankit Jain  <jankit@novell.com>
16989         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
16990         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
16991         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
16993 2006-11-07  Dick Porter  <dick@ximian.com>
16995         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
16996         Put the old resolver behaviour back for pre-2.0 profiles.
16998 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17000         * threadpool.c: precise GC and locking fixes.
17002 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17004         * class.c: don't load types that have an explicit unaligned
17005         managed reference. Provide better info in the TypeLoad exception.
17006         Part of the fix for bug #79744.
17007         * object.c: use the correct check for class type load issues.
17009 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17011         * class.c: enforce alignment of fields with managed references
17012         even when Pack=1 is forced by the user (bug #77788).
17014 2006-11-03  Dick Porter  <dick@ximian.com>
17016         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17017         If the address reverse lookup fails, return it as the hostname
17018         anyway.  Fixes bug 79721.
17020 2006-11-03  Dick Porter  <dick@ximian.com>
17022         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17023         Fix build on Windows.
17025 2006-11-02  Dick Porter  <dick@ximian.com>
17027         * icall-def.h: 
17028         * object-internals.h: 
17029         * exception.c (mono_get_exception_thread_interrupted): 
17030         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17031         Fixes bug 74525.
17033         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17034         Check for pending Thread.Interrupt.
17036 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17037         * loader.c: Fixed bug 79684.
17039 2006-10-27  Dick Porter  <dick@ximian.com>
17041         * file-io.c (get_file_attributes): Force symlinks to directories
17042         to be returned as a regular file.  Fixes bug 79733.
17043 2006-10-26  Dick Porter  <dick@ximian.com>
17045         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17046         CreateFile to open a directory then we need to set the
17047         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17049 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17051         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17052         friends.
17054 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17056         * sgengc.c: small cleanup of timer code.
17058 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17060         * sgen-gc.c: fix some warnings and start adding support for
17061         complete object removal on domain unload.
17063 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17065         * assembly.c: build_assembly_name should not consider a version
17066         number without build or revision number invalid. Fixes bug #79715.
17068 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17070         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17071         call kernel32 function OutputDebugString directly.
17072         
17073         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17074         
17075 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17077         * reflection.c: small cleanup, using a function to insert a MonoString
17078         in the string heap.
17080 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17082         * reflection.c: moving GC fixes.
17084 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17086         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17087         all the objects with finalizers belonging to an unloading appdomain.
17089 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17091         * sgen-gc.c: added ability to allocate even when the nursery is fully
17092         pinned and fixed a couple of bugs.
17094 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17096         * threads.h: Revert the last change for now.
17098         * threads.h (mono_thread_get_pending_exception): Rename this to
17099         mono_thread_get_undeniable_exception ().
17101 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17103         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17104         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17105         when fname does not refer to valid assembly. This result in a more
17106         meaningful error message.
17107         * exception.c: added mono_get_exception_bad_image_format2 which 
17108         constructs a BadImageFormatException using the ctor taking a custom
17109         message and the file name. Passing in a NULL msg results in a default
17110         message.
17111         * exception.h: define mono_get_exception_bad_image_format2 function.
17112         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17113         when file name pointed to an invalid IL image. Use 
17114         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17115         as this results in a more meaningful error message.
17117 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17119         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17120         #79465.
17122 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17124         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17125         consistency with the other _size functions.
17126         (mono_type_stack_size): Ditto.
17128         * class.c object.c icall.c: Fix warnings caused by the above change.
17130         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17132         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17134         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17136 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17138         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17139         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17140         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17141         threadpool.h, threads-types.h: mark more internal functions.
17143 2006-10-11  Dick Porter  <dick@ximian.com>
17145         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17146         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17147         reproduce the bug even before applying the fix.)
17149 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17151         * reflection.c: allow retrieving attributes for arguments in generic
17152         methods (bug #79241).
17154 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17156         * debug-mono-symfile.c: properly check fopen () result (found by
17157         coverity).
17159 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17161         * reflection.c: make error message clearer and fixed two
17162         issuelets found by Coverity.
17164 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17166         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17168 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17170         * object-internals.h, gc-internal.h, profiler-private.h:
17171         mark internal functions.
17173 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17175         * reflection.c: put data in the text section.
17176         * icall.c: recognize more types in type_from_typename ().
17177         * process.c, marshal.c: added some GC FIXMEs.
17179 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17181         * loader.c: check for NULL before initializing.
17183 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17185         * gc.c (finalizer_thread): Use a non-alertable wait here.
17187         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17188         until the correct solution is found.
17190 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17192         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17193         modules with no metadata. Fixes #79596.
17195         * image.c (load_metadata_ptrs): Put back the error message when
17196         the #- heap is encountered since the support is not complete yet.
17198 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17200         * gc.c: do not allow the user to SuppressFinalize () a
17201         delegate because it would leak the trampoline if present.
17203 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17205         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17206         PropertyPtr table.
17208 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17210         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17212         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17214         * row-indexes.h: Add definitions for *Ptr tables.
17216         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17218         * metadata.c (mono_metadata_translate_token_index): New helper function to
17219         translate table indexes used in uncompressed metadata.
17220         (mono_metadata_decode_table_row): Ditto.
17221         (mono_metadata_decode_table_row_col): Ditto.
17223         * metadata.c: Add table schema for *Ptr tables.
17225         * class.c loader.c: Use the new helper function to access the affected metadata
17226         tables.
17227         
17228         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17229         #38532.
17230         
17231 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17233         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17234         sequences which can be unbounded in size. Fixes #79583.
17236 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17238         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17239         static initialization.
17241         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17243         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17245         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17247         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17248         ctor fails, i.e. throw the same exception on subsequent accesses.
17249         
17250 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17252         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17253         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17254         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17255         Handle marshalling of interfaces and VARIANTs contained in structs.
17256         
17257         Code is contributed under MIT/X11 license.
17258         
17259 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17261         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17262         
17263         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17264         mempool.
17266 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17268         * console-io.c: ignore previous SIGINT handler.
17270 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17272         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17273         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17274         #79460, #79461, #79485.
17276         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17278         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17279         #79217.
17281 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17283         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17284         could be generated from it.
17286 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17288         * rand.c: fix read loop to correctly handle EINTR.
17290 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17292         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17293         internal calls are defined to keep methods closer to the declaring
17294         type and allow a significant reduction in runtime relocations and
17295         memory usage.
17297 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17299         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17300         exception message to have FileNotFoundException use the default
17301         assembly load error message. Fixes bug #79426.
17302         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17304 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17306         * threadpool.c: (start_thread_or_queue) use the root domain when
17307         creating the thread instead of the async object one.
17309 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17311         * class.c, object.c, class-internals.h, reflection.c:
17312         for arrays, store element_size inside MonoClass (speedup
17313         for array object creation).
17315 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17317         * icall.c: fixed CodeBase to use the file name and not the module
17318         name (bug #79365).
17320 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17322         * mono-debug.c, mono-debug.h: export find_method as
17323         mono_debug_find_method ().
17325 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17327         * debug-helpers.c, class-internals.h: added a few functions useful
17328         when debugging under gdb.
17330 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17332         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17333         characters that need special handling.
17335 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17337         * mono-config.c: make the os/cpu specification more flexible,
17338         allowing lists and negation.
17340 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17342         * marshal.c: COM Interop fixes. Handle case where method->klass.
17343         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17344         calling convention on non-windows platforms. This is for
17345         compatibility with XPCOM and MainWin COM.
17346         
17347         Code is contributed under MIT/X11 license.
17348         
17350 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17352         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17353         correctly. Fixes #79217.
17355         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17357 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17359         * mono-config.c: allow both an os and cpu attribute for dllmap
17360         and dllentry elemnets to enable a single config file to be used
17361         for multiple architectures.
17363 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17365         * loader.c: MonoLoaderError was cleared too soon on load failure.
17366         Fixes bug #79424.
17368 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17370         * icall.c: use the defining class vtable when accessing a
17371         static field, not a pobblibly derived class.
17373 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17375         * icall.c string-icalls.c: Remove references to unicode.h.
17377         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17379         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17381         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17382         indicating the image where custom marshaller types should be looked up.
17383         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17384         custom marshallers, instead of corlib. Fixes #79425.
17386 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17388         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17390 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17392         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17393         Implement Environment.ProcessorCount.
17394         
17395         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17396         Implement Environment.ProcessorCount.
17397         
17398         * icall.c: 
17399         Add Environment.ProcessorCount icall.
17400         
17401         Patch by Jason McFall.
17403 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17405         * assembly.c: don't append .exe/.dll when the filename already contains
17406         one of those extensions.
17408 2006-09-12  Martin Baulig  <martin@ximian.com>
17410         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17411         to array interfaces.
17413 2006-09-11  Martin Baulig  <martin@ximian.com>
17415         * reflection.c (mono_image_build_metadata): Create the
17416         MethodImpl's after emitting all types and methods, so we don't
17417         need another fixup pass for them.
17419 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17421         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17422         change.
17424 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17426         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17427         unload.
17429 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17431         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17432         args is not set. Fixes #78926.
17434 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17436         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17438         * image.c (load_class_names): Move this to class.c, and rename it to 
17439         'mono_image_init_name_cache'.
17440         (load_modules): Fix a warning.
17442         * class.c icall.c image.c: Initialize image->name_cache lazily.
17444         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17445         on its name using information in the AOT file.
17447         * class.c (mono_class_from_name): Use the new hook function.
17449 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17451         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17452         correctly.
17454         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17455         Fixes #79289.
17456         
17457 2006-09-06  Martin Baulig  <martin@ximian.com>
17459         * icall.c (mono_lookup_internal_call): Small fix.
17461 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17463         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17464         double g_free.
17466 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17468         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17469         when --debug is specified.
17471 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17473         * class.c (setup_generic_array_ifaces): Fix a warning.
17475 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17477         * Temporarily remove the patch to assemly.c that checks the
17478         assembly versions as it breaks our gacutil.
17480 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17482         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17484         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17485         a net 1.0 runtime.
17487         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17488         created using the default ctor. Fixes #79152.
17489         (mono_string_builder_to_utf16): Ditto.
17491 2006-09-01  Martin Baulig  <martin@ximian.com>
17493         Fix handling of the generic array interfaces.
17495         * class-internals.h
17496         (MonoDefaults): Removed `generic_array_class' and added
17497         `generic_ilist' class.
17499         * class.c
17500         (mono_bounded_array_class_get): Add the new generic array interfaces.
17501         (setup_generic_array_ifaces): New static method; create vtable
17502         entries for each method in the generic array interfaces.
17504         * metadata.c
17505         (select_container): Allow "parent-less" generic methods.
17507         * marshal.c
17508         (mono_marshal_get_generic_array_helper): New public method.
17510         * icall.c
17511         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17512         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17513         moved the interncall into System.Array.
17515 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17517         A few more cases of avoiding work on types with ->byref set.
17518         Has the real fix for #79238
17519         * icall.c (is_generic_parameter): New helper.
17520         (ves_icall_Type_GetGenericParameterPosition): Use it.
17521         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17522         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17523         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17524         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17525         reference types.
17526         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17527         reference types.
17528         (ves_icall_Type_get_IsGenericInstance): Likewise.
17529         (ves_icall_Type_get_IsGenericType): Likewise.
17531 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17533         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17534         class if possible.
17536         * mempool.h (mono_mempool_get_allocated): New helper function.
17538         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17539         change.
17541         * mempool.c: Fix warnings and the calculation of stats.
17543         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17545         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17547         * loader.c (mono_get_method_from_token): Update method_count stat.
17549         * class-internals.h (MonoStats): Add some stats.
17551 2006-08-31 Robert Jordan  <robertj@gmx.net>
17553         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17554         with managed variants.
17555         All code is contributed under the MIT/X11 license.
17556         
17557 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17559         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17560         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17562         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17564         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17565         with cycles in classes.
17567         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17569         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17570         missing a [MarshalAs] directive. Fixes #79203.
17572         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17573         klass->marshal_info. Fixes #79217.
17575 2006-08-30  Martin Baulig  <martin@ximian.com>
17577         Committing a patch from Joachim Ante <joe@otee.dk>:
17578         Add support for binary data symbol stores.
17580         * debug-mono-symfile.c
17581         (mono_debug_open_mono_symbol_file): Renamed into
17582         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17583         arguments.
17585         * mono-debug.c
17586         (mono_debug_open_image): Added `raw_contents' and `size' args.
17587         (mono_debug_init_2_memory): New public function.
17589 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17591         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17593 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17595         * appdomain.c: implement support for ShadowCopyFiles.
17597 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17599         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17600         when value is NULL (and should remove CID #51).
17602 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17604         * image.c: moved 2 functions to ../utils.
17606 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17608         * gc.c: cope with the target object of a GC handle being NULL
17609         (bug #78877).
17611 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17613         * class.c: recursively check parent's explicit implementations
17614         of interface methods (fixes bug #79125).
17616 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17618         * filewatcher.c: Avoid warnings when building, do not redefine
17619         constants that are defined.
17621         Remove warnings.
17623 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17625         * image.c: don't fail when the link points to an absolute path.
17627 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17629         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17630         Fix CID #3.
17632 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17634         * image.c (full_path): A new method used to obtain the actual path
17635         of an assembly even in the presence of symbolic links.  
17637         This is necessary for the case where we are running a binary that
17638         has been GACed, but we are using the "published" path name
17639         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17640         file in the GAC.
17642         This was the source of the failure for the `xsp' command with the
17643         recent AppDomain changes, as far as the runtime was concerned,
17644         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17645         $prefix/mono/gac/blah/version/blah.exe.
17647         (do_mono_image_open): use full path
17649 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17651         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17653 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17655         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17656         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17658 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17660         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17661         small structures. Fixes #78990.
17663 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17665         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17667         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17669 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17671         * appdomain.c:
17672         * marshal.c: don't load all the assemblies from a domain into newly
17673         created ones. The new domains might have different rules and load
17674         assemblies from different locations. Fixes bug #76757.
17676         Patch by Lluis. Conflicts resolved by Brian Crowell.
17678 2006-08-16  Alp Toker  <alp@atoker.com>
17680         * socket-io.c: First half of the fix for #79084.
17681         Set sa_size to the length of the content, not that of the struct.
17682         Don't add NULL suffix to the content, this should be done in
17683         managed code if needed.
17685 2006-08-14  Raja R Harinath  <rharinath@novell.com>
17687         Fix part of #79012
17688         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
17689         mono_metadata_parse_type returns NULL.
17691 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
17693         * normalization-tables.h : new file for string normalization data.
17694         * locales.c, locales.h, icall.c :
17695           added load_normalization_resource() for string normalization,
17696           and icall as well.
17697         * Makefile.am : added normalization-tables.h to the sources.
17699 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
17701         * marshal.c: Add more helper functions to reduce code duplication and use them
17702         everywhere.
17704 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
17706         * marshal.c: Fix non-x86 stdcall warnings.
17707         
17708         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
17709         them everywhere.
17711 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
17713         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
17714         type check on multi-dimensional arrays. Fixes #79000.
17716 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17718         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
17719         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
17720         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
17721         * class-internals.h: add is_com_object to class structure.
17722         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
17723         null checks to COM object marshalling. Fix .ctor call on RCW.
17724         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
17725         
17726         All code is contributed under the MIT/X11 license.
17728 2006-08-09  Dick Porter  <dick@ximian.com>
17730         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
17731         racing mono_monitor_allocator_lock() somewhere, so don't delete
17732         the critical section for now.  Found by running and exiting
17733         monodevelop.
17735 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
17737         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
17738         (ves_icall_System_ComObject_FindInterface): Ditto.
17739         (ves_icall_System_ComObject_CacheInterface): Ditto.
17741         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
17742         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
17744 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17746         * threadpool.c: treat pipes from process asynchronous reads as sockets
17747         when reading from them, so we get select/poll or epoll to wait for
17748         data.
17750 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
17752         * loader.c: Fix a typo (CID #233) in the null check.
17754 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
17756         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
17757         Hopefully fixes #78949.
17758         
17759         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
17760         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
17761         bytes. Fixes #78972.
17763 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17765         * filewatcher.c: we need to set errno here.
17767 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17769         * filewatcher.c: let Win32Exception get the error value.
17771 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17773         * filewatcher.c: translate errno into win32 errors for Win32Exception
17774         to know what happened.
17776 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17778         * threadpool.c: Fix more warnings.
17780         * assembly.c (search_loaded): Fix warnings.
17782         * threadpool.c (mono_thread_pool_finish): Fix warnings.
17783         (mono_async_invoke): Ditto.
17785 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
17787         * object.c (mono_remote_class_vtable): Need to create proxy vtable
17788         entries for __ComObject type in addition to ComImport types.
17789         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
17790         about hash table.
17791         
17792         All code is contributed under the MIT/X11 license.
17794 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17796         * image.c: avoid tentative loading of modulerefs that contain
17797         no metadata (P/Invoke library names).
17799 2006-07-28  Dick Porter  <dick@ximian.com>
17801         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
17802         mono_loader_lock() somewhere, so don't delete the critical section
17803         for now.  Found by running and exiting monodevelop.
17805 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17807         * filewatcher.c: define the inotify syscalls when we're building on
17808         linux and have sys/syscall.h. The build system might not have support
17809         for inotify but the target system might have it.
17811 2006-07-26  Miguel de Icaza  <miguel@novell.com>
17813         * domain.c: Documentation updates.
17815         * loader.c (mono_free_method): Do not release the method
17816         information if we are being profiled, as profilers will use this
17817         information at shut down to present some data to the user.
17819         This is needed so that the profiler does not crash, as the
17820         profiler tends to keep MonoMethods around, and they might become
17821         invalid if we free these.
17823         (mono_get_method_constrained): Return the original CIL stream
17824         method as well, so verification can be performed against it.
17826 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17828         * filewatcher.[ch]: support for inotify file system watcher.
17829         * icall.c: add new internal calls for the inotify file system watcher.
17831 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17833         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17834         #78888.
17836 2006-07-20  Dick Porter  <dick@ximian.com>
17838         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17839         warning.
17841 2006-07-20  Dick Porter  <dick@ximian.com>
17843         * threads.c (start_wrapper): Do the thread cleanup while we still
17844         hold a reference to its object.  Fixes bug 78123.
17846 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
17848         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
17849         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
17850           "managed-to-managed".
17851         * icall.c: Redirect string constructors that take sbyte* to
17852           ves_icall_System_String_ctor_RedirectToCreateString.
17853         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
17854           to CreateString () methods with matching signature.
17855         * reflection.c: Use original security informations for
17856           MONO_WRAPPER_MANAGED_TO_MANAGED.
17857         * security-manager.c: Use original security informations for
17858           MONO_WRAPPER_MANAGED_TO_MANAGED.
17859         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
17860           that is a placeholder and only its address should be used.
17861         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
17862           that is a placeholder and only its address should be used.
17864 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
17866         Begin implementing COM Interop.
17867         * appdomain.c: Increment corlib version.
17868         * class.c: Set ComImport classes' parent to __ComObject.
17869         * loader.c: Mark cominterop methods as such.
17870         * domain.c: Add __ComObject class to MonoDefaults structure.
17871         * image.c: Add 2 hashtables to the image for COM Interop related methods
17872         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
17873         using the mempool allocator
17874         
17875         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
17876         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
17877         declaration for mono_metadata_type_dup_mp.
17878         
17879         * debug-helpers.c: Added strings for two additional wrapper types
17880         * object.c: Create proxy objects for ComImport classes
17881         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
17882         and added __ComObject class to MonoDefaults structure.
17883         
17884         * object-internals.h: Finish MonoRealProxy definition, and add definition of
17885         MonoComInteropProxy and MonoComObject.
17886         
17887         * marshal.c: Added support for COM Interop
17888         (signature_cominterop): Converts managed signature to corresponding
17889         unmanaged COM signature.
17890         (cominterop_get_function_pointer): gets unmanaged function pointer via
17891         COM object vtable
17892         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
17893         (cominterop_get_method_interface): returns interface type that method is defined on
17894         (mono_mb_emit_cominterop_call): emits native call to function pointer
17895         gotten from vtable
17896         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
17897         that matches signature of unmanaged function.
17898         (cominterop_get_native_wrapper): wrapper around adjusted method call.
17899         (cominterop_get_invoke): forwards call from proxy to __ComObject
17900         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
17901         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
17902         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
17903         
17904         * marshal.h: Added Marshal icall declarations.
17905         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
17906         so we can access them in finalizer
17907         
17908 2006-07-14  Dick Porter  <dick@ximian.com>
17910         * object.c (mono_type_initialization_cleanup): Fix a race
17911         condition by temporarily commenting out the critical section
17912         deletion.
17914 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
17916         * reflection.c (create_custom_attr): Fix some warnings.
17917         (create_custom_attr_data): Ditto.
17918         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
17919         types. Fixes #78855.
17921 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
17923         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
17925         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
17927 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
17929         * reflection.c (resolve_object): Add support for DynamicMethod.
17931         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
17932         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
17934 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
17936         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
17937         don't leak GPtrArray's pdata has we have no use (nor free) for it.
17939 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
17941         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
17942         Fixes #77888.
17944 2006-06-30  Raja R Harinath  <rharinath@novell.com>
17946         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
17947         slightly: remove a shadow local variable.
17949 2006-06-29  Raja R Harinath  <rharinath@novell.com>
17951         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
17952         definition that introduces the virtual function slot.
17953         Also fix Coverity #105.
17955 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
17957         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
17958         for dynamic assemblies. Fixes #78724.
17960 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
17962         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
17963         Fixes #78722.
17965 2006-06-21  Martin Baulig  <martin@ximian.com>
17967         * reflection.c
17968         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
17969         fixes #76484.
17971 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
17973         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
17975 2006-06-20  Raja R Harinath  <rharinath@novell.com>
17977         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
17978         nor TYPEREFs.
17979         * class.c (mono_class_create_from_typespec): Add 'context' argument.
17980         Inflate result if necessary.
17981         (mono_class_get_full): Remove old version.  Rename from
17982         'mono_class_get' and add 'context' argument.  Pass it to
17983         ..._create_from_typespec.
17984         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
17985         (mono_ldtoken): Revert change below.
17987 2006-06-20  Martin Baulig  <martin@ximian.com>
17989         * class.c (mono_ldtoken): Don't pass the generic context to
17990         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
17992 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
17994         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
17995         and later freeing it. Fixes #78638.
17997 2006-06-15  Miguel de Icaza  <miguel@novell.com>
17999         * icall.c (mono_class_get_throw): Revert over-zealous error
18000         throwing, the caller for mono_class_get_throw will cope with
18001         errors when classes are not properly initialized already.
18003         The code still copes with loader exceptions though.
18005         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18006         
18007 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18009         Fixes the `make run1' version of RuntimeAbort (to be commited,
18010         source is in Bugzilla).
18011         
18012         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18013         FALSE on class loading failure instead of returning true.
18015         * class.c (mono_class_create_from_typedef): It is possible for
18016         mono_metadata_interfaces_from_typedef_full to fail if a class is
18017         not found, cope with this.
18018         
18020 2006-06-14  Dick Porter  <dick@ximian.com>
18022         * socket-io.c: 
18023         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18024         4.1.1
18026 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18028         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18030 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18032         * icall.c: Another fix for building mono in Visual Studio.
18034 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18036         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18037         
18038 2006-06-09  Martin Baulig  <martin@ximian.com>
18040         * debug-mono-symfile.c: Put this back and really fix it this
18041         time. Sorry for all the trouble.
18043 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18045         * icall.c (mono_class_get_throw): Fix a warning.
18046         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18047         ReflectionTypeLoadException if needed. Fixes #78606.
18049         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18050         (mono_class_init): Ditto.
18052         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18053         ref_only exceptions.
18054         (mono_loader_clear_error): Make this work even if there is no error.
18056 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18058         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18059         Marshal.GetComSlotForMethodInfo using internal call.
18061 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18063         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18064         a function for signalling it.
18066         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18067         a referenced assembly is not found.
18069         * loader.c (mono_loader_error_prepare_exception): Add support for 
18070         LOADER_ERROR_ASSEMBLY. Fix formatting.
18072 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18074         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18075         for VARIANT marshalling on windows and increment corlib version
18076         since Variant struct was added.
18078 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18080         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18081         stack trace line information:
18083         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18084         (Martin) when looking up B which is between A and C, return A not C.
18086         Bug is #78573.
18088         Thanks to Alexander Olk for tracking this down.
18090 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18092         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18093         
18094         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18095         avoid clobbering its value.
18096         (mono_string_to_lpstr): Fix a warning on windows.
18098 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18100         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18102         * reflection.c loader.c: Removed references to 'dummy' flag.
18104         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18106         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18107         it gets GC tracking.
18109         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18110         GC tracking.
18111         
18112         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18114         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18116         * appdomain.c: Bump corlib version.
18118 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18120         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18121         CEE_STIND_REF when working with object references.
18123 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18125         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18126         Fixes #78539.
18128 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18130         * loader.c (method_from_memberref): Fix argument value for
18131         mono_loader_set_error_method_load (I was passing the MonoClass
18132         instead of the class name char *).
18134 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18136         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18137         CEE_STIND_REF when working with object references.
18139 2006-05-30  Martin Baulig  <martin@ximian.com>
18141         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18142         mono_method_full_name() change and replace the ':' with a '.'
18143         here.
18145 2006-05-30  Martin Baulig  <martin@ximian.com>
18147         * debug-mono-symfile.c
18148         (mono_debug_symfile_lookup_location): Fix the algorithm:
18149         when looking up B which is between A and C, return A not C.
18151 2006-05-29  Martin Baulig  <martin@ximian.com>
18153         * mono-debug.h
18154         (MonoDebugMethodInfo): Make the typedef public.
18155         (MonoDebugSourceLocation): New public struct.
18157         * mono-debug.c
18158         (mono_debug_source_location_from_address): Removed.
18159         (mono_debug_source_location_from_il_offset): Removed.
18160         (mono_debug_il_offset_from_address): Removed.
18161         (mono_debug_address_from_il_offset): Removed.
18162         (mono_debug_lookup_method): New public function.
18163         (mono_debug_lookup_source_location): New public function; replaces
18164         the old mono_debug_source_location_from_*() functions; see the
18165         inline documentation.
18166         (mono_debug_free_source_location): New public function.
18167         (mono_debug_print_stack_frame): New public function; see the
18168         inline documentation.
18170         * debug-mono-symfile.c
18171         (mono_debug_find_source_location): Renamed into
18172         mono_debug_symfile_lookup_location(); only take a
18173         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18174         documentation.
18175         (mono_debug_find_method): Renamed into
18176         mono_debug_symfile_lookup_method().
18178 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18180         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18181         returned by mono_image_open_full ().
18183         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18184         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18185         #78517.
18187         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18188         #78518.
18190 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18192         * class.c (mono_class_from_typeref): handle missing images
18193         earlier, deals with bug #78418.   Refactor code; 
18195         Fix a warning introduced in my previous commit (some stale code
18196         from before I revisited my patch).
18198         * class.c (mono_class_create_from_typedef): On failure, remove the
18199         class from the MonoImage->class_cache as the class is not
18200         initialized;   Fixes the leak pointed out by Paolo.
18202 2006-05-25  Dick Porter  <dick@ximian.com>
18204         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18205         DeleteCriticalSections until I figure out which one may still be
18206         sometimes locked when mono_thread_cleanup is called.
18208 2006-05-24  Dick Porter  <dick@ximian.com>
18210         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18211         of mono_thread_manage and back into its own function, so it can be
18212         called after the finalizer thread has finished.
18214         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18216 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18218         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18219         Fixes #78495.
18221         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18222         with non-blittable elements.
18223         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18225 2006-05-24  Martin Baulig  <martin@ximian.com>
18227         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18228         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18230         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18231         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18232         `mono_debugger_event_handler' to NULL.
18234 2006-05-24  Martin Baulig  <martin@ximian.com>
18236         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18238 2006-05-24  Martin Baulig  <martin@ximian.com>
18240         * mono-debug-debugger.h
18241         (mono_debugger_create_notification_function): Added
18242         `MonoCodeManager *' argument.
18244 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18246         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18248 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18250         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18251         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18252         implementation.
18254 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18256         * icall.c: precise GC support: objects can't be stored in unmanaged
18257         memory anymore, even if they are kept alive by other references: since
18258         they can move the GC needs to be able to always find them.
18260 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18262         * object.c: precise GC support for static fields. Support
18263         for moving GCs: write barriers and pinned allocation for interned
18264         strings.
18266 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18268         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18269         structure.
18271 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18273         * class.c, gc.c: sgen and precise GC updates.
18275 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18277         * marshal.h, marshal.c: added write barrier wrapper and precise type
18278         fixes.
18280 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18282         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18283         support.
18285 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18287         * reflection.c: precise and sgen GC updates.
18289 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18291         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18293 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18295         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18297 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18299         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18300         MONO_TYPE_OBJECT. Fixes #78462.
18302 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18304         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18305         and blittable types.
18307 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18309         * class.c (mono_class_get_exception_for_failure): Implement parts
18310         of a TODO: if the loader error is set (instead of the class
18311         error), we return a Loader exception that can be properly thrown
18312         elsewhere.
18314         This was exposed by some Winforms 2.0 code that I tried to run
18315         (Atsushi pointed me to it).
18317 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18319         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18320         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18321         
18322         * marshal.c (emit_marshal_vtype): Add limited support for 
18323         UnmanagedType.LPStruct. Fixes #78427.
18325         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18326         Applied a patch from kangaroo to fix #77523.
18328 2006-05-17  Martin Baulig  <martin@ximian.com>
18330         * threads.c
18331         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18332         (debugger_thread_created): Removed.
18333         (debugger_thread_exited): Removed.
18335 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18337         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18339         * object-internals.h (MonoReflectionResource): Sync with managed version.
18341 2006-05-12  Wade Berrier <wberrier@novell.com>
18343         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18345 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18347         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18348         functions try to allocate from the image mempool.
18350 2006-05-12  Dick Porter  <dick@ximian.com>
18352         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18354 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18356         * object.c: The FieldGetter and FieldSetter methods require the full
18357         name of the class, not only the name. Fixes bug #78277.
18359 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18361         * loader.c (method_from_memberref): Do not pass the NULL klass to
18362         mono_loader_set_error_() methods.  Pass the non-NULL value
18363         (class). 
18365 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18367         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18368         (mono_assembly_close): Null out assembly->image->references after freeing it.
18370         * image.c (mono_image_close): Free image->references.
18371         
18372         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18374 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18376         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18377         before checking if it's NULL (g_assert).
18379 2006-05-10  Martin Baulig  <martin@ximian.com>
18381         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18382         I thought I already killed that two months ago, but now it somehow reappeared.
18384 2006-05-10  Martin Baulig  <martin@ximian.com>
18386         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18388 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18390         * reflection.c: Allocate memory for dynamically created methods in the image
18391         mempools.
18393 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18395         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18396         don't use the ad pointer before checking if it's NULL (g_assert).
18398 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18400         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18401         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18403         * marshal.c: Allocate all signatures from mempools.
18405         * marshal.c: Allocate some more signatures from mempools.
18407 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18409         * object.c (mono_load_remote_field): The code used to provide a
18410         temporary variable for returning results if the user did not
18411         provide a result pointer.  But our temporary variable was allocted
18412         on the satck.
18414         Fix calling code to always pass a result area.   Coverity ID 103.
18416 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18418         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18419         value, not the old. Fixes #78312.
18420         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18422         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18423         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18424         per-image cache.
18426         * assembly.c (mono_assembly_close): Free image->references.
18428         * assembly.c (mono_assembly_names_equal): Fix a warning.
18429         (mono_assemblies_cleanup): Cleanup more global data.
18431         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18433         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18434         ptr_cache and image->modules.
18436         * image.c (mono_image_init): Allocate array_cache lazily.
18437         
18438 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18440         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18441         behavior was changed recently and has bad side effects.
18443 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18445         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18446         
18447         * assembly.c (mono_assembly_close): Remove a debug printf.
18449         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18451         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18452         to also allow for temporary references between mono_image_open ()/close ().
18454         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18456 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18458         * marshal.c: Fix support for dynamic methods.
18460         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18462         * marshal.c (mono_marshal_cleanup): New cleanup function.
18464         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18465         image mempools.
18467         * class.c (mono_class_init): Fix leaking class->nested_classes.
18469         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18471         * image.c (mono_image_init): Initialize the new cashes.
18473         * image.c (mono_image_close): Destroy the new cashes.
18475         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18477         * mempool.c (mono_mempool_strdup): New helper function.
18479         * class-internals.h: Add prototype for mono_loader_unlock ().
18481         * domain.c (mono_jit_info_table_find): Fix a warning.
18482         (mono_debugger_check_runtime_version): Ditto.
18484         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18485         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18486         functions to these modules.
18488         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18489         metadata modules.
18490         
18491         * marshal.c (mono_free_bstr): Fix a warning.
18493         * assembly.c (mono_assembly_open_full): Fix another small leak.
18495         * object.c: Fix some unload leaks in the remoting code.
18497         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18498         function.
18500         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18502         * reflection.c: Fix some unload leaks in dynamic assemblies.
18504 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18506         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18507         * marshal.h: Add BSTR support on Win32
18508         * icall.c: Add BSTR icalls
18509         * metadata.h: Add BSTR enums
18511 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18513         Work to catch the crash from #76795 and turn it into an
18514         exception.   As I stubbed out pieces of the VisualBasic support,
18515         I found a number of places where the code was failing and I added
18516         checks to those places. 
18517         
18518         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18519         function return a status code.  If we fail to parse the signature
18520         from mono_metadata_parse_generic_inst, return FALSE.
18522         * loader.c (mono_get_method_from_token): If we fail to load the
18523         method (mono_class_get) return NULL.   
18525         * (method_from_memberref): Return NULL if we are unable to parse
18526         the method signature
18528         (mono_loader_error_prepare_exception): Since we now use the
18529         loader_error flag internally to stop processing, and obtaining
18530         exceptions that might be thrown will walk this code path the
18531         proper way of going from a MonoLoaderError into a
18532         MonoException was convoluted.   This new routine encapsulates the
18533         process of turning the error into an exception and *clearing* the
18534         error afterwards.
18535         
18536 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18538         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18539         with missing assemblies), and to cope with:
18541                 * Missing fieldref from a non-existing assembly.
18542                 * Missing methodref from a non-existing assembly.
18544         The first batch of work to address *some* of the issues from 76661.
18545         
18546         * object.c (mono_class_create_runtime_vtable): If we fail to
18547         initialize the class raise the exception here. 
18549         * metadata.c (mono_class_get_overrides_full): If any methods fail
18550         to load return the failure to the caller.
18552         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18553         flagging assemblies that failed to load.   
18555         Do not crash if we are unable to load the assembly.
18557         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18558         assemblies. 
18560         * loader.c (mono_loader_set_error_type_load): Change the
18561         convention to always pass unallocated strings, so we make our own
18562         copies (I know our own code had duplicated strings before, but
18563         this keeps the normal conventions).
18564         (method_from_memberref): Call mono_loader_set_error_method_load
18565         for all possible failures of loading the class. 
18566         Remove assert, turn into a loader error.
18568         (mono_loader_error_to_exception): Move this routine from mini
18569         (mini_loader_error_to_exception) there was no need to have that in
18570         mini. 
18572         * class.c (mono_class_from_typeref): If we were not able to load
18573         the assembly with mono_assembly_load_reference, call the
18574         mono_loader_set_error_type_load to register the problem.
18576         (mono_class_setup_fields): If we fail to load the type from
18577         mono_metadata_parse_type_full, call mono_class_set_failure and
18578         break from the loop.
18580         If class->exception_type is set, we do not layout the fields as
18581         that might crash the runtime, and instead return (from breaking
18582         from the previous loop).
18584         (mono_class_setup_vtable): This now returns a boolean indicating
18585         whether the table was properly setup.   The decision is driven by
18586         mono_class_get_overrides_full which might run into non-existing
18587         methods. 
18588         
18589         (mono_class_init): Returns TRUE on success or FALSE if there was a
18590         problem in loading the type (incorrect assemblies, missing
18591         assemblies, methods, etc).
18593         When we call mono_class_setup_fields we also check for a potential
18594         error inside this call (either a class exception or a general
18595         loader exception).
18597         (mono_class_create_from_typedef): If the parent fails to load
18598         (calling mono_class_get_full) return NULL.
18599         
18600         ** Important **
18602         calls to mono_metadata_parse_type_full should be checked
18603         everywhere and set the mono_class_set_failure
18604         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18606         The current patch checks the places where my manually constructed
18607         tests show the errors are showing up, but we should do it
18608         everywhere. 
18610         ** Important2 **
18612         mono_class_init return values should be tested everywhere, like
18613         the previous case this is something that we should audit
18614         everywhere and not only on the cases exposed by the tests I
18615         created. 
18617 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18619         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18620         boolean parameter and instead pass the information on `options'
18621         parameter (FileOptions).
18623         * icall.c: Register the new signature for MonoIO.Open.
18625         * debug-helpers.c (dis_one): Trying to understand how coverity
18626         works.  Fix Run 5, item 78.
18628 2006-04-26  Dick Porter  <dick@ximian.com>
18630         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18631         dereference.
18633 2006-04-25  Martin Baulig  <martin@ximian.com>
18635         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18637         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18638         debugger_thread_created().
18639         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18640         special way.
18641         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18642         (mono_debugger_finalize_threads): New function; undo the effects
18643         of mono_debugger_init_threads().
18644         (mono_debugger_create_all_threads): Removed.
18646 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18648         * image.c (mono_image_close): Tidy up trace messages.
18650         * assembly.c (mono_assembly_close): Ditto.
18652         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18653         no longer references an already freed assembly. Fixes #78168.
18655 2006-04-21  Dick Porter  <dick@ximian.com>
18657         * threads.c (mono_thread_detach): Fix reference counting when
18658         detaching threads.
18660 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18662         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18663         #78155.
18665 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18667         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18668         (mono_type_to_stind): Ditto.
18670         * marshal.c: Use the new helper functions to simplify code.
18672         * image.c (mono_image_close): Add some code for help debug assembly unloading
18673         problems.
18675         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18676         image mempool.
18678         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
18679         assembly was already loaded in another appdomain. Fixes #78083.
18681 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
18683         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
18684         referenced assemblies.
18685         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
18687         * domain.c (mono_domain_free): Add a trace message.
18689         * appdomain.c (add_assemblies_to_domain): Ditto.        
18691         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
18692         field.  
18694 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18696         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
18698 2006-04-12  Martin Baulig  <martin@ximian.com>
18700         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
18701         `USE_INCLUDED_LIBGC'.   
18703 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18705         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
18706         the patch contains ../ and a small directory name later. Hopefully fixes
18707         #78035.
18709 2006-04-10  Martin Baulig  <martin@ximian.com>
18711         Clean up the debugger's thread-handling code.
18713         The debugger's thread-handling code has been moved from
18714         ../mini/debug-debugger.c to threads.c.  We now iterate directly
18715         over the `threads' hash, keep track of exiting threads and also
18716         use proper locking.
18718         We can now debug XSP and XSP based applications with the debugger.
18720         * object-internals.h (MonoThread): Added `gpointer end_stack'.
18722         * threads.h
18723         (MonoThreadCallbacks): Removed; this was only used by the debugger.
18724         (mono_install_thread_callbacks): Likewise.      
18726         * threads.c (mono_thread_callbacks): Removed.
18727         (debugger_thread_created, debugger_thread_exited): New static functions.
18728         (start_wrapper): Call debugger_thread_created().
18729         (thread_cleanup): Call debugger_thread_exited().
18730         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
18731         (mono_debugger_init_threads): New public function.
18732         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
18733         iterate directly over the `threads' hash and also use proper locking.
18735         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
18737         * mono-debug-debugger.h
18738         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
18740 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
18742         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
18743         argument type=array. Fixes #78057.
18745 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
18747         * culture-info-table.h : regenerated. Fixed bug #69652.
18749 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
18751         * loader.c metadata.c: Reapply a variant r59116.
18752         
18753         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
18755         * class.c (mono_class_setup_interface_offsets): New internal function.
18757         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
18758         interfaces too. Fixes #77398.
18760         * reflection.c (encode_cattr_value): Add support for 
18761         parameter type=object, argument type=array.
18762         (load_cattr_value): Ditto. Fixes #77916.
18764         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
18765         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
18767         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
18768         a byval char array and CharSet is Ansi.
18770         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
18772 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
18774         * metadata.c: Add some locking comments.
18775         
18776         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
18777         mempool.
18778         (mono_metadata_free_method_signature): Don't free the signature itself.
18780         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
18782         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
18783         reference the same MonoImage.
18784         (mono_assembly_load_from_full): Add an assert.
18786 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
18788         * image.c (mono_image_close): Don't put the image we are about to free into the
18789         loaded_images_guid_hash.
18791         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
18792         to reduce code duplication.
18794         * marshal.c: Register the native functions called by this module as icalls, to
18795         somewhat centralize the creation of MonoMethodSignature's.
18797         * loader.c (mono_method_signature): Add a cache for method signatures.
18799         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
18800         the parameter attributes of a method.
18801         (mono_metadata_parse_method_signature_full): Refactored the computation of
18802         parameter attributes into a separate function. Also avoid one allocation in
18803         most cases.
18805         * assembly.c (mono_assembly_close): Ditto.
18807         * image.c (mono_image_close): Log trace messages with INFO level.
18809         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
18811         * image.c reflection.c: Correct reference counting of image modules.
18812         
18813         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
18814         of this function from the image mempool.
18815         
18816         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
18817         to allow more cached types to be used.
18819         * mono-debug.c (mono_debug_add_method): Appled patch from
18820         David S. Miller  <davem@sunset.davemloft.net>: Access 
18821         minfo->lexical_blocks[] entry elements using read32().
18823 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
18825         * loader.c (mono_free_method): No longer free the method header for non-dynamic
18826         methods as it is allocated from the mempool.
18828         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
18829         image mempool.
18831         * metadata-internals.h: Add comments describing the reference counting scheme
18832         used for MonoImage and MonoAssembly.
18834         * image.c assembly.c reflection.c: Rework reference counting of images and 
18835         assemblies so they are freed when the runtime is shut down. Free some 
18836         additional memory structures when an image is unloaded.
18837         
18838 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18840         * class.c loader.c reflection.c: Allocate more data structures in
18841         the image mempool.
18843 2006-03-31  Miguel de Icaza  <miguel@novell.com>
18845         * icall.c
18846         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
18847         build on pre glib 2.4 systems.
18849 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
18851         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
18853         * icall.c: Fix some warnings.
18855 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
18857         * culture-info-table.h : regenerated.
18859 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
18861         * threads.c, object-internals.h, verify.c: changed the culture caching
18862         code to use a normal MonoArray for storage so the GC can keep track of
18863         them easily. Fixed bits of the cache logic, too and simplified the
18864         code.
18866 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
18868         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
18869         thread for non-Boehm GCs.
18871 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18873         * domain.c, object.c, domain-internals.h: reduce the amount of memory
18874         needed to keep track of the data for static fields.
18876 2006-03-29  Raja R Harinath  <rharinath@novell.com>
18878         Fix #75172
18879         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
18880         for interface classes.  Use 'num_methods' instead.
18881         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
18882         before using '->vtable_size' field.
18884 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
18886         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
18887         doesn't contain managed pointers, so use a normal hashtable.
18889 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
18891         * reflection.c, class-internals.h, domain.c: fixed handling of types
18892         used as values for objects in custom attributes (bug #77915):
18894 2006-03-24  Martin Baulig  <martin@ximian.com>
18896         * class.c (mono_class_setup_fields): Added support for generic
18897         instances; fixes #77580.
18899 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18901         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
18903 2006-03-24  Dick Porter  <dick@ximian.com>
18905         * file-io.c (get_file_attributes): More stat macro breakage.
18906         Fixes bug 77759.
18908 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
18910         * profiler.c: added the file=filename option in the default profiler
18911         to output the profile data to filename.
18913 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18915         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
18916         bug #77877.
18918 2006-03-22  Martin Baulig  <martin@ximian.com>
18920         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
18921         allocated `MonoClassField *' in `fb->handle'.
18923 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18925         * class.c, image.c, metadata-internals.h: implemented new mechanism to
18926         allocate interface ID to save memory and allow better ID reuse on
18927         appdomain unload. setup_generic_vtable () removal from Martin.
18929 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18931         * object.h, appdomain.c, domain.c, exception.c, icall.c,
18932         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
18933         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
18934         write barriers for reference stores with managed objects accessed with
18935         C structures in the runtime and in embedding programs.
18937 2006-03-20  Raja R Harinath  <rharinath@novell.com>
18939         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
18940         'interface_id' and 'max_interface_id' fields of MonoClasses
18941         representing open generic types.
18943 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
18945         * object.h, object.c, icall.c: added functions to deal with
18946         storing valuetypes that contain references in managed objects.
18947         * reflection.c, string-icalls.c, threads.c, marshal.c: small
18948         fixes and comments around uses of mono_array_addr ().
18950 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
18952         * object.h, icall.c, monitor.c: object.GetHashCode ()
18953         implementation that supports the moving garbage collector.
18955 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
18957         * icall.c, threads-types.h, threads.c: implemented finalizer for
18958         LocalDataStoreSlot.
18960 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
18962         * metadata.c (mono_type_size): Add a fixme.
18963         (mono_type_stack_size): Ditto.
18965         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
18966         'type_forwarders' field.
18968         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
18969         attribute from net 2.0.
18971         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
18972         from class.c.
18974         * class.c (mono_class_setup_fields): Fix a warning.
18975         
18976         * class.c (mono_class_from_name): Add support for assemblyref entries
18977         in the EXPORTEDTYPE table.
18979         * reflection.c: Add support for handling type forwarders under net 2.0.
18981         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
18982         
18983 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
18985         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
18986         overwriting entries in ModuleBuild->types, also clean up the code
18987         a little. Fixes #77774.
18989 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
18991         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
18992         load friend assembly info when present.
18994 2006-03-14  Raja R Harinath  <rharinath@novell.com>
18996         Fix crasher on gtest-158.cs.
18997         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
18998         the return value if the MonoClass we want is yet in an
18999         inconsistent state.
19000         * class.c (mono_class_create_from_typedef): Add an comment
19001         explaining an order dependency between mono_class_setup_parent and
19002         mono_class_setup_mono_type.
19004 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19006         * class.c: documentation updates and events bug fix.
19008 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19010         * class.c: some cleanup, locking fixes.
19012 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19014         * class.c: fix the generics code to setup nested
19015         type info to the instantiated type (bug #77770).
19017 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19019         * marshal.c: fixed a few type correctness issues.
19021 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19023         * loader.c: the Set/Get/Addrtess array methods should be public.
19025 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19027         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19028         
19029         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19030         info->wrapper.
19032 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19034         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19036         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19038         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19039         (mono_mempool_alloc0): Ditto.
19041 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19043         * socket-io.c:
19044         (create_object_from_sockaddr): it was allocating 4 extra bytes
19045         for the AF_UNIX data. Fixes bug #77747.
19047 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19049         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19051 2006-03-09  Dick Porter  <dick@ximian.com>
19053         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19054         Fixes bug 76966 again.
19056 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19058         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19059         names from r57532
19060         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19062 2006-03-07  Martin Baulig  <martin@ximian.com>
19064         * object.c
19065         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19067 2006-03-07  Martin Baulig  <martin@ximian.com>
19069         * class.c
19070         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19071         regression introduced in r56970; see gtest-252.cs.
19073         * loader.c (mono_get_method_constrained): Correctly handle generic
19074         methods; see gtest-253.cs.
19076 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19078         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19080 2006-03-04  Martin Baulig  <martin@ximian.com>
19082         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19083         compute the parent type at runtime, just like we're already doing
19084         it for interfaces.
19086         * reflection.c
19087         (mono_reflection_bind_generic_parameters): Don't compute the
19088         parent type anymore.
19090         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19092 2006-03-04  Martin Baulig  <martin@ximian.com>
19094         * mono-debug-debugger.h
19095         (mono_debugger_create_notification_function): Allocate memory at
19096         runtime and return a pointer to it.
19098 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19100         * assembly.c: Fix windows build.
19101         
19102         * assembly.c: Fix build.
19104         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19106         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19107         
19108 2006-03-03  Dick Porter  <dick@ximian.com>
19110         * process.c
19111         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19112         Check parameters before dereferencing them.  Fixes Aaron's part of
19113         bug 77393.
19115 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19117         Fix performance regression.
19118         * loader.c (find_method_in_class): Add 'from_class' argument.
19119         Rename 'klass' argument to 'in_class'.  The signature is compared
19120         against the method in 'in_class', and the corresponding method is
19121         returned from 'from_class'.
19122         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19123         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19124         type definition and generic instantiation in parallel.
19125         (mono_get_method_constrained): Update to changes.
19127 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19129         * threads.c: make sure the domain is correct, too when doing
19130         mono_thread_attach ().
19132 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19134         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19135         windows. Fixes #77683.
19137 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19139         * object.h, *: introduced specific way to set elements of an array
19140         of references to be used as write barrier. Still need to audit the
19141         uses of mono_array_addr.
19143 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19145         * object-internals.h: New field to cache the assmebly name, patch
19146         from Tambet Ingo (tambet@ximian.com)
19148 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19150         * decimal.h, class-internals.h, metadata-internals.h,
19151         file-io.h: mark a few function declarations as internal, to
19152         reduce the number of PLT entries.
19154 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19156         * file-io.c: fix typo in warning message.
19158 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19160         * loader.c: on unix, lookup the "*A" version of a function
19161         if charset is auto as a second option before failing.
19163 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19165         * class.h (mono_class_inflate_generic_method): Revert to two
19166         argument version.
19167         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19168         (mono_class_inflate_generic_method_full): Add.
19169         * class.c (mono_class_inflate_generic_method_full): Rename from
19170         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19171         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19172         * loader.c, reflection.c: Update to changes.
19174 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19176         * icall.c: const fixes and small improvements.
19178 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19180         * threadpool.c: for asynchronous connect(), enable the same workaround
19181         for BSD 6 as for the Mac. Fixes bug #77637.
19183 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19185         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19186         formatted classes. Fixes #77524.
19188 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19190         * class.c (inflate_generic_type): Add a couple more
19191         micro-optimizations.
19192         (inflate_generic_context): Don't use the 'gmethod' from
19193         'inflate_with'.
19194         (mono_class_inflate_generic_method): If the method has generic
19195         parameters, but the passed-in context doesn't have a 'gmethod',
19196         create one.  Use the possibly simplified generic instantiation
19197         from the declaring class instead of the one passed in.
19199 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19201         Make generic method signature and method header handling lazy.
19202         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19203         (inflate_generic_header): Likewise.
19204         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19205         parameter to avoid inflating types.
19206         (mono_get_inflated_method): Empty out.
19207         * class.h (mono_class_inflate_generic_method): Update to changes.
19208         * loader.c (mono_get_method_from_token): Don't parse signature for
19209         generic methods, nor methods of generic classes.
19210         (mono_method_signature): Rename from 'mono_method_signature'.
19211         Inflate signature on demand.
19212         (mono_method_get_header): Inflate method header on demand.
19213         * reflection.c: Update to changes.
19215 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19217         * metadata.c (mono_metadata_inflate_generic_inst): If the
19218         instantiation is closed, don't bother expanding it in the new
19219         context.
19220         * class.c (inflate_generic_class): If the generic instantiation
19221         doesn't change after inflation, return the argument itself.
19222         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19223         Add bounds checks.
19224         (inflate_generic_context): If neither the generic class nor the
19225         generic method instantiations change, return the original context.
19226         * reflection.c (mono_method_get_object): Do
19227         'mono_get_inflated_method' before accessing the ->klass field.
19228         (inflate_mono_method): Don't create a MonoGenericMethod unless
19229         necessary.
19230         (inflate_method): Don't pass a constructed type as the declaring
19231         type of a methodbuilder.
19233 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19235         * object.c: fix memory overwrite.
19237 2006-02-22  Dick Porter  <dick@ximian.com>
19239         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19240         it doesn't work any more.
19241         (mono_threads_request_thread_dump): Fix unused variable warnings.
19243 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19245         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19246         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19247         the public header file.
19249 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19251         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19253 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19255         * class-internals.h, object.c: reduce the size of MonoVTable
19256         and store the interface_offsets array at negative offsets.
19258 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19260         * metadata.c: tweak table descriptors data structures to reduce
19261         size and runtime relocations.
19263 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19265         * marshal.c: fix some types and opcodes to be type-safe
19266         in marshaling wrappers.
19268 2006-02-21  Ankit Jain  <jankit@novell.com>
19270         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19272 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19274         * metadata.c (get_constraints): Relax debugging checks for monodis.
19276 2006-02-21  Ankit Jain  <jankit@novell.com>
19278         * metadata.c (mono_metadata_load_generic_params): Move the code
19279         checking for ambiguous generic params from here to mono/dis/get.c
19280         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19282 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19284         Fix assertion triggered when compiling nemerle.
19285         * class.c (mono_get_shared_generic_inst): Rename from
19286         get_shared_inst and make non-static.
19287         * loader.c (mono_get_shared_generic_method): New.  Used to create
19288         the MonoGenericContext-equivalent of a MonoGenericContainer.
19289         (mono_get_method_from_token): Initialize the 'context' field of
19290         the created MonoGenericContainer.
19291         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19292         * metadata.c (get_constraints): Add sanity check.
19293         * class-internals.h: Add new internal methods.
19295         * reflection.c (verify_safe_for_managed_space): New sanity check.
19296         Currently checks that owner-less generic parameters aren't allowed
19297         in managed space.
19298         (mono_type_get_object): Use it.
19299         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19300         that are now in mono_type_get_object.
19301         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19303 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19305         * metadata.c (mono_type_create_from_typespec): Rename from
19306         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19307         argument and caching of types in the generic container.
19308         (unwrap_arrays, find_generic_param): Remove.
19309         * metadata-internals.h: Update.
19310         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19312 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19314         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19316         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19317         return values. Fixes #77581.
19319         * class.c (mono_fnptr_class_get): Switch name and name_space.
19321         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19322         classes and add support for [In, Out] attributes.
19323         (mono_marshal_free_asany): Ditto. Fixes #77524.
19325 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19327         * class.c (mono_class_from_generic_parameter): Make more robust to
19328         incomplete MonoGenericContainers from monodis.
19330 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19332         * class-internals.h: added some more exception types.
19333         * class.c, metadata.c: added a few checks to handle missing
19334         types.
19336 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19338         Use owner-less generic-params some more.
19339         * class.c (my_mono_class_from_generic_parameter): Remove.
19340         (mono_class_from_generic_parameter): Handle null image,
19341         param->name and param->owner.
19342         (mono_class_from_mono_type): Update.
19343         (mono_class_create_from_typespec): Remove 'container' parameter.
19344         If that parameter is non-null, the result is always inflated by
19345         'mono_class_get_full' anyway.
19346         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19347         parameter.
19348         (mono_class_get_full): Update.
19350         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19351         instance is not open, don't bother inflating.
19352         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19353         parse metadata for inflated classes.
19354         (_mono_class_get): Change GenericContext* parameter to
19355         GenericContainer*.
19356         (mono_class_create_from_typespec): Likewise.  Simplify, and
19357         implement trivially.  All the cases are handled in
19358         mono_class_from_mono_type.  Don't inflate returned class.
19359         (mono_class_get_full): Delegate GENERICINST optimization to
19360         inflate_generic_type.
19361         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19363 2006-02-16  Dick Porter  <dick@ximian.com>
19365         * socket-io.c (create_object_from_sockaddr): Fix typo.
19366         (create_sockaddr_from_object): Check array lengths before
19367         potentially accessing items off the end.
19368         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19369         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19370         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19371         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19372         length checks to avoid wraparound overflows.
19373         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19374         contents of the array of sockets
19375         (hostent_to_IPHostEntry2)
19376         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19377         Check return value of inet_ntop ().
19378         (addrinfo_to_IPHostEntry): Fix typo
19380 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19382         Type metadata parsing doesn't use generic-instantiation information.
19383         * metadata.c (mono_metadata_parse_array_full): Change
19384         MonoGenericContext* parameter to MonoGenericContainer*.
19385         (mono_metadata_parse_type_full): Likewise.
19386         (mono_type_create_from_typespec_full): Likewise.
19387         (mono_metadata_parse_mh_full): Likewise.
19388         (mono_metadata_parse_generic_inst): Likewise.
19389         (do_mono_metadata_parse_generic_class): Likewise.
19390         (do_mono_metadata_parse_type): Likewise.
19391         * metadata-internals.h: Update to changes.
19392         * class.c (mono_class_find_enum_basetype): Likewise.
19393         (mono_class_setup_fields): Likewise.
19394         (mono_class_create_from_typespec): Likewise.
19395         * loader.c (method_from_methodspec): Likewise.
19396         (mono_get_method_from_token): Likewise.
19397         (mono_method_get_header): Likewise.
19399 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19401         * marshal.c: handle additional GENERICINST case (patch from
19402         Thong Nguyen <tum@veridicus.com>).
19403         Fix a few cases where LDIND_I/STIND_I was used for references.
19405 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19407         * reflection.c (mono_reflection_get_token): Remove unused variable.
19409 2006-02-16  Martin Baulig  <martin@ximian.com>
19411         * reflection.c (mono_reflection_get_token): Add support for fields
19412         in instantiated generic types.
19414         * icall.c
19415         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19417 2006-02-15  Martin Baulig  <martin@ximian.com>
19419         * icall.c
19420         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19421         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19422         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19423         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19425 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19427         * class.c, metadata.c, metadata.h, object.c, icall.c,
19428         marshal.c: changed mono_type_get_underlying_type () to do
19429         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19430         Fixed handling of instantiated generic valuetypes (bug #75479).
19432 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19434         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19435         Delegate to mono_metadata_decode_value, and work on the returned value.
19437         * icall.c (ves_icall_MonoType_GetGenericArguments):
19438         Add consistency check here too.
19439         
19440 2006-02-15  Ankit Jain  <jankit@novell.com>
19442         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19443         char/short etc.
19445 2006-02-15  Ankit Jain  <jankit@novell.com>
19447         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19448         signed values, used only for representing lower bounds of arrays.
19449         (mono_metadata_parse_array_full): Use new
19450         mono_metadata_decode_signed_value to decode lower bounds.
19452 2006-02-14  Martin Baulig  <martin@ximian.com>
19454         * reflection.c
19455         (mono_reflection_get_token): Support "MonoGenericMethod" and
19456         "MonoGenericCMethod" and allow generic instances / methods.
19458 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19460         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19461         to obtain the terminal size using an ioctl.
19463         * object.c (mono_nullable_init): Revert this as nullable reference
19464         types are not valid.
19465         (mono_nullable_box): Ditto.
19467 2006-02-09  Dick Porter  <dick@ximian.com>
19469         * threads.c (mono_thread_detach): Drop a reference to the thread
19470         we're detaching.
19472 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19474         * object.c (mono_nullable_init): Handle nullable reference types.
19475         (mono_nullable_box): Ditto. Fixes #77446.
19477 2006-02-07  Martin Baulig  <martin@ximian.com>
19479         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19481 2006-02-07  Ankit Jain  <jankit@novell.com>
19483         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19484         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19485         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19486         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19487         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19488         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19490 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19492         * class.c (mono_class_create_generic): Set type_token as well.
19494         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19495         compatible with MS.
19497 2006-02-02  Martin Baulig  <martin@ximian.com>
19499         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19500         has never been used so far.
19502 2006-02-02  Martin Baulig  <martin@ximian.com>
19504         * mono-debug-debugger.h: Changed comment at the top of this file;
19505         the header is not installed, but it's safe to #include it from
19506         within the JIT.
19508         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19509         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19511 2006-02-02  Martin Baulig  <martin@ximian.com>
19513         * mono-debug.h
19514         (MonoSymbolTable): Removed the `metadata_info' field.
19516         * mono-debug.c
19517         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19519         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19520         (mono_debugger_add_builtin_types): Removed.
19521         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19522         (mono_debugger_create_notification_function): We now operate on a
19523         pre-allocated area; take a `gpointer' and return `void'.
19525         * mono-debug-debugger.c
19526         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19527         (mono_debugger_add_builtin_types): Removed.
19529 2006-02-02  Martin Baulig  <martin@ximian.com>
19531         * threads.c (mono_debugger_create_all_threads): New public method.
19533 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19535         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19536         breaks on several platforms.
19538 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19540         * assembly.c: the VS.NET build doesn't supply default values for
19541         MONO_ASSEMBLIES and MONO_CFG_DIR.
19543 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19545         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19546         helper function.
19548         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19550         * loader.c (method_from_memberref): Fix a warning.
19552         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19554         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19555         with explicit layout. Fixes #77433.
19557 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19559         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19560         max_interface_id is initialized before using it. Fixes #77398.
19561         (ves_icall_Type_GetInterfaces): Ditto.
19563 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19565         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19566         allocate memory for parameter attributes when parsing memberref
19567         signatures.
19568         * loader.c (mono_loader_set_error_method_load): Don't warn.
19569         (method_from_memberref): Ensure MissingMethodException gets thrown
19570         if method is not found.  Make warning more informative.
19572 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19574         Fix #77397
19575         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19576         return true if is byref.
19577         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19578         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19579         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19581 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19583         Fix tests/find-method.2.il
19584         * loader.c (find_method, find_method_in_class): Remove is_inflated
19585         argument.  Revert 2006-01-18 change.
19586         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19587         is generic, search for method in its generic definition.
19588         * class.c (mono_class_setup_vtable_general): Print generic
19589         arguments of generic types in debugging printf.
19591 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19593         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19595         * threads.c (mono_threads_request_thread_dump): New helper function.
19597 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19599         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19601 2006-01-25  Ankit Jain  <jankit@novell.com>
19603         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19604         move definition to ..
19605         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19606         
19607 2006-01-25  Ankit Jain  <jankit@novell.com>
19608             Raja R Harinath  <rharinath@novell.com>
19610         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19611         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19612         as necessary.
19614 2006-01-25  Martin Baulig  <martin@ximian.com>
19616         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19617         `MonoDebuggerThread' into debug-debugger.c.
19619 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19621         * profiler.c: fix printing of data.
19623 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19625         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19626           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19628 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19630         * object.c: fix deadlock related to string interning.
19632 2006-01-23  Martin Baulig  <martin@ximian.com>
19634         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19636         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19638 2006-01-23  Martin Baulig  <martin@ximian.com>
19640         * mono-debug.h: Moved the prototypes of some functions which are
19641         used by the JIT here from mono-debug-debugger.h.
19643 2006-01-21  Martin Baulig  <martin@ximian.com>
19645         * Makefile.am: Don't install mono-debug-debugger.h.
19647 2006-01-21  Martin Baulig  <martin@ximian.com>
19649         * mono-debug-debugger.h: Enforce the private status of this header
19650         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19651         Moved some stuff from mono-debugger-jit-wrapper.h here.
19653 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19655         * class.c (mono_class_from_typeref): Add a sanity test to help
19656         catch lack of assembly load/search hooks.
19658 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19660         * marshal.c (emit_struct_conv): Relax the fields with same offset
19661         check even more. Fixes #77230.
19663 2006-01-18  Martin Baulig  <martin@ximian.com>
19665         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19666         argument; if false, we compare the uninstantiated signatures.
19667         (method_from_memberref): Compare the uninstantiated signatures;
19668         fixes #76417.
19670 2006-01-18  Robert Jordan  <robertj@gmx.net>
19672         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19673         Clear the weak link. Fixes bug #77170.
19675         * gc.c (mono_gchandle_free):
19676         Reflect *-gc.c changes (tiny optimization).
19678 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
19680         * metadata.c (mono_metadata_signature_dup): Applied patch from
19681         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
19682         Fixes #77288.
19684 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
19686         * marshal.c (emit_struct_conv): Allow fields with the same offset when
19687         marshalling from native to managed code. Fixes #77230.
19689 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19691         * threadpool.c: fix problem (Mac only) when more than one asynchronous
19692         connect. Fixes bug #77020.
19694 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
19696         * class.c: fixed id assignement for nested interfaces (bug #77275).
19697         Added also better info for --print-vtable debugging.
19699 2006-01-12  Martin Baulig  <martin@ximian.com>
19701         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
19702         interfaces on-the-fly; fixes #76625.
19704         * class-internals.h
19705         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
19706         don't need that anymore.
19708 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19710         * socket-io.c
19711         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19712         To avoid initing the nested_classes when not needed I turned the
19713         PeerCredData as a toplevel internal class, as it has to be shared
19714         anyways. 
19716         Fixes the CASA issue.
19718 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
19720         * domain.c: Accessors for MonoJitInfo
19722         * profiler-private.h: Add jitinfo to the end jit hook
19724         * profiler.[ch]: Define new hooks, called after jitting which give
19725         the MonoJitInfo that was compiled
19727 2006-01-10  Martin Baulig  <martin@ximian.com>
19729         * class.c (mono_class_setup_events): Add support for generic
19730         classes; fixes #76440.
19732 2006-01-06  Raja R Harinath  <rharinath@novell.com>
19734         Fix #77160.
19735         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
19736         on passed-in method.
19738 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19740         * object.c (mono_runtime_invoke_array): Add Nullable support.
19742         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
19744 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
19746         * file-io.c: Don't consider sockets as directory and avoid an endless
19747         loop. Fix bug #76966.
19749 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19751         * object.c (mono_nullable_init): New helper function.
19752         (mono_nullable_box): Ditto.
19754         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
19756         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
19758         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
19759         
19760 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
19762         * class.c (mono_class_is_assignable_from): Make T assignable to 
19763         Nullable<T>.
19765 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
19767         * appdomain.c: Bump corlib version to 46.
19768         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
19769         serialization purpose) and changed ves_icall_System_Reflection_
19770         Assembly_get_code_base signature to accept a boolean (to escape, or 
19771         not, the assembly code base).
19773 2005-12-23  Dick Porter  <dick@ximian.com>
19775         * icall.c: 
19776         * threads-types.h: 
19777         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
19778         CreateEvent icall now returns "created" boolean parameter.
19780 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
19782         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
19783         #76967.
19785         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
19786         when attr_klass is an interface. Fixes #77045.
19788 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
19790         * marshal.c (emit_struct_conv): Fix previous patch.
19791         
19792         * marshal.c (emit_struct_conv): Add a check for fields with the same
19793         offset.
19795 2005-12-20  Raja R Harinath  <rharinath@novell.com>
19797         Fix regression in Mono.C5.
19798         * class.c (mono_class_create_generic): If 'klass' is an interface
19799         set up the interface offsets.
19800         (mono_class_is_assignable_from): Don't throw away generic arguments.
19802 2005-12-19  Raja R Harinath  <rharinath@novell.com>
19804         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
19805         type parameters.
19807 2005-12-15  Raja R Harinath  <rharinath@novell.com>
19809         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
19810         dead store.
19811         (do_mono_metadata_parse_generic_class): Don't pass the current
19812         generic context when parsing the type being instantiated: it
19813         cannot use it, anyway.
19815         * loader.c (method_from_memberref): Don't inflate a signature if
19816         it doesn't contain any type parameters.
19818 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
19820         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
19822 2005-12-14  Martin Baulig  <martin@ximian.com>
19824         * class.c
19825         (mono_type_get_name_recurse): Don't return null for type
19826         parameters and open generic classes.
19827         (mono_class_setup_methods): Don't exclude generic instances.
19828         (mono_get_unique_iid): Use different IDs for different
19829         instantiations of the same generic type.
19830         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19831         open generic instances; create a normal vtable for closed generic
19832         instances.
19833         (mono_class_setup_vtable_general): We're now also called for
19834         closed generic instances.
19836         * reflection.c
19837         (mono_reflection_bind_generic_parameters): Correctly use
19838         mono_metadata_lookup_generic_inst() everywhere.
19840 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
19842         * object.c (mono_class_create_runtime_vtable): Call 
19843         mono_class_setup_vtable ().
19845         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
19846         function.
19847         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
19848         #76959.
19850         * loader.c (mono_loader_set_error_type_load): Print the type load
19851         warnings to the console so they are more visible to the user.
19852         (mono_loader_set_error_method_load): Ditto.
19854         * reflection.c (ensure_runtime_vtable): Revert the last change as it
19855         is still broken.
19856         
19857         * reflection.c (ensure_runtime_vtable): Fix build.
19859         * reflection.c (ensure_runtime_vtable): Disable an optimization which
19860         doesn't work in all cases.
19862 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
19864         * object.c (mono_array_new_full): Treat a single dimensional array
19865         with 0 lower bounds as an szarray. Fixes #76973.
19867         * reflection.c (custom_attr_visible): Really fix this.
19869 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
19871         * reflection.c (custom_attr_visible): Allow nested public attributes
19872         as well.
19874         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
19875         interface check.
19877 2005-12-12  Raja R Harinath  <harinath@gmail.com>
19879         * class.c (set_generic_param_owner): Delete.
19880         (mono_class_create_from_typedef): Don't set ->owner field of
19881         generic parameters to "param containers" of enclosing classes.
19882         * reflection.c (mono_reflection_initialize_generic_parameter):
19883         Likewise.
19885 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
19887         * reflection.c (custom_attr_visible): Fix build.
19889 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
19891         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
19892         private attributes.
19893         
19894         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
19895         handling of null parameter defaults.
19897 2005-12-09  Raja R Harinath  <rharinath@novell.com>
19899         * class.c (mono_class_from_generic_parameter): Don't set
19900         klass->generic_container.
19901         (my_mono_class_from_generic_parameter): Likewise.
19903 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
19905         * reflection.c (load_public_key): Fix a warning.
19906         (method_encode_code): Fix unaligned accesses.
19908 2005-12-07  Martin Baulig  <martin@ximian.com>
19910         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
19912         * reflection.c
19913         (write_generic_param_entry): Encode our custom attrs.
19915         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
19917 2005-12-07  Martin Baulig  <martin@ximian.com>
19919         * reflection.c (encode_new_constraint): Removed; we don't use the
19920         `NewConstraintAttribute' anymore.
19922 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
19924         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
19925         not fire a TypeResolve event when Assembly.GetType () is called.
19927 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
19929         Beginning of support for nullable types in the runtime. Parts of
19930         this patch are from Martin.
19932         * appdomain.c (MONO_CORLIB_VERSION): Bump
19934         * domain.c (mono_init_internal): get the nullable type
19936         * class.c (mono_class_is_nullable): New method
19937         (mono_class_get_nullable_param): New mehod
19938         (mono_class_create_generic): In types T? set cast_class to T
19940         * class-internals.h (MonoDefaults): new nullable default class
19941         (mono_class_get_nullable_param, mono_class_get_nullable_param):
19942         new methods.
19944 2005-12-05  Raja R Harinath  <rharinath@novell.com>
19946         * metadata.c (select_container): New.  Refactor code to select the
19947         appropriate GenericContainer given the type of generic parameter
19948         we are looking for.
19949         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
19950         not a MonoGenericContext.  Use select_container.  Update parameters.
19951         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
19952         and MONO_TYPE_MVAR.
19953         (unwrap_arrays): Remove duplicate tests.
19954         (find_generic_param): Rename from 'has_same_context'.  Now walks a
19955         generic instantiated class to find any arguments that are generic
19956         parameters.
19957         (mono_type_create_from_typespec_full): Use find_generic_param to
19958         avoid evicting some generic instantiations from the typespec
19959         cache.
19961 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
19963         * reflection.c: fixed writing of doubles on ARM FPA.
19965 2005-12-02  Robert Jordan  <robertj@gmx.net>
19967         * icall.c: Fixed EventInfo.ReflectedType (#76829).
19969 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19971         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
19972         least on SUSE 10 they are not the same (on debian, they are just the
19973         same thing).
19975 2005-12-01  Raja R Harinath  <rharinath@novell.com>
19977         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
19978         DeclaringType for VARs and MVARs.
19979         * class.c (set_generic_param_owner): Fix initialization of owner
19980         fields.
19982 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
19984         * icall.c: fixed Enum.ToObject() to correctly convert the values.
19986 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19988         * threadpool.c: workaround for a bug that shows up on the Mac:
19989         select()+connect() on a blocking socket is not like it should
19990         be, so we proceed to connect() in that case, wasting the I/O
19991         threadpool thread until connect succeedes. Fixes bug #75436.
19993 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19995         * threadpool.c: fix typo when setting file descriptor states.
19997 2005-11-28  Raja R Harinath  <rharinath@novell.com>
19999         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20000         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20001         create a temporary signature container.
20002         (mono_metadata_parse_generic_param): Update to changes.
20003         (mono_type_create_from_typespec_full): Update to changes.
20004         * loader.c (method_from_memberref): Don't use a
20005         MonoGenericContainer while parsing a memberref signature.
20006         (method_from_methodspec): Remove dead-store of the 'container'
20007         variable.  It's overwritten before use.
20009         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20010         checks tighter.
20011         (mono_metadata_parse_generic_param): Likewise.
20012         * loader.c (find_method_in_class): Does not need a
20013         MonoGenericContainer.  Use 'mono_method_signature' rather than
20014         'mono_method_signature_full'.
20015         (find_method, mono_get_method_constrained, method_from_memberref):
20016         Update to changes.
20018         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20019         owner-less generic-parameters are never evicted from the typespec
20020         cache.
20022         * loader.c (method_from_memberref): Don't use the current context
20023         when parsing signatures.
20024         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20026         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20027         side-effects in g_assert.
20028         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20029         that we don't potentially lose information.
20031 2005-11-26  Dick Porter  <dick@ximian.com>
20033         * icall.c:
20034         * threads.c: icalls to implement basic (ie, not named)
20035         System.Threading.Semaphore.
20037 2005-11-24  Dick Porter  <dick@ximian.com>
20039         * process.c
20040         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20041         Use GetProcessId() if it's available.
20043 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20045         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20047 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20048             Ankit Jain  <jankit@novell.com>
20050         * loader.c (mono_get_method_from_token): Initialize 'method' field
20051         of all generic parameters before parsing the signature.  Remove
20052         code that "fixed"-up MVAR references.
20054 2005-11-23  Ankit Jain  <jankit@novell.com>
20056         * metadata.c (mono_metadata_has_generic_params):
20057         (mono_metadata_load_generic_param_constraints):
20058         (mono_metadata_load_generic_params): Move duplicate code ...
20059         (mono_metadata_get_generic_param_row): ... here. Returns the
20060         first row-id in GenericParam table for a given owner (token).
20061         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20062         prototype.
20064 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20065             Ankit Jain  <jankit@novell.com>
20067         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20068         comparing VARs too.
20069         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20070         type->data.generic_param only if the type is an MVAR.
20071         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20072         leak owner-less VARs and MVARs into managed space.
20074 2005-11-21  Martin Baulig  <martin@ximian.com>
20076         * class-internals.h
20077         (MonoMethod): Moved the `generic_container' here from
20078         `MonoMethodNormal' since we now also need it for
20079         `MonoMethodPInvoke';
20080         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20081         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20082         an union containing both `MonoMethodNormal' and
20083         `MonoMethodPInvoke'.
20085         * loader.c
20086         (mono_get_method_from_token): Allow implementing generic methods
20087         as interncalls.
20089         * threads.c
20090         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20091         icall.
20093 2005-11-17  Dick Porter  <dick@ximian.com>
20095         * icall.c: 
20096         * process.h: 
20097         * process.c: Split the Process Start_internal icall into
20098         ShellExecuteEx_internal and CreateProcess_internal, which are
20099         called depending on whether UseShellExecute is true.  Fixes bug
20100         76670.
20102         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20104 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20106         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20107         'msize' parameters, use the information in 'mspec' instead.
20108         (emit_object_to_ptr_conv): Ditto.
20110         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20111         fields out of order. Fixes #76733.
20113 2005-11-17  Ankit Jain  <jankit@novell.com>
20115         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20117 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20119         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20120           bug #76575.
20122 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20124         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20125         for types with non-auto layout. Fixes #76717.
20127 2005-11-16  Ankit Jain  <jankit@novell.com>
20129         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20130         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20131         if generic_context is null.
20132           (mono_metadata_generic_param_equal): param->owner can be null.
20133           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20134         null.
20136 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20138         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20139         the correct value.
20141 2005-11-15  Martin Baulig  <martin@ximian.com>
20143         * object.c (set_value): Use mono_class_from_mono_type() instead of
20144         the hack for generic instances; fixes #76136.
20146 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20148         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20149         fields.
20151         * image.c (load_metadata_ptrs): Initialize the new fields.
20153         * reflection.c (create_dynamic_mono_image): Ditto.
20155         * reflection.c (build_compressed_metadata): Use the new fields.
20157         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20158         icall.
20160         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20161         icall.
20162         
20163 2005-11-15  Ankit Jain  <jankit@novell.com>
20164             Raja R Harinath  <harinath@gmail.com>
20166         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20167         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20168         new per-generic_container cache if the cached MonoType's context matches
20169         the current context.
20170           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20171         to the expected context.
20172           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20174 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20176         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20177         we changed the signature of an icall.
20178         * icall.c: Modify to mono_double_ParseImpl return true/false 
20179         depending on the success, instead of throwing the exception. This will
20180         help us in Double.TryParse methods.
20181         
20182 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20184         * marshal.c (emit_marshal_object): Throw an exception when
20185         marshalling 'object' instead of crashing. Fixes #76696.
20187 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20189         * class-internals.h: Add prototype for mono_type_get_full_name ().
20191 2005-11-11  Dick Porter  <dick@ximian.com>
20193         * threads.c (mono_thread_manage): Make sure the main thread has
20194         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20196 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20198         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20199         console about the missing type.
20200         (mono_loader_set_error_method_load): Ditto.
20202 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20204         * mono-config.c (mono_get_config_dir): Set the system defaults if
20205         none is specified.
20207         * assembly.c (mono_set_dirs): New API entry point to set the
20208         assembly and the config directory in one call
20210 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20212         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20213         the ftnptr was created from a delegate in a domain other than the
20214         current domain. Fixes #75377.
20216         * exception.h exception.c: Add mono_get_exception_not_supported ().
20218 2005-11-08  Martin Baulig  <martin@ximian.com>
20220         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20222 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20224         * security-manager.h: Added definitions to deal with strongname key 
20225         pairs bigger (and smaller) than 1024 bits.
20226         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20227         adjust wrt the public key length being used.
20229 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20231         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20232           Windows build (r51396-51397).
20234 2005-11-03  Martin Baulig  <martin@ximian.com>
20236         * class.c (mono_class_setup_vtable_general): Also add generic
20237         methods to the vtable; fixes #76581.
20239 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20241         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20242         sure that we lookup GetString method from the System.Text.Encoding
20243         class, not the derived class or we get an empty method.
20245         Fixed class #76612.
20247 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20249         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20250         if it has been previously set (embedders). 
20252         Make mono_set_rootdir available also on Unix.
20254 005-10-24  Robert Jordan  <robertj@gmx.net>
20256         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20258 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20260         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20261         only calls which are made to native code use this flag.
20263         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20265 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20267         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20268         Add support for FieldBuilders.
20270 2005-10-29  Martin Baulig  <martin@ximian.com>
20272         * mono-debug.c
20273         (mono_debug_using_mono_debugger): New public method; returns
20274         whether we're running inside the debugger.
20276 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20278         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20279         for Method/Constructor/FieldBuilders.
20281 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20283         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20284         and fields as well.
20286 2005-10-26  Martin Baulig  <martin@ximian.com>
20288         * mono-debug-debugger.c
20289         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20291 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20293         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20294         integer to isspace.
20296 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20298         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20299         when passing valuetypes byref. Fixes #76502.
20301 2005-10-19  Jackson Harper  <jackson@ximian.com>
20303         * profiler.c: Don't put a . in front of types that are not in a
20304         namespace.
20306 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20308         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20310 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20312         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20313         #76436.
20314         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20316 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20318         * assembly.c metadata-internals.h icall.c: Define an additional
20319         parameter for mono_assembly_name_parse_full, so we can avoid creating
20320         S.R.AssemblyName.Version when no version info wasn't passed.
20321         
20322 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20324         * class.c (mono_type_get_full_name): Reimplement method that was
20325         removed. 
20327         * image.c: Some docs
20329 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20331         * profiler.c (output_newobj_profile): Fix printing of Total memory
20332         on x86.
20334 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20336         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20338 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20340         * threads.c: remove debug output.
20342 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20344         * threads.c (mono_thread_manage): Fix crashes if more than 64
20345         threads need to be aborted. Hopefully fixes #75899.
20347         * assembly.c (mono_stringify_assembly_name): New helper function.
20349         * class.c: Use mono_stringify_assembly_name instead of the similar
20350         static function.
20352         * assembly.h assembly.c: Add support for calling a postload search 
20353         hook if an assembly cannot be loaded.
20355         * appdomain.c: Register new search hooks which call the AssemblyResolve
20356         events in AppDomain. Fixes #75231
20358 2005-10-07  Martin Baulig  <martin@ximian.com>
20360         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20361         methods without debug info.
20363 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20365         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20366         wrappers.
20368 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20370         * file-io.c: now that we return symlinks, use lstat and, when the file
20371         is a symbolic link, stat, to get the file attributes. Also avoid the
20372         conversion to/from utf16/external.
20374 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20376         * class.c (mono_class_layout_fields): Compute klass->has_references
20377         correctly if an embedded valuetype is not yet initialized. Fixes
20378         #76331.
20380 2005-10-04  Martin Baulig  <martin@ximian.com>
20382         * metadata.c
20383         (mono_metadata_load_generic_param_constraints): New public
20384         function; splitted the constraints loading out from
20385         mono_metadata_load_generic_params().
20387         * class.c (mono_class_create_from_typedef): Call
20388         mono_metadata_load_generic_param_constraints() after setting up
20389         the type and creating our parent; fixes #75329.
20391 2005-10-04  Martin Baulig  <martin@ximian.com>
20393         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20394         non-dynamic parent classes.
20396 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20398         * file-io.c : win32 build fix (ETXTBSY seems not found).
20400 2005-10-04  Martin Baulig  <martin@ximian.com>
20402         * reflection.c
20403         (mono_image_get_methodspec_token): Make the cache actually work;
20404         fixes #75974.
20406 2005-10-04  Martin Baulig  <martin@ximian.com>
20408         * class.c (mono_class_name_from_token): Removed the unneccessary
20409         `MonoGenericContext *' argument.
20411 2005-10-04  Martin Baulig  <martin@ximian.com>
20413         * loader.c
20414         (method_from_methodspec): Make the caching work again; fixes the
20415         performance regression from #76262.
20417 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20419         * file-io.c:
20420         * file-io.h:
20421         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20422         GetFileSystemEntries that performs the same work but without going
20423         into io-layer, locking, etc.
20425 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20427         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20428         ThreadState_Stopped as well. Fixes #76047.
20430 2005-09-29  Martin Baulig  <martin@ximian.com>
20432         * class.c
20433         (inflate_generic_context): If the new context has a `gmethod', set
20434         its `container' that that gmethod's `container'.
20436         * metadata.c
20437         (mono_metadata_parse_generic_param): Simplify things;
20438         `generic_container = generic_context->container;' is just fine.
20440         * loader.c (method_from_methodspec): Code cleanups.
20442 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20444         * decimal.c: fix warning (and let gcc generate correct
20445         code on ARM with optimizations).
20447 2005-09-28  Martin Baulig  <martin@ximian.com>
20449         * loader.c
20450         (method_from_memberref): Added `MonoGenericContext *class_context'
20451         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20452         (method_from_methodspec): If we're a memberref, use the enclosing
20453         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20455 2005-09-28  Martin Baulig  <martin@ximian.com>
20457         * object.c (mono_runtime_invoke_array): Added support for
20458         MONO_TYPE_GENERICINST; fixes #75917.
20460 2005-09-27  Martin Baulig  <martin@ximian.com>
20462         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20463         `k->byval_arg.type' to determine the actual type.
20465         * loader.c (method_from_methodspec): Removed some hacks.
20467 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20469         * class-internals.h (mono_field_is_deleted): Do the test for
20470         rtspecialname before we check the actual name of the field. This
20471         prevents us from dereferencing a pointer into the string table,
20472         saving us from accessing a few pages
20474         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20475         macros. This will allow a deadlock debugger to easily be plugged
20476         in.
20478 2005-09-27  Martin Baulig  <martin@ximian.com>
20480         * loader.c (method_from_methodspec): Create a "signature"
20481         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20483 2005-09-27  Martin Baulig  <martin@ximian.com>
20485         * class.c
20486         (inflate_generic_class): Correctly set the new context's
20487         container.
20489         * loader.c
20490         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20491         instead of a `MonoGenericContext *'.
20492         (mono_method_signature_full): Take a `MonoGenericContainer *'
20493         instead of a `MonoGenericContext *'.
20495         * metadata.c
20496         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20497         instead of a `MonoGenericContext *'.
20498         (mono_metadata_parse_method_signature_full): Likewise.
20500 2005-09-26  Martin Baulig  <martin@ximian.com>
20502         * class.c
20503         (mono_class_from_generic_parameter): Set `klass->generic_container'
20504         (mono_class_from_generic_parameter): Likewise.
20505         (mono_bounded_array_class_get): We inherit the generic container
20506         from the element class.
20508         * loader.c
20509         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20510         argument rather than computing it here.
20511         (method_from_memberref): Correctly set the generic context before
20512         parsing the signature.  Fixes #75681.
20514 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20516         * object.c (mono_class_has_special_static_fields): Fix warnings.
20518 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20520         * assembly.c: Add parse_public_key function, to
20521         par the public keys. Also added mono_assembly_name_parse_full,
20522         to define it the parsed key should be freed or not.
20523         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20524         to parse a long format assembly name.
20525         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20526         private, since calling it to preserve the key requires
20527         freeing it manually.
20528         
20529 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20531         * locales.c : removed HAVE_ICU part.
20533 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20535         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20536         field_is_special_static if the klass has no special static fields.
20538         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20539         (MonoCachedClassInfo): Likewise.
20541         * object.c (mono_class_has_special_static_fields): New helper function.
20543 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20545         * class.c (mono_class_create_from_typedef): Don't call 
20546         interfaces_from_typedef_full for enums.
20547         (mono_class_create_from_typedef): Compute the base types of enums directly
20548         without calling mono_class_setup_fields ().
20549         (mono_class_find_enum_basetype): New helper function.
20551         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20552         one place inside the string heap.
20553         
20554 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20556         * class.c: locking fixes, code cleanups, some docs added.
20557         Allocate some data structures in the image mempool.
20559 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20561         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20562         the example code.
20563         
20564 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20566         * class-internals.h, class.c, reflection.c: reduce memory taken by
20567         MonoClass.
20569 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20571         * metadata.c, metadata.h, loader.h: documentation updates, code and
20572         API cleanups.
20574 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20576         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20577         the example code.
20579         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20580         page faults caused by the runtime while reading metadata.
20582 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20584         * socket-io.c: the field names were changed 3 months ago and no one
20585         realized until bug #76077 got filed!
20587 2005-09-20  Martin Baulig  <martin@ximian.com>
20589         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20591 2005-09-20  Martin Baulig  <martin@ximian.com>
20593         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20594         write the rank into the class entry.
20596 2005-09-20  Martin Baulig  <martin@ximian.com>
20598         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20600 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20602         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20604         * icall.c (custom_attrs_defined_internal): New icall.
20606         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20607         function.
20608         (mono_custom_attrs_construct_by_type): New helper function.
20610 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20612         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20613         terminate the resulting string. Fixes #76123.
20615 2005-09-16  Martin Baulig  <martin@ximian.com>
20617         * mono-debug.c
20618         (mono_debug_add_method): Ignore inflated methods for the moment.
20620 2005-09-14  Martin Baulig  <martin@ximian.com>
20622         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20624 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20626         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20627         return a success/failure indication.
20628         (mono_metadata_interfaces_from_typedef_full): Ditto.
20629         (get_constraints): Ditto.
20631 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20633         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20634         
20635         * marshal.c (emit_marshal_array): Add support for returning string
20636         arrays from delegates. Fixes #76063.
20638         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20640 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20642         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20643         icall.
20645 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20647         * reflection.c icall.c: Fix after mono_get_exception_type_load
20648         signature change.
20650         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20651         (mono_assembly_load_reference): Use the new helper.
20653         * class-internals.h (MonoLoaderError): New structure containing 
20654         information about type loading errors.
20656         * class-internals.h loader.c: Add APIs to store per-thread loader
20657         error information.
20659         * loader.c class.c: Set the loader error if needed.
20661         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20663 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20665         * decimal.c: fixed to handle the broken ARM fp format.
20667 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20669         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20670         broken.
20672 2005-09-06  Martin Baulig  <martin@ximian.com>
20674         * domain.c (supported_runtimes): Added v2.0.50727.
20676 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20678         * culture-info.h: reduce the size of some structures.
20680 2005-09-05  Martin Baulig  <martin@ximian.com>
20682         Reflect latest API changes in the August CTP.
20684         * icall.c
20685         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
20686         ("MonoType.HasGenericArguments"): Removed.
20687         ("MonoMethod.BindGenericParameters"): Renamed to
20688         "MakeGenericMethod".
20689         ("MethodBuilder.BindGenericParameters"): Renamed to
20690         "MakeGenericMethod".    
20692 2005-09-05  Martin Baulig  <martin@ximian.com>
20694         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
20696 2005-09-05  Martin Baulig  <martin@ximian.com>
20698         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20700         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
20701         generic_container is non-NULL.
20703 2005-09-05  Martin Baulig  <martin@ximian.com>
20705         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20707         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
20709 2005-08-29  Michal Moskal  <malekith@nemerle.org>
20711         * reflection.c (encode_locals,
20712         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
20713         for large generic types.
20715 2005-09-05  Martin Baulig  <martin@ximian.com>
20717         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20719         * class.c (mono_dup_array_type): New public method.
20720         (mono_metadata_signature_deep_dup): New public method.
20721         (dup_type): Correctly duplicate array and function types.
20723 2005-09-05  Martin Baulig  <martin@ximian.com>
20725         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20727         * reflection.c (get_default_param_value_blobs): Handle generic types
20728         and generic methods.
20730 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
20732         * class.c: Fixed error reporting (method/class were inversed) for 
20733         inheritance demands.
20734         * security-manager.c|h: Added the AppDomain when calling the managed
20735         System.Security.SecurityManager.InheritanceDemand method.
20737 2005-09-01  Raja R Harinath  <rharinath@novell.com>
20739         * reflection.c (encode_marshal_blob): 'marshaltype' and
20740         'marshaltyperef' are alternate sources for the custom marshaler
20741         name.
20743 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
20745         * class.c: fix creation of array classes with rank == 1
20746         (patch by Ankit Jain <jankit@novell.com>).
20748 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
20750         * object.c: fix check for creating the bound data for arrays vs
20751         szarrays.
20753 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20755         * object.c: configuration file name is now based on the executable name,
20756         not the image name. Fixes bug #75931.
20758 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
20760         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
20761         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
20763 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
20765         * rand.c: Use wincrypt.h instead of WinCrypt.h.
20767 2005-08-24  Ankit Jain  <jankit@novell.com>
20768             Raja R Harinath  <rharinath@novell.com>
20770         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
20771           called by it recursively.
20772           (mono_class_init): Remove special case in pending_init handling, since it's
20773           superseded by the fix to mono_class_from_typeref.
20775 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
20777         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
20778         BROKEN_THREAD_START stuff.
20780 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
20782         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
20783         trampoline.
20785         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
20786         
20787         * object.c (mono_delegate_ctor): Replace the original function address with
20788         a delegate trampoline.
20790 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
20792         * icall.c: add boolean argument to base64_to_byte_array and 
20793         InternalFromBase64String to control whether a whitespace-only string
20794         is allowed (or should casue a FormatException to be thrown). We need
20795         this as the behavior has changed between MS.NET 1.x and 2.0, and we
20796         to match the MS behaviour in both profiles.
20797         * appdomain.c: Bump corlib version.
20799 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20801         This patch implements a big portion of publisher policy
20802         support, used to bind assembly versions and redirect
20803         one assembly from version A to version B.
20805         * assembly.c:
20806         New GSList loaded_assembly_bindings, for storing the cached
20807         assembly bindings.
20808         (assembly_binding_maps_name): New static function for checking if a 
20809         assembly binding information maps an assembly name.
20810         (mono_assembly_binding_info_free): New function for freeing
20811         assembly binding information resources.
20812         (get_publisher_policy_info): New static function for retrieving 
20813         assembly binding information from a MonoImage.
20814         (compare_versions): New static function for comparing an assembly
20815         binding information data and the version of an assembly name.
20816         (check_policy_versions): New static function for checking if an
20817         assembly binding info mapping an assembly name is valid for it.
20818         (mono_assembly_load_publisher_policy): New static function for
20819         loading the 'policy.major.minor.MyAssembly' image for an assembly
20820         with an assembly name 'aname'.
20821         (mono_assembly_bind_version): New static function for updating
20822         assembly redirection.
20823         (mono_assembly_apply_binding): New static function for applying
20824         assembly binding.
20825         (search_binding_loaded): New static function for searching 
20826         loaded assembly binding infos in the cache domain.
20827         (mono_assembly_load_full): Don't apply assembly binding for
20828         reflection only assemblies.
20830         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20831         which contains information about assembly binding. Also
20832         declare signature for mono_config_parse_publisher_policy ()
20833         function, used to retrieve pub policy info.
20834         
20835         * mono-config.c:
20836         (publisher_policy_start): New static function used to parse publisher 
20837         policy config files.
20838         (publisher_policy_parser): New static MonoParseHandler containing 
20839         the functions used when parsing config files.
20840         (mono_config_parse_publisher_policy): New function for parsing
20841         publisher policy files.
20842         
20843 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
20845         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
20847         * marshal.c (mono_delegate_free_ftnptr): Ditto.
20849         * object.c (mono_get_addr_from_ftnptr): New helper function.
20851         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
20853         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20855 2005-08-19  Dick Porter  <dick@ximian.com>
20857         * threads.c, threads.h, appdomain.c, appdomain.h,
20858         profiler-private.h, monitor.c, object.c, object-internals.h,
20859         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
20860         store the thread ID, so it can hold a 64 bit value if needed.
20862 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
20864         * reflection.c (mono_reflection_create_dynamic_method): Store the
20865         handle class into the method references as well so ldtoken works in
20866         dynamic methods.
20868         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
20869         types.
20871 2005-08-19  Ankit Jain <jankit@novell.com>
20873         Fix #75847.
20874         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
20875           here rather than using the method signature of a arbitrary function
20876           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
20877           two arguments.
20878           Hack done with Harinath.
20880 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20882         * threadpool.c: disable printing stack traces when we get a exception
20883         in a threadpool thread. I need to do more testing to figure out which
20884         cases actually print this. Fixes bug #75828.
20886 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20888         * icall.c: there might be ignored whitespace after the last '='. This
20889         fixes length computation and bug #75840.
20891 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
20893         * assembly.c (mono_assembly_load_full): Consider .exe extension as
20894         well. Fixes #75809.
20896         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
20897         #75784.
20898         
20899         * reflection.c (create_custom_attr_data): Ditto.
20901 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
20903         * locales.c, culture-info.h : removed RegionLCIDMap.
20904         * culture-info-tables.h : regenerated.
20906 2005-08-16  Martin Baulig  <martin@ximian.com>
20908         * class.c (mono_type_get_name_recurse): Small fix.
20910 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
20912         * locales.c : indentation fixie.
20914 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
20916         * object-internals.h,
20917           locales.h,
20918           locales.c,
20919           culture-info.h,
20920           icall.c : added RegionInfo table support.
20921         * culture-info-table.h : regenerated for region support.
20923 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
20925         * reflection.c (resolve_object): handle all kinds of MonoMethod
20926         including generic ones
20928 2005-08-12  Ankit Jain <jankit@novell.com>
20930         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
20931           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
20933 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
20935         * process.c: Don't close a thread handle when it's NULL. This is a
20936         workaround for bug #75733.
20938 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
20940         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
20942 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
20944         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
20946 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20948         * threadpool.c: if a work item in the thread pool has a callback that
20949         catches a exception, don't propagate it after invoking the callback.
20950         Fixes bug #75336.
20952 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
20954         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
20956         * class-internals.h (MonoCachedClassInfo): Add some new fields.
20958         * class.c (mono_class_init): Load field info lazily in the AOT case.    
20960         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
20962 2005-08-03  Ankit Jain  <jankit@novell.com>
20964         Fix #75683.
20965         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
20966           PInvoke calling convention is 0.
20968 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
20970         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
20971         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
20973 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
20975         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
20976         to handle threads not started by the GC (patch by Michael Meeks
20977         <michael.meeks@novell.com>).
20979 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
20981         * reflection.c: Make buffer used in emitting types larger for some
20982         big generic types (patch by Michal Moskal).
20984 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
20986         * mono-debug.c: Fix some (not all) alignment problems.
20988 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20990         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
20991         Invoke mono_image_load_from_data_full passing the refonly
20992         parameter.
20994         * assembly.c
20995         (mono_assembly_open_from_bundle): Add the refonly argument, 
20996         in order to pass it to other methods it calls to.
20997         (do_mono_assembly_open): Add the refonly argument, in order 
20998         to pass it to other methods it calls to.
20999         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21000         the refonly parameter to it.
21002         * image.c: Add loaded_images_refonly_hash and
21003         loaded_images_refonly_guid_hash to cache the reflection
21004         only loaded images.
21005         (mono_images_init): Initialize the hash tables used for
21006         caching the reflection only images.
21007         (load_modules): Invoke mono_image_open_full passing the refonly
21008         parameter to load the modules the correct way.
21009         (build_guid_table): Add the refonly argument, to re-build the 
21010         correct hash table.
21011         (do_mono_image_open): Added the refonly argument, in order to
21012         define it for the loaded image.
21013         (mono_image_loaded_full): New function, which receives an
21014         additional parameter to look for the image in the refonly or
21015         non-refonly section.
21016         (mono_image_loaded): Updated, using mono_image_loaded_full.
21017         (mono_image_loaded_by_guid_full): The same case that happens
21018         with mono_image_loaded_full.
21019         (mono_image_loaded_by_guid): Likewise.
21020         (register_image): Use the ref_only variable inside MonoImage
21021         to decide in which hash table store the current image.
21022         (mono_image_open_from_data_full): Rename
21023         mono_image_open_from_data to mono_image_open_from_data_full,
21024         adding the refonly argument, to define the ref_only variable 
21025         inside MonoImage.
21026         (mono_image_open_from_data): Return 
21027         mono_image_open_from_data_full.
21028         (mono_image_open_full): Rename mono_image_open to
21029         mono_image_open_full, receiving the new refonly argument,
21030         to pass it to inner methods.
21031         (mono_pe_file_open): Update this function, to open
21032         a MonoImage as a non-refonly image.
21033         (mono_image_close): Use the refonly variable inside
21034         MonoImage to remove the image from the correct caches.
21036         * image.h: Add the signatures of mono_image_open_full,
21037         mono_image_open_from_data_full, mono_image_loaded_full,
21038         mono_image_loaded_by_guid_full.
21040         * metadata-internals.h: Add the ref_only field to 
21041         MonoImage.
21042         
21043 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21045         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21046         Fix the last behavior, which used to load the assemblies and
21047         extract MonoReflectionAssemblyName information, instead of
21048         extract it from the metadata tables. Needed for Reflection
21049         Only assemblies.
21050         
21051 2005-07-29  Martin Baulig  <martin@ximian.com>
21053         * mono-debug-debugger.c
21054         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21055         not initialized.
21057         * mono-debug.c
21058         (mono_debug_address_from_il_offset): Check whether we have
21059         debugging support before attempting to take the lock.
21060         (mono_debug_source_location_from_address): Likewise.
21061         (mono_debug_source_location_from_il_offset): Likewise.
21062         (mono_debug_il_offset_from_address): Likewise.
21063         (mono_debug_address_from_il_offset): Likewise.
21065 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21067         * class.c (mono_class_from_name_case): Add support for dynamic images.
21068         Fixes #75650.
21070         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21071         for #75479.
21073 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21074         
21075         * reflection.c (mono_method_get_object): Fix warning.
21077 2005-07-28  Martin Baulig  <martin@ximian.com>
21079         * mono-debug.c
21080         (mono_debug_add_wrapper): Also write the wrapper type.
21082 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21084         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21085         
21086         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21087         data indicates the class has none.
21089 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21091         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21092         loader lock with the debugger lock. Prevents deadlocks for beagle.
21094         Beagle can now run on an smp box for a weekend without any
21095         issues. Woohoo!
21097 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21099         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21100         in a module. Fixes #75629.
21102 2005-07-26  Martin Baulig  <martin@ximian.com>
21104         * mono-debug.c (mono_debug_add_wrapper): New static method.
21105         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21106         interncall or a wrapper.
21108         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21109         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21110         (MONO_DEBUGGER_VERSION): Bump to 51.
21112         * mono-debug-debugger.c
21113         (mono_debugger_add_type): Removed this empty function.
21114         (mono_debugger_add_method): Likewise.
21116 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21118         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21119         before accessing method->slot.
21121 2005-07-21  Jb Evain  <jbevain@gmail.com>
21123         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21124         Fixes #75010.
21126 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21128         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21129         #75587.
21131 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21133         * image.h image.c: Add mono_image_get_guid () API function.
21135 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21137         There were issues when multiple threads tried to load
21138         assemblies. A deadlock was created between assemblies_mutex and
21139         mono_domain_assemblies_lock. This fixes the issue by making the
21140         assembly ref counting be lock free. See bug 75586.
21141         
21142         * image.c (mono_image_close): The add ref function here was using
21143         Interlocked operations while the unref was using a mutex and a
21144         --. I don't think this was ever a bug that would be exposed in a
21145         non-pendantic way (ie, by an embedder doing a ref on one thread
21146         and an unref on another), but for the sake of correctness, this is
21147         now Interlocked.
21149         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21150         (mono_assembly_load_reference): Call mono_assembly_addref rather
21151         than touching the refcount ourselves.
21152         (mono_assembly_close): Use InterlockedDecrement to unref the
21153         assembly. Don't acquire the lock unless it is actually needed.
21155 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21157         * class.c (mono_class_layout_fields): Fix calculation of has_references
21158         for generic types.
21160 2005-07-12  Martin Baulig  <martin@ximian.com>
21162         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21164         * metadata.c
21165         (mono_type_hash): Provide better hashing for generic instances.
21166         (mono_generic_inst_hash): Improve hashing.
21167         (mono_generic_class_hash): Likewise.
21169         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21170         generic instances.
21172 2005-07-12  Martin Baulig  <martin@ximian.com>
21174         * reflection.c (mono_reflection_create_runtime_class): Remove the
21175         hack for generic type definitions and non-`Run' assemblies.
21176         (mono_reflection_bind_generic_parameters): Also use
21177         `klass->wastypebuilder' to check for TypeBuilders.
21179 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21181         * class.c (mono_class_layout_fields): Fix calculation of has_references
21182         for generic types.
21184         * class.c (inflate_generic_class): Fix a leak.
21185         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21186         for generic types.
21188 2005-07-11  Martin Baulig  <martin@ximian.com>
21190         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21191         on error.
21193 2005-07-11  Martin Baulig  <martin@ximian.com>
21195         * loader.c (find_method): Also lookup in
21196         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21198 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21200         * appdomain.c (mono_domain_unload): Don't free the error message
21201         before passing it to mono_get_exception_...
21203         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21204         
21205 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21207         * threads.c: try to better guess an available RT signal (bug #75387).
21209 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21211         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21212         and CACHE_OBJECT.
21214 2005-07-07  Martin Baulig  <martin@ximian.com>
21216         * class.c (mono_type_get_name_full): Return NULL for
21217         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21218         fixes #75408.
21220 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21222         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21223         exit the appdomain as well being aborted.
21225         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21226         change back to the root domain after calling managed code. This enables
21227         appdomains using threadpools to be unloaded.
21229 2005-07-07  Martin Baulig  <martin@ximian.com>
21231         * class-internals.h
21232         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21233         into `MonoDynamicGenericClass' since we only need it for dynamic
21234         types.
21236         * reflection.c (mono_class_bind_generic_parameters): We don't need
21237         to compute the `parent' here.
21239 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21241         * culture-info-table.h : regenerated.
21243 2005-07-06  Martin Baulig  <martin@ximian.com>
21245         * icall.c
21246         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21248         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21250 2005-07-06  Martin Baulig  <martin@ximian.com>
21252         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21253         we're doing a signature-only comparision; fixes #74945.
21255 2005-07-06  Martin Baulig  <martin@ximian.com>
21257         * class-internals.h (MonoGenericClass): Moved some things out into
21258         a new `MonoInflatedGenericClass' type.  
21259         (MonoInflatedGenericClass): New type; the `klass' of a
21260         `MonoGenericClass' is now computed lazyly in
21261         mono_get_inflated_generic_class().      
21263         * class.c (mono_get_inflated_generic_class): New public function.
21264         (mono_class_inflate_generic_method): Removed the unused
21265         `MonoClass *' argument.
21266         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21267         all the methods.
21268         (mono_class_create_generic): Make this static and merge it with
21269         mono_class_create_generic_2(); we're now called automatically from
21270         mono_get_inflated_generic_class().
21272         * loader.c (mono_method_signature): Call
21273         mono_get_inflated_method() here.
21275 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21277         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21278         type of fields with RVA.
21280         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21281         for this pseudo class.
21282         (my_mono_class_from_generic_parameter): Likewise.
21283         (mono_class_init): Allow interfaces to have cctors.
21285 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21287         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21288         lazily for AOT methods.
21290 2005-07-05  Martin Baulig  <martin@ximian.com>
21292         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21293         returns FALSE for a successful match, not TRUE.
21295 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21297         * loader.c (mono_method_get_index): Optimize this a bit.
21299 2005-07-04  Martin Baulig  <martin@ximian.com>
21301         * class.c
21302         (class_compute_field_layout): Move the check for generic type
21303         definitions into mono_class_layout_fields().  Fixes #74684.
21304         (mono_class_from_generic_parameter): Correctly compute
21305         `klass->parent'; fixes #75457.
21307         * reflection.c (register_assembly, register_module): Make sure
21308         `domain->rejobject_hash' is already created.
21310 2005-07-02  Martin Baulig  <martin@ximian.com>
21312         * class-internals.h
21313         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21314         `MonoDynamicGenericClass'.      
21316 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21318         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21319         returned by a field getter is null, since null is a valid value.
21321 2005-07-01  Martin Baulig  <martin@ximian.com>
21323         * reflection.c (mono_reflection_generic_class_initialize): Update
21324         the `dgclass->fields [i].parent' to the correct class.
21325         (mono_image_get_fieldref_token): Use the declaring type, not the
21326         reflected type.
21328 2005-07-01  Martin Baulig  <martin@ximian.com>
21330         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21332 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21334         * threads.c (thread_cleanup): assert that thread != NULL
21335         (wait_for_tids_or_state_change): We were using the wrong variable
21336         when accessing wait->threads. `i' was always out of the bounds of
21337         the array.
21339 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21341         * loader.c: map user32 and kernel32 to libMonoSupportW
21343 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21345         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21347 2005-06-28  Martin Baulig  <martin@ximian.com>
21349         * loader.c (method_from_methodspec): Fix #75334.
21351 2005-06-28  Martin Baulig  <martin@ximian.com>
21353         Fix #74953 - Arrays now implement the generic IList<T> interface
21354         on the 2.0 platform.
21356         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21358         * reflection.c (mono_class_bind_generic_parameters): New public
21359         function; similar to mono_reflection_bind_generic_parameters(),
21360         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21362         * domain.c (mono_init_internal): Try to initialize.
21363         `mono_defaults.generic_array_class' here; this'll only succeed if
21364         we're using the 2.0 corlib.
21366         * icall.c
21367         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21368         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21369         (mono_lookup_internal_call): Added support for nested classes.
21371         * loader.c
21372         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21373         we're an interncall and have generic arguments.
21375         * class.c
21376         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21377         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21378         instance of System.Array.InternalArray<T> for arrays, so they
21379         implement the generic IList<T> interface.
21381 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21383         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21384         (chastamar@yahoo.com). Fixes #75374.    
21386 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21388         * culture-info-table.h: regenerated.
21390 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21392         * icall.c: handle spaces correctly for base64 strings.
21394 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21396         * *.c: Kill some warnings.
21398 2005-06-23  Duncan Mak  <duncan@novell.com>
21400         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21401         that this builds on Solaris 10 (x86).
21403 2005-06-23  Martin Baulig  <martin@ximian.com>
21405         * class.c
21406         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21407         generic type definitions.
21409 2005-06-23  Martin Baulig  <martin@ximian.com>
21411         Fix #75331.
21413         * metadata.c (mono_class_get_overrides): Renamed to
21414         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21415         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21416         pass it to mono_get_method_full().
21418 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21420         * reflection.c (mono_reflection_create_runtime_class): take the
21421         mono_domain_lock in this method. Prevents deadlocks
21423 2005-06-22  Martin Baulig  <martin@ximian.com>
21425         * loader.c (method_from_methodspec): Fix #75330.
21427 2005-06-22  Martin Baulig  <martin@ximian.com>
21429         * reflection.c (type_get_qualified_name): Use
21430         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21431         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21432         argument; use it if we don't have an assembly name.
21434 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21436         * object.c: In mono_message_init, set "copy out" flag for in
21437         parameters with the [Out] flag.
21439 2005-06-21  Martin Baulig  <martin@ximian.com>
21441         * class.c
21442         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21443         and MONO_TYPE_PTR.
21445 2005-06-21  Martin Baulig  <martin@ximian.com>
21447         * class.c (mono_class_init): Don't initialize `class->fields' for
21448         generic instances since they're initialized again in
21449         compute_field_layout(). 
21450         (compute_field_layout): Set the field's `generic_info' here; fix
21451         #75320. 
21453 2005-06-21  Martin Baulig  <martin@ximian.com>
21455         * class-internals.h
21456         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21458         * metadata.c (mono_metadata_generic_method_equal): Also
21459         distinguish the `generic_class'; fixes #75334.
21461 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21463         * domain.c:
21464         * appdomain.c:
21465         * domain-internals.h:
21466         * reflection.c: 'domain_assemblies' field is now protected by its own
21467         lock. Don't call into managed code to run the AssemblyLoad event if we
21468         now there are no registered delegates for it.
21470 2005-06-20  Martin Baulig  <martin@ximian.com>
21472         * class.c (mono_class_is_assignable_from): Use a custom version of
21473         mono_class_has_parent() to make things work for generic instances;
21474         fix #75300.
21476 2005-06-20  Martin Baulig  <martin@ximian.com>
21478         * loader.c (method_from_methodspec): Apply a patch from
21479         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21481 2005-06-20  Martin Baulig  <martin@ximian.com>
21483         * class.c (mono_class_init): Reverted Zoltan's last change; it
21484         breaks generics.
21486 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21488         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21490 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21492         * socket-io.c: fix the index in the socket array for writable/error
21493         sockets. Fixes bug #75306.
21495 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21497         * class.c (mono_class_init): Allow interfaces to have static ctors.
21499 2005-06-17  Martin Baulig  <martin@ximian.com>
21501         * loader.c (method_from_methodspec): Use `context->container' when
21502         parsing the `gmethod->inst'.
21504 2005-06-17  Martin Baulig  <martin@ximian.com>
21506         * class.c (mono_type_get_name_recurse): Don't add the assembly
21507         name for type arguments.
21509 2005-06-15  Martin Baulig  <martin@ximian.com>
21511         * reflection.c (mono_image_get_inflated_method_token): Encode
21512         correct klass; fixes #75260.
21514 2005-06-13 Michal Moskal <malekith@nemerle.org>
21516         * icall.c: Make GetCorrespondingMethod/Constructor take
21517         MonoReflectionMethod method not MonoMethod. Removed
21518         MonoType.GetCorrespondingField, and make
21519         MonoGenericType.GetCorrespondingField take name not
21520         MonoClassField.
21522 2005-06-13  Michal Moskal <malekith@nemerle.org>
21524         * reflection.c (field_encode_signature, encode_locals):
21525          Make sizes of buffers for types larger (for big generic types).
21526          (create_generic_typespec,
21527          mono_reflection_sighelper_get_signature_local,
21528          mono_reflection_sighelper_get_signature_field):
21529          Add asserts for too small buffers.
21531 2005-06-15  Martin Baulig  <martin@ximian.com>
21533         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21534         if our parent is not a dynamic type.
21536 2005-06-15  Martin Baulig  <martin@ximian.com>
21538         * class-internals.h (MonoTypeNameFormat): New enum.
21540         * class.c
21541         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21542         (mono_type_get_full_name): Removed.
21543         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21544         argument instead of the boolean's.
21546         * icall.c (ves_icall_System_MonoType_getFullName):
21547         Added `gboolean assembly_qualified'.    
21549         * reflection.h
21550         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21552         * reflection.c (mono_reflection_parse_type): Parse the new type
21553         name format.
21555 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21557         * icall.c: no need to convert from utf16 to utf8 and then back again
21558         after the call to GetLogicalDrives.
21560 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21562         * icall.c: frombase64. Fix problems exposed by new tests.
21564 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21566         * icall.c: added internal calls for converting char [] and strings in
21567         base64 into byte [].
21569 2005-06-10  Martin Baulig  <martin@ximian.com>
21571         * class.c (mono_class_create_generic_2): Read the nested classes
21572         from the metadata rather than from `gklass->nested_classes' since
21573         `gklass' might not be initialized yet.
21575 2005-06-09  Duncan Mak  <duncan@novell.com>
21577         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21578         all public headers. Fixes #74919.
21580 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21582         * domain.c: The key for proxy_vtable_hash is now a pointer
21583         array. Added new GHashFunc and GCompareFunc functions for this.
21585         * class.h: The list of interfaces in MonoRemoteClass is known in
21586         advance and can't grow (we create a new MonoRemoteClass if needed),
21587         so now the interface array can be allocated together with
21588         MonoRemoteClass.
21589         
21590         * object.c: Added a new method create_remote_class_key.
21591         Fixed mono_remote_class so it does not depend on
21592         mono_upgrade_remote_class.
21593         Removed extend_interface_array.
21594         Added new method clone_remote_class(), which makes a copy of a remote
21595         class and adds a new interface or class to it.
21596         mono_upgrade_remote_class() now creates a new remote class (or gets
21597         it from the cache) if an vtable upgrade is needed. In this way
21598         we make sure that other objects sharing the same remote class
21599         don't get the new vtable with unwanted interfaces.
21600         
21601         * object-internals.h:
21602         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21603         
21604         * marshal.c: Track changes in mono_upgrade_remote_class().
21606 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21607         * icall.c: Add runtime methods for obtaining members of inflated
21608         class, which were created from supplied non-inflated members. It
21609         is used in internal Get{Method,Constructor,Field} methods in
21610         System.Type
21612 2005-06-09  Martin Baulig  <martin@ximian.com>
21614         * reflection.c
21615         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21617 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21618         * reflection.c (mono_image_basic_init): Define
21619         Version in MonoDynamicAssembly. 
21620         
21621 2005-06-08  Martin Baulig  <martin@ximian.com>
21623         Fix #75136.
21625         * loader.c
21626         (mono_method_signature_full): New public method; takes a
21627         `MonoGenericContext *'.
21628         (find_method): Use mono_method_signature_full() and pass the
21629         klass'es context to it.
21631         * class.c (mono_class_is_inflated_method): Use
21632         mono_method_signature_full() and pass the context to it.
21634 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21636         * object.c: add proper locking in mono_remote_class_vtable(),
21637         fixes possible memory corruption.
21639 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21641         * marshal.c (mono_remoting_marshal_init): set
21642         initialized after initialization.
21644 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21646         * locales.c : hush.
21648 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21650         * object.c (extend_interface_array): fix really silly
21651         memory corrupting / comparison bug.
21653 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21655         * reflection.c: Functions added to support the creation
21656         of CustomAttributeData, which includes Attribute data
21657         used by ReflectionOnly methods.
21659         * reflection.h:  mono_reflection_get_custom_attrs_data and
21660          mono_custom_attrs_data_construct added (functions exposed).
21662          * icall.c: Added mono_reflection_get_custom_attrs_data
21663          as icall.
21664         
21665 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21667         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21668         lupus's request.
21670 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21672         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21674         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21675         dynamic DllImportAttribute.
21677         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21678         dynamic DllImportAttribute.
21680         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
21681         Fixes #75162.
21683 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21685         * threads.c: avoid segfault when an unstarted thread is aborted.
21687 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
21689         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
21690         Returns the name and version of the runtime for reporting.
21692 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21694         * appdomain.c: bump corlib version.
21695         * object-internals.h: new field in MonoReflectionAssembly.
21697 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21699         * object-internals.h: Carlos forgot to add this field.
21701 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21703         * icall.c: Added create_version to create instances
21704         of Version of MonoReflectionAssemblyName. This change helps
21705         the AssemblyName tests to keep running fine.
21706         
21707 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
21708   
21709         * object.c (mono_method_return_message_restore): A somehow less
21710         intrusive fix for #75138.
21712 2005-06-03  Raja R Harinath  <rharinath@novell.com>
21714         * object.c (mono_method_return_message_restore): Fix computation
21715         of expected number of out args.
21717 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21719         * reflection.c (mono_image_get_method_info): Fix the case when the
21720         charset is empty.
21722 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
21724         * object.c: Added missing null check in
21725           mono_method_return_message_restore.
21727 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21729         * reflection.c (mono_image_get_method_info): Handle the case when
21730         dllentry is empty.
21732 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
21734         * object.c: When creating the vtable for a proxy, take into account
21735         all inherited interfaces, not only the ones registered in
21736         iclass->interfaces. This fixs bug #74996.
21737         Also, in mono_method_return_message_restore, verify that the array
21738         of out args has the expected lengh.
21740 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21742         * socket-io.c: update the timeout in Poll when the call is interrupte.
21744 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21746         * socket-io.c: support abort/suspend in Select_internal after last
21747         change.
21749 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21751         * threadpool.c: remove warning.
21753 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21755         * icall.c:
21756         * socket-io.[ch]: Select_internal uses poll() now when available, thus
21757         removing the 1024 limit from select(). Runtime part of the fix for
21758         bug #71203.
21760 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21762         * socket-io.c: when resolving the addresses for the same
21763         host returned by gethostname(), get the local IPs from the interface
21764         list. Loopback addresses are discarded if the are interfaces up with
21765         non-loopback ones. Fixes bug #63265.
21767 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
21769         * appdomain.c, verify.c, object-internals.h, reflection.c:
21770         bumped corlib number to 36, and added new extra_flags field
21771         to ReflectionMethodBuilder and friends.  Fixes #75060.
21773 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
21775         * gc.c: register a new weak link only if the object is non-null
21776         (fixes bug#75047).
21778 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21780         * culture-info.h : short time pattern too.
21782 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21784         * culture-info.h : expand long time pattern string length.
21786 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21788         * culture-info-table.h : update (more French date format; #72788).
21790 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
21792         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
21793         the method is static. Fixes #75029.
21795 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
21797         * reflection.c: Update the table_idx field of method builders after
21798         saving the module, since it can change. This is a workaround for
21799         bug #74914. 
21801 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21803         * culture-info-table.h : update (additional French date format).
21805 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
21807         * icall.c (ves_icall_type_Equals): Revert last change.
21808         
21809         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
21811         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
21813 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
21815         * class-internals.h: Added executioncontext_class field to 
21816         MonoDefaults structure.
21817         * domain.c: Cache System.Threading.ExecutionContext class in 
21818         mono_defaults.
21819         * object.c: Capture the ExecutionContext for asynchroneous calls in
21820          mono_async_result_new.
21821         * object-internals.h: Added execution_context and original_context 
21822         fields to MonoAsyncResult. Added execution_context to MonoThread.
21823         * security-manager.c|.h: Added mono_get_context_capture_method to 
21824         return the capture method (if required by the security manager or by
21825         the framework version used).
21826         * threadpool.c: Apply capture (if present) ExecutionContext in 
21827         mono_async_invoke and revert to original context after it completes.
21829 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21831         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21833 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21835         * culture-info-table.h : zh-CHT related workaround.
21837 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21839         * marshal.c (emit_marshal_custom): Add some error checking and call the
21840         methods in the ICustomMarshaler interface. Fixes #74875.
21841         
21842         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
21843         native->managed wrappers.
21845 2005-05-12  Martin Baulig  <martin@ximian.com>
21847         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
21848         here and use the loader lock.
21850         * mono-debug.c: Properly lock when the debugger is not attached.
21851         (mono_debug_init): Release the initial lock if we're not running
21852         in the debugger.
21854 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21856         * marshal.c (emit_marshal_custom): Pass through NULL values without
21857         calling the custom marshalling routines.
21859         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
21860         conversion in structures. Fixes #74882.
21862 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
21864         * culture-info-table.h : zh-* cultures were missing.
21866 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
21868         * threads.c: Added a new event background_change_event which is signaled
21869         when a thread changes its background mode.
21870         Moved here several checks previously done in managed code. The checks
21871         require the thread lock, and using the thread lock in managed code
21872         can result in deadlocks.
21873         Merged Start_internal and Thread_internal into a single method. Now 
21874         Thread_internal does all work of creating and starting a thread.
21875         Added icalls for setting and getting the state of the object. Moved from
21876         managed code to avoid locking there.
21877         Added wait_for_tids_or_state_change() which is called instad of
21878         wait_for_tids when waiting for non-backround threads to end. This method
21879         will return if one of the threads ends or the background_change_event
21880         is signaled.
21881         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
21882         the background mode. This method signals the background_change_event
21883         event.
21884         * icall.c:
21885         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
21886         removed Start_internal.
21887         
21888 2005-05-11  Martin Baulig  <martin@ximian.com>
21890         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
21891         to order of some fields to get proper alignment on 64-bit machines.
21893 2005-05-11  Martin Baulig  <martin@ximian.com>
21895         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
21896         changes as they're broken and completely fuck up the debugger.
21898         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
21900 2005-05-10  Martin Baulig  <martin@ximian.com>
21902         * reflection.c (mono_reflection_generic_class_initialize): Don't
21903         call mono_class_setup_parent() here.
21905 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21907         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
21908         send/receive timeout use an integer in milliseconds. We were using a
21909         struct timeval.
21911 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21913         * locales.c:
21914         (internal_get_cultures): reserve the first slot of the array for the
21915         InvariantCulture, which will be filled in managed code.
21917 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
21919         * reflection.c (mono_image_fill_module_table): Initialize the
21920         GENERATION field as well.
21922 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21924         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
21925         Monitor.Enter on the object.
21927 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
21929         * threads.c: Enable the wait for running threads when exiting.
21930         * icall.c: Suspend all threads before exiting.
21932 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
21934         * assembly.c (mono_assembly_load_reference): Fix warning.
21936 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21938         * threadpool.c: changed the default number of threads per cpu. From now
21939         on, the default will be 20 + (5 * number of cpus) instead of 50.
21941 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
21943         * loader.c (mono_method_get_signature_full): Add locking here.
21945 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
21947         * appdomain.c: Moved methods for parsing and freeing assembly
21948         names to assembly.c.
21949         * assembly.c, domain-internals.h: Created public methods for parsing
21950         assembly names. Fixed mono_assembly_load_with_partial_name:
21951         it now finds the best match, taking into account the version,
21952         token and culture specified in the partial name. Also return
21953         the latest version if no version information is specified.
21955 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
21957         * threadpool.c: replace check for SocketAsyncCall class.
21959 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21961         * threadpool-internals.h:
21962         * Makefile.am: added threadpool-internals.h
21964         * threadpool.c: call mono_unhandled_exception on exceptions not handled
21965         that happen in threadpool threads (tested on MS).
21966         (mono_thread_pool_remove_socket): new function that dispatch any pending
21967         AIO call on a socket that is closing. By now only epoll really needs it,
21968         as select/poll wake up when the socket closes.
21971         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
21973 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
21975         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
21977 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
21979         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
21981 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
21983         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
21984         has an abort request, convert it into a suspend request.
21986 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
21988         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
21989         warning for the usage of `UnmanagedFunctionPointerAttribute' which
21990         is not supported yet.
21992 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21994         * image.c: register assemblies loaded from data (bundles) in the loaded
21995         assemblies hash. Fixes bug #74772.
21997 2005-04-29  Martin Baulig  <martin@ximian.com>
21999         * class.c (mono_type_get_name_recurse): Update to the new naming
22000         schema from the latest .NET 2.x beta2.
22001         (mono_class_setup_vtable_general): If we're a generic instance,
22002         copy the vtable from our generic type definition and inflate all
22003         the methods in it.
22005         * loader.c (find_method): Update to the new naming schema from the
22006         latest .NET 2.x beta2.
22008 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22010         * class.c (mono_class_init): Add a mono_loader_unlock to the
22011         #74734 fix.
22013 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22015         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22016         suspend_all_other_threads () call for the time being, since it can hang.
22018         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22019         the background threads to exit, since it can also hang.
22021         * class.c (mono_class_init): Applied patch from Ankit Jain 
22022         (radical@gmail.com). Avoid pending init errors when a field refers
22023         to a nested class using a typeref. Fixes #74734.
22025         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22026         this for dynamic modules.
22028 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22030         * threads.c: don't wait for threads that are in the process of aborting
22031         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22032         and waiting for background threads to finish. This makes xsp and
22033         mod-mono-server exit without random length delays and/or hangs.
22035 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22037         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22039 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22041         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22042         dynamic types to prevent infinite loops. Fixes #74727.
22044         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22045         ..._is_assignable_to.
22047 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22049         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22051 2005-04-25  Martin Baulig  <martin@ximian.com>
22053         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22055         * domain.c
22056         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22058         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22060         * reflection.c (build_compressed_metadata): Set metadata header
22061         version to 2.0.
22063 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22065         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22066         number into an integral and a decimal part. Fixes #70473.
22068         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22070 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22072         * culture-info-table.h : reflected the latest locale-builder output.
22074 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22076         * threadpool.c: check for SuspendRequested too when deciding if
22077         mono_thread_interruption_checkpoint should be called.
22079 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22081         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22082         * threads.c: remove interruption_mutex and use Interlocked instead. When
22083         suspending all the threads, wait for all the suspended events at once.
22084         If we're shutting down and get an APC that is going to be queued,
22085         call mono_thread_execute_interruption immediately, as the thread might
22086         be sleeping on a pthread condition or mutex.
22088         * icall.c: call mono_runtime_set_shutting_down before suspending the
22089         threads.
22091         Fixes bug #74693. And now xsp is happier when exiting.
22093 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22095         * loader.c (mono_stack_walk): Fix #74690.
22097 2005-04-22  Martin Baulig  <martin@ximian.com>
22099         * mono-debug.h (MonoDebugMethodJitInfo): Added
22100         `MonoDebugMethodJitInfo *jit'.
22102         * mono-debug.c (mono_debug_read_method): Cache the
22103         MonoDebugMethodJitInfo in `address->jit'.
22104         (mono_debug_free_method_jit_info): New public method.
22106 2005-04-22  Martin Baulig  <martin@ximian.com>
22108         * class.c (mono_class_is_assignable_from): Disallow
22109         type parameter -> interface.
22111 2005-04-21  Dick Porter  <dick@ximian.com>
22113         * threads.c (mono_thread_create): Turn an assertion into an error.
22115 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22117         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22118         
22119         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22120         Fix some gcc 4.0 warnings.
22122 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22124         * file-io.c: fix alt dir separator char on unix systems
22125         and cleanup (fixes bug #71214).
22127 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22129         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22130         a call to a remote domain, since the method may be an
22131         interface method in the client domain. This fixes bug #74192.
22133 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22135         * threadpool.c: recv/send are now performed before going back to managed
22136         code to save one transition.
22138 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22140         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22142         * metadata/threadpool.c: removed hack to workaround the bug above.
22144         Fixes bug #74618.
22146 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22148         * reflection.c reflection.h: Fix handling of parameter defaults in
22149         dynamic methods. Also fixes handling of parameter attributes.
22150         Fixes #74609.
22152         * mono-debug.c (mono_debug_close_image): Fix warning.
22154 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22156         * socket-io.h: replaced old unused field with new 'blocking'.
22157         * threadpool.c: restore socket blocking state on windows(tm).
22159 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22161         * icall.c: don't return the codebase in the AssemblyName[] returned by
22162         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22163         * object-internals.h: Removed FIXME (fields were presents) and fixed
22164         versioncompat declaration.
22166 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22168         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22169         not closed, so don't cleanup when it happens.
22171 2005-04-13  Chris Toshok  <toshok@ximian.com>
22173         * mono-debug-debugger.h: change prototype for
22174         mono_debugger_lookup_type.
22176         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22177         this function, although it should probably be named
22178         mono_debugger_init_type.
22180 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22182         * threadpool.c: fix non-AIO case.
22184 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22186         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22187         the built-in profiler to measure just JIT compilation times.
22189 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22191         * threadpool.c: the epollfd might be closed by another thread at
22192         any time, so ignore EBADF at treat it as a "we're closing" sign.
22194 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22196         * threadpool.c: release the semaphores with a count equals to the number
22197         of working threads in both IO and regular pools. Fixed typo that messed
22198         up the count of IO pool threads. Don't initialize the pipe handles if
22199         we're using epoll.
22201 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22203         * threadpool.c: some systems don't like a NULL when deleting the socket
22204         from epoll.
22206 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22208         * threadpool.c: fix semaphore allocation.
22210 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22212         * threadpool.c: added epoll() based implementation for asynchronous IO
22213         that is used instead of the default poll() when available.
22214         It can be disabled by setting MONO_DISABLE_AIO.
22216 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22218         * threadpool.c: windows needs 'closesocket' and instead of returning
22219         0 when the stream is closed while in select, it returns -1. Fixes bug
22220         #74573.
22222 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22224         * class.c (class_compute_field_layout): Fix the regression caused by
22225         the previous try.
22227 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22229         * threadpool.c: separate pool for socket async. IO.
22230         * threadpool.h: mono_max_worker_threads is not a global any more.
22232 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22234         * class.c (class_compute_field_layout): Fix #74549.
22236 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22238         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22239         use 2 connected sockets instead.
22241 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22243         * mono-config.c: Add new entry point for mkbundle
22244         mono_config_parse_memory. 
22246 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22248         * threadpool.c: removed another unused function.
22250 2005-04-08  Ankit Jain  <radical@corewars.org>
22252         * reflection.c (get_default_param_value_blobs): Add 'types'
22253         parameter to get the types encoded in the constant table.
22254         (mono_param_get_objects): Use the type from the constant table,
22255         not the type of the parameter, when creating default values.
22256         Handle null default values correctly.
22258 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22260         * file-io.c:
22261         * file-io.h:
22262         * threadpool.c:
22263         * threadpool.h:
22264         * icall.c:
22265         * socket-io.c: removed dead code for async IO.
22267 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22269         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22271         * threadpool.c: intercept socket async. calls and pass them to a thread
22272         that is polling and dispatching the job items to the threadpool as
22273         socket become ready. Fixes bugs #71217, #71933.
22275         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22276         between char and short/ushort arrays.
22278         * socket-io.c: remove dead code.
22280 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22282         * locales.c,
22283           icall.c : removed InternalToUpper_Comp() and
22284           InternalToLower_Comp().
22286 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22288         * char-conversions.h : The tables were incorrectly generated. Should
22289           be generated against invariant culture.
22291 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22293         * object.c (mono_runtime_invoke_array): Fix return value when 
22294         passing pre-created valuetype objects to ctors.
22296         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22297         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22298         Fixes #74338.
22300 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22302         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22303         only used with --security and hides the wrong corlib version error.
22305 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22307         * class.c: Changed mono_class_name_from_token so that types
22308         outside of a namespace don't have an initial period.  Improved
22309         the g_warning message used in _mono_class_get when loading
22310         fails.
22311         * assembly.c: In mono_assembly_load_reference, when an assembly
22312         can't be found, "No such file or directory" is misleading and
22313         unhelpful because a few paths were checked for the presence of
22314         the assembly.  When that happens (ENOENT), display a nicer
22315         message indicating the directories that were searched.  In all
22316         cases, the warning is made easier to read for non-hackers.
22318 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22320         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22321         project/solution.
22322         * appdomain.h|domain.c: Removed inline from functions.
22323         * appdomain.c: Reduced warnings when compiling on windows.
22324         * icall.c: Fixed output_debug declaration to gunichar2*.
22325         * mono-config.c: Reduced warnings when compiling on windows.
22326         * rand.c: Added missing "windows.h". Added missing return value.
22327         * rawbuffer.c: Added missing winsock2.h for windows.
22328         * sysmath.h: Added mono-compiler.h header to allow/ease 
22329         compilation with non-GCC compilers.
22330         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22331         Removed cast warnings.
22333         Adapted from the work of J Lothian (for VC6).
22335 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22337         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22338         from default_path.
22340 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22342         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22343         the 2.0 profile.
22345 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22347         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22348         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22349         stuff, and it would probably use $(prefix)/share rather than
22350         $(prefix)/lib.
22352 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22354         * console-io.c: added 2 includes that might be missing.
22356 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22358         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22359         profile.
22361         * reflection.c (create_custom_attr): Allocate the params array using
22362         alloca so it gets GC tracking.
22364 2005-03-23  Chris Toshok  <toshok@ximian.com>
22366         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22367         out some spew.
22369 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22371         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22372         changes to pick up any changes in prefix, etc.
22374 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22376         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22377         
22378         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22379         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22381 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22383         * class-internals.h object-internals.h class.c reflection.c: Extend the
22384         mono_lookup_dynamic_token () function to return the class of the
22385         token as well. 
22387         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22388         well. Fixes #73848.
22390 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22392         * security-manager.c: Skip inheritance checks for intra-corlib
22393         class inheritance and method overrides. This skips a lot of checks
22394         and (anyway) permissions cannot work until corlib is loaded.
22396 2005-03-23  Martin Baulig  <martin@ximian.com>
22398         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22399         MONO_TYPE_GENERICINST.  
22401 2005-03-23  Martin Baulig  <martin@ximian.com>
22403         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22405 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22407         * class.c: added locking comments to some functions.
22408         Cache the interface offsets arrays (saves about 20 KB
22409         of runtime memory in a typical app).
22410         Reduce the time overhead in mono_class_setup_supertypes ().
22412 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22414         * icall.c: speedup and fix leaks in GetMethodsByName and
22415         GetPropertiesByName.
22417 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22419         * reflection.c: some locking fixes.
22421 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22423         * metadata.c: added missing break in case statement.
22425 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22427         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22428         typedbyref return values. Fixes #73941.
22430 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22432         * security-manager.c|h: Added demandunmanaged method and 
22433         suppressunmanagedcodesecurity class to MonoSecurityManager.
22434         Renamed aptc class to allowpartiallytrustedcallers.
22436 2005-03-17  Martin Baulig  <martin@ximian.com>
22438         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22440 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22442         * file-io.c: disabled file async. IO using aio_*. It uses the
22443         threadpool now. Workaround for bug #73718.
22445 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22447         * assembly.h, mono-config.c: added code to deal with bundled configs
22448         for bundled assemblies.
22450 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22452         * *.c, private.h: cleanup, removing old private.h header file.
22454 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22456         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22457         and throw_on_unmappable_char attributes.
22459 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22461         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22462         _ProcessName_internal.
22464 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22466         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22467         #73631.
22469         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22470         are no longer used.
22472 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22474         * object.c (compute_class_bitmap): Add support for generics. Fixes
22475         #73527.
22477 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22479         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22481 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22483         * filewatcher.c: commented out the code for windows watcher, as we don't
22484         use it (we use the managed implementation instead).
22486 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22488         * object-internals.h (MonoThread): Remove 'unused1' field.
22490         * appdomain.c: Bump corlib version.
22492         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22494         * reflection.c (mono_reflection_create_runtime_class): Remove the
22495         AssemblyBuilder.Save optimization since it causes too many problems.
22497 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22499         * exception.c|h: Added mono_get_exception_reflection_type_load to
22500         create a ReflectionTypeLoadException object.
22501         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22502         to return NULL is a InheritanceDemand fails during reflection. Updated
22503         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22504         ReflectionTypeLoadException if an InheritanceDemand fails during 
22505         reflection. Added icall mapping for GetLinkDemandSecurity.
22506         * security-manager.c|h: Added ves_icall_System_Security_
22507         SecurityManager_GetLinkDemandSecurity internal call to return the
22508         class and methods permissions set for a LinkDemand. Removed unused
22509         fields in MonoSecurityManager.
22511 2005-03-10  Martin Baulig  <martin@ximian.com>
22513         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22514         it's a generic instance.
22516 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22518         * reflection.c (mono_get_object_from_blob): Applied patch from
22519         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22521         * class.c (mono_class_is_assignable_from): Another try at fixing 
22522         #73469 without breaking anything.
22524 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22526         * class.c: (mono_class_is_assignable_from): Revert the last changes
22527         since they don't work with generics.
22528         
22529         * class.c (mono_class_is_assignable_from): Fix build bustage.
22531         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22532         the managed IsAssignableFrom method. Fixes #73469.
22534         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22535         function.
22537 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22539         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22540         memory when the remoting callback does not sets the out arguments.
22541         Fixes #73007.
22543         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22544         by mistake.
22546         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22548         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22550         * appdomain.c: Bump corlib version.
22552 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22554         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22555         function.
22557         * threads.c (mono_thread_attach): Detect threads which are not started
22558         by the GC pthread wrappers.
22560 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22562         * icall.c: Added new icall for RNG.
22563         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22564         single handle on Linux to access /dev/urandom and fix #73183.
22566 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22568         * object.c: setting the new vtable in a transparent proxy object must
22569         not change the GC descriptor.
22571 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22573         * object.c: fixed compilation without GCJ support.
22574         * reflection.c: for runtime-created types ensure klass->has_references
22575         is correct (bug #73215).
22577 2005-03-02  Martin Baulig  <martin@ximian.com>
22579         * class.c (mono_class_is_assignable_from): Make this work if
22580         `oklass' is a generic instance; fixes #72831.
22582 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22584         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22585         with hasthis set.
22586         
22587         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22589         * marshal.c: Reorganize native->managed marshalling code to also use
22590         the emit_marshal_... functions.
22592 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22594         * object.c: typed allocs have issues with bitmap sizes > 30,
22595         so check for max_set >= 30.
22597 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22599         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22600         managed code. Fixes #73012.
22602         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22604         * metadata.c reflection.c: Load/Emit elem_mult as well.
22605         
22606         * metadata.h (MonoMarshalSpec): Add comment.
22608         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22610         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22611         num_elem to -1 if not given.
22613         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22615         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22616         given values.
22618 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22620         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22622 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22624         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22626         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22628 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22630         * object.c: generalized the reference bitmap creation
22631         and added hooks for the new GC.
22632         * class-internals.c: removed the gc_bitmap field from MonoClass.
22634 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22636         * domain.c: help the compiler to produce better code
22637         in mono_jit_info_table_find ().
22639 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22641         * object.c: make all allocations look typed.
22643 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22645         * socket-io.c: load Mono.Posix if it's not loaded already
22646         (fixes bug#73033).
22648 2005-02-24  Martin Baulig  <martin@ximian.com>
22650         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22651         * reflection.c (dup_type): Likewise.
22653 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22655         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22656         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22658 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22660         * domain.c, threads.c, object-internals.h: make the critical thread
22661         local vars use the fast access mode (even when we're compiled in
22662         a lib). Provide accessors to be used by the jit during codegen.
22664 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22666         * appdomain.c: Changed hook functios behavior to include
22667         support for the reflection only assemblies. Some icalls were changed
22668         to support the mentioned assemblies too. Signatures of static methods
22669         try_assembly_resolve and real_load now have an additional parameter:
22670         refonly.
22672         * assembly.c: General changes to mono_assembly_ methods to support
22673         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22674         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22675         suffix, to support an additional gbool parameter to specify whether
22676         the assembli is reflection only or not. Created some new hook functions 
22677         to add support for reflection only assemblies. Signatures of static 
22678         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
22679         have now an additional parameter: refonly.
22681         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
22682         indicating whether the assembly is reflection only or not.
22684         * exception.c: Add mono_get_exception_invalid_operation.
22686         * icall.c: Throw an InvalidOperationException when trying to invoke
22687         a property/method/event, or trying to set/get the value of a field.
22688         Also add an icall to retrieve the ref_only flag to the
22689         MonoReflectionAssembly.
22691 2005-02-23  Chris Toshok  <toshok@ximian.com>
22693         Part of fix for #72827.
22694         * mono-debug.c (mono_debug_add_method): add lexical block data to
22695         the info we write.  Kind of a hack at the moment - we copy the
22696         lexical block info from the MonoDebugMethodInfo to the
22697         MonoDebugMethodJitInfo here, before writing it.
22698         (mono_debug_read_method): read the lexical block info.
22700         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
22702         * debug-mono-symfile.h: add lexical block support.
22704         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
22705         support.
22707 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22709         * loader.c (mono_lookup_pinvoke_call): Fix warning.
22711         * object.c (mono_runtime_free_method): Call mono_free_method () and
22712         put the TODOs there.
22714         * loader.c (mono_free_method): Free up most memory allocated for 
22715         dynamic methods.
22717 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22719         * reflection.c: properly flag a Type argument to a
22720         named custom attr value (bug #72248).
22722 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22724         * reflection.c: reduce code duplication in named custom
22725         attribute encoding.
22727 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
22729         * reflection.c: properly encode custom attrs of type object
22730         (bug #72649).
22732 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22734         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
22736 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
22738         * socket-io.c: load System.dll if it's not loaded already
22739         (bug #72850 and #70477).
22741 2005-02-21  Martin Baulig  <martin@ximian.com>
22743         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22744         generic instances.
22746 2005-02-21  Martin Baulig  <martin@ximian.com>
22748         * reflection.c (mono_image_build_metadata): We also need to
22749         "fixup" the MethodImpl table after we computed the final method
22750         indices.  Call fixup_methodimpl() to do that.
22751         (fixup_methodimpl): New private method.
22753 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22755         * assembly.c: special case mscorlib.dll (bug#72536),
22756         patch from Carlos Alberto Cortez.
22758 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
22760         * threads-types.h threads.c: Fix build bustage.
22762         * threads.c: Use a union for long<->double conversions.
22764         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
22765         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
22767         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
22768         containing the checkpoint call with NOT_TAKEN.
22769         
22770         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
22771         checkpoint before pushing the arguments, so they won't have to be
22772         spilled to stack.
22774 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22776         * domain.c, assembly.c, domain-internals.h: make some data
22777         const and relocation-free.
22779 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
22781         * object.c, appdomain.c, class-internals.h: introduce the
22782         MonoClassRuntimeInfo structure to hold the info needed to
22783         use a class at runtime. Made mono_class_vtable() lock-free
22784         for all the appdomains.
22786 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
22788         * metadata-internals.h, image.c: introduce a per-image mempool to
22789         be used for memory that has the same lifetime as the image.
22791 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
22793         * domain.c: In mono_init_internal(), instead of selecting the first
22794         runtime version supported by an executable, get a list of all
22795         supported versions and select the one for which an mscorlib exists
22796         (since even if the runtime supports a given version, it doesn't mean
22797         that the framework for that version is installed).
22798         Modified get_runtimes_from_exe to support this behavior.
22799         In supported_runtimes, added information about additional system
22800         assembly versions.
22801         
22802         * assembly.c: Added support for more than one system assembly version
22803         per runtime version. Updated the assembly list.
22804         In mono_assembly_remap_version, removed the initial version check,
22805         since we don't know to which version we need to compare until we
22806         get the version set on which the assembly is based.
22807         Moved the code for loading corlib into the new method
22808         mono_assembly_load_corlib(), so it can be used by the initialization
22809         code.
22810         
22811         * domain-internals.h: Updated data structures and added declaration
22812         for mono_assembly_load_corlib.
22814 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22816         * reflection.c (resolve_object): Fix the creation of the signature in 
22817         the SignatureHelper case.
22819         * assembly.c (mono_assembly_remap_version): Fix binary search.
22820         
22821 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
22823         * class.c: Added inheritance check when a method is overloaded (from a
22824         virtual method or when implementing an interface) and when a class is
22825         inherited. Added functions to set a failure for a class and to 
22826         retreive the exception from a failure.
22827         * class-internals.h: Added fields to MonoClass to keep the exception
22828         information status for inheritance (or other exceptions) to be thrown
22829         later (i.e. not at load time).
22830         * object.c: Throw the inheritance SecurityException when a type is to 
22831         be created with either class or method inheritance violations.
22832         * reflection.c|h: Fix when getting declsec from a class. Removed 
22833         unrequired code for class. Improved sanity in parameter naming.
22834         * security-manager.c|h: Added functions to check for class and method
22835         inheritance.
22837 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22839         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
22840         and has_finalize in dynamic types as well.
22842 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
22844         * culture-info-table.h : fixed currency format for en-GB (and so on).
22846 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
22848         * gc.c: ensure the GC handles never have 0 as a value.
22850 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22852         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
22853         a pointer to a struct to unmanaged code. Fixes #72625.
22855 2005-02-16  Martin Baulig  <martin@ximian.com>
22857         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
22859 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22861         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
22863 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22865         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
22867         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
22868         UnmanagedFunctionPointerAttribute, use it for determining calling convention
22869         etc. Fixes #71471.
22871         * reflection.c (mono_custom_attrs_get_attr): New helper function.
22873         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
22875 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
22877         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
22878         changes to make the current context a field in MonoThread.
22880 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22882         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
22883         the last change.
22884         
22885         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
22886         extracted from mono_marshal_get_native_wrapper.
22888         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
22889         to create wrappers around native functions.
22891         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
22892         delegates for arbitrary function pointers. Fixes #71472.
22894 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22896         * threads.c: cleaned up the code a little.
22898 2005-02-15  Martin Baulig  <martin@ximian.com>
22900         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
22901         the data table.
22903         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
22904         allocate larger chunks if needed.
22906 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22908         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
22909         in by mistake.
22911 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
22913         * domain.c: keep the domains in an array and ensure the domain ids
22914         are kept small, so they can be used as indexes to domain-specific data
22915         with a small memory overhead.
22917 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22919         * icall.c: Handle byref types in Type icalls. Fixes #72544.
22921 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
22923         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
22925 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
22927         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
22929         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
22930         values.
22932         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
22933         
22934 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
22936         * domain-internals.h: add the hashtable here.
22938         * class-internals.h: Remove `info' from MonoMethod
22940         * domain.c: Add a new hashtable, jit_trampoline_hash
22942 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22944         * object.c: don't set the value of static fields
22945         (fixes bug#72494).
22947 2005-02-11  Martin Baulig  <martin@ximian.com>
22949         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
22950         (mono_debug_add_method): Silently ignore the method if it's too big.
22951         (mono_debug_add_type): Likewise.
22953 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
22955         * threads.c, appdomain.c: remove #ifdefs from the code.
22957 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
22959         * metadata-internals.h: Added flags to MonoAssembly to cache the most
22960         common security informations. This allows us to stay in unmanaged code
22961         when doing LinkDemand and it's special cases (except for the first 
22962         time for initialization). The flags a very much used with --security.
22963         * reflection.c|h: Added code to get declarative security attributes 
22964         for LinkDemand and InheritanceDemand. This required to refactor the
22965         existing code for Demand.
22966         * security-manager.c|h: Added new method fields for the special cases
22967         of LinkDemand.
22969 2005-02-10  Martin Baulig  <martin@ximian.com>
22971         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
22972         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
22974 2005-02-10  Martin Baulig  <martin@ximian.com>
22976         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
22977         debugging code; this is almost a complete rewrite.
22979         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
22981 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22983         * domain.c, object.h: expose mono_string_equal () and 
22984         mono_string_hash ().
22985         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
22986         it's implemented in managed code.
22988 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22990         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
22991         lo leak objects between appdomains.
22993 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22995         * assembly.c: old compilers compilation fix from 
22996         robertj@gmx.net (Robert Jordan).
22998 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23000         * class-internals.h: Little reminder for the future.
23002         * debug-helpers.c: Fix up wrapper_type_names
23004 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23006         * image.c, metadata-internals.h: when loading an image from a file,
23007         mmap all of it and use the same codepaths as when using a
23008         in-memory image: the code is simpler and we use less memory
23009         (both writable and readonly).
23011 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23013         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23014         API to alloc runtime data structures that need to be tracked by the
23015         GC and contain pointers.
23016         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23017         make the code more readable and eventually use a different GC.
23019 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23021         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23022         for out arguments.
23023         
23024 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23026         * object.c: In release_type_locks(), don't release the cctor lock
23027         if it has already been released. This fixes a crash in the
23028         thread5 test.
23030 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23032         * gc.c, marshal.c, icall.c: register a delegate for finalization
23033         only when the native function pointer has been allocated for it.
23035 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23037         * object.c: cleaned up some code, allocate objects that are
23038         pointer free with the atomic malloc variant. Allocate memory
23039         for static data from the mempool if it's pointer-free.
23040         Allocate the bounds array at the end of the array data, when needed.
23041         * object-internals.h, object.h: move a private function in a private
23042         header.
23043         * class.c: handle missing case in tracking references in fields.
23045 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23047         * class.c, class-internals.h: keep track if a type has
23048         reference fields in either the instance or static fields.
23050 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23052         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23053         and renamed to MonoRuntimeInfo. Added fields to store the expected
23054         framework assembly version. Changed mono_get_framework_version and
23055         mono_get_runtime_version for a single mono_get_runtime_info method.
23056         
23057         * assembly.c: Added method to remap system assembly versions to the
23058         current executing runtime version. Removed old mapping code.
23059         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23060         
23061         * icall.c, reflection.c: Track api changes.
23063 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23065         * loader.c (method_from_memberref): Improve error reporting,
23066         produce the class name instead of the typeref/typedef index. 
23068 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23070         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23072 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23074         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23075         stdcall and charset name mangling.  Reorganize the code and add
23076         some tracing stuff.
23078 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23080         * monodiet.c: More iters!
23082         * marshal.c: Iter usage.
23084         * icall.c: Iter usage.
23086         * object.c: Use iters.
23088         * debug-helpers.c: More iters
23090 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23092         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23093         under win32.
23095 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23097         * mono-debug-debugger.c: use iters
23099         * class.c, class-internals.h: mono_class_setup_events is static
23100         now
23102         * All callers: use iters
23104 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23106         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23107         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23109 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23111         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23113         * marshal.h: Add prototypes for ldfld/stfld_remote.
23115         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23116         this is called during startup.
23117         
23118 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23120         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23121         MonoThreadsSync struct private in monitor.c. Changed the way
23122         MonoThreadsSync is allocated so it's faster and there is no
23123         need to keep track of it with a finalizer and it uses less memory.
23124         This also finally allows us to allocate mono objects as ptrfree when
23125         there are no reference fields.
23127 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23129         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23130         disappearing link to the GC interface and use them to simplify
23131         the gchandles code.
23133 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23135         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23136         stfld_remote which call mono_load/store_field_new. This allows methods
23137         calling ldfld/stfld wrappers to be AOTed.
23139         * console-io.c: Include sys/filio.h under solaris.
23140         
23141         * console-io.c: Include curses.h if needed correctly.
23143 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23144         
23145         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23146         method->klass as well.
23148         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23150         * class.c (mono_class_init): Switch on lazy initialization of 
23151         methods.
23153         * class.c (mono_class_get_finalizer): Handle the case when the 
23154         finalizer is inherited.
23156 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23158         * console-io.c: <curses.h> is needed by term.h on solaris.
23160 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23162         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23163         mono_class_setup_properties where possible. Remove this ftn from
23164         the header file, and make it static.
23166 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23168         * loader.c: Add missing setup_... call.
23170         * class.c: Add missing setup_... calls.
23172         * class.c (mono_class_init): Switch on lazy initialization of 
23173         the generic vtable.
23174         
23175         * class.c (mono_class_init): Fix generics broken by the recent changes.
23177         * monodiet.c (handle_type): Add missing setup_... calls.
23179         * class.c: Back out garbage in previous patch.
23180         
23181         * class.c: Add missing setup_... calls.
23183         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23184         mono_class_setup_methods () if possible.
23186         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23188         * class-internals.h (MonoCachedClassInfo): New structure.
23190         * class.c: Initialize properties and events fields of MonoClass lazily.
23192         * class.c: Add infrastructure for lazily initializing the methods and
23193         vtable fields of MonoClass. Not yet used.
23195         * class.c (mono_class_get_finalizer): New helper function.
23197         * class.c: Add infrastructure for loading some class related data from
23198         an AOT file.
23200         * object.c: Add infrastructure for initializing the vtable from data
23201         in the AOT file.
23203         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23205         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23206         appropriate initialization function before accessing parts of the
23207         MonoClass structure.
23209         * marshal.c: Fix warnings.
23210         
23211         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23213         * mono-debug-debugger.c (get_exception_message): Use 
23214         mono_class_get_method_from_name_flags ().
23216 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23218         * reflection.c, appdomain.c: Replace a few manual searches that
23219         Zoltan missed. (Paolo approved this part of my initial patch).
23221 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23223         * profiler.c: disable recording statistical events at report time.
23225 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23227         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23228         to byteswap arrays of enum values, too (bug #72080).
23230 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23232         * appdomain.c (set_domain_search_path): Allow this to be called if
23233         domain->setup is not yet set.
23235         * loader.c (mono_method_get_index): New helper function.
23237         * loader.c reflection.c: Use mono_method_get_index ().
23239         * class.c (mono_class_get_method_from_name_flags): New helper method.
23241         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23242         this.
23244         * class.c (mono_class_get_cctor): New helper method.
23246         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23247         mono_class_get_method () to look up methods.
23249 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23251         * console-io.c: Fix the build, this should work on Windows.
23253 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23255         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23256         be set to null to keep things valid
23258 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23260         * icall.c: added Console 2.0 icalls.
23261         * Makefile.am: added console-io.[ch]
23262         * console-io.[ch]: internal calls for Console 2.0 API.
23264 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23266         * class.c: make sure we consider all the interfaces
23267         when calculating max_interface_id (bug found by
23268         Jeroen Frijters running ikvm).
23270 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23272         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23273         valuetype fields to null.
23275         * object.c (set_value): Ditto. Fixes #71669.    
23277 2005-01-31  Martin Baulig  <martin@ximian.com>
23279         * metadata.c (mono_metadata_has_generic_params): New public
23280         function; checks whether something is a generic method.
23282 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23284         * appdomain.c: fix infinite recursion when adding assemblies.
23286 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23288         * object.c: Fix small typo to return all items for Environment.
23289         GetCommandLineArgs.
23291 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23293         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23294         reflection.c: more domain and assembly-unload related fixes
23295         and memory leaks plugs.
23297 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23299         * 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.
23301 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23303         * loader.c (mono_method_signature): Make this method lazy
23304         (mono_get_method_from_token): Don't computate the signature here.
23306         Doing this saves quite a bit of memory. I got 90 kb on starting up
23307         monodoc. It should also save some disk reads on startup.
23309         * *: MonoMethod->signature might be NULL now. You *MUST* use
23310         mono_method_signature.
23312 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23314         * object.c (mono_runtime_get_main_args): Return an array from the
23315         current domain here. Fixes #71938.
23317 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23319         * monitor.c: formatting changes to comply with the
23320         mono coding style and remove #ifdefs from the code.
23322 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23324         * metadata.c, private.h: remove some unneeded data
23325         and use a more compact representation for table schemas.
23327 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23329         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23330         to get a better distribution in hash tables.
23331         * *.c: use mono_aligned_addr_hash() where appropriate.
23332         * assembly.c: make var static.
23334 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23336         * domain-internals.h: Put MonoJitInfo on a diet.
23338         * domain.c: Fix a warning.
23340 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23342         * gc.c: rework the gc handles code to reuse handles
23343         when freed.
23345 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23347         * domain.c: fixed long standing bug in mono_string_equal() which
23348         was brought to light with the ldstr changes.
23350 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23352         * reflection.c: Remove warning by adding missing include for marshal.h
23354 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23356         * domain.c, object.c: change the ldstr_table to hold
23357         MonoString* as keys: makes the runtime isinterned lookup
23358         faster and simplifies memory management.
23360 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23362         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23363         possible to add imperative security checks before calling the icall.
23364         * reflection.c: Return security attributes on the original MonoMethod
23365         (and not the wrapped one). This fix permissions on icalls.
23367 2005-01-25  Dick Porter  <dick@ximian.com>
23369         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23370         the check for mktime() support actually test the mktime() return
23371         value.  "Fixes" bug 71682, though the output is still different to
23372         MS.
23374 2005-01-25  Martin Baulig  <martin@ximian.com>
23376         * class.c (mono_class_is_assignable_from): Make this work for
23377         generic instances.
23379 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23381         * marshal.c (mono_string_utf8_to_builder)
23382         (mono_string_builder_to_utf16): We might not have ownership of the
23383         string. In thise case, we need to create a new buffer.
23385         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23386         be null, in which case, use the default capacity.
23388 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23390         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23391         GC events to the profiler.
23393 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23395         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23396         if you don't want the GC to run.
23398 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23400         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23401         start providing a GC API and keeping different implementations in
23402         their own file.
23403         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23405 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23407         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23408         mmap rather than allocating a huge buffer.
23409         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23410         above.
23412 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23414         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23415         and CheckExecutionRights.
23416         * reflection.c|h: Keep the index of the declarative security to be 
23417         used, instead of the pointer, when AOT compiler is used. Also add 
23418         class initialization when requesting demands.
23419         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23420         CheckExecutionRights. Both properties are now FALSE by default, and
23421         unmodifiable, unless the --security option is used.
23423 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23425         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23426         reflection.c: properly refcount images and assemblies, many leaks fixed.
23428 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23430         * threadpool.c: increase the timeout for threads in the thread pool to
23431         10s.  Fixes bug #67159.
23433 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23435         * class-internals.h: Sun's compiler insists on explicit
23436         signed on bit fields to handle then correctly.
23438 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23440         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23441         Make the size of the array fit only the number of invalid path
23442         chars that we have.
23444         * class.c (_mono_class_get): Improve the error reporting when a
23445         class referenced is not found, to assist debugging. 
23447 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23449         * threads.c: fix off-by-one error.
23450         * domain.c: free data allocated in the domain.
23452 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23454         * reflection.c (mono_method_body_get_object): Fill out exception info
23455         as well.
23457         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23458         structure.
23459         
23460 2005-01-19  Martin Baulig  <martin@ximian.com>
23462         * loader.c (mono_get_method_constrained): Make this work again.
23464 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23466         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23467         guint16 to match the managed side.
23469         * reflection.c (mono_reflection_body_get_object): Fill out local
23470         variables array.
23472         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23473         as well.
23475         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23476         'local_var_sig_token'.
23478 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23480         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23481         System.Drawing.
23483         * reflection.c (mono_method_body_get_object): Handle abstract and
23484         runtime methods.
23486 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23488         * marshal.c, loader.c, class-internals.h, reflection.c:
23489         store the emthod data for a wrapper in an array instead of a list.
23491 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23493         * marshal.c: change the code to allocate memory more
23494         conservatively for method wrappers.
23496 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23498         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23499         fields from MonoClass to the marshal info structure where they belong.
23501 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23503         * class.c, object.c, class-internals.h, marshal.c: rearrange
23504         some fields and tweak some types to lower memory usage.
23506 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23508         * threads.c (signal_thread_state_change): Handle the case when the
23509         target thread is the current thread.
23511         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23513         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23514         emit_ptr_to_object_conv. 
23516         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23517         marshalling. Fixes #71352.
23519 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23521         * metadata.h, blob.h: move table enum to blob.h so it can be included
23522         in any header.
23523         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23524         cut the size of MonoImage/MonoDynamicImage.
23526 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23528         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23530 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23532         * reflection.c, reflection.h, icall.c: add a function to check
23533         if an attribute type is defined for a metadata object.
23535 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23537         * object-internals.h: Added some needed fields from StringBuilder class.
23538         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23540 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23542         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23543         threads before shutting down the runtime.
23545         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23547 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23549         * object-internal.h, threads.c: implement stacksize and 
23550         parameterized thread start functionality (requires
23551         matching corlib). Marked broken code for later removal.
23553 2005-01-12  Martin Baulig  <martin@ximian.com>
23555         * class-internals.h (MonoGenericClass): Moved the `initialized'
23556         flag to MonoDynamicGenericClass, removed `init_pending'.
23557         (MonoGenericInst): Added `is_reference' flag.
23559 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23561         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23562         inside the MSDOS header. Fixes #71201.
23564         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23565         gc thread.
23566         (mono_domain_finalize): Ditto.
23568 2005-01-12  Martin Baulig  <martin@ximian.com>
23570         * class.c (mono_get_shared_generic_class): Use the cache for
23571         non-dynamic generic classes.
23573         * class-internals.h (mono_class_create_generic_2): Removed
23574         function prototype, this function is now static inside class.c.
23576         * class.c (mono_class_create_generic_2): Made this static, only
23577         call it from mono_class_init() and mono_class_setup_parent().
23578         (collect_implemented_interfaces_aux): Call mono_class_init() on
23579         the interfaces we collect.
23580         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23582 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23584         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23585         it a real thread handle.
23587         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23588         MonoJitExceptionInfo, since each catch clause needs its own variable.
23589         
23590 2005-01-11  Dick Porter  <dick@ximian.com>
23592         * image.c (mono_pe_file_open): New variant on mono_image_open()
23593         that does not set up the CLI metadata; used for FileVersionInfo so
23594         it can get the data for windows binaries too.
23595         
23596         * process.c (process_read_string_block): Don't read off the end of
23597         the StringTable block.
23599         These both fix bug 70766.
23601 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23603         * gc.c: set some fields to NULL at GC cleanup time.
23604         * threads.c: if we quit the main thread, call exit ().
23606 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23608         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23610 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23612         * threads.h, threads.c, object.c: added accessor and settor for
23613         main_thread. Handle it specially when exiting from it: wait
23614         for other foreground threads to exit.
23616 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23618         * process.c, verify.c: remove some bloat.
23620 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23622         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23623         the calling convention to cdecl under win32.
23625 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23627         * object.c (mono_object_get_size): New function to get the size of
23628         an object instance.
23630         * profiler.c (simple_allocation): Use above.
23632 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23634         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23635         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23636         get an appdomain by it's id and we can't assume the root's id is 0).
23637         * domain-internals.h: Change the function prototype to match.
23638         * icall.c: Change the icall table for AppDomain.
23640 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23642         * locales.c (string_invariant_compare_char): Only compute
23643         GUnicodeTypes in the case where we need them.  Test for ordinality
23644         first and return if so.
23646         From the commit:
23648                 /*
23649                  * FIXME: here we must use the information from c1type and c2type
23650                  * to find out the proper collation, even on the InvariantCulture, the
23651                  * sorting is not done by computing the unicode values, but their
23652                  * actual sort order.
23653                  */
23655 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23657         * loader.c: for P/Invoke methods, allow the "Internal" shared
23658         library name to refer to the calling process symbol namespace.
23660 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23662         * Makefile.am: Add the security manager to the build.
23663         * security-manager.c|h: New. Initialization of the security manager.
23665 2005-01-07  Dick Porter  <dick@ximian.com>
23667         * threads.c: 
23668         * monitor.c: Update thread state during Monitor and WaitHandle
23669         waits.  Fixes bug 71031.
23671 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23673         * reflection.c (property_encode_signature): Correctly handle when the
23674         property has no methods.
23676 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23678         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
23679         
23680         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
23681         fields from mb, not rmb. Fixes #71017.
23683         * marshal.c (emit_ptr_to_str_conv): Add support for 
23684         ByValTStr -> string conversion. Fixes #71015.
23686         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
23688         * mempool.c (mono_mempool_contains_addr): New helper function.
23690 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23692         * metadata.c (mono_metadata_compute_size): Fix size calculation of
23693         HasSematics encoded fields.
23694         
23695         * metadata.c (mono_type_to_unmanaged): Improve error message for 
23696         invalid string marshalling.
23698         * metadata.c: Fix warnings.
23699         
23700 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23702         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
23703         profiler support.
23705 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23707         * domain.c object.c domain-internals.h: Revert part of r38077 since the
23708         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
23709         tests.
23711 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
23713         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
23714         so methods containing these can be AOTed.
23716 2005-01-03  Martin Baulig  <martin@ximian.com>
23718         * loader.c (find_method): Removed the hack for generic instances.
23719         (method_from_memberref): If our parent is a generic instance, pass
23720         its generic type definition to find_method() and then inflate the
23721         method.
23722         (mono_get_method_constrained): Pass the generic type definition to
23723         find_method() and inflate the method later.
23725         * class-internals.h (MonoStats): Added `generic_class_count'.
23727         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
23728         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
23730         * reflection.c (mono_custom_attrs_from_params): Don't ignore
23731         generic type definitions.
23733 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
23735         * loader.c icall.c: Fix warnings.
23737 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
23739         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
23740         blittable types. Fixes #70864.
23742 2004-12-29  Martin Baulig  <martin@ximian.com>
23744         * icall.c
23745         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
23747         * reflection.c (mono_method_get_object): Create a
23748         "System.Reflection.MonoGenericMethod" for inflated methods; don't
23749         call mono_get_inflated_method().
23751         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
23753 2004-12-27  Martin Baulig  <martin@ximian.com>
23755         * class-internals.h (MonoMethod): Added `is_inflated' flag.
23756         (MonoMethodInflated): Added `inflated' field.
23758         * class.c (mono_class_inflate_generic_method): Don't really
23759         inflate the method here; just set the `is_inflated' flag in the
23760         MonoMethod.
23761         (mono_class_get_inflated_method): Actually inflate the method here
23762         if it's not already inflated; we use the MonoMethodInflated's new
23763         `inflated' field as a cache.
23765 2004-12-26  Martin Baulig  <martin@ximian.com>
23767         * class.c
23768         (inflate_generic_class): Moved some code out of inflate_generic_type().
23769         (mono_class_inflate_generic_method): If we're already inflated,
23770         inflate the context and use the declaring method; ie. make sure
23771         the declaring method of an inflated method is always the generic
23772         method definition.
23773         (mono_class_create_from_typedef): Create
23774         `class->generic_container->context->gclass'.
23776 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
23778         * metadata-internals.h, marshal.c, reflection.c: More
23779         MonoGHashTable->GHashTable.
23781         * domain-internals.h, class.c: Change MonoGHashTable's into
23782         GHashTables for some cases where no gc stuff is used
23784         All users: update apis
23786 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
23788         * metadata.c (builtin_types): Make this `const'. Makes this get
23789         put into the shareable section.
23790         (mono_metadata_init): Casts to make gcc happy.
23792 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
23794         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
23796 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
23798         * icall.c: Added an internal call to retrieve the position and length
23799         of assembly-level declarative security attributes (RequestMinimum, 
23800         RequestOptional and RequestRefuse). This is used by the Assembly class
23801         to re-create the corresponding permission sets.
23803 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
23805         * marshal.c: fix the stelemref wrapper to be type correct
23806         (and faster).
23808 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
23810         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
23811         to do key & 0x7fffffff. Hashtable already does this. It just
23812         results in longer code.
23814 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
23816         * appdomain.c: Bump corlib version.
23817         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
23818         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
23819         * reflection.c|h: Add functions to get declarative security infos
23820         (blob position and length) for assemblies, classes and methods.
23822 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
23824         * reflection.c: sort the constant table (bug #70693).
23826 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
23828         * object-internals.h, threads.c, domain.c: add accessors for
23829         the MonoThread and MonoDomain tls keys.
23831 2004-12-18  Martin Baulig  <martin@ximian.com>
23833         * class.c (inflate_generic_type): If we're inflating a generic
23834         instance, set `ngclass->context->container = context->container';
23835         ie. the container we inflated into.
23837         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23838         inflate_generic_type() changes.
23840 2004-12-17  Martin Baulig  <martin@ximian.com>
23842         * class-internals.h
23843         (MonoGenericClass): Replaced `MonoType *generic_type' with
23844         `MonoClass *generic_class'.  Removed `dynamic_info'; if
23845         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
23846         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
23848 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
23850         * exception.c (mono_exception_from_token): New helper function.
23852 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
23854         * assembly.c (mono_assembly_load_with_partial_name): Call 
23855         mono_assembly_loaded before invoking the preload hooks. Fixes
23856         #70564.
23858         * object-internals.h (MonoThread): Change culture_info and 
23859         ui_culture_info into an array.
23861         * threads.c: Cache culture info objects from more than one appdomain.
23863         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
23864         current UI culture.
23866 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
23868         * threads.h threads.c appdomain.c: Clear the culture_info field of
23869         all threads during unloading if they point to an object in the dying
23870         appdomain.
23872 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
23874         * culture-info.h (TextInfoEntry): New struct
23875         * object-internals.h: sync with managed
23876         * locales.c: fill the `text_info_data' field
23877         * culture-info-tables.h: update
23879 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23881         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
23882         collector.
23884 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
23886         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
23887         (ves_icall_ModuleBuilder_getMethodToken): Ditto
23889 2004-12-12  Martin Baulig  <martin@ximian.com>
23891         * mono-debug-debugger.c (write_type): If we're an enum and the
23892         builtin types have already been initialized, call mono_class_init().
23894 2004-12-11  Martin Baulig  <martin@ximian.com>
23896         * metadata.c (mono_metadata_load_generic_params): Added
23897         `MonoGenericContainer *parent_container' argument; automatically
23898         compute `container->is_method'; pass the correct owner to
23899         get_constraints().      
23901         * reflection.c (compare_genericparam): Sort the GenericParam table
23902         according to increasing owners. 
23904 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
23906         * profiler.c: allow disabling the default profiler.
23908 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
23910         * decimal.c, icall.c: allow disabling System.Decimal support.
23912 2004-12-09  Marek Safar <marek.safar@seznam.cz>
23914         * reflection.c: Add support for null attribute arguments.
23916 2004-12-09  Martin Baulig  <martin@ximian.com>
23918         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
23919         names to get rid of compiler warnings.
23921 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23923         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
23924         mono_marshal_load_type_info (). Fixes #69625.
23925         (mono_marshal_get_ptr_to_struct): Likewise.
23927 2004-12-08  Martin Baulig  <martin@ximian.com>
23929         * mono-debug.h: Bumped version number to 47.
23931         * mono-debug-debugger.c
23932         (mono_debugger_event_handler, mono_debugger_event): Take two
23933         guint64 arguments insteed of a gpointer and a guint32.  
23935 2004-12-08  Martin Baulig  <martin@ximian.com>
23937         * debug-mono-symfile.h
23938         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
23939         `address' to `native_offset'.
23941 2004-12-08  Martin Baulig  <martin@ximian.com>
23943         * class.c (mono_class_create_from_typespec): Only inflate if we
23944         either have `context->gclass' or `context->gmethod'.
23946 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23948         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
23950         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
23952         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
23954         * reflection.c (mono_assembly_get_object): Remove the workaround put
23955         in for the release.
23956         
23957         * appdomain.c: Use the corlib_internal field from MonoAssembly.
23959         * appdomain.c: Bump corlib version.
23961         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
23962         be visible in other appdomains.
23964 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
23966         * threads.c: Interlocked inc and dec for longs were messed up,
23967         use a KISS based impl for this. Fixes 70234
23969 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
23971         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
23973 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
23975         * icall.c: fix to follow policy not to allow struct
23976         arguments in icalls.
23978 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23980         * process.c: make the patch that handles spaces in file paths work
23981         on mono/windows too.
23983 2004-12-06  Martin Baulig  <martin@ximian.com>
23985         * class.c (mono_class_create_generic): Call
23986         mono_class_setup_supertypes() if we're dynamic.
23987         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
23989 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
23991         * object-internals.h: Add new fields to MonoThread.
23993         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23995         * icall.c threads-types.h threads.c: Add new icalls.
23997         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
23999         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24000         managed side.
24002         * appdomain.c: Bump corlib version.
24004         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24005         internal assemblies. Fixes #69181.
24007 2004-12-05  Martin Baulig  <martin@ximian.com>
24009         * class.c (mono_class_inflate_generic_signature): Make this a
24010         no-op if `context' is NULL or we don't have any type parameters;
24011         also copy `sentinelpos'.        
24013 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24015         * image.c: Add unbox_wrapper_cache.
24017         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24019         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24020         function generator.
24021         
24022         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24023         Fixes #70173.
24025         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24026         
24027 2004-12-04  Martin Baulig  <martin@ximian.com>
24029         * loader.c (mono_method_get_signature_full): New public function;
24030         like mono_method_get_signature(), but with an additional
24031         `MonoGenericContext *' argument.
24033         * class.c (mono_class_inflate_generic_signature): Formerly known
24034         as inflate_generic_signature(); make this public.
24036 2004-12-04  Martin Baulig  <martin@ximian.com>
24038         * metadata.c
24039         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24040         instead of a `MonoGenericContainer *'.  
24041         (mono_metadata_parse_array_full): Likewise.
24042         (mono_metadata_parse_signature_full): Likewise.
24043         (mono_metadata_parse_method_signature_full): Likewise.
24044         (mono_metadata_parse_generic_inst): Likewise.
24045         (mono_metadata_parse_generic_param): Likewise.
24046         (mono_metadata_parse_mh_full): Likewise.
24047         (mono_type_create_from_typespec_full): Likewise.
24049 2004-12-03  Martin Baulig  <martin@ximian.com>
24051         * class-internals.h (MonoGenericContainer): Replaced the
24052         `MonoGenericContext * pointer with a `MonoGenericContext'
24053         structure and made it the first element.
24055 2004-12-03  Martin Baulig  <martin@ximian.com>
24057         * class.c
24058         (inflate_generic_type): Set the `context->container' when creating
24059         a new MonoGenericContext.
24060         (mono_class_inflate_generic_method): Likewise.
24061         (mono_class_create_from_typespec): Just use `context->container'
24062         to get the container.
24064         * loader.c (method_from_methodspec): Set `context->parent' from
24065         `context->container' - and if that's a method container, use its
24066         parent.  Also set the `context->container' when creating a new
24067         MonoGenericContext.
24068         (mono_get_method_from_token): Use just `context->container' to get
24069         the container.
24071         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24072         `gclass->context->container'.
24074         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24075         the `context->container' when creating a new MonoGenericContext.
24077 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24079         * reflection.c (compare_genericparam): Sort params with identical
24080         owner by their number. Fixes gen-111 on sparc.
24082 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24084         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24085         around the domain changes.
24087         * appdomain.c (mono_domain_unload): Handle the case when the thread
24088         calling Unload is itself being aborted during unloading. Fixes #70022.
24090         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24092         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24093         checkpoint_func as an icall so it gets a wrapper.
24094         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24095         in the cross-appdomain wrappers too.
24097         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24099         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24101         * reflection.c: Fix some memory leaks.
24102         
24103 2004-12-02  Martin Baulig  <martin@ximian.com>
24105         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24107         * metadata.c (generic_class_cache): New static hashtable.
24108         (mono_metadata_lookup_generic_class): New public method.
24110 2004-12-02  Martin Baulig  <martin@ximian.com>
24112         * class.c (mono_class_create_from_typedef): Call
24113         mono_class_setup_parent() and mono_class_create_mono_type() before
24114         parsing the interfaces.
24116 2004-12-02  Martin Baulig  <martin@ximian.com>
24118         * metadata.c (generic_inst_cache): New static hashtable.
24119         (mono_metadata_lookup_generic_inst): New public function.
24120         (mono_metadata_inflate_generic_inst): New public function.
24121         (mono_metadata_parse_generic_inst): New public function.
24122         (do_mono_metadata_parse_generic_class): Use the new
24123         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24124         since this'll also use the cache.
24126         * reflection.c (mono_reflection_bind_generic_method_parameters):
24127         Use mono_metadata_lookup_generic_inst() to use the new cache.
24129         * class.c (inflate_mono_type): Use
24130         mono_metadata_inflate_generic_inst() to inflate a generic
24131         instance; this'll also use the new cache.
24133         * loader.c (method_from_methodspec): Use
24134         mono_metadata_parse_generic_inst() and
24135         mono_metadata_inflate_generic_inst() rather than parsing it
24136         manually, so we can use the new cache.
24138 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24140         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24141         the wait times out.
24143 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24145         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24146         iter->args based on whether parameters are passed in registers (i.e.
24147         MONO_ARCH_REGPARMS is defined)
24149 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24151         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24152         the exception message. Fixes #70070.
24153         (method_from_methodspec): Fix warnings.
24155 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24157         * process.c: (complete_path) return the path quoted
24159 2004-12-01  Martin Baulig  <martin@ximian.com>
24161         * class-internals.h (MonoGenericInst): New structure.
24162         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24163         `is_open' with `MonoGenericInst *inst'.
24164         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24165         `is_open' with `MonoGenericInst *inst'.
24167 2004-11-30  Martin Baulig  <martin@ximian.com>
24169         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24171         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24172         to `generic_class_cache'.
24174         * metadata.c
24175         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24176         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24177         (mono_generic_inst_is_valuetype): Renamed to
24178         mono_generic_class_is_valuetype().
24180         * class-internals.h
24181         (MonoGenericInst): Renamed to MonoGenericClass.
24182         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24183         (MonoClass): Renamed `generic_inst' to `generic_class'.
24184         (MonoGenericContext): Renamed `ginst' to `gclass'.
24186         * object-internals.h
24187         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24189         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24190         mono_reflection_generic_class_initialize().
24192         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24193         now known as "System.Reflection.MonoGenericClass".
24194         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24196 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24198         * class-internals.h: Added a flag field to MonoClass to cache the
24199         declarative security attributes actions associated with the class.
24200         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24201         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24202         applicable to the JITted method.
24203         * reflection.c|h: Added functions to extract (as flags) which security
24204         actions are available (declaratively) for a method, class or assembly.
24205         * metadata.c|h: Added functions to search the declarative security
24206         table in the metadata.
24207         
24208 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24210         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24211         EXPORTEDTYPES are already in the class name cache, so there is no
24212         need to add extra code here to look at them. Just removes a bit of
24213         cruft.
24215         (ves_icall_System_Environment_get_TickCount): No need for #if
24216         WINDOWS. We already have the code in io-layer.
24218 2004-11-28  Martin Baulig  <martin@ximian.com>
24220         * loader.c
24221         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24222         Fixes gen-112.cs.
24224 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24226         * assembly.c (do_mono_assembly_open): Instead of having a
24227         conditional WITH_BUNDLE, incorporate support for bundles here, by
24228         having a global `bundles' variable holding a pointer to the actual
24229         bundles. 
24231         (mono_register_bundled_assemblies): New API call used by the
24232         bundle code. 
24234         See mkbundle.1 for details.
24235         
24236 2004-11-27  Martin Baulig  <martin@ximian.com>
24238         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24239         the vtable for generic methods.
24241 2004-11-26  Martin Baulig  <martin@ximian.com>
24243         * metadata.c
24244         (mono_metadata_generic_method_hash): New public function.
24245         (mono_metadata_generic_method_equal): Likewise.
24247         * class-internals.h
24248         (MonoGenericContainer): Added `GHashTable *method_hash'.
24250         * reflection.c (ReflectionMethodBuilder): Added
24251         `MonoGenericContainer *generic_container'.
24252         (reflection_methodbuilder_to_mono_method): Don't create a new
24253         MonoGenericContainer each time we're called.
24254         (mono_reflection_bind_generic_method_parameters): Use
24255         `container->method_hash' to cache the results so we don't create a
24256         different method if we're called several times with the same
24257         arguments.
24259         * loader.c (method_from_methodspec): Use the new
24260         `container->method_hash' here, too.
24262 2004-11-26  Martin Baulig  <martin@ximian.com>
24264         * class.c (inflate_generic_signature): Correctly compute
24265         `res->has_type_parameters'.
24266         (mono_class_vtable): Use the `has_type_parameters' flag to
24267         determine whether we're a generic method.
24269         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24271 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24273         * object.c (mono_runtime_run_main): Fix a small memory leak.
24275 2004-11-25  Martin Baulig  <martin@ximian.com>
24277         * class.c (set_generic_param_owner): Fixed the loop.
24279 2004-11-25  Martin Baulig  <martin@ximian.com>
24281         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24282         generic methods.
24284 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24286         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24287         names. Fixes #69787.
24289 2004-11-24  Martin Baulig  <martin@ximian.com>
24291         * class.c (mono_class_create_generic_2): If we don't have a
24292         `ginst->parent', inflate `gklass->parent' to get our parent.
24294 2004-11-24  Martin Baulig  <martin@ximian.com>
24296         * reflection.c (compare_genericparam): Correctly sort the
24297         GenericParam table; fixes #69779.
24299 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24301         * reflection.c: When writing a PE file, don't create a huge
24302         buffer in memory. Just write the arrays we have to the file.
24303         This reduces memory usage.
24305         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24306         globally.
24308 2004-11-17  Martin Baulig  <martin@ximian.com>
24310         * class.c (mono_class_init): Don't setup `class->parent' for
24311         dynamic instances; moved this to mono_class_generic_2().
24312         (mono_class_create_generic): Also set `klass->inited' for dynamic
24313         generic instances.
24314         (mono_class_create_generic_2): Don't do anything for dynamic
24315         generic instances.  Set `klass->parent' here and also call
24316         mono_class_setup_parent() here. 
24318         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24319         `MonoType *parent' argument; set `ginst->parent' before calling
24320         mono_class_create_generic_2(), so we set the correct parent.
24322 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24324         * reflection.c: allow getting attributes from ModuleBuilder
24325         (used by ikvm).
24327 2004-11-17  Martin Baulig  <martin@ximian.com>
24329         * class.c (mono_class_create_from_typedef): If a type parameter is
24330         inherited from an outer class, set its owner to that class.
24332 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24334         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24335           for (int*) written size. This fixes bug #69592.
24337 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24339         * icall.c: Added IsAuthenticodePresnet internal call.
24340         * image.c|h: New function that check a MonoImage for an Authenticode
24341         signature in the certificate PE data directory.
24342         * security.c|h: New internal call to ask the runtime if an 
24343         Authenticode signature seems referenced in the PE header.
24345 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24347         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24349         * reflection.c (mono_image_create_pefile): Free the assembly streams
24350         after writing out the assembly file.
24352         * object.c (mono_runtime_run_main): Fix small memory leak.
24354         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24355         property access modifiers. Fixes #69389.
24357 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24359         * domain.c, object.c, object-internals.h, domain-internals.h,
24360         object.h, marshal.c: keep dynamic code info per domain.
24362 2004-11-15  Martin Baulig  <martin@ximian.com>
24364         * class.c (mono_type_get_name_recurse): Put type arguments in
24365         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24366         see bug #68387.
24368 2004-11-15  Martin Baulig  <martin@ximian.com>
24370         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24371         (mono_class_setup_vtable): When computing `the_cname' for a
24372         generic instance, don't include the namespace since we'd otherwise
24373         add it twice.
24375 2004-11-15  Martin Baulig  <martin@ximian.com>
24377         * class.c (mono_class_create_generic): Changed return type to void.
24378         (mono_class_create_generic_2): New public function; setup
24379         `class->method', `class->field' and `class->interfaces' here
24380         instead of in mono_class_init().
24382         * class.h (mono_class_create_generic): Moved to class-internals.h.
24384 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24386         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24387         rather than writing to memory, write to this file. Right now,
24388         we are just writting into a buffer, and copying that. However
24389         we can avoid the buffer later.
24391         (mono_dynamic_stream_reset): new function
24393         * icall.c, object-internals.h: update for the above.
24395 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24397         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24398         have been using gc'd memory. First it is slower, unlikely
24399         the comment in the source code said, secondly, it increases
24400         our footprint to do it in the gc.
24402         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24403         the method so that it does not have to copy to managed code.
24405 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24407         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24409 2004-11-12  Martin Baulig  <martin@localhost>
24411         * reflection.c (mono_image_create_token): Allow generic method
24412         definitions here, since they may appear in an `.override'; see
24413         gen-98/gen-99 for an example.
24415 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24417         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24418         #69365.
24420         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24421         descriptive.
24423 2004-11-11  Martin Baulig  <martin@ximian.com>
24425         * class.c (mono_class_setup_vtable): In an explicit interface
24426         implementation, the method name now includes the arity.
24428 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24430         * object.c (mono_array_full_copy): Fix warning.
24432 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24434         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24435         mono_class_get_method_from_name() instead.
24436         
24437         * class-internals.h: Added two new types of wrappers. 
24438         Added MonoRemotingTarget enum. Added new trampoline function type, which
24439         takes an additional MonoRemotingTarget value as parameter, so it is
24440         possible to request a trampoline for a specific target.
24441         
24442         * class.c: Added new mono_class_get_method_from_name() method.
24443         
24444         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24445         general remoting sinks and one specific for cross domain calls.
24446         
24447         * debug-helpers.c: Added new wrapper names.
24448         
24449         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24450         of a remote class.
24451         
24452         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24453         
24454         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24455         with several other methods (mono_marshal_get_xappdomain_dispatch,
24456         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24457         and others) can generate a fast remoting wrapper for cross domain calls.
24458         More information can be found in docs/remoting.
24459         Other changes: Removed mono_find_method_by_name, and used
24460         mono_class_get_method_from_name instead.
24461         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24462         is stored in the remoting invoke hashtable.
24463         
24464         * marshal.h: published the new method for getting the xdomain wrapper,
24465         and also added a method for getting the adequate wrapper for a given
24466         method and target.
24467         
24468         * object-internals.h, object.c: Added a couple of methods for capying and
24469         cloning arrays.
24470         Modified mono_install_remoting_trampoline, which takes the new remoting
24471         trampoline that has a remoting target as parameter.
24472         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24473         will return the most suitable vtable for the target.
24474         Added mono_remote_class_vtable, which returns the vtable of a remote class
24475         (which can be the normal remoting vtable or the xdomain vtable).
24476         
24477         * threads.c: the xdomain invoke and dispatch wrappers must also be
24478         protected against interruptions.
24480 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24482         * icall.c: use memmove in BlockCopyInternal when the source and
24483         destination arrays are the same.
24485 2004-11-09  Martin Baulig  <martin@ximian.com>
24487         * class-internals.h (MonoGenericContainer): Removed `method' and
24488         `signature', replaced them with `is_method' and `is_signature'
24489         flags.  Added `context'.
24491         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24492         instead of a `MonoGenericContainer *'.
24494         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24495         for dynamic type parameters.
24496         (mono_metadata_load_generic_params): Setup `container->context'.
24498         * reflection.c (mono_reflection_setup_generic_class): Setup
24499         `tb->generic_container->context'.
24500         (do_mono_reflection_bind_generic_parameters): Use
24501         mono_class_inflate_generic_type() to correctly inflate types,
24502         rather than using our own hack just for MONO_TYPE_VAR.
24504 2004-11-09  Martin Baulig  <martin@ximian.com>
24506         * class.c (mono_class_inflate_generic_method): Small fix; don't
24507         crash here.
24509         * icall.c
24510         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24511         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24512         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24513         (ves_icall_Type_BindGenericParameters): Likewise.
24514         (ves_icall_Type_get_IsGenericInstance): Likewise.
24515         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24516         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24517         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24518         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24520 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24522         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24523         assembly versions and public key tokens. Fixes #69113.
24525 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24527         * metadata.c: fix bug introduced with the type cache changes
24528         on 2004-11-06.
24530 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24532         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24533         the MonoClass pointer instead of the token in exception clauses.
24534         * reflection.c: updates for the above and make the code not depend
24535         on the structure of MonoExceptionClause.
24537 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24539         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24540         Add support for dynamic assemblies. Fixes #69114.
24542         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24544 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24546         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24547         since most only those methods use it. the code member of
24548         MonoMethodPInvoke was dead, so that can be removed too. Also,
24549         remove inline_count (again, not used), and move slot so that it
24550         can share bits with some other flags. This saves 8 bytes in the
24551         structure and gives us about 50 kb back for mcs helloworld.cs
24553         * *.[ch]: Do naming changes for the above.
24555         * loader.c (mono_method_get_header): Lazily init the header
24556         on first access.
24557         (mono_get_method_from_token): don't init the header here
24558         (mono_free_method): the header may never be allocated
24560         Overall, this saves 150 kb of unmanaged allocations
24561         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24562         memory at runtime.
24563         
24564         * loader.c, loader.h (mono_method_get_header): new accessor.
24566         * *.[ch]: use the above method. Prepares us to lazily load
24567         the header.
24569         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24570         three warnings, which are actual bugs (see 69206).
24572         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24573         unused. Saves a cool 4 bytes / method.
24575 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24577         * metadata.c (builtin_types): Add types for System.Object here.
24578         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24579         for a class or valuetype from klass->this_arg or klass->byval_arg.
24581         On mcs for a hello world, this gets us down from 21836 MonoType's
24582         to 14560.
24584         (mono_metadata_free_type): Account for the above change.
24586 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24588         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24589         exception instead of asserting if name is null.
24590         (ves_icall_System_AppDomain_GetData): Ditto.
24592 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24594         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24595         EnumBuilder.
24597         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24598         Return NULL when the domain does not have entry_assembly set.
24600         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24601         Add a 'resource_modules' argument.
24602         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24604         * reflection.c (mono_reflection_create_runtime_class): Move setting
24605         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24606         for enums too.
24608         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24609         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24610         Throw an ArgumentNullException if 'ptr' is null.
24612         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24613         assemblies here. Fixes #69020.
24615 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24617         * reflection.c (build_compressed_metadata): Fix the previous patch for
24618         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24619         the stack.
24621 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24623         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24624         the cultures is false. Fixes #69090.
24626         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24627         detected by valgrind.
24628         
24629         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24630         TypeResolve multiple times for the same type. Fixes #65577.
24632 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24634         * marshal.c: Avoid using ldftn to call managed functions. It is
24635         much slower than just a call.
24637         * reflection.c (mono_module_get_object): free the basename we
24638         allocate here from glib.
24639         
24640         * reflection.c (ensure_runtime_vtable): make sure to free
24641         overrides.  Also, we were allocating an array of MonoMethod not an
24642         array of MonoMethod*.
24644         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24646         * image.c (mono_image_close): free image->guid here.
24648 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24650         * reflection.c: Fix some spec conformance issues with the PE file
24651         structures so mcs compiled apps run on the Net 2.0 beta.
24653 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24655         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24656         Implement this. Fixes #67264.
24658         * debug-helpers.h debug-helpers.c marshal.c: Move 
24659         mono_find_method_by_name to debug-helpers.c.
24661 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24663         * object.c (mono_release_type_locks): type_initialization_hash is
24664         a GHashTable.
24666         * reflection.c object.c object-internals.h: Fix warnings.
24668         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24669         without accessors. Fixes #61561.
24671         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24672         application base from the root domain if not set. Fixes #65641.
24673         (mono_runtime_init): Fix warning.
24675 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24677         * appdomain.c: call mono_thread_pool_init.
24678         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
24679         of worker threads based on the number of CPUs and the environment
24680         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
24681         for non-windows (windows) systems.
24683 2004-10-27  Chris Toshok  <toshok@ximian.com>
24685         * mono-debug-debugger.c (write_class): don't call mono_class_init
24686         here, as even with the check for (!klass->init_pending), we get
24687         into a situation where we're hitting cycles in class
24688         initialization.  Fixes #68816.
24690 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
24692         * image.c: Avoid overwriting values in the loaded_images_hash when an
24693         assembly is loaded multiple times. Fixes #61152.
24695         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
24696         so multiple satellite assemblies for the same name can be loaded.
24697         Fixes #68259.
24699         * mono_domain_assembly_preload: Actually return the loaded assembly, 
24700         not NULL.
24702         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
24703         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
24705         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
24706         pending finalizers are not invoked after the appdomain has been 
24707         unloaded. Fixes #67862.
24709 2004-10-22  Martin Baulig  <martin@ximian.com>
24711         * mono-debug-debugger.c
24712         (mono_debugger_runtime_invoke): Don't box valuetypes.
24714 2004-10-22  Chris Toshok  <toshok@ximian.com>
24716         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
24717         don't hide private methods.
24719 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
24721         * icall.c: Allows the runtime to "share" (when known) the public key
24722         token of an assembly. This avoid the need to recalculate the token 
24723         (from the public key) in managed code.
24725 2004-10-21  Chris Toshok  <toshok@ximian.com>
24727         * debug-helpers.c (append_class_name): argh, revert last patch.
24728         
24729 2004-10-21  Chris Toshok  <toshok@ximian.com>
24731         * debug-helpers.c (append_class_name): use '+' as the delimiter,
24732         not '/', so that it matches what the debugger uses to look up
24733         methods.
24735 2004-10-21  Martin Baulig  <martin@ximian.com>
24737         * mono-debug-debugger.c (mono_debugger_throw_exception): New
24738         public method; this is called each time an exception is thrown and
24739         allows the debugger to use exception catch points.
24741 2004-10-21  Martin Baulig  <martin@ximian.com>
24743         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
24744         the stack pointer and the exception object in some struct and pass
24745         that to the debugger.
24747 2004-10-21  Chris Toshok  <toshok@ximian.com>
24749         * mono-debug-debugger.c (do_write_class): add instance/static
24750         event support.  We don't expose "raise" or "other" yet.
24751         (event_is_static): new method.
24753 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
24755         * mono-debug-debugger.c
24756         (mono_debugger_handle_exception): Remove
24757         bogus return value for fussy compilers.
24759 2004-10-20  Martin Baulig  <martin@ximian.com>
24761         * mono-debug-debugger.c
24762         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
24763         (mono_debugger_handled_exception): Likewise.
24765 2004-10-20  Martin Baulig  <martin@ximian.com>
24767         * mono-debug-debugger.h (MonoDebuggerEvent): Added
24768         MONO_DEBUGGER_EVENT_EXCEPTION.
24770         * mono-debug-debugger.c (mono_debugger_handle_exception): New
24771         public function to send the debugger a notification for an
24772         exception and inform it about a catch/finally clause.
24774 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
24776         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
24777         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
24778         fix 2.95 build. 
24780         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
24782 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
24784         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
24785         marshalled as [In,Out]. Fixes #58325.
24787 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
24789         * reflection.c (mono_method_body_get_object): Implement some fields.
24791 2004-10-12  Martin Baulig  <martin@ximian.com>
24793         * reflection.c (mono_reflection_bind_generic_parameters): Small
24794         fix, correctly retrieve our parent from a generic instance.
24796 2004-10-12  Martin Baulig  <martin@ximian.com>
24798         * metadata.c (mono_metadata_generic_param_equal): We always have
24799         an owner.
24801         * class.c
24802         (mono_class_from_generic_parameter): We need to have an owner.
24803         (my_mono_class_from_generic_parameter): Likewise.
24805         * reflection.c (mono_reflection_setup_generic_class): Renamed to
24806         mono_reflection_create_generic_class() and added a new
24807         mono_reflection_setup_generic_class().  
24808         (mono_reflection_initialize_generic_param): If we're a nested
24809         generic type and inherited from the containing class, set our
24810         owner to the outer class.
24812 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
24814         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
24816         * reflection.c (mono_method_body_get_object): New function to create
24817         a MethodBody object.
24819         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
24821 2004-10-11  Martin Baulig  <martin@ximian.com>
24823         * metadata.c (_mono_metadata_type_equal): Renamed to
24824         do_mono_metadata_type_equal() and made static.
24826 2004-10-11  Martin Baulig  <martin@ximian.com>
24828         * appdomain.c: Bump corlib version number to 28.
24830 2004-10-10  Martin Baulig  <martin@ximian.com>
24832         * class-internals.h
24833         (MonoGenericInst): Added `MonoGenericContainer *container'.
24834         (MonoGenericMethod): Likewise.
24835         (MonoGenericContext): Likewise.
24836         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24838         * metadata.c
24839         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
24840         (do_mono_metadata_parse_generic_inst): Likewise.
24841         (mono_metadata_parse_type_full): New public method.  This is the actual
24842         mono_metadata_parse_type() implementation - with an additional
24843         `MonoGenericContainer *' argument.
24844         (mono_metadata_parse_array_full): Likewise.
24845         (mono_metadata_parse_signature_full): Likewise.
24846         (mono_metadata_parse_method_signature_full): Likewise.
24847         (mono_metadata_parse_mh_full): Likewise.
24848         (mono_type_create_from_typespec): Likewise.
24849         (mono_metadata_interfaces_from_typedef_full): New public method;
24850         this is similar to the other _full() methods, but we take a
24851         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
24852         (mono_metadata_parse_generic_param): Take an additional
24853         `MonoGenericContainer *' argument and lookup the MonoGenericParam
24854         from that container.
24855         (mono_metadata_generic_param_equal): New static method to compare
24856         two type parameters.
24857         (_mono_metadata_type_equal): New static method; takes an
24858         additional `gboolean signature_only' argument - if true, we don't
24859         compare the owners of generic parameters.
24860         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
24861         with a TRUE argument - do a signature-only comparision.
24863         * loader.c: Use the new _full() methods and pass the
24864         MonoGenericContainer to them.
24866         * object-internals.h (MonoReflectionTypeBuilder): Added
24867         `MonoGenericContainer *generic_container' field.
24868         (MonoReflectionMethodBuilder): Likewise.
24870 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
24872         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
24873         case initial images of dynamic assemblies.
24875         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
24877         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
24879         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
24880         length of event->other array.
24881         (typebuilder_setup_events): Ditto.
24883         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
24884         'assembly_by_name' and add an 'assemblies' list.
24886         * assembly.h assembly.c: Add a new search hook for determining whenever
24887         an assembly is already loaded. Use this instead of searching in the
24888         loaded_assemblies list.
24890         * domain.c appdomain.c: Implement the new search hook so loaded 
24891         assemblies are now scoped by appdomain. Fixes #67727.
24893 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
24895         * threads.c (mono_thread_attach): Initialize synch_lock field so
24896         mono_thread_detach works again.
24898         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
24899         'lib' too. Fixes #63130.
24901 2004-10-06  Jackson Harper  <jackson@ximian.com>
24903         * culture-info-tables.h: regenerated.
24905 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
24907         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
24908         implemented by other interfaces in the result. Fixes #65764.
24909         
24910         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24911         Handle unloadable modules without crashing.
24913         * image.c (load_modules): Revert the previous patch since modules must
24914         have a fixed index inside the array.
24915         
24916         * image.c (load_modules): Don't include native modules in the modules
24917         array.
24919 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
24921         * reflection.h: Add param_defaults field.
24923         * reflection.c: Add support for parameter defaults in dynamic methods.
24924         Fixes #64595.
24926         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
24927         an empty string when a type has no namespace. Fixes #64230.
24929 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
24931         * tabledefs.h: Added "internal" security actions to support non-CAS
24932         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
24933         Note: they do not seems to be used anymore in 2.0 (new metadata format)
24935 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
24937         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
24938         constructor of abstract class. Fixes #61689.
24940 2004-10-04  Martin Baulig  <martin@ximian.com>
24942         * class-internals.h (MonoGenericContainer): New type.
24943         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
24944         `MonoGenericContainer *generic_container'.
24945         (MonoClass): Replaced `gen_params' and `num_gen_params' with
24946         `MonoGenericContainer *generic_container'.
24948         * metadata.c (mono_metadata_load_generic_params): Return a
24949         `MonoGenericContainer *' instead of a `MonoGenericParam *';
24950         removed the `num' argument.
24952 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
24954         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
24955         for dynamic images.
24957         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
24958         machine fields.
24960         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
24962         * reflection.c: Save pe_kind and machine values into the generated
24963         image file.
24965         * appdomain.c: Bump corlib version number.
24967         * object-internals.h: Reorganize layout of LocalBuilder.
24969         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
24970         New helper function.
24972         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
24973         created MonoType for dynamic types. Fixes #66180.
24975 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
24977         * threadpool.c: the ares hashtable needs a critical section around it.
24978         this prevents some nasty segfaults
24980 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
24982         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
24983         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
24984         bug 67324).
24985         
24986 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24988         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
24989         
24990 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
24992         * image.c: Always canonicalize image file names, to avoid loading
24993         the same assembly twice when referenced using a relative path.
24995 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24997         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
24999         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25001         * marshal.c: Fix warnings.
25003 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25005         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25006         attempting to marshal the delegate_trampoline as the method_addr.
25007         This patch has a static hashtable of marshalled delegates so that 
25008         we can map delegate_trampoline addresses back to delegates.  This
25009         allows a delegate passed to managed code to be passed back into native
25010         code.  Fixes #67039
25012 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25014         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25016         * reflection.c (method_encode_code): Align method headers properly.
25017         Fixes #66025.
25019 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25021         * marshal.c: In the runtime invoke wrapper, reset the abort
25022         exception if it is cached. This avoids the automatic rethrowal of 
25023         the exception after the catch of the wrapper. Also check for pending
25024         interruptions before calling the managed method. This is done using
25025         the new method emit_thread_force_interrupt_checkpoint, since the
25026         normal checkpoint method is ignored when running the invoke wrapper.
25027         * object.c: If the abort exception is rethrown, set the abort_exc
25028         field of the thread, so it will be rethrown aftere every catch.
25029         * threadpool.c: Only run an interruption checkpoint if what has been
25030         requested is a stop of the thread (aborts will be ignored).
25031         * threads.c: By default, a thread will now never be interrumped while
25032         running the runtime invoke wrapper (this ensures that runtime_invoke
25033         will always return to the caller if an exception pointer is provided).
25034         There is a new special method mono_thread_force_interruption_checkpoint()
25035         to force an interruption checkpoint even if running a protected
25036         wrapper, which is used by the same runtime invoke wrapper to do a check
25037         at a safe point.
25039 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25041         * object.c, object-internals.h: Implemented mono_release_type_locks,
25042         which releases the cctor locks held by a thread.
25043         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25044         by a thread. Added mono_thread_exit() method to be used to safely stop
25045         a thread.
25047 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25049         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25050         Move null check before dereference.  Avoid indexing beyond the end
25051         of the 'modules' array.
25053 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25055         * metadata-internals.h (MonoImage): Add module_count field.
25056         * image.c (load_modules): Set image->module_count.
25057         (mono_image_load_file_for_image): Use image->module_count.
25058         * reflection.c (mono_image_load_module): Append to image->modules array 
25059         of dynamic assembly.
25060         (mono_module_get_object): Fix loop to actually increment index.
25061         Use image->module_count.
25062         * assembly.c (mono_assembly_load_references): Use image->module_count.
25063         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25064         Likewise.
25066 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25068         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25069         Avoid assert on generic types.
25071 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25073         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25075         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25077         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25078         function to convert a MarshalSpec structure to its managed counterpart.
25080         * reflection.c: Fix warnings.
25081         
25082         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25083         field.
25085         * icall.c (mono_create_icall_signature): Fix build.
25087 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25089         * icall.c: Add MakePointType icall.
25091         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25092         warnings.
25094 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25096         * threadpool.c: reuse allocated slots in the queue.
25098 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25100         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25102         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25104         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25105         previous change.
25107         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25108         ThrowOnUnmappableChar.
25110         * icall.c (ves_icall_Type_GetPacking): New icall.
25112 2004-09-24  Martin Baulig  <martin@ximian.com>
25114         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25116 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25118         * appdomain.c:
25119         (mono_domain_set): allow setting a domain that is being unloaded.
25120         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25121         being unloaded.
25123 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25125         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25126         the GetCustomAttributes icall.
25128 2004-09-23  Martin Baulig  <martin@ximian.com>
25130         * object-internals.h (MonoReflectionGenericParam): Replaced
25131         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25132         with `guint32 attrs'.
25134 2004-09-23  Martin Baulig  <martin@ximian.com>
25136         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25138 2004-09-23  Martin Baulig  <martin@ximian.com>
25140         * object-internals.h (GenericParameterAttributes): New enum.
25142 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25144         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25145         
25146         * class.c (init_events): Fill out event->other field.
25148         * class.c: Fix warnings.
25150         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25152 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25154         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25155         walk which doesn't supply the IL offset.
25157 2004-09-22  Martin Baulig  <martin@ximian.com>
25159         * reflection.c (mono_reflection_setup_internal_class): If we're
25160         System.ValueType, System.Object or System.Enum, set
25161         `klass->instance_size' and create the vtable.
25162         (mono_reflection_create_internal_class): If we're an enum type,
25163         get the base class from our current corlib.
25165 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25167         * reflection.h (MonoResolveTokenError): New type.
25169         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25170         icall.
25172         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25174 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25176         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25177         Support also calling constructors, but only for already allocated objects.
25179 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25181         * reflection.c (type_get_qualified_name): If the klass is null
25182         return the typename to avoid a NullRefEx.
25183         (encode_cattr_value): Get the qualified name of the boxed type,
25184         not the underlying enumtype.  Fixes #62984.
25186 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25188         * marshal.c: Fix problems with previous checkin.
25190 2004-09-21    <vargaz@freemail.hu>
25192         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25193         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25195         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25197 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25199         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25200         should only return a type for pointers, arrays, and passbyref types.
25201         Fixes bug #63841.
25203 2004-09-21  Martin Baulig  <martin@ximian.com>
25205         * domain.c (mono_debugger_check_runtime_version): New public
25206         function.
25208         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25210 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25212         * reflection.c: Added missing sort to the declarative security 
25213         attributes table. MS implementation stops seeing the attributes if the
25214         token number regress in the table (as shown by ildasm and permview).
25216 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25218         * object-internals.h (MonoReflectionModule): Add 'token' field.
25219         
25220         * reflection.c (mono_reflection_get_token): Add support for Module
25221         and Assembly.
25222         (mono_module_get_object): Set 'token' field.
25223         (mono_module_file_get_object): Set 'token' field.
25225         * icall.c: Add new Assembly and Module icalls.
25227         * appdomain.c: Bump corlib version.
25229 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25231         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25232         tokens of metadata objects.
25234         * reflection.h reflection.c (mono_reflection_get_token): New function
25235         to obtain the token of a metadata object.
25237         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25239 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25241         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25242         
25243         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25245 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25247         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25248         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25249         AssemblyBuilder to access the permissions set in the class lib.
25250         * reflection.c: Added security attributes encoding step in 
25251         mono_image_build_metadata.
25252         * tabledefs.h: Added new security actions defined in 2.0:
25253         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25255 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25257         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25258         macro parameter.
25260 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25262         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25263           finalized. There where random SIGSEVs at program termination, when
25264           an object being finalized was trying to do a string comparison and
25265           the current culture was already finalized.
25267 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25269         * threads.c: call thread_cleanup before finishing the thread if we get
25270         there.
25272 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25274         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25275         assemblies from the parent. Fixes #65665.
25277 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25279         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25280         modifiers.
25282 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25284         * reflection.h: add prototype for mono_get_dbnull_object
25285         * reflection.c: add prototypes for get_default_param_value_blobs 
25286         and mono_get_object_from_blob for fussier compilers
25288 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25290         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25291         false deadlock checks in class initialization.
25293 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25295         * image.c (mono_image_addref): Fix comment.
25297         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25298         possible.
25300 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25302         * reflection.c (mono_param_get_objects): Modified to return
25303         ParameterInfo.DefaultValue object.
25305         (get_default_param_value_blobs):
25306         (mono_get_object_from_blob):
25307         (mono_get_dbnull_object): New helper routines. 
25309         * object.c (mono_get_constant_value_from_blob): New helper routine
25310         carved out from get_default_field_value ()
25312         * object-internals.h (mono_get_constant_value_from_blob): Added
25313         function declaration.
25315 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25317         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25318         referenced assemblies. Fixes #62135.
25320         * exception.h exception.c (mono_get_exception_file_not_found2): New
25321         helper function.
25323 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25325         * class.h class.c: Add mono_type_get_underlying_type ().
25327 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25329         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25330         Fix GetTypes() to support dynamically created assemblies.
25332 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25334         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25335         
25336         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25337         previous patch.
25339         * reflection.h reflection.c loader.c: Allow dynamic construction of
25340         pinvoke methods. Fixes #65571.
25341         
25342         * reflection.c (mono_reflection_get_type): Revert previous change since
25343         it causes regressions.
25345 2004-09-08  Martin Baulig  <martin@ximian.com>
25347         * class.c (class_compute_field_layout): Don't call
25348         mono_class_layout_fields() for open generic instances.
25350 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25351         * threads.c appdomain.c: fix typo in GC macro
25353 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25355         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25356         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25358 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25360         * image.c (mono_image_close): Applied patch from 
25361         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25362         assembly is loaded multiple times from data.
25363         
25364         * image.c (mono_image_open): Fix warning.
25366 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25368         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25369         once. Fixes #58334.
25370         
25371         * reflection.c (mono_reflection_create_runtime_class): Initialize
25372         klass->nested_classes. Fixes #61224.
25374 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25376         * threads.c: sched_yield() on exit, to allow threads to quit.
25378 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25380         * object.c (mono_unhandled_exception): Remove leftover debug code.
25382 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25384         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25386 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25388         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25389         
25390         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25392 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25394         * marshal.c (emit_marshal_array): Null terminate string arrays.
25395         
25396         * marshal.c (raise_auto_layout_exception): Fix warning.
25398         * reflection.c (mono_param_get_objects): Initialize the default value
25399         with DBNull.Value, not null. Fixes #62123.
25401 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25403         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25404         throw an exception with a cute explanation.
25406 2004-09-06  Dick Porter  <dick@ximian.com>
25408         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25409         Close the new process's thread handle, as we don't use it.  The
25410         handle stays around forever otherwise.
25412 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25414         * object.c (arith_overflow): Fix warning.
25416         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25417         calling conventions in method refs. Fixes #65352.
25419         * reflection.c: Fix warnings.
25421 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25423         * icall.c: Add a new icall for Array.Clear
25425 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25427         * object.c: When allocating an array, we have to throw
25428         an overflow exception if any of the lengths are < 0.
25430 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25432         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25433         properly. Also move implementation of string array marshalling to 
25434         managed code. Fixes #42316.
25436 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25438         * assembly.c: provide more information when loading an assembly fails.
25440 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25442         * filewatcher.c: don't expect the development fam package to be
25443         installed.
25445 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25447         * marshal.c: Make a copy of the signature cookie since it will be
25448         freed by the caller.
25449         
25450         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25452         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25454         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25455         marshal specs.
25457         * marshal.c: More refactoring.
25458         
25459         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25460         smaller functions.
25462 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25464         * object.c: In mono_message_invoke, fill the output parameter array after
25465           calling the managed method (it was done before the call). This fixes
25466           bug #59299.
25468 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25470         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25471         as well.
25473 2004-09-02  Martin Baulig  <martin@ximian.com>
25475         * class.c (mono_class_instance_size): Don't allow generic type
25476         definitions or open generic instances.
25477         (mono_class_array_element_size): If we're a value type, call
25478         mono_class_instance_size() on the original class.
25480         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25481         handle generic instances.
25483         * mono-debug-debugger.c (write_type): Handle generic instances
25484         like classes.
25486 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25488         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25489         the allocation request fails. Fixes #65089.
25491         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25492         
25493         * object.c (mono_runtime_free_method): New function to free a dynamic
25494         method.
25496         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25497         delegate trampoline.
25499         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25500         with hasthis as dynamic,
25502         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25504         * domain.c (mono_jit_info_table_remove): New function to remove an
25505         entry from the jit info table.
25507         * class-internals.h (MonoMethod): Add 'dynamic' field.
25509         * loader.c: Fix warnings.
25511 2004-09-01  Martin Baulig  <martin@ximian.com>
25513         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25514         instead of mono_debugger_lock() because the latter one is a no-op
25515         unless running in the debugger.
25517 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25519         * class.c (class_compute_field_layout): Classes with auto-layout or
25520         reference fields are not blittable.
25521         
25522 2004-09-01  Dick Porter  <dick@ximian.com>
25524         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25525         mono_image_get_filename() to get the assembly location.
25527         * icall.c:
25528         * metadata.h: Fix compile warnings
25530 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25532         * class.c (class_compute_field_layout): System.Object is blittable.
25534         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25535         as in/out. Fixes #59909.
25537 2004-09-01  Martin Baulig  <martin@ximian.com>
25539         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25540         mono_metadata_generic_inst_is_valuetype() if we're a generic
25541         instance to check whether our underlying type is a reference type.
25543 2004-09-01  Martin Baulig  <martin@ximian.com>
25545         * metadata.c (mono_type_size): If we're a generic instance, call
25546         mono_class_value_size() for value types.
25548 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25550         * marshal.c: Implement more custom marshalling functionality. Fixes
25551         #64915.
25553 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25555         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25557 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25559         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25561         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25563         * icall.c: Fix some warnings.
25565         * threads.c (abort_appdomain_thread): Fix unref errors.
25566         (mono_thread_current): Fix THREAD_DEBUG define.
25568 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25570         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25572         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25574 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25576         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25577         string arrays.
25579 2004-08-28  Martin Baulig  <martin@ximian.com>
25581         * metadata.c
25582         (mono_metadata_generic_inst_is_valuetype): New public function.
25584         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25585         mono_metadata_generic_inst_is_valuetype() if we're a generic
25586         instance to check whether our underlying type is a valuetype.
25588 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25590         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25591         #63768.
25593 2004-08-25  Martin Baulig  <martin@ximian.com>
25595         * loader.c (mono_get_method_from_token): Abstract methods can also
25596         be generic and thus have type parameters.
25598         * metadata-internals.h
25599         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25601         * reflection.c (mono_image_get_generic_param_info): Don't create a
25602         metadata row, just add an entry to the `gen_params' array.
25603         (build_compressed_metadata): Sort the `gen_params' array and then
25604         actually create the metadata.
25606 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25608         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25610 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25612         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25614 2004-08-24  Martin Baulig  <martin@ximian.com>
25616         * class.cs (mono_class_is_subclass_of): Like an interface, a
25617         generic instance also derives from System.Object.
25619 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25621         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25622         custom modifiers to be in any order. Fixes #61990.
25624 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25626         * object.c: Register mono_object_new_fast icall.
25627         
25628         * object.c (mono_class_get_allocation_ftn): Return to calling
25629         mono_object_new_fast, since it seems faster to compute the object 
25630         size in unmanaged code than passing it as a parameter.
25632         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25634         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25635         this function with Boehm as the oom handler, so we don't have to check
25636         the result of GC_malloc.
25638         * object.c: Remove checks for oom.
25640         * object.h object.c (mono_class_get_allocation_ftn): New function to
25641         return the icall which can be used to allocate an instance of a given
25642         class. 
25644         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25646         * class-internals.h: Add 'enabled' field.
25648 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25650         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25652 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25653         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25654         value 0x0010.
25656 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25658         * appdomain.c: use the Tls function for appdomain too,
25659         at Zoltan's request. Actually return in mono_context_get
25661         * appdomain.c, profiler.c, threads.c: use __thread
25663 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25665         * appdomain.c threads.c: Call GC_CreateThread on windows.
25667         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25668         multiple libraries since this don't work on windows.
25670 2004-08-18  Martin Baulig  <martin@ximian.com>
25672         * class-internals.h
25673         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25674         MonoMethodHeader.
25676         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25677         MonoMethodNormal since we also need it for abstract and interface
25678         methods.
25680         * reflection.c
25681         (build_compressed_metadata): Sort the GenericParam table.
25682         (mono_image_create_token): Added `gboolean create_methodspec'
25683         argument; this is false when generating a MethodImpl token.
25684         (reflection_methodbuilder_to_mono_method): Abstract and interface
25685         methods may also have generic parameters.
25687 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
25689         * appdomain.c: thread local alloc
25691 2004-08-17  Martin Baulig  <martin@ximian.com>
25693         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
25695         * icall.c
25696         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
25697         argument.
25699         * class.c (mono_type_get_full_name): New public function.
25700         (mono_type_get_name): Don't include the type arguments.
25702 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
25704         * Makefile.am: Build static versions of libmetadata and libmonoruntime
25705         for inclusion into the mono executable.
25707 2004-08-16  Martin Baulig  <martin@ximian.com>
25709         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
25710         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
25712 2004-08-14  Martin Baulig  <martin@ximian.com>
25714         * class.c (dup_type): Also copy the `byref' field.
25716 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
25718         * reflection.c (create_dynamic_mono_image): Revert the last change 
25719         since it breaks bootstrap.
25721 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
25723         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
25725         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
25726         not free them with g_free.
25728 2004-08-11  Martin Baulig  <martin@ximian.com>
25730         * reflection.c (mono_reflection_setup_internal_class): Also call
25731         mono_class_setup_mono_type() if we already have a `tb->type.type'.
25733 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
25735         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
25736         called during default (first) AppDomain creation. Keep track of
25737         Evidence when loading assemblies.
25739 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25741         * opcodes.c, opcodes.h: reduce runtime relocations.
25743 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
25745         * culture-info.h, locales.c: fixes and chages to sue the new
25746         optimized format of the locale data.
25747         * culture-info-tables.h: regenerated.
25749 2004-08-06  Geoff Norton <gnorton@customerdna.com>
25750         
25751         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
25753 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
25755         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
25756         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
25757         * domain-internals.h: icall declaration.
25758         * icall.c: icall registration.
25759         * object-internals.h: New fields in MonoAssembly for CAS.
25761 2004-08-05  Duncan Mak  <duncan@ximian.com>
25763         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
25764         CEE_LDELEM_ANY.
25766 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25768         * reflection.c: fix to deal with object[] arrays in custom ctors
25769         (bug #62550).
25771 2004-08-05  Martin Baulig  <martin@ximian.com>
25773         * class.c (mono_class_array_element_size): Added support for
25774         generic instances and correctly handle "recursive" types.
25776 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
25778         * assembly.c: Fix warnings.
25780 2004-08-04  Martin Baulig  <martin@ximian.com>
25782         * class.c
25783         (mono_type_get_name_recurse): Added `gboolean include_arity'
25784         argument specifying whether or not we should include the generic
25785         arity in the type name.
25786         (_mono_type_get_name): New static function.
25787         (mono_class_setup_vtable): If we're a generic instance, don't
25788         include the generic arity in the names of explicit method
25789         implementations.        
25791 2004-08-03  Martin Baulig  <martin@ximian.com>
25793         * class.c (mono_type_get_name_recurse): Enclose the generic type
25794         arguments in `<', '>'.
25796 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25798         * gc.c: make GC warning messages use the trace API, they are just
25799         noise to most of the users.
25801 2004-08-03  Martin Baulig  <martin@ximian.com>
25803         * debug-mono-symfile.c (read_string): Correctly read the string.
25805 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
25807         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
25808         
25809         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
25810         icalls.
25811         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
25813 2004-07-30  Martin Baulig  <martin@ximian.com>
25815         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
25816         Reflect latest symbol writer changes.   
25818 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25820         * object.c: always create an object if null is passed
25821         to Invoke() where a valuetype is expected.
25823 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
25825         * marshal.c (mono_marshal_init): make managed
25826         signatures match native ones better for 64bits.
25828 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25830         * appdomain.c: hack to build correctly the private bin path on windows.
25831         Fixes bug #61991.
25833 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25835         * assembly.c: Load mscorlib from the correct framework directory
25836           (mono/<version>/mscorlib.dll).
25837         * appdomain.h: Added prototypes for new functions.
25838         * internals.h: Added some prototypes.
25839         * domain.c: When initializing the runtime, get from the executable and
25840           the configuration files the runtime version that the app supports.
25841           Added support methods for reading app.exe.config. Added list of versions
25842           supported by the JIT. Added two new methods: mono_init_from_assembly,
25843           which initializes the runtime and determines the required version from
25844           the provided exe file, and mono_init_version, which initializes
25845           the runtime using the provided version.
25846         * icall.c: Get machine.config from version-specific directory.
25847         * reflection.c: When generating an image, embed the version number
25848           of the current runtime.
25850 2004-07-28  Dick Porter  <dick@ximian.com>
25852         * socket-io.c
25853         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
25854         returned sockaddr size before creating the remote address object.
25855         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
25856         61608.
25858 2004-07-28  Dick Porter  <dick@ximian.com>
25860         * locales.c (string_invariant_compare_char): Fix invariant char
25861         compares between upper and lower cases.  Fixes bug 61458.
25863 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
25864         
25865         * marshal.c: actually cache stelem.ref wrappers.
25866         
25867 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
25869         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
25870         sections and remove the mono_cli_rva_map () function.
25872 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25874         * debug-mono-symfile.c: fix one more endianess issue, from a patch
25875         by Geoff Norton (<gnorton@customerdna.com>).
25877 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25879         * class.c: fix class loads for pointer types (typeof(int) !=
25880         typeof(int*)).
25882 2004-07-27  Martin Baulig  <martin@ximian.com>
25884         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
25885         reading the debugging information from an external ".mdb" file.
25887 2004-07-24  Martin Baulig  <martin@ximian.com>
25889         * reflection.c (mono_image_get_type_info): Only write a class
25890         layout entry if we actually have a size or a packing size.
25892 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25894         * reflection.c (type_get_fully_qualified_name): 
25895         insert cast to get type checking of ?: with non-gcc compilers
25897 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25899         * rand.c: use g_getenv for both lookups of
25900         MONO_EGD_SOCKET
25902 2004-07-17  Martin Baulig  <martin@ximian.com>
25904         * reflection.c (mono_reflection_bind_generic_method_parameters):
25905         Set `gmethod->reflection_info'.
25907 2004-07-17  Martin Baulig  <martin@ximian.com>
25909         * class.c (mono_class_create_from_typedef): Insert the newly
25910         created class into the hash table before computing the interfaces
25911         since we could be called recursively.
25913 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
25915         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
25916         function to implement stelem.ref in managed code
25917         * class-internals.h, debug-helpers.c: a new wrapper type
25918         for the above.
25920 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25922         * gc.c: allow GC handles to work even when no GC is compiled in.
25923         Fix part of bug #61134 (GetAddrOfPinnedObject).
25925 2004-07-13  Peter Williams  <peter@newton.cx>
25927         * process.c (complete_path): Make sure we don't attempt to execute
25928         directories.
25930 2004-07-12  Geoff Norton <gnorton@customerdna.com>
25932         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
25933           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
25934           and will add/subtract the hour if needed
25936 2004-07-12  Martin Baulig  <martin@ximian.com>
25938         * reflection.c (mono_field_get_object): If we have
25939         `field->generic_info', take the attributes from
25940         `field->generic_info->generic_type'.    
25942 2004-07-12  Martin Baulig  <martin@ximian.com>
25944         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
25945         This function must be called before initializing the runtime.
25946         (mono_debug_init_1): New function; call this after initializing
25947         the runtime, but before loading the assembly.  It tells the
25948         debugger to load corlib and the builtin types.
25950         * mono-debug-debugger.c: Did some larger changes in the debugging
25951         code; support recursive class declarations, make sure we actually
25952         add all classes.
25954 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25956         * debug-helpers.c: undo my previous patch and fixed the real issue in
25957         ../mini/exceptions-x86.c
25959 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25961         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
25962         when no HOME env. variable was set and a NullRef was thrown in a .cctor
25963         called from other .cctors.
25965 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
25967         * loader.c: Removed the mono_loader_wine_init hack now that we are
25968         doing a managed version of Windows.Forms.
25970 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
25972         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
25973         threadpool.c, threads.c: remove static data from rootset.
25975 2004-07-09  Dick Porter  <dick@ximian.com>
25977         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
25978         Don't do any more processing if the matched length was 0.  It was
25979         increasing the size of the string before.  Fixes bug 61167.
25981 2004-07-09  Dick Porter  <dick@ximian.com>
25983         * socket-io.h:
25984         * socket-io.c
25985         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
25986         Add support for SO_PEERCRED if its available.
25988 2004-07-09  Peter Bartok <pbartok@novell.com>
25989         * loader.c: winelib.exe.so error message is now only displayed if
25990         MONO_DEBUG is set. To help us avoid questions when people are trying
25991         out the new Managed.Windows.Forms.
25993 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
25995         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
25996         for isinst and castclass wrappers.
25998         * class-internals.h icall.c: Move registration and lookup of JIT icalls
25999         to libmetadata from the JIT, so they could be used by the marshalling
26000         code and the interpreter.
26002         * marshal.c: Register marshalling related JIT icalls here instead of
26003         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26004         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26006         * metadata.h: Remove unneeded marshalling conversions.
26008         * opcodes.c: Update for new opcodes.
26009         
26010 2004-07-08  Martin Baulig  <martin@ximian.com>
26012         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26013         (mono_debug_get_domain_data): Make this function static.
26015 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26017         * gc.c, object.h: add nice GC handle API for embedders.
26019 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26021         * reflection.c: more changes for the new api
26023         * object.c: When we reflect on a field w/ a constant value, it
26024         will not have a memory location, so we must access metadata. Also,
26025         allow easier reading of strings so that we can read them from
26026         the constant data.
26028         * class.c (mono_class_layout_fields): no need for literal fields here.
26030         * class-internals.h: api changes for const fields
26032         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26034 2004-07-06  Martin Baulig  <martin@ximian.com>
26036         * mono-debug.h: Increment version number to 44.
26038         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26039         now a gpointer, rewrote this whole method.
26041         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26042         function.  Add information about the wrapper in a new "misc table".
26044         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26045         for the new misc table.
26047 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26049         * metadata-internals.h image.c: Add a cache for helper signatures.
26051         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26053 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26055         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26056         delegates from a delegate. Fixes #61033.
26057         
26058         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26059         marshalling of stringbuilder arrays. Fixes #59900.
26061 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26063         * icall.c: Add EnumBuilder:setup_enum_type icall.
26065 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26067         * icall.c: Added a new icall for the property version of
26068         OffsetOfStringData.
26070 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26072         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26073         it has a constant size across platforms.
26075         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26076         stack trace.
26078 2004-06-29  Martin Baulig  <martin@ximian.com>
26080         * mono-debug.c (mono_debug_add_method): Protect the whole function
26081         in mono_debugger_lock(), not just parts of it.
26083 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26085         * reflection.c: make sure padding bytes in heaps are zeroed.
26087 2004-06-24  David Waite  <mass@akuma.org>
26089         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26090         image.c, loader.c, locales.c, marshal.c, metadata.c,
26091         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26092         string-icalls.c, threads.c: change to C90-style comments from C99 /
26093         C++ -style
26095 2004-06-24  Dick Porter  <dick@ximian.com>
26097         * threads.c
26098         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26099         return createdNew.  Fixes bug 60412.
26101         * threads-types.h: 
26102         * icall.c: Add createdNew parameter to CreateMutex icall
26104 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26106         * reflection.c, object-internals.h: save default value in params.
26108 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26110         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26111         no need to build a new path combining that with the application base.
26112         Fixes bug #60442.
26114 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26116         * reflection.c: fixed minor standard compliance issues.
26118 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26120         * reflection.c: fixed issue with encoding some custom attributes
26121         (arrays in properties and fields, bug #60411).
26123 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26125         * reflection.c: fix start address when copying the public key token.
26127 2004-06-23  Martin Baulig  <martin@ximian.com>
26129         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26130         the `exc' object in a static object to put it into the GC's root set.
26132 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26134         * reflection.c: make mono_reflection_setup_internal_class ()
26135         callable a second time to setup a new parent class.
26137 2004-06-23  Dick Porter  <dick@ximian.com>
26139         * threads.c: Check for WAIT_IO_COMPLETION return values.
26141 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26143         * appdomain.c: Removed the g_free on the public key token. Now copy 
26144         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26145         * assembly.c: Added public key token string value when loading 
26146         assemblies. Fix bug #60439.
26147         * icall.c: Added missing informations (like public key) in 
26148         GetReferencedAssemblies. Fix #60519.
26149         * image.h: Changed definition for public key token from const char*
26150         public_tok_value to guchar public_key_token [17];
26151         * reflection.c: Updated for changes to public key token.
26153 2004-06-22  Lluis Sanchez Gual
26155         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26156         for the field in base classes.
26158 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26160         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26161         mark headers as not supported, they are installed only for use by the
26162         debugger.
26164 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26166         * *.c, *.h: avoid namespace pollution in public headers.
26168 2004-06-21  Martin Baulig  <martin@ximian.com>
26170         * exception.c (mono_get_exception_security): It's in
26171         "System.Security", not in "System".
26173         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26174         the exception classes.
26176 2004-06-21  Martin Baulig  <martin@ximian.com>
26178         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26179         Protect the exception object from being finalized.
26181 2004-06-21  Martin Baulig  <martin@ximian.com>
26183         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26184         public function.
26186 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26188         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26189         if it was not loaded before. Fix parts of #60439.
26191 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26193         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26194         code that was broken since Ben's change: wrappers are now
26195         dependent on the method signature only again.
26197 2004-06-21  Martin Baulig  <martin@ximian.com>
26199         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26200         added interface support.
26202 2004-06-21  Martin Baulig  <martin@ximian.com>
26204         * class.c (mono_vtable_get_static_field_data): New public method.
26206 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26208         * filewatcher.c : Windows build fix to be compliant with API changes.
26210 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26212         * class.h, class.c: more accessors.
26213         * metadata.h, metadata.c: prepare for hiding MonoType and
26214         MonoMethodSignature: people should use the accessors from now on
26215         outside of the tree.
26217 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26219         * *.c, *.h: more API cleanups.
26221 2004-06-18  Jackson Harper  <jackson@ximian.com>
26223         * assembly.c: Trace loading assemblies.
26224         * loader.c: Trace loading native libraries.
26225         * mono-config.c: Trace loading config files.
26226         
26227 2004-06-18  Dick Porter  <dick@ximian.com>
26229         * locales.c: Tell ICU the lengths of strings, it can cope with
26230         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26232 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26234         * image.c: swapped name/filename;
26236 2004-06-18  Martin Baulig  <martin@ximian.com>
26238         * mono-debug-debugger.c (write_class): Write the parent class at
26239         the end of the header.
26241 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26243         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26245 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26247         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26248         (bundle_obj): New conditional define.
26249         (BUILT_SOURCES): Remove.
26250         ($(bundle_srcs)): Make parallel-make safe.
26251         (libmonoruntime_la_LIBADD): Make unconditional.
26252         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26253         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26255 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26257         * culture-info-tables.h: It was inconsistent with the latest
26258           supp info files.
26260 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26262         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26263         be loaded.
26265         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26266         with gcc 2.95.
26268 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26270         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26271         cleaned up public header threads.h.
26273 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26275         * Makefile.am, *.c, *.h: more API cleanups.
26277 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26279         * Makefile.am: removed monosn from compilation.
26280         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26281         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26282         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26283         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26284         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26285         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26287 2004-06-15  Jackson Harper  <jackson@ximian.com>
26289         * assembly.c: Make locales lower case when searching the GAC for
26290         assemblies. gacutil will always make locales lowercase when
26291         installing so this effectively makes them case insensitive.
26292         
26293 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26295         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26296         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26297           parameter which allows to choose whether the wait can be interrupted or 
26298           not. Also added the method mono_monitor_enter(), which locks the monitor
26299           using an infinite wait and without allowing interruption.
26300           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26301           interrupted.
26302         * object.h: Added new fields in MonoThread. suspend_event holds the event
26303           used to susped/resume the thread. synch_lock is the lock object to use for
26304           modifying the thread state.
26305         * threads.c: Use the new synch_lock object for locking, instead of "this",
26306           which can generate deadlocks.
26307           Moved thread state change in Thread.Sleep and Thread.Join from managed
26308           to unmanaged code. This avoids a deadlock when the thread was suspended
26309           just after acquiring the thread lock.
26310           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26311           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26312           which is not fully implemented in the io-layer.
26313         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26315 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26317         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26318         threads-types.h: more API cleanups.
26320 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26322         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26323         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26324         threadpool.c, threads.c: first pass at the exported API cleanup.
26326 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26328         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26330 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26332         * icall.c: added internalGetHome.
26334 2004-06-14  Dick Porter  <dick@ximian.com>
26336         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26337         possible to return successfully when '.' or '..' were the only
26338         entries in a directory, but were skipped.  The MonoIOStat was not
26339         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26340         Fixes bug 59574.
26342 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26344         * reflection.c: make binaries run on .Net 1.1 by default.
26346 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26348         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26350 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26352         * marshal.c: keep track of struct size with explicit layout
26353         (bug #59979).
26355 2004-06-12  Martin Baulig  <martin@ximian.com>
26357         * mono-debug-debugger.c: Comment out a debugging g_message().
26359 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26361         * reflection.c, reflection.h: do not free custom attrs that are cached.
26362         * icall.c: use braces to make code clearer.
26364 2004-06-11  Martin Baulig  <martin@ximian.com>
26366         * class.h (MonoInflatedField): New type.
26367         (MonoClassField): Replaced `MonoType *generic_type' with
26368         `MonoInflatedField *generic_info'.
26370         * icall.c
26371         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26373 2004-06-11  Martin Baulig  <martin@ximian.com>
26375         * reflection.c (mono_image_create_method_token): Correctly encode
26376         varargs methods.
26378 2004-06-11  Martin Baulig  <martin@ximian.com>
26380         * metadata.c (mono_metadata_parse_method_signature): When parsing
26381         a MethodDef which has VarArgs, also set sentinelpos if we don't
26382         have any parameters.
26384 2004-06-11  Martin Baulig  <martin@ximian.com>
26386         * verify.c (mono_method_verify): In CEE_CALL, use
26387         mono_method_get_signature() to get the method's signature, unless
26388         we're a PInvoke method.
26390 2004-06-10  Jackson Harper  <jackson@ximian.com>
26392         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26393         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26394         logical name as the supplied path is just a prefix to the gac not
26395         the direct path to it.
26396         
26397 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26399         * reflection.c: make the token for a created method match
26400         the token of the MethodBuilder it was created from
26401         (IKVM requires this behaviour now).
26403 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26405         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26406         reflection.c, socket-io.c: leak fixes.
26408 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26410         * icall.c: handle sentinel pos in vararg methods in position different
26411         from 0.
26413 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26415         * culture-info-tables.h: freshly generated.
26417 2004-06-09  Martin Baulig  <martin@ximian.com>
26419         * loader.c (mono_get_method_constrained): Call `mono_class_init
26420         (constrained_class)'.   
26422 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26424         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26425         any methods. Fixes #59629.
26427 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26429         * culture-info-tables.h: reflecting locale-builder updates.
26431 2004-06-08  Dick Porter  <dick@ximian.com>
26433         * object.h:
26434         * locales.c: Fixed compile warnings, including a real bug in
26435         CompareInfo_internal_compare.
26436         
26437 2004-06-08  Dick Porter  <dick@ximian.com>
26439         * locales.c
26440         (ves_icall_System_Globalization_CompareInfo_internal_index):
26441         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26442         Double-check the resuls of usearches, because ICU currently
26443         ignores most of the collator settings here.  Fixes bug 59720.
26444         
26445 2004-06-08  Dick Porter  <dick@ximian.com>
26447         * locales.c
26448         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26449         Fix memory leak and segfault-causing typo.  No idea how this one
26450         lasted so long without being noticed.
26452 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26454         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26455         any methods. Fixes #59629.
26457 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26459         * assembly.c:
26460         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26461         own the critical section before). Removed dead code (that's done
26462         in the preload hook).
26464         (mono_assembly_load_with_partial_name): call the preload hook.
26466 2004-06-08  Martin Baulig  <martin@ximian.com>
26468         * metadata.c (mono_metadata_signature_alloc): Default
26469         `sentinelpos' to -1.
26471         * reflection.c (mono_image_get_array_token): Likewise.
26473 2004-06-08  Martin Baulig  <martin@ximian.com>
26475         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26477         * metadata.c (mono_metadata_parse_method_signature): When parsing
26478         a MethodDef which has VarArgs, set sentinelpos.
26480         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26481         `gint16' since we're using -1 for non-varargs methods.
26483         * reflection.c
26484         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26485         (method_encode_signature): Added varargs support.
26486         (method_builder_encode_signature): Likewise.
26487         (mono_image_get_varargs_method_token): New static method.
26488         (mono_image_create_method_token): New public method; this is
26489         called via an icall instead of mono_image_create_token() when
26490         calling a varargs method.       
26492 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26494         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26496 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26498         * culture-info-tables.h : Reflecting the latest locale-builder that
26499           fixed empty array representation ({} to {0}).
26501 2004-06-07  Jackson Harper  <jackson@ximian.com>
26503         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26504         looking up extra gac paths. This allows MONO_GAC_PATH to act
26505         exactly like a prefix.
26506         
26507 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26509         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26510         type name before modifying it. Fixes #59405.
26512 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26514         * culture-info.h: added fields for "all datetime patterns".
26515         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26516           _construct_datetime_format ()): fill xxx_patterns fields.
26517         * object.h: added fields for "all datetime patterns" to
26518           MonoDateTimeFormatInfo.
26519         * culture-info-tables.h: reflecting locale-builder updates.
26521 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26523         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26524         the event has no add and remove methods. Fixes #59629.
26526 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26528         * object.c: Fixed possible integer overflow when allocating large
26529         strings.
26531 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26533         * culture-info-tables.h: reflecting locale-builder updates.
26535 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26537         * culture-info-tables.h: reflecting locale-builder updates.
26539 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26541         * culture-info-tables.h: reflecting locale-builder updates.
26543 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26545         * threads.c: Made Thread.Sleep abortable.
26547 2004-06-02  Martin Baulig  <martin@ximian.com>
26549         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26551         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26553 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26555         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26557 2004-05-30  Jackson Harper  <jackson@ximian.com>
26559         * reflection.c: Do not hardcode assembly versions or public key
26560         tokens anymore. All of this except the corlib section was dead
26561         code anyways.
26562         
26563 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26565         * object.c (mono_runtime_invoke_array): Automatically create boxed
26566         objects for byref valuetypes if needed. Fixes #59300.
26567         
26568         * object.c (mono_method_return_message_restore): Handle 
26569         MONO_TYPE_OBJECT as well.
26571 2004-05-28  Jackson Harper  <jackson@ximian.com>
26573         * reflection.c: The modified type encoding was causing build
26574         problems. Reverted for now.
26575         
26576 2004-05-28  Jackson Harper  <jackson@ximian.com>
26578         * reflection.c/h: Take an assembly ref so that we dont create
26579         fully qualified names when encoding types in the same assembly as
26580         the custom attribute being emitted.
26581         * appdomain.c: Increment version number.
26582         
26583 2004-05-26  Duncan Mak  <duncan@ximian.com>
26585         * icall.c
26586         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26587         Set the full version number (major, minor, build, revision).
26589 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26591         * marshal.c (emit_struct_conv): increment src/dst after blit
26592         (mono_marshal_get_managed_wrapper,
26593         mono_marshal_get_native_wrapper): make sure we have marshalling
26594         info before marshalling params (info computation affects
26595         blittable)
26597         * class.c (class_compute_field_layout): correctly deal with
26598         blittable
26599         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26600         value types (as per what windows dows by default)
26601         (mono_class_setup_mono_type): System.ValueType is blittable
26602         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26603         blittable
26605         * marshal.c (mono_marshal_load_type_info): flag types  as
26606         non-blittable if the native layout doesn't match the managed
26607         layout
26609 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26611         * appdomain.c: don't add stuff in the private search path that is
26612         above the application base. If application base is not set, there's
26613         no private search path.
26615 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26617         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26618         byref struct arguments in native->managed marshalling.
26620 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26622         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26623         cache methods using signature (special case for methods
26624         that are value type or string class)
26625         
26626         * image.c (mono_image_close): clean up allocated GSList's
26627         in runtime_invoke_cache.
26629 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26631         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26632         there's no MONO_CFG_DIR environment variable defined.
26634 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26636         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26638 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26640         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26641           is interrumped.
26642         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26643           before waiting for it, and call CloseHandle after the wait to unref it.
26644           This will make sure that handles are not disposed too early.
26646 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26648         * appdomain.c:
26649         * appdomain.h:
26650         * icall.c: removed
26651         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26652         needed now.
26654         * object.c: se the application_base only for the domain that runs
26655         Main. Fixes bug #59216,
26657 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26659         * appdomain.c:
26660         * object.c: only the domain in which Main is run have
26661         SetupInformation.ConfigurationFile set, so moved a few lines from
26662         appdomain.c to object.c.
26664 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26666         * appdomain.c: we tried to load [name].(dll|exe), but according
26667         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26668         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26669         There's a test case attached to bug #58922.
26671 2004-05-27  Dick Porter  <dick@ximian.com>
26673         * icall.c:
26674         * file-io.c: Implemented icalls for locking and unlocking regions
26675         in a file.
26676         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26677         FALSE on error (fixes both compiler warning and real bug.)
26679 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
26681         * culture-info-tables.h: reflecting locale-builder updates.
26683           (Added missing ChangeLog entry for 05/26)
26685 2004-05-27  Jackson Harper  <jackson@ximian.com>
26687         * locales.c: Fix some cut and paste errors.
26688         
26689 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26691         * mono-config.c: set the correct path for config. directory on windows.
26693 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26695         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
26696           on win32.
26698 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26700         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
26701         from pinvoke functions.
26702         
26703         * marshal.c (mono_ftnptr_to_delegate): Implement this.
26705 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26707         * culture-info-tables.h: reflecting locale-builder updates.
26709 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26711         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
26712         #59086.
26714 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
26716         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
26717         * icall.c: Modified icalls for RNG.
26718         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
26719         Windows (CryptoAPI).
26721 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26723         * locales.c: Fix build.
26725 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
26727         * culture-info-tables.h: reflecting locale-builder updates.
26729 2004-05-25  Jackson Harper  <jackson@ximian.com>
26731         * locales.c: When creating the current culture use the $LANGs
26732         specific culture. So DateTimeFormat and NumberFormat entries are created.
26733         
26734 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26736         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
26737         a char array as parameter.
26739 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
26741         * image.c: In mono_image_open(), always use an absolute path name to
26742           look for already loaded images.
26744 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
26746         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
26747         missing in the windows build (like older cygwin include files).
26749 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
26751         * icall.c: Fixed check for possible integer overflow in Buffer_
26752         BlockCopy icall. Replaced comments style // by /* */.
26754 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
26756         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
26757         
26758         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
26759         check after MONO_VTADDR. Fixes pinvoke2.exe.
26761         * marshal.h marshal.c metadata.h: Add beginnings of support for
26762         ftnptr -> delegate marshalling.
26764 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
26766         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
26767         * threads.c: Fix warnings.
26769 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
26771         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
26772         * icall.c: Registered icalls for Suspend and Resume.
26773         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
26774           Thread.Abort.
26775         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
26776         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
26777         * process.c: Use WaitForSingleObjectEx.
26778         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
26779           checkpoints.
26780         * threads.c, threads.h: Make use of new Ex wait methods. Improved
26781           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
26782           for Suspend and Resume. Added new mono_thread_stop, used for stoping
26783           background threads. Added basic support for Abort in Windows.
26784           Start new threads using a managed delegate invoke wrapper. This wrapper
26785           has an interruption checkpoint that is needed since an interruption
26786           can be requested before the thread leaves the unmanaged code that starts 
26787           the thread.
26788         * marshal.c: Added interruption checkpoint after every native call, and
26789           also before managed calls for wrappers called from unmanaged code to
26790           go into managed code.
26791         * object.h: Added new field in MonoThread to keep track of interruption
26792           requests.
26794 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
26796         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
26797         calls.
26799 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26801         * appdomain.c:
26802         * assembly.c:
26803         * gc.c:
26804         * locales.c:
26805         * mono-config.c:
26806         * rand.c: getenv -> g_getenv (windows!)
26808         * process.c: complete_path is also used on non-windows platforms.
26810 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26812         * icall.c: new signature for Process_Start.
26814         * process.[ch]: new signature for Process_Start. If we're on windows
26815         and UseShellExecute is false, we have to search for the program by
26816         ourselves if we don't get a full path.
26818 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
26820         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
26821         marshalling and call CleanUpNativeData if needed. Fixes #58646.
26823 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26825         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
26826         Fixes bug #58373.
26828 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26830         * process.c: use double quotes to quote program name and arguments on
26831         windows. Fixes bug #58575.
26833 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26835         * file-io.c: don't return "." and ".." when using windows Find*File.
26837 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26839         * marshal.c: Don't pass wrappers to message init because method 
26840         addressed used to lookup metadata. part of remoting[2|3] fix.
26842 2004-05-15  Jackson Harper  <jackson@ximian.com>
26844         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
26845         path is essentially the same as MONO_PATH except that it points to
26846         GACs instead of lib directories.
26847         * loader.h: The user gac is gone so we dont need function to
26848         enable/disable it.
26849         * mono-config.c: user gac option is now gone.
26850         
26851 2004-05-15  Jackson Harper  <jackson@ximian.com>
26853         * culture-info.h: Make defines more consistent, add calendar data
26854         to the culture info table.
26855         * culture-info-tables.h: Add basic calendar data. Basically
26856         everyone gets default gregorian until all the data is
26857         updated.
26858         * locales.c: Use the new consistent defines. Set calendar data for
26859         culture info objects.
26860         * object.h: add a field for calendar data to CultureInfo
26861         
26862 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
26864         * image.c: image->runtime_invoke_cache is keyed on signatures now.
26865         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
26866         a signature.
26867         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
26868         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
26869         an extra param that is the pointer of the method to invoke. The IL for
26870         the invoke method is no longer specific to the method, but to the
26871         signature of the method. Thus, we can share the same code for multiple
26872         methods. This reduces the number of methods that have to be compiled.
26874 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
26876         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
26878         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26880         * icall.c: Optimize Buffer.BlockCopy.
26882 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26884         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
26885         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
26886         quote). Changed them to "MMMM yyyy".
26888 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
26890         * rand.c
26891         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
26893 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
26895         * reflection.h: Updated after changes to managed structures.
26897         * appdomain.c: Bump corlib version.
26899 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26901         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
26902         windows.
26904 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26906         * Makefile.am: link to ../os/libmonoos.la on windows.
26908         * assembly.c:
26909                 -If MONO_DEBUG, warn about non-existing directories in
26910                 MONO_PATH.
26911                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
26912                 compile time variable.
26913                 -Removed init_default_path and call mono_set_rootdir from
26914                 libmonoos.a instead (windows only).
26916         * assembly.h: declare mono_assembly_getrootdir().
26918         * domain.c:
26919         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
26921         * loader.c: s/getenv/g_getenv/
26923 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
26925         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
26927         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
26929         * metadata.h: Add new marshalling conversions.
26931         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
26932         function.
26934         * reflection.c (mono_reflection_get_type): Lookup the type in all
26935         modules of a multi-module assembly. Fixes #58291.
26937 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
26939         * threads.c: Before aborting a background, set the StopRequested
26940         state.  This avoids throwing the Abort exception.
26941         In mono_thread_manage, don't continue with the shutdown until all
26942         aborted threads have actually stopped.
26944 2004-05-10  Jackson Harper  <jackson@ximian.com>
26946         * locales.c: Remove the modifier from culture names.
26947         
26948 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26950         * Makefile.am: monosn is not installed any more. It has been deprecated
26951         in favor of sn.
26953 2004-05-07  Jackson Harper  <jackson@ximian.com>
26955         * locales.c
26956         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
26957         Fix array construction, add bailout if the length is 0.
26959 2004-05-07  Dick Porter  <dick@ximian.com>
26961         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
26962         machine doesn't have a DNS entry.  Patch by Urs Muff
26963         (umuff@quark.com), fixes bug 57928.
26965 2004-05-06  Jackson Harper  <jackson@ximian.com>
26967         * reflection.c: Handle null PublicTokens properly. alloc mem for
26968         assembly names culture so we dont crash when freeing it.
26969         
26970 2004-05-06  Jackson Harper  <jackson@ximian.com>
26972         * assembly.c: Check the usergac when loading with partial names.
26973         
26974 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26976         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
26977         does nothing for now (not required for Linux/Windows) but the class
26978         library can call it (and a newer or modified runtime could need it).
26979         * icall.c: Registred icall.
26981 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26983         * loader.c: prints a message on module loading error we set MONO_DEBUG
26984         environment variable.
26986 2004-05-05  Jackson Harper  <jackson@ximian.com>
26988         * appdomain.c: Handle PublicKeyToken=null properly.
26989         
26990 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26992         * environment.c|h: Added icall ves_icall_System_Environment_
26993         GetOSVersionString to get the current OS version as a string.
26994         * icall.c: Registred icall.
26996 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
26998         * object.c: in mono_object_get_virtual_method(), take into account that
26999         non-virtual methods don't have a slot in the vtable. Check needed when
27000         the object is a proxy.
27002 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27004         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27005         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27007         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27009         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27010         passed when a valuetype is expected.
27012         * object.c (mono_unhandled_exception): Only set the exit code if the
27013         exception happens in the main thread. Fixes thread5.exe.
27015         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27016         invalid names. Fixes #58047.
27018 2004-05-03  Jackson Harper  <jackson@ximian.com>
27020         * assembly.c: This line was committed accidently and is unneeded.
27021         
27022 2004-05-03  Jackson Harper  <jackson@ximian.com>
27024         * icall.c: Add new icall for Assembly::LoadWithPartialName
27025         * assembly.c/.h: new function that probes the GAC to load partial
27026         assembly names by Paolo Molaro.
27027         
27028 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27030         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27031         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27032         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27033         full type name.
27035 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27037         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27038         * reflection.c: fix bug when parsing a full type name and Version is not
27039         the last thing in the string.
27041 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27043         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27044         crashes when it is freed.
27046 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27048         * assembly.c: print the compat warning to stderr.
27050 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27052         * assembly.c (mono_assembly_load_references): Add a compatibility
27053         hack to run old applications that might be still referencing the
27054         3300-based assemblies, only do this for System.xxx.
27056 2004-05-01  Jackson Harper  <jackson@ximian.com>
27058         * appdomain.c: If the culture is neutral we set it to "".
27059         
27060 2004-04-29  Jackson Harper  <jackson@ximian.com>
27062         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27064 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27066         * string-icalls.c: added low overhead function for copying chars
27067         * icall.c: added needed icall for the above function
27069 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27071         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27072         Environment.GetLogicalDrives.
27074 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27076         * rand.c: try and talk to egd or prngd
27077         for random bytes if opening devices fail.
27079 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27081         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27082         alignment for the type using the native alignment of its members 
27083         instead of using klass->min_align.
27085         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27087 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27089         * file-io.c:
27090         * socket-io.c: added check for sys/aio.h.
27092 2004-04-28  Dick Porter  <dick@ximian.com>
27094         * threads.c: Don't abort a thread thats already aborting, when
27095         terminating everything.
27097 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27099         * icall.c: added 2 new async calls for Socket.
27101         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27102         IO on *nix systems.
27104         * threadpool.c: removed unused variable.
27106 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27108         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27110 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27112         * locales.c: put back string_invariant_tolower () and
27113         string_invariant_toupper ().
27115 2004-04-26 David Waite <mass@akuma.org>
27117         * file-io.h:
27118         * socket-io.h:
27119         * threads.h:
27120         * unicode.h: remove comma from end of enumeration declarations
27122 2004-04-26 David Waite <mass@akuma.org>
27124         * debug-mono-symfile.h:
27125         * decimal.c:
27126         * mono_debug.h:
27127         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27130 2004-04-26  Jackson Harper  <jackson@ximian.com>
27132         * appdomain.c: Increment version number.
27133         
27134 2004-04-26  Jackson Harper  <jackson@ximian.com>
27136         * appdomain.c: Set assembly references public token value when
27137         PublicKeyToken is specified, not the hash_value. Free public token
27138         values when free assembly name data. Previously the public key
27139         token was hex decoded, however we are using hex encoded public key
27140         tokens, so this is not neccasary.
27141         * assembly.c: Lookup assemblies in the gac if their public token
27142         value is set. Add function to allow enabling user gac
27143         lookups. Specify whether or not the assembly was loaded from the
27144         GAC. Compare full assembly names when checking the cache for
27145         assemblies (Temporarily disabled see comment in code). Remove
27146         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27147         specifies trace-loader they get extra info to stdout on the
27148         loading of assemblies.
27149         * image.h: Add a field for an assembly references public token
27150         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27151         whether an assembly has been loaded from the GAC.
27152         * image.c: Remove a corlib -> mscorlib name mapping.
27153         * loader.h: Add function to enable/disable the user gac.
27154         * mono-config.c: Check if the usergac is enabled in the config
27155         file.
27156         * icall.c: New icall to determine whether or not an assembly has
27157         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27158         * tabldefs.h: Add constant for assemblyref flag that specifies a
27159         full public key is used instead of a public token.
27160         * reflection.c: Remove mscorlib -> corlib mappings. Set
27161         PublicTokenValue instead of hash value. This value is a hex
27162         string so it does not need to be expanded.
27164 2004-04-26  Martin Baulig  <martin@ximian.com>
27166         * mono-debug-debugger.c (mono_debugger_initialize): Set
27167         `mono_debugger_initialized' before calling mono_debug_lock().
27169 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27171         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27172           InternalToUpper/InternalToLower.
27173         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27174           removed invariant culture shortcut.  This is now done in managed code.
27175         * locales.c: (string_invariant_toupper/tolower) removed.
27177 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27179         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27180         Added Poll internal call.
27182         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27183         call for Poll. Select was too heavy for polling a single socket.
27185         * threadpool.[ch]: added mono_threadpool_cleanup.
27186         * threads.c: use it. Don't use Thread_Abort on windows.
27188 2004-04-23  Martin Baulig  <martin@ximian.com>
27190         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27192 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27194         * icall.c: Registred new icalls for key pair protection and added an
27195         icall for Environment.GetFolderPath on Windows.
27196         * security.c|h: Added new icalls for key pair protection.
27198 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27200         * socket-io.c: don't display the non-supported family warning for known
27201         families. Now this is not displayed on windows when checking support
27202         for IPv4/IPv6.
27204 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27206         * class.c: don't display the layout warning for static fields.
27208 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27210         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27211         * locales.c, locales.h: Added new icalls for culture-specific
27212         Char.ToLower and Char.ToUpper.
27214 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27216         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27217         by David Waite.
27219 2004-04-20  Martin Baulig  <martin@ximian.com>
27221         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27222         of the type name before passing it to mono_reflection_type_from_name().
27224 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27226         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27227         encodings here. Fixes #56965.
27229 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27231         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27232         fix test on strstr result not that I can see anything that
27233         relies on the result.
27235 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27237         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27238         Fixes #57081.
27240         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27242         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27243         function to determine which marshalling to use for strings. Fixes
27244         #56965.
27246         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27248         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27250 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27252         * icall.c: #include mono-config.h
27254 2004-04-15  Jackson Harper  <jackson@ximian.com>
27256         * culture-info-tables.h: Fix date formats for en-US culture.
27257         
27258 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27260         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27261         ThreadPool.SetMinThreads.
27262         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27263         ThreadPool.SetMinThreads.
27265 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27267         * mono-config.c: also load the .config file in the directory
27268         where the assembly was found.
27270 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27272         * assembly.c: load per-assembly config files.
27273         * icall.c: decrapified code to get the config dir and moved to
27274         mono-config.c.
27275         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27276         per-assembly config files. When doing a dll map lookup give precedence
27277         to the per-assembly data.
27279 2004-04-14  Martin Baulig  <martin@ximian.com>
27281         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27282         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27283         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27285         * mono-debugger-debugger.c: While the debugger is locked, remember
27286         whether the symbol tables have changes and send one single
27287         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27289 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27291         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27293         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27294         function.
27296         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27297         account when marshalling string arrays. Fixes #56965.
27299 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27301         * icall.c: Add new icalls mapping for security.
27302         * security.c|h: Add internal calls for WindowsIdentity,
27303         WindowsImpersonationContext and WindowsPrincipal.
27305 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27307         * class.c: Added comment to ensure the System.MonoDummy class
27308         is removed when no longer necessary
27310 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27312         * appdomain.c: Pass arguments to the bootstraping exceptions to
27313         minimize JITed methods at boot
27315         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27316         second string to be null.
27318         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27319         Change the protocol to minimize the JIT methods at startup.  Now
27320         it Returns the internal codepage, if the value of "int_code_page"
27321         is 1 at entry, and we can not compute a suitable code page
27322         number, returns the code page as a string.
27324 2004-04-13  Jackson Harper  <jackson@ximian.com>
27326         * culture-info-tables.h: Fix number of decimal digits for all
27327         english locales.
27329 2004-04-13  Jackson Harper  <jackson@ximian.com>
27331         * icall.c: Clairfy out of sync error message. It is not always
27332         your corlib that is out of sync.
27334 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27336         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27337         properties when only the set accessor is overriden. Fixes #55874.
27339 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27341         * assembly.c (mono_assembly_load_references): Make this thread safe.
27342         Fixes #56327.
27344 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27346         * monosn.c: Add missing initialization calls.
27348 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27350         * locales.c:
27351         ves_icall_System_Globalization_CultureInfo_construct_number_format
27352         Fix g_assert so it compiles on fussier compilers re int/ptr
27353         mismatch
27355 2004-04-08  Dick Porter  <dick@ximian.com>
27357         * socket-io.h:
27358         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27359         53992.  Also rearrange the code so that the internal calls return
27360         an error value and exceptions are thrown from managed code.
27362         * icall.c: Add type info to the socket icalls.
27364 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27366         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27367         owes me a beer.
27369 2004-04-07  Martin Baulig  <martin@ximian.com>
27371         * class.c (mono_class_from_generic_parameter): Don't default
27372         `klass->parent' to `mono_defaults.object_type'.
27374 2004-04-07  Martin Baulig  <martin@ximian.com>
27376         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27377         `param->pklass->reflection_info'.       
27379 2004-04-07  Jackson Harper  <jackson@ximian.com>
27381         * culture-info-tables.h: Fix date separator symbol.
27382         
27383 2004-04-07  Martin Baulig  <martin@ximian.com>
27385         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27386         from System.Type to System.MonoType.
27388 2004-04-07  Martin Baulig  <martin@ximian.com>
27390         * reflection.h
27391         (MonoReflectionGenericParam): Added `has_reference_type' and
27392         `has_value_type' fields.
27394         * reflection.c (mono_image_get_generic_param_info): Encode the
27395         correct flags if we have the `class' or `struct' constraint.
27397 2004-04-07  Martin Baulig  <martin@ximian.com>
27399         * reflection.h
27400         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27402 2004-04-07  Jackson Harper  <jackson@ximian.com>
27404         * appdomain.c: Revert extra patches, just wanted to bump the
27405         version number.
27406         
27407 2004-04-07  Jackson Harper  <jackson@ximian.com>
27409         * Makefile.am: Add culture-info private headers.
27410         * icall.c: Add new icalls for contructing locales.
27411         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27412         * locales.h: Declare new culture info construction methods.
27413         * object.h: Add new fields used to avoid the CultureMap to
27414         MonoCultureInfo.
27415         * culture-info.h: Definition of structs used in the culture info
27416         tables.
27417         * culture-info-tables.h: Autogenerated tables that contain culture
27418         info data. This file was generated with the locale-builder tool.
27419         * appdomain.c: Incement corlib version number.
27420         
27421 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27423         * appdomain.c: (mono_runtime_init) move mono_thread_init
27424         to before mono_object_new calls so critical sections
27425         are initialized before use.
27427 2004-04-07  Martin Baulig  <martin@ximian.com>
27429         * icall.c
27430         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27431         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27432         (ves_icall_MonoGenericParam_initialize): Removed.
27433         (monogenericparam_icalls): Removed.
27434         (generictypeparambuilder_icalls): Added new table for
27435         System.Reflection.Emit.GenericTypeParameterBuilder.
27437         * reflection.c
27438         (mono_reflection_define_generic_parameter): Removed.
27439         (mono_reflection_initialize_generic_parameter): This is now called
27440         from GenericTypeParameterBuilder's .ctor.
27442 2004-04-06  Martin Baulig  <martin@ximian.com>
27444         * class.c (mono_class_init): Don't inflate nested classes in a
27445         generic instance.
27446         (mono_type_get_name_recurse): Include the generic arguments for
27447         generic instances and generic type declarations.
27448         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27449         (_mono_class_get_instantiation_name): Removed.
27450         (mono_class_create_generic): Always use `gklass->name' as our name.
27452         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27454         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27455         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27456         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27457         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27458         closed generic methods here.
27460         * reflection.c
27461         (mono_reflection_generic_inst_get_nested_types): Removed.
27462         (inflate_mono_method): Copy the generic parameters from the
27463         MonoMethodHeader into out MonoGenericMethod.
27465 2004-04-06  Martin Baulig  <martin@ximian.com>
27467         * row-indexes.h
27468         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27470         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27472         * reflection.c (build_compressed_metadata): If we have any entries
27473         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27474         set the header version to 1.1.
27476 2004-04-06  Martin Baulig  <martin@ximian.com>
27478         * class.c (mono_class_init): If we're a generic instance,
27479         initialize our nested classes, too.
27480         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27481         suffix. 
27483 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27485         * process.c: quote the argument passed to the shell on windows.
27487 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27489         * threads.c (mono_alloc_special_static_data): Allow this to be
27490         called during startup.
27492 2004-04-02  Martin Baulig  <martin@ximian.com>
27494         * icall.c
27495         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27497 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27499         * icall.c: Fix build.
27501 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27503         * Makefile.am: Added security.c|h.
27504         * icall.c: Added icall for get_UserName;
27505         * security.c: New file for security related icalls. Added function
27506         get_UserName for System.Environment (fix #56144).
27507         * security.h: New. Header file for security.c
27509 2004-04-02  Dick Porter  <dick@ximian.com>
27511         * icall.c: Deleted the icalls that were obsoleted some time ago
27512         by the ICU string code, and which were mixed into the icall
27513         rearranging.  Fixes bug 55969.
27515         * string-icalls.h: 
27516         * string-icalls.c: Deleted the code that those icalls reference.
27518 2004-04-01  Martin Baulig  <martin@ximian.com>
27520         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27522         * class.c (mono_class_from_generic_parameter): Don't set 
27523         TYPE_ATTRIBUTE_INTERFACE.
27524         (my_mono_class_from_generic_parameter): Likewise.
27526 2004-04-01  Martin Baulig  <martin@ximian.com>
27528         * loader.c (find_method): Added an optional `MonoClass *ic'
27529         argument to search in a specific interface.
27530         (mono_get_method_constrained): New public function.
27532 2004-04-01  Martin Baulig  <martin@ximian.com>
27534         * reflection.c (mono_image_get_generic_field_token): Use the
27535         `handleref' cache here.
27537 2004-04-01  Martin Baulig  <martin@ximian.com>
27539         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27541         * reflection.c (create_generic_typespec): Use the `typespec' hash
27542         here, not the `typeref' one.    
27544 2004-04-01  Martin Baulig  <martin@ximian.com>
27546         * class.c (mono_class_inflate_generic_type): Moved the
27547         functionality into a new static inflate_generic_type() which
27548         returns NULL if it didn't do anything.  Only increment the
27549         `mono_stats.inflated_type_count' if we actually inflated
27550         something.
27551         (mono_class_get_full): Check the classes type to see whether we
27552         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27554 2004-04-01  Jackson Harper  <jackson@ximian.com>
27556         * reflection.c: Set culture for assembly references.
27557         
27558 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27560         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27562 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27564         * assembly.c:
27565         (do_mono_assembly_open): the critical section also covers
27566         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27568 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27570         * threads.c:
27571         (mono_manage_threads): abort the background threads when finishing.
27572         Fixes bug #47232.
27574 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27576         * gc.c: only close the done_event handle if there was no timeout.
27577         C-ified comments.
27579 2004-03-30  Martin Baulig  <martin@ximian.com>
27581         * icall.c (icall_entries): It's called "System.Activator", not
27582         "System.Activation".    
27584 2004-03-30  Martin Baulig  <martin@ximian.com>
27586         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27587         (mono_class_create_from_typespec): Likewise.
27589 2004-03-30  Martin Baulig  <martin@ximian.com>
27591         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27592         `has_ctor_constraint' and `initialized'.
27594 2004-03-30  Martin Baulig  <martin@ximian.com>
27596         * reflection.c (encode_new_constraint): New static function to add
27597         the constructor constraint attribute to a type parameter.
27598         (encode_constraints): Call encode_new_constraint() if necessary.
27600         * reflection.h
27601         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27603         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27604         
27605 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27607         * reflection.c, icall.c: add support for pinning variables. 
27609 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27611         * marshal.c (mono_marshal_get_managed_wrapper):
27612         init bool local with zero rather than null.
27614 2004-03-29  Martin Baulig  <martin@ximian.com>
27616         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27617         the "official" behavior here.
27618         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27620 2004-03-29  Martin Baulig  <martin@ximian.com>
27622         * icall.c: Reflect latest API changes.
27624 2004-03-29  Martin Baulig  <martin@ximian.com>
27626         * loader.c (mono_get_method_from_token): Also call
27627         mono_metadata_load_generic_params () for abstract and interface
27628         methods; replace the type arguments in the method signature with
27629         the ones which are loaded from the metadata.
27631 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27633         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27634         of the lock is not the current thread. MS.NET don't do it, in spite of
27635         what the documentation says. See bug #56157.
27637 2004-03-28  Martin Baulig  <martin@ximian.com>
27639         * class.c (mono_class_init): Don't call init_properties() and
27640         init_events() for generic instances; set `prop->parent' when
27641         inflating properties.
27643         * reflection.c (mono_generic_inst_get_object): Call
27644         `mono_class_init (ginst->klass)'.
27645         (mono_type_get_object): Only create a MonoGenericInst if your
27646         generic type is a TypeBuilder.
27647         (do_mono_reflection_bind_generic_parameters): Only set
27648         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27650 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27652         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27653         Fixes #56091.
27655 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27657         * icall.c: added Kill_internal icall.
27658         * process.[ch]: added Kill_internal icall.
27660 2004-03-25  Martin Baulig  <martin@ximian.com>
27662         * class.h (MonoStats): Added `generic_instance_count',
27663         `inflated_method_count', `inflated_type_count' and
27664         `generics_metadata_size'.       
27666 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27668         * reflection.c: no warnings now.
27670 2004-03-25  Martin Baulig  <martin@ximian.com>
27672         * class.c (mono_class_get_full): New public function; does a
27673         mono_class_get(), but also takes a `MonoGenericContext *'.
27675         * loader.c (mono_field_from_memberref): Renamed to
27676         `field_from_memberref', made static and added `MonoGenericContext *'
27677         argument.
27678         (mono_field_from_token): Added `MonoGenericInst *' argument.
27679         (method_from_memberef): Likewise.
27680         (mono_get_method_from_token): Likewise.
27681         (mono_get_method_full): New public function; does a
27682         mono_get_method(), but also takes a `MonoGenericContext *'.
27684         * verify.c (mono_method_verify): Get the method's generic context
27685         and pass it to mono_field_from_token(), mono_get_method_full() and
27686         mono_class_get_full().
27688 2004-03-25  Martin Baulig  <martin@ximian.com>
27690         * class.c (mono_class_inflate_generic_type): Take a
27691         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
27692         `MonoGenericMethod *'.
27694 2004-03-25  Martin Baulig  <martin@ximian.com>
27696         * loader.h (MonoMethodInflated): Store the MonoGenericContext
27697         instead of the MonoGenericMethod here.
27699 2004-03-25  Martin Baulig  <martin@ximian.com>
27701         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
27702         each time we create a new MonoGenericInst, we also create a new
27703         context which points back to us.
27705         * class.c (inflate_method): Use `ginst->context' instead of
27706         creating a new context.
27708         * loader.c (method_from_memberref): Use
27709         `klass->generic_inst->context' instead of creating a new context.
27711 2004-03-25  Martin Baulig  <martin@ximian.com>
27713         * class.h (MonoGenericContext): New struct.
27714         (MonoGenericMethod): Removed `generic_inst'.
27716         * class.c (mono_class_inflate_generic_method): Take a
27717         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
27719 2004-03-25  Martin Baulig  <martin@ximian.com>
27721         * loader.h (MonoMethodInflated): New typedef.
27723         * metadata.h (MonoMethodSignature): Removed `gen_method', make
27724         `generic_param_count' consume just 30 bits, added `is_inflated'
27725         and `has_type_parameters' flags (one bit each).
27727         * class.c (mono_class_inflate_generic_method): Create a
27728         MonoMethodInflated instead of a MonoMethodNormal and set
27729         `is_inflated' in the method signature.
27731         * class.h (MonoGenericMethod): Removed `generic_method'.
27733 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
27735         * image.c: Make sure the name of a MonoImage is always an absolute path.
27736           This fixes bug #54415.
27738 2004-03-24  Martin Baulig  <martin@ximian.com>
27740         * class.c (mono_class_setup_vtable): If we're a generic instance,
27741         use our generic type's vtable size.
27743 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
27745         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
27746         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
27747         problems.
27749 2004-03-23  Martin Baulig  <martin@ximian.com>
27751         * class.h (MonoDynamicGenericInst): Added `int count_events' and
27752         `MonoEvent *events'.
27754         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
27755         (typebuilder_icalls): Added "get_event_info"; calls
27756         mono_reflection_event_builder_get_event_info(). 
27758         * reflection.c (mono_reflection_generic_inst_initialize): Added
27759         `MonoArray *events'.
27760         (mono_reflection_event_builder_get_event_info): New function.
27762 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
27764         * object.h: add mono_type_initialization_init
27766         * object.c (mono_runtime_class_init): 
27767         implement class constructor synchronization rules
27768         to cope with threading issues.  
27769         add mono_type_initialization_init
27771         * appdomain.c (mono_runtime_init): call 
27772         mono_type_initialization_init
27774         * class.h: removing initializing field from MonoVTable
27776 2004-03-23  Martin Baulig  <martin@ximian.com>
27778         * class.c (my_mono_class_from_generic_parameter): Use
27779         `param->name' if it's not NULL. 
27781 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
27783         * class.c: do not insert non-virtual methods in the vtable.
27784         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
27785         that means the method is non-virtual. This never would have
27786         happened before.
27788 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
27790         * profiler.c: Added lock for accessing coverage_hash.
27792 2004-03-22  Martin Baulig  <martin@ximian.com>
27794         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
27795         `method->method->signature->generic_param_count != 0' to make it
27796         work for interface methods.
27798 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27800         * process.c: quote the string passed to the shell using g_shell_quote.
27802 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27804         * threads.c:
27805         (mono_threads_manage): don't remove the finalizer thread and self
27806         from the threads hash table so that mono_thread_manage can be called
27807         more than once.
27809 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27811         * process.c: quote the arguments when UseShellExecute is true. Fixes
27812         bug #55790.
27814 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27816         * threads.c: set mono_thread_detach as a cleanup routine for every
27817         thread. This way it's always executed upon thread termination, either
27818         aborted or finished normally. No more xsp hangs!
27820 2004-03-17  Martin Baulig  <martin@ximian.com>
27822         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
27823         `int count_nested' and a `MonoType **nested'.
27825         * reflection.c (mono_reflection_bind_generic_parameters): Moved
27826         most of the functionality into a new static
27827         do_mono_reflection_bind_generic_parameters() and don't take a
27828         `MonoType *nested_in' argument any more.  Don't compute nested
27829         types here.
27830         (mono_reflection_generic_inst_get_nested_types): New public method
27831         to get nested types.
27833         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27834         we're a nested class.
27836         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27837         mono_reflection_generic_inst_get_nested_types() to compute the
27838         nested types.
27840 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27842         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
27843         descriptive error message under windows.
27844         
27845 2004-03-17  Martin Baulig  <martin@ximian.com>
27847         * class.c (dup_type): Added `const MonoType *original' argument;
27848         copy the attrs from the original type.
27850 2004-03-17  Martin Baulig  <martin@ximian.com>
27852         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
27853         `m->generic_inst_cache' here.
27855 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27857         * exception.h exception.c: Add stack_overflow_exception.
27859 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27861         * threadpool.c:
27862         (overlapped_callback): call SetEvent *after* invoking the callback.
27863         No need to call CloseHandle.
27865 2004-03-16  Martin Baulig  <martin@ximian.com>
27867         * reflection.c (mono_image_get_fieldref_token): Take a
27868         `MonoReflectionField *' instead of a `MonoClassField *' and a
27869         `MonoClass *'; store the `MonoReflectionField *' in the hash.
27871 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27873         * appdomain.c: don't add the culture to the filename we're looking for
27874         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
27876 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27878         * locales.c: don't ignore symbols when doing case insensitive compares.
27879         Thanks Dick! Fixes bug #54046.
27881         * threads.c: surround 'threads' usage with enter/leave in
27882         mono_thread_manage.
27884 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
27886         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
27887         implicitly marshalled as [Out]. Fixes #55450.
27889         (mono_marshal_get_runtime_invoke): Zero out the result if there is
27890         an exception.
27892 2004-03-16  Martin Baulig  <martin@ximian.com>
27894         * class.c (mono_class_from_generic_parameter): Use the actual
27895         parameter name. 
27897 2004-03-16  Martin Baulig  <martin@ximian.com>
27899         * reflection.c (type_get_signature_size): New static function.
27900         Compues the size of the type in a method signature.
27901         (method_get_signature_size): New static function; calls
27902         type_get_signature_size() to compute the actual size of the
27903         method's signature.
27904         (method_encode_signature): Use method_get_signature_size() to get
27905         the signature's size rather than using `nparams * 10'.
27907 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27909         * file-io.h: define here WapiOverlapped on windows. I don't want the
27910         regular OVERLAPPED one.
27912         * file-io.c:
27913         * threadpool.c: somehow, BindIoCompletionCallback is not found.
27914         Disabling AIO on windows.
27916 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27918         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
27919         bug #55385.
27921 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27923         * appdomain.c: upgraded corlib version.
27925         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
27926         and BeginWrite. Allow opening files for asynchrnous operations.
27928         * file-io.h: new struct that maps FileStreamAsyncResult.
27929         * icall.c: added new icalls.
27930         * process.[ch]: support setting child process environment variables
27931         and use the SHELL or COMSPEC when UseShellExecute is true.
27933         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
27934         callback for async. IO is here and also BindHandle.
27936         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
27937         from here.
27939 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
27941         * reflection.c (create_custom_attr): Allow len == 0.
27943         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
27944         computation on big-endian machines.
27946 2004-03-13  Martin Baulig  <martin@ximian.com>
27948         * class.h (MonoGenericInst): Added `int count_ifaces'.
27950         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
27951         `ginst->count_ifaces' instead `klass->interface_count' since we
27952         may get called before the vtable is created.
27954         * loader.c (mono_method_get_param_names): If we're a generic
27955         instance, return and don't initialize the class.
27957         * reflection.c (mono_reflection_setup_generic_class): Don't call
27958         ensure_runtime_vtable().
27959         (mono_reflection_bind_generic_parameters): Set
27960         `ginst->count_ifaces'.
27962 2004-03-11  Jackson Harper <jackson@ximian.com>
27964         * icall.c:
27965         * unicode.c:
27966         * unicode.h: Remove unused System.Char icalls.
27967         
27968 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
27970         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
27971         code when we P/Invoke the first library in Windows.Forms, instead
27972         of when we first open the assembly.
27974         * assembly.c: Drop the lookup from here.
27976 2004-03-10  Martin Baulig  <martin@ximian.com>
27978         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
27979         class for properties, fields and events.  Finally fixes #54945.
27981 2004-03-10  Martin Baulig  <martin@ximian.com>
27983         * metadata.c (mono_metadata_class_equal): New static function;
27984         checks whether two generic instances or two generic parameters are
27985         equal.
27986         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
27987         compare classes.        
27989 2004-03-10  Martin Baulig  <martin@ximian.com>
27991         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
27993         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
27994         argument and write it into the `reflection_info' field.
27996         * icall.c
27997         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
27998         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28000 2004-03-09  Jackson Harper  <jackson@ximian.com>
28002         * char-conversions.h: use 8 bits for numeric data its all we need
28003         * icall.c: numeric data is only 8 bits now.
28005 2004-03-09  Martin Baulig  <martin@ximian.com>
28007         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28009         * class.c (init_properties, init_events): Initialize the new
28010         `parent' field.
28012         * reflection.c (typebuilder_setup_properties): Likewise.
28013         (typebuilder_setup_events): Likewise.
28015         * reflection.h (MonoEventInfo): Replaced `parent with
28016         `declaring_type' and `reflected_type'.
28018         * icall.c (ves_icall_get_property_info): Distinguish between
28019         declaring and reflected type.
28020         (ves_icall_get_event_info): Likewise.
28022 2004-03-09  Martin Baulig  <martin@ximian.com>
28024         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28025         (ves_icall_Type_GetField): Correctly set field->klass.
28027 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28029         * loader.h: Fix warning.
28031 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28033         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28034         library routine if present.  Notice that it will still continue
28035         executing even if its missing, for those working on the Gtk#
28036         edition of Windows.Forms.
28038         * assembly.c (do_mono_assembly_open): If loading the
28039         System.Windows.Forms call mono_loader_wini_init.
28041 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28043         * class.h: Added MonoRemoteClass struct.
28044         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28045         function for MonoStrings.
28046         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28047         Added internal call for getting the proxy type.
28048         * marshal.c: Get the type of transparent proxies from its remote_class.
28049         Added methods that generate the IL for type checks and casts:
28050         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28051         mono_marshal_get_proxy_cancast.
28052         * marshal.h: Declaration of the previous new methods.
28053         * object.c: Added new moethods for creating and updating MonoRemoteClass
28054         instances: mono_remote_class, mono_upgrade_remote_class, 
28055         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28056         * verify.c: FIx transparent_proxy_fields layout.
28057         * appdomain.c: Bump corlib version.
28059 2004-03-04  Jackson Harper  <jackson@ximian.com>
28061         * icall.c: Add icall to access char conversion tables.
28062         * char-conversions.h: Character conversion tables.
28063         * Makefile.am: Add char-conversions.h private header file.
28064         
28065 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28067         * appdomain.c (unload_thread_main): Increase unloading timeout to
28068         10 sec as a temporary workaround for Nant problems.
28070 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28072         * gc.c: Add checks for GC_enable and GC_disable.
28074         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28075         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28076         (bug #54988).
28077         
28078 2004-02-27  Martin Baulig  <martin@ximian.com>
28080         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28081         `MonoReflectionType *' instead of a `MonoType *'.
28083 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28085         * gc.c (run_finalize): Avoid finalizing the object representing the
28086         finalizer thread.
28087         (finalizer_thread): Fix warning.
28089 2004-02-25  Martin Baulig  <martin@ximian.com>
28091         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28092         argument for nested types.
28093         (mono_class_create_generic): Added support for nested generictypes.
28095         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28096         `GList *nested'.
28098         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28100         * reflection.c (method_encode_signature): Increase the minimum
28101         value of `size' from 10 to 11.
28102         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28103         and `MonoType **types' arguments instead of the `MonoArray
28104         *types'; added `MonoType *nested_in'.  Recursively instantiate
28105         nested classes. 
28107 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28109         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28110         stack_overflow_ex members which are used by exception handling.
28112         * appdomain.c (mono_runtime_init): Initialize the new members.
28114         * gc.c (mono_gc_enable): New helper function.
28115         * gc.c (mono_gc_disable): New helper function.
28117 2004-02-23  Martin Baulig  <martin@ximian.com>
28119         * icall.c: I must have been really stupid - make it actually work
28120         this time ;-)
28122 2004-02-23  Martin Baulig  <martin@ximian.com>
28124         * loader.c (method_from_memberref): Only inflate the method if
28125         it's in another klass.
28127 2004-02-23  Martin Baulig  <martin@ximian.com>
28129         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28130         (mono_class_init): If we're a generic instance and an interface,
28131         compute `class->interface_id'; also create `class->interfaces'
28132         here and inflate them.
28134         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28135         `ginst->is_open'.
28136         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28138         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28140 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28142         * reflection.c (method_encode_code): Improved the error message
28143         generated by the exception.
28145 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28147         * icall.c: Martin did not do what he said in the ChangeLog for
28148         2004-02-18, but put back the changes for properties and events.
28149         Commenting those changes out again and adding comment to bug #54518.
28150         
28151         * process.c: removed warning.
28153 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28155         * marshal.c (emit_struct_conv): Print an error message instead of
28156         asserting when a type does not have the StructLayout attribute.
28158 2004-02-20  Martin Baulig  <martin@ximian.com>
28160         * reflection.c (mono_type_get_object): Also use the cache for
28161         generic instances.
28162         (mono_reflection_bind_generic_parameters): Always compute
28163         `ginst->ifaces'.        
28165 2004-02-20  Martin Baulig  <martin@ximian.com>
28167         * class.h (MonoGenericMethod): Removed `klass'.
28169         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28170         *klass' argument.
28172 2004-02-20  Martin Baulig  <martin@ximian.com>
28174         * reflection.c (method_encode_methodspec): Actually use the
28175         uninflated signature for the memberref.
28177 2004-02-20  Martin Baulig  <martin@ximian.com>
28179         * class.h (MonoGenericMethod): Removed `declaring'.
28181         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28182         is NULL, compute it here.
28184 2004-02-20  Martin Baulig  <martin@ximian.com>
28186         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28188         * metadata.c (mono_metadata_generic_inst_hash): New method.
28189         (mono_metadata_generic_inst_equal): New method.
28191         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28192         `klass->image->generic_inst_cache' cache to avoid creating
28193         duplicate MonoGenericInst's.
28195         * class.c (mono_class_inflate_generic_type): Use the cache.
28197 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28199         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28201 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28203         * icall.c: added Socket.WSAIoctl icall.
28205         * socket-io.[ch]: implemented
28206         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28208 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28210         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28212 2004-02-18  Urs C Muff  <umuff@quark.com>
28214         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28215         this work on PPC and other big-endian architectures.
28217         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28218         fields with an underscore to make sure they're only accessed by
28219         the read32() macro.
28221 2004-02-18  Martin Baulig  <martin@ximian.com>
28223         * icall.c: Put the klass->refclass changes back for methods and
28224         fields, but not for properties and events.  We're currently not
28225         distinguishing between DeclaringType and ReflectedType for
28226         properties and events, that's what caused the regressions.
28228 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28230         * object.c:
28231         (mono_async_result_new): the handle can be NULL.
28233         * threadpool.c: Use an event instead of a semaphore, don't initialize
28234         it until needed. This saves quite a few semaphores from being created
28235         when using the threadpool.
28237 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28239         * object.c (mono_string_is_interned_lookup): Fix interning of long
28240         strings. Fixes #54473.
28242         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28244         * icall.c: Revert the klass->refclass changes since they introduce
28245         regressions (bug #54518).
28247 2004-02-18  Martin Baulig  <martin@ximian.com>
28249         * class.c (mono_class_init): If we're a generic instance and don't
28250         come from a TypeBuilder, inflate our members here.
28251         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28252         (mono_class_create_generic): New public method.
28253         (mono_class_initialize_generic): Removed.
28254         (get_instantiation_name): Renamed to
28255         _mono_class_get_instantiation_name() and made it public.
28257 2004-02-18  Martin Baulig  <martin@ximian.com>
28259         * class.c (mono_class_inflate_generic_type): Clear the new
28260         instance's `nginst->klass' when inflating a generic instance.
28261         (mono_class_is_subclass_of): Added (basic) support for generic
28262         instances.
28264 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28266         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28267         MonoMempool to hold compiled native code.
28269 2004-02-17  Martin Baulig  <martin@ximian.com>
28271         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28272         `properties'.
28274         * reflection.c (mono_reflection_generic_inst_initialize): Added
28275         `MonoArray *properties' argument.
28277         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28279 2004-02-17  Martin Baulig  <martin@ximian.com>
28281         * icall.c (ves_icall_Type_GetFields): Renamed to
28282         ves_icall_Type_GetFields_internal() and added a
28283         `MonoReflectionType *rtype' argument; pass it to
28284         mono_field_get_object() to set the field's "reflected" type.
28285         (ves_icall_Type_GetConstructors): Likewise.
28286         (ves_icall_Type_GetEvents): Likewise.
28287         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28288         argument; pass it to mono_method_get_object() to set the method's
28289         "reflected" type.       
28291 2004-02-17  Martin Baulig  <martin@ximian.com>
28293         * class.h (MonoDynamicGenericInst): New type.
28294         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28296         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28297         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28298         (ves_icall_MonoGenericInst_GetFields): New interncall.
28300         * class.c (mono_class_from_generic): Don't call
28301         mono_class_initialize_generic() if this is a dynamic instance;
28302         ie. it's being created from a TypeBuilder.
28303         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28304         `class->byval_arg.type'.
28306         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28307         to `inflate_method' and made static.
28308         (mono_reflection_inflate_field): Removed.
28309         (mono_reflection_generic_inst_initialize): New public method.
28311         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28312         `ctors' and `fields'; added `initialized'.
28314 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28316         * debug-helpers.c (mono_method_full_name): Fix output for empty
28317         namespaces.
28319 2004-02-12  Martin Baulig  <martin@ximian.com>
28321         * class.h (MonoClassField): Added `MonoType *generic_type'.
28323         * reflection.c (mono_image_get_fieldref_token): Added support for
28324         instantiated generic types.
28325         (field_encode_inflated_field): Removed.
28326         (mono_image_get_inflated_field_token): Removed.
28327         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28329         * reflection.h (MonoReflectionInflatedField): Removed.
28331 2004-02-12  Martin Baulig  <martin@ximian.com>
28333         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28334         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28336         * reflection.c (mono_image_get_methodspec_token): Take a
28337         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28338         (mono_image_create_token): Check whether we have a
28339         `method->signature->gen_method' and call
28340         mono_image_get_methodspec_token() if appropriate.
28341         (inflated_method_get_object): Removed.
28342         (mono_reflection_bind_generic_method_parameters): Return a
28343         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28344         (mono_reflection_inflate_method_or_ctor): Likewise.
28346         * reflection.h (MonoReflectionInflatedMethod): Removed.
28348 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28350         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28351         for custom valuetype marshalling.
28353         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28355 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28357         * icall.c: fixed WSAGetLastError_internal name.
28359 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28361         * threads.c (mono_thread_attach): Allow this to be called multiple
28362         times for a thread.
28363         
28364         * threads.c (build_wait_tids): Do not wait for ourselves.
28366         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28367         appdomain list is empty.
28369         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28370         memory returned by mono_string_builder_to_utf16, since it points into
28371         managed memory. Thanks to Bernie Solomon for noticing this.
28373         * icall.c: Add AppDomainSetup icalls.
28375         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28377         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28378         types.
28380         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28381         custom attributes to the method_aux struct. Also fix array indexes etc.
28383         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28384         
28385 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28387         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28388         (both static and runtime) and reduce startup time.
28390 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28392         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28393         AsAny marshalling conversion instead of crashing.
28395         * marshal.c: Fix warnings.
28397 2004-02-09  Martin Baulig  <martin@ximian.com>
28399         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28401         * reflection.h (MonoReflectionInflatedMethod): Removed the
28402         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28404         * reflection.c (method_encode_methodspec): Removed the `method'
28405         argument; we get it from `gmethod->declaring'.
28406         (inflated_method_get_object): Removed the `declaring' argument.
28408 2004-02-09  Martin Baulig  <martin@ximian.com>
28410         * class.h (MonoGenericMethod): New type.
28411         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28412         `generic_method'.
28414         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28415         a `MonoGenericMethod *gen_method' one.
28417         * class.c (mono_class_inflate_generic_type): Take an additional
28418         `MonoGenericMethod * argument.  This is only non-NULL if we're
28419         inflating types for a generic method.   
28420         (mono_class_inflate_generic_signature): Renamed to
28421         inflate_generic_signature() and made static; take a
28422         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28423         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28424         instead of a `MonoGenericInst *' one.
28425         (mono_class_inflate_generic_method): Likewise.
28427         * reflection.c (encode_generic_method_sig): Take a
28428         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28429         (method_encode_methodspec): Likewise.
28430         (inflated_method_get_object): Likewise. 
28432         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28433         field with a `MonoGenericMethod *gmethod' one.  
28435 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28437         * class.h (mono_class_has_parent): add parens to expansion
28438         so you can ! this.
28440 2004-02-08  Martin Baulig  <martin@ximian.com>
28442         * image.h (MonoImage): Removed `generics_cache'.
28444         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28445         instead of a `MonoType *' argument; removed the `inflate_methods'
28446         argument.  Don't inflate methods here.
28448         * loader.c (find_method): If it's a generic instance, call
28449         mono_class_init() on the `sclass->generic_inst->generic_type'.
28451         * metadata.c (mono_type_size): Make this work on uninitialized
28452         generic instances; call it on the `ginst->generic_type's class.
28454         * reflection.c (mono_reflection_bind_generic_parameters): Call
28455         mono_class_from_generic() to create the `ginst->klass'.
28457 2004-02-08  Martin Baulig  <martin@ximian.com>
28459         * class.h (MonoClass): Changed type of `generic_inst' from
28460         `MonoType *' to `MonoGenericInst *'.
28462 2004-02-08  Martin Baulig  <martin@ximian.com>
28464         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28465         mono_type_get_object(), this is now creating a `MonoGenericInst'
28466         for MONO_TYPE_GENERICINST.
28467         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28468         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28470         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28471         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28472         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28473         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28474         and reflected type.
28476         * reflection.h (MonoReflectionInflatedMethod): Removed
28477         `declaring_type' and `reflected_type'.
28479 2004-02-08  Martin Baulig  <martin@ximian.com>
28481         * class.h (MonoGenericInst): Added `MonoType *parent' and
28482         `MonoType **ifaces'.
28484         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28485         `parent' and `interfaces'.
28487         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28488         `MonoType *' argument and return a `MonoType *'.
28490         * icall.c
28491         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28492         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28494 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28496         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28497         valuetype marshalling.
28499 2004-02-06  Martin Baulig  <martin@ximian.com>
28501         * class.c
28502         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28503         (my_mono_class_from_generic_parameter): Likewise.
28505 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28507         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28508         contents of the symbol files lazily.
28510         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28512         * threads.h threads.c icall.c: New icalls for getting and setting the
28513         threads name.
28515 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28517         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28518         Raise an exception when the domain is not found.
28520 2004-02-03  Martin Baulig  <martin@ximian.com>
28522         * reflection.c (mono_image_get_methodspec_token): Use the
28523         uninflated signature; fixes gen-33.
28525 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28527         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28528         the finalizer code can use thread functionality.
28530         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28531         the finalizer thread.
28533         * threads.c: Make some functions more robust.
28535         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28537         * metadata.h: Add new marshalling conventions.
28539         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28540         stringbuilder marshalling. Fixes #53700.
28542         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28544         * reflection.c (mono_image_get_type_info): Save declarative security
28545         info.
28547         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28548         unmanaged fields as well.
28550         * appdomain.c: Bump corlib version.
28552 2004-02-01  Martin Baulig  <martin@ximian.com>
28554         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28555         method type arguments.  
28557 2004-01-30  Duncan Mak  <duncan@ximian.com>
28559         * marshal.h: Add prototype for
28560         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28561         and
28562         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28563         fix the build.
28565 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28567         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28568         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28570 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28572         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28573         custom marshalling of valuetypes.
28575         * marshal.c: Fix some warnings.
28577 2004-01-29  Martin Baulig  <martin@ximian.com>
28579         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28580         for generic method parameters.
28582         * reflection.c (method_encode_methodspec): Write the uninflated
28583         signature into the methodspec table.
28584         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28585         is always the uninflated method.
28586         (reflection_methodbuilder_to_mono_method): Copy the generic
28587         parameters from the MethodBuilder into `header->gen_params'.
28589 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28591         * class.c (mono_class_from_generic_parameter): Fix warning.
28593 2004-01-27  Martin Baulig  <martin@ximian.com>
28595         * class.c (mono_class_from_generic_parameter): Don't create
28596         `klass->methods' here.  
28598 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28600         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28601         extension since it does not work with libraries named lib<FOO>.dll.so.
28603 2004-01-25  Martin Baulig  <martin@ximian.com>
28605         * class.c (mono_class_inflate_generic_type): Added support for
28606         MONO_TYPE_GENERICINST.
28608         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28609         inflate methods on open constructed types.      
28611 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28613         * object.c: fire ProcessExit event in the root AppDomain after running
28614         Main. Fixes bug #53299.
28616 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28618         * socket-io.c: include the new socket-wrappers.h header.
28619         Use the wrappers instead of the unix socket functions to make the code
28620         more clear.
28622 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28624         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28626         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28627         Fixes #22532.
28629 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28631         * reflection.c (mono_image_create_pefile): Handle the case when the
28632         entry point is not a MethodBuilder.
28634         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28635         field to ReflectionMethod since it is not allways a builder.
28637         * reflection.c (type_get_fully_qualified_name): New helper function to
28638         return the fully qualified name of a type.
28640         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28641         type name for custom marshallers.
28643         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28645         * class.c (mono_class_setup_vtable): If a parent class already 
28646         implements an interface, use the implementing methods from that class.
28647         Fixes #53148.
28649 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28651         * threadpool.c: just return instead of ExitThread to allow for thread
28652         clean up earlier.
28654 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28656         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28657         when closing resource modules.
28659         * reflection.c (mono_image_create_pefile): Handle the case when the
28660         entry point is not a MethodBuilder.
28662         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28663         field to ReflectionMethod since it is not allways a builder.
28665 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28667         * marshal.c (mono_marshal_get_managed_wrapper): 
28668         mono_marshal_alloc takes native int so CONV_I
28669         the arg for 64bits.
28671 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28673         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28674         tokens in the cattr table. Fixes #53108.
28676 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28678         * loader.c: don't trim ".dll" before looking up in the config file.
28679         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
28681 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
28683         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
28684         Return the module which contains the resource as well.
28685         (ves_icall_System_Reflection_Module_Close): New icall.
28687         * appdomain.c: Bump corlib version number.
28689         * image.c (mono_image_addref): New public function.
28691         * assembly.c: Call mono_image_addref.
28693         * reflection.c (mono_module_get_object): Increase reference count of 
28694         the image.
28696         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28697         Fixes #22532.
28699         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
28700         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
28701         proper exceptions on DllImport problems.
28703 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
28705         * class.c, metadata.c: eliminate CSIZE macro.
28707 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
28709         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
28710         * object.h: Added async_callback field in MonoAsyncResult.
28711         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
28712         * verify.c: Added async_callback in MonoAsyncResult layout.
28714 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
28716         * reflection.c (mono_reflection_get_custom_attrs): Add support
28717         for Modules.
28719 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28721         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
28722         marshalling.
28723         (mono_marshal_method_from_wrapper): Add null pointer check.
28725 2004-01-16  Martin Baulig  <martin@ximian.com>
28727         * debug-mono-symfile.h: Set version number to 36 and reflect
28728         latest symbol writer changes.
28730 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28732         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
28733         multi-dimensional arrays.
28734         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
28735         (mono_class_from_mono_type): Use bounded_array_class_get.
28736         
28737         * class.c (mono_bounded_array_class_get): New function which takes
28738         a 'bounded' bool argument to distinguish vectors from one dimensional
28739         arrays.
28741         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
28742         bounded_array_class_get if the array has bounds.
28744         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28745         Search modules loaded using AssemblyBuilder:AddModule as well.
28747 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28749         * appdomain.c: increased corlib version.
28750         * filewatcher.c: removed g_print.
28751         * icall.c:
28752         (get_property_info): only allocate what is actually requested.
28753         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
28755 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28757         * Makefile.am: added filewatcher.[ch]
28758         * filewatcher.[ch]: FileSystemWatcher runtime support.
28759         * icall.c: added new FSW icalls.
28761 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
28763         * string-icalls.c: fix stringbuilder regression as suggested by
28764         Iain McCoy <iain@mccoy.id.au>.
28766 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
28768         * process.c (process_read_stringtable_block): Recognize '007f' as
28769         a language neutral stringtable block.
28771 2004-01-12  Patrik Torstensson
28773         * object.h (MonoStringBuilder) : Changed layout to support our
28774         new stringbuilder class.
28775         * marshal.c: Change marshalling to support the new layout of 
28776         string builder.
28777         * appdomain.c: increased version number because new layout of
28778         string builder.
28780 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
28782         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
28783         assembly name as an string instead of an AssemblyName, since it is
28784         easier to extract info from it.
28786         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
28787         the culture subdirectories too. Fixes #52231.
28789 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28791         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
28792         It takes 2 new parameters with an optional name for the method to look
28793         for and case ignoring info.
28795         * threadpool.c: removed unused variable.
28797 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28799         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
28800         It takes 2 new parameters with an optional name for the property to look
28801         for and case ignoring info.
28802         Fixes bug #52753.
28804 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
28806         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
28807         Fix #52451.
28809 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28811         * appdomain.c:
28812         * assembly.c: escape the uri before passing it to g_filename_from_uri.
28813         Fixes bug #52630.
28815 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
28817         * reflection.c: Add support for more than one unmanaged resource.
28819         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
28820         in field->def_value, as done in all other cases.
28822         * reflection.c (mono_reflection_get_custom_attrs): Add support for
28823         TypeBuilders.
28825         * reflection.c (mono_reflection_create_runtime_class): Remove 
28826         errorneous assignment to klass->element_class, since it is already
28827         done in mono_reflection_setup_internal_class.
28829 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28831         * gc.c: added missing LeaveCriticalSection.
28832         * icall.c: indented a couple of lines.
28833         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28834         if we call EndInvoke inside a callback. Fixes bug #52601.
28836 2004-01-07  Martin Baulig  <martin@ximian.com>
28838         * mono-debug-debugger.h
28839         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
28841 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
28843         * appdomain.c: Use messages in NotImplementedException.
28845         * exception.c (mono_get_exception_not_implemented): Now this takes
28846         a message argument.
28848         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
28849         exception instead of g_asserting an aborting when something is not
28850         implemented.
28852         Add some inline docs.
28854 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
28856         * reflection.h: Update after changes to object layout.
28858         * reflection.c: Implement saving of unmanaged aka win32 resources.
28860         * appdomain.c: Bump version number.
28862         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
28863         Handle missing domains gracefully.
28865 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
28867         * file-io.c : On Windows, there are much more invalid_path_chars.
28869 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
28871         * class.h, object.c: prepare for GetType () speedup.
28873 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
28875         * profiler.c: workaround for --profile null reference exception on
28876           cygwin. Patch by Patrik Torstensson.
28878 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
28880         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
28881         make work for unaligned access.
28883 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
28885         * class.c: small cleanup (class->fields [i] -> field).
28886         * image.c: check address of metadata is valid.
28888 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
28890         * assembly.h assembly.c (mono_assembly_loaded): New public function to
28891         search the list of loaded assemblies.
28893         * reflection.c (mono_reflection_type_from_name): Use 
28894         mono_assembly_loaded instead of mono_image_loaded.
28896         * reflection.c: Fix warnings.
28898 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
28900         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
28901         is dynamic. This is needed since an assembly can contain both dynamic and
28902         non-dynamic images.
28904         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
28905         assembly->dynamic.
28907         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
28909         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
28910         to store modules loaded using AddModule.
28912         * reflection.c (mono_image_fill_file_table): Generalize this so it works
28913         on Modules.
28915         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
28917         * reflection.c (mono_image_fill_export_table_from_module): New function to
28918         fill out the EXPORTEDTYPES table from a module.
28920         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
28921         into a separate function. Also handle loaded non-dynamic modules.
28923         * reflection.c (mono_image_basic_init): Fix memory allocation.
28925         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28927         * assembly.c (mono_assembly_load_references): Make this public.
28929 2003-12-19  Martin Baulig  <martin@ximian.com>
28931         * class.c (mono_class_initialize_generic): Made this static, take
28932         a `MonoGenericInst *' instead of a `MonoClass *'.
28933         (mono_class_from_generic): Call mono_class_initialize_generic()
28934         unless we're already initialized or being called from
28935         do_mono_metadata_parse_generic_inst().
28937         * class.h (MonoGenericInst): Added `initialized' and
28938         `init_pending' flags.
28940         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
28941         `mono_class_init (gklass)' or mono_class_initialize_generic()
28942         here; set `generic_inst->init_pending' while parsing the
28943         `type_argv'.
28945 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
28947         * locales.c: include string.h for memxxx prototypes
28949 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
28951         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
28952         constructor when accessing literal fields.
28954 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
28956         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28958         * reflection.c (assembly_add_resource_manifest): New function to fill
28959         the MANIFESTRESOURCE table.
28961         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
28963         * reflection.h: Update to changes in class layout.
28965         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
28966         Reenable call to mono_runtime_is_shutting_down ().
28968         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
28969         determine if the runtime is shutting down.
28971 2003-12-16  Jackson Harper <jackson@ximian.com>
28973         * icall.c: comment out call to mono_runtime_is_shutting_down to
28974         fix build.
28975         
28976 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
28978         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
28979         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
28981 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
28983         * reflection.c: move definition of swap_with_size
28984         to before its first call
28986 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
28988         * appdomain.c (mono_runtime_is_shutting_down): New public function.
28990         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
28991         icall.
28993         * object.c: Fix warnings.
28995         * icall.c (ves_icall_Type_Get...): Only consider inherited static
28996         members if FlattenHierarchy is set.
28998         * reflection.c (mono_image_add_decl_security): New function to emit
28999         declarative security.
29001         * reflection.h reflection.c: Add support for declarative security.
29003         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29004         
29005 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29007         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29008         
29009         * appdomain.c verify.c: Moved corlib version checking into its own
29010         function in appdomain.c since it needs to create vtables etc.
29012 2003-12-13  Patrik Torstensson <p@rxc.se>
29014         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29015         instead of unwrapped server.
29017 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29019         * verify.c (check_corlib): Fix field index.
29021 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29023         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29024         GetGacPath icall.
29026 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29028         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29029         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29030         cope with sizeof(size_t) != sizeof(guint32).
29032 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29034         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29035         in case of failure.
29037 2003-12-10  Mark Crichton <crichton@gimp.org>
29039         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29040         in managed code.
29042         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29044 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29046         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29047         marked as deleted.
29049 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29051         * verify.c (check_corlib): Handle the case when the version field is 
29052         initialized by a static constructor.
29054 2003-12-08  Patrik Torstensson  <p@rxc.se>
29056     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29058 2003-12-08  Martin Baulig  <martin@ximian.com>
29060         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29061         a MonoReflectionGenericParameter, also take the parameter index
29062         and name as arguments.
29063         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29064         (ves_icall_MonoGenericParam_initialize): New interncall.
29065         (ves_icall_Type_make_byref_type): New interncall.
29067         * reflection.h (MonoReflectionGenericParam): Derive from
29068         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29069         `index' fields.
29071         * reflection.c (mono_reflection_define_generic_parameter): Create
29072         and return a new MonoReflectionGenericParam; don't initialize the
29073         constraints here.
29074         (mono_reflection_initialize_generic_parameter): New public method;
29075         initializes the constraints and creates the `param->pklass'.
29077 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29079         * reflection.h reflection.c: Use the new fields 'num_types', 
29080         'num_fields' and 'num_methods' to track the number of types etc.
29082         * verify.c (check_corlib): Check corlib version number.
29084 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29086         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29087         function works on all methods.
29089 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29091         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29092         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29093         the custom_type_info flag of the transparent proxy.
29094         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29095         objects that supports IRemotingTypeInfo.
29096         * object.h: Added custom_type_info field in transparent proxy.
29098 2003-12-06  Martin Baulig  <martin@ximian.com>
29100         * class.c (mono_class_create_from_generic): Removed.
29101         (mono_class_from_generic): Check `ginst->klass' before doing
29102         anything else.  This is important to fully support "recursive"
29103         generic types.
29105         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29106         empty `generic_inst->klass' before doing anything else.
29108 2003-12-06  Dick Porter  <dick@ximian.com>
29110         * verify.c: 
29111         * object.h:
29112         * icall.c:
29113         * locales.c: Use C structs to access class fields.  Don't do a
29114         conversion between MonoString and UChar because both are
29115         platform-endian UTF-16.  Compare now takes startindex and count
29116         parameters.  Add a char overload for IndexOf.  Speed up the
29117         invariant string IndexOf.
29119 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29121         * Makefile.am (monosn_LDADD): Fix parallel build.
29123 2003-12-04  Martin Baulig  <martin@ximian.com>
29125         * icall.c
29126         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29127         (ves_icall_Type_make_array_type): New interncall.       
29129 2003-12-04  Martin Baulig  <martin@ximian.com>
29131         * locales.c: also change it in the !HAVE_ICU case.
29133 2003-12-04  Dick Porter  <dick@ximian.com>
29135         * icall.c:
29136         * locales.c: construct_compareinfo is now in CompareInfo, not
29137         CultureInfo.
29139 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29141         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29142         image->files array.
29144         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29145         table as well.
29147         * assembly.c (mono_assembly_load_references): Only load references
29148         once.
29150         * class.c (mono_class_from_name): Avoid linear search of the 
29151         EXPORTEDTYPE table.
29153         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29155 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29157         * image.h (MonoImage): Add 'field_cache' field.
29159         * loader.c (mono_field_from_token): Cache field lookups.
29160         
29161         * reflection.c (mono_module_get_object): Fix name property.
29163         * icall.c (ves_icall_get_enum_info): Update after changes to 
29164         mono_metadata_get_constant_index ().
29166         * icall.c: Get rid of get_type_info icall, use a separate icall for
29167         each type property to avoid needless memory allocations. Fixes #51514.
29169         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29170         to avoid needless binary searches.
29172         * class.c (class_compute_field_layout): Move the initialization of
29173         field->def_value to mono_class_vtable ().
29175         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29176         non-corlib types.
29178         * object.c (mono_object_allocate): Make it inline.
29180         * object.c (mono_object_allocate_spec): Make it inline.
29181         
29182 2003-12-02  Dick Porter  <dick@ximian.com>
29184         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29185         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29187 2003-12-01  Dick Porter  <dick@ximian.com>
29189         * threads.c: Fix signature and call in CreateMutex and
29190         CreateEvent.
29192 2003-12-01  Dick Porter  <dick@ximian.com>
29194         * icall.c: 
29195         * locales.c: Implement string compares and searching
29197         * object.h: Add extra Thread field
29199 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29201         * reflection.c (fixup_method): Add support for MonoCMethod.
29203 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29205         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29207         * reflection.c (assembly_name_to_aname): Allow extra characters in
29208         assembly names. Fixes #51468.
29210 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29212         * exception.c (mono_exception_from_name_domain): New helper function.
29214         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29215         exception object in the correct domain.
29217         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29218         formatting + make a copy a the input data.
29220         * loader.c (mono_get_method_from_token): Methods which contain
29221         native code do not have entries in the ImplMap.
29223         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29224         Thanks to Gonzalo for spotting this.
29225         
29226         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29227         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29229         * assembly.h (mono_assembly_load_from): Split the second part of 
29230         assembly loading into a new public function.
29232         * exception.h (mono_get_exception_bad_image_format): New function.
29234 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29236         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29237         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29238         
29239         * icall.c: Add new icall for creating dynamic methods.
29241         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29243         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29245         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29246         create a dynamic method.
29248         * reflection.c (resolve_object): New helper function.
29250         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29251         which manipulate it so they can also work on dynamic methods.
29253         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29254         creating the MonoReflectionMethodAux structure if it is not needed.
29255         
29256         * reflection.h verify.c: Update after changes to object layout.
29258         * reflection.c (method_builder_encode_signature): Fix compilation on
29259         gcc 2.95.x.
29261 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29263         * appdomain.h: Added support for context static fields. Added static_data
29264           field to MonoAppContext and renamed thread_static_fields to a more
29265           generic special_static_fields in MonoAppDomain, since it can now contain
29266           context static fields.
29267         * domain.c: Updated hashtable name.
29268         * object.c: Replaced field_is_thread_static() for a more generic
29269           field_is_special_static() which also checks for context static attribute.
29270           In mono_class_vtable(), added support for static context fields.
29271         * threads.c: Changed methods that manage thread static fields to more
29272           generic methods so they can be reused both for thread and context static
29273           data.
29274         * threads.h: Declared some new methods.
29276 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29278         * reflection.h: Update after changes to the managed types.
29280         * reflection.c (encode_custom_modifiers): New helper function.
29282         * reflection.c (method_encode_signature): Emit custom modifiers.
29284         * reflection.c (field_encode_signature): Emit custom modifiers.
29286 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29288         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29290         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29291         implementation.
29293         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29294         icall.
29296         * object.c (mono_field_get_value_object): New function.
29298         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29299         specific.
29301 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29303         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29304         return a preallocated out-of-memory exception instance.
29306         * object.c (out_of_memory): Use the new function.
29308         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29309         flag is before the custom modifiers. Fixes #49802.
29311 2003-11-16  Martin Baulig  <martin@ximian.com>
29313         * class.c (mono_class_is_open_constructed_type): Implemented the
29314         MONO_TYPE_GENERICINST case.
29316 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29318         * assembly.c (mono_assembly_fill_assembly_name): New function to
29319         fill out the MonoAssemblyName structure.
29320         (mono_assembly_open): Use the new function.
29322         * icall.c (fill_reflection_assembly_name): New helper function.
29324         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29325         new function.
29327         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29329 2003-11-15  Martin Baulig  <martin@ximian.com>
29331         * class.c (mono_class_is_open_constructed_type): New public
29332         function; checks whether a type is an open constructed type,
29333         ie. whether it still contains type parameters.
29334         (mono_class_inflate_generic_type): If we're a type parameter and
29335         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29336         type.
29338         * class.h (MonoGenericInst): Added `guint32 is_open'.
29340         * loader.c (method_from_methodspec): Check whether we're an open
29341         or closed constructed type and set `ginst->is_open'.
29343         * reflection.c (mono_reflection_bind_generic_parameters): Check
29344         whether we're an open or closed constructed type and set
29345         `ginst->is_open'.
29346         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29347         from open constructed types.
29349 2003-11-15  Martin Baulig  <martin@ximian.com>
29351         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29352         a generic instance (instead of a generic type declaration) with
29353         unbound generic parameters, bind them to our actual types.
29355 2003-11-14  Martin Baulig  <martin@ximian.com>
29357         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29359         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29360         an interface type, populate `res->interfaces' with instantiated
29361         versions of all the interfaces we inherit.
29363 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29365         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29366         when MONO_PATH is set but doesn't contain the install dir.
29368 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29370         * icall.c:
29371         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29372         it's also implemented in base classes. Fixes bug #50927.
29374 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29376         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29377         if this method is called from a finalizer. Fixes #50913.
29379 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29381         * threads.c: Implement VolatileRead/VolatileWrite
29383         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29385 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29387         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29388         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29389         2.95.3.
29391         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29392         from Peter Ross (pro@missioncriticalit.com).
29393         
29394 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29396         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29398 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29400         * assembly.c (mono_assembly_load_references): Disable check because it
29401         triggers on older corlibs which lots of people have.
29403 2003-11-12  Jackson Harper  <jackson@ximian.com>
29405         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29406         load corlib.dll if mscorlib.dll is not found.
29407         * assembly.h: Remove corlib name define.
29408         * class.c:
29409         * domain.c:
29410         * image.c: Change corlib name to mscorlib.
29411         
29412 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29414         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29416 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29418         * appdomain.h: Added loader_optimization here to sync with the C#
29419         code, and add disallow_binding_redirects field.
29421 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29423         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29425         * reflection.c (mono_image_build_metadata): Fix crash on modules
29426         with no types.
29428         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29430         * icall.c (ves_icall_get_method_info): Return callingConvention as
29431         well.
29433         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29434         namespaces from the EXPORTEDTYPE table as well.
29436         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29437         from all modules inside the assembly.
29438         
29439 2003-11-11  Martin Baulig  <martin@ximian.com>
29441         * reflection.c (mono_reflection_bind_generic_parameters): Make
29442         this work for interfaces.
29444 2003-11-11  Martin Baulig  <martin@ximian.com>
29446         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29448 2003-11-11  Martin Baulig  <martin@ximian.com>
29450         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29451         "MonoInflatedMethod" and "MonoInflatedCtor".
29453 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29455         * reflection.c (resolution_scope_from_image): Use the assembly table
29456         from the manifest module, since other modules don't have it.
29458         * debug-helpers.c (mono_type_full_name): New helper function.
29460         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29462         * image.c (mono_image_load_file_for_image): New public function which
29463         is a replacement for the load_file_for_image in class.c.
29465         * assembly.c (mono_assembly_load_module): A wrapper for the function
29466         above which does assembly association and reference loading too.
29468         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29470 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29472         * appdomain.c: not all of the attributes for the full assembly name
29473         are required and the order doesn't matter. Fixes bug #50787.
29475 2003-11-10  Dick Porter  <dick@ximian.com>
29477         * locales.c: Use platform-endian UTF16
29479 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29481         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29482         
29483 2003-11-10  Martin Baulig  <martin@ximian.com>
29485         * metadata.c
29486         (mono_metadata_load_generic_params): Make this actually work.
29488         * reflection.c (mono_reflection_bind_generic_parameters): If our
29489         parent is a generic instance, pass all the `types' to it, no
29490         matter whether it has the same number of type parameters or not.
29492 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29494         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29496         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29497         assignment code to this function so it gets called recursively for all
29498         modules.
29500         * image.c (load_modules): Remove the assembly assignment since it is
29501         now done by mono_assembly_load_references.
29502         
29503         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29504         Add 'module' argument.
29505         (mono_module_get_types): New helper function.
29506         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29508 2003-11-08  Martin Baulig  <martin@ximian.com>
29510         * class.c (mono_class_inflate_generic_method): Interface method
29511         don't have a header.
29513         * reflection.c (mono_image_get_methodspec_token): Take an
29514         additional `MonoGenericInst *' argument instead of reading it from
29515         the header; this is necessary to support interfaces.
29516         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29517         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29518         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29519         argument.
29521         * reflection.h (MonoReflectionInflatedMethod): Added
29522         `MonoGenericInst *ginst'.
29524 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29526         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29528 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29530         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29532 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29534         * reflection.c 
29535         (reflection_methodbuilder_from_method_builder):
29536         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29537         initialize a ReflectionMethodBuilder structure.
29538         (mono_image_get_methodbuilder_token):
29539         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29540         tokens which point to types in another module inside the same assembly.
29542         * reflection.c: Use the new helper functions.
29543         
29544         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29546         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29547         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29549         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29550         neccesary.
29552         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29553         current module. Emit the manifest only for the main module.
29555         * reflection.c (mono_image_create_token): Add assertion when a 
29556         memberref needs to be created.
29558         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29560         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29561         larger buffer for the custom attribute blob. Fixes #50637.
29562         
29563 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29565         * threadpool.c: notify listener on async processing handles after
29566         invoking the async callback. Thanks to Zoltan.
29568 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29570         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29571         avoid code duplication.
29573         * reflection.h (MonoDynamicImage): New type which is currently unused,
29574         but will be used through the ref.emit code in place of 
29575         MonoDynamicAssembly.
29577         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29578         object layout.
29580         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29581         a MonoDynamicImage instead of just a MonoImage.
29582         
29583         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29584         icalls to ModuleBuilder but keep their semantics, so they will work
29585         with moduleb->assemblyb. This will change later.
29586         
29587 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29589         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29590         object layout.
29592         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29593         main module, since it is now done by the managed code.
29595 2003-11-03  Martin Baulig  <martin@ximian.com>
29597         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29598         `ginst->klass' here.
29599         (method_encode_methodspec): Don't use the `ginst->generic_method's
29600         klass if it's a generic instance, use `ginst->klass' in this case.
29602 2003-11-03  Martin Baulig  <martin@ximian.com>
29604         * reflection.c (mono_image_get_generic_method_param_info):
29605         Removed, use mono_image_get_generic_param_info() instead.
29606         (mono_image_get_type_info): Write the GenericParam table before
29607         the Method table.  This is neccessary because in the GenericParam
29608         table, type parameters of the class (ie. '!0' etc.) must come
29609         before the ones from its generic methods (ie. '!!0' etc).
29611 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29613         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29615 2003-11-02  Martin Baulig  <martin@ximian.com>
29617         * reflection.c (create_generic_typespec): Take a
29618         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29619         the generic parameters from it.
29621 2003-11-02  Martin Baulig  <martin@ximian.com>
29623         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29624         instead of a `MonoClassField *' since we just need the type.
29625         (create_generic_typespec): New static function.  Creates a
29626         TypeSpec token for a generic type declaration.
29627         (mono_image_get_generic_field_token): New static function.
29628         (mono_image_create_token): If we're a FieldBuilder in a generic
29629         type declaration, call mono_image_get_generic_field_token() to get
29630         the token.
29632 2003-11-02  Martin Baulig  <martin@ximian.com>
29634         * reflection.h
29635         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29636         `MonoReflectionGenericInst *declaring_type' and
29637         `MonoReflectionGenericInst *reflected_type' fields.
29639         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29640         `MonoReflectionGenericInst *declaring_type' and a
29641         `MonoReflectionGenericInst *reflected_type' argument instead of a
29642         single `MonoReflectionGenericInst *type' one.  Set
29643         `res->declaring_type' and `res->reflected_type' from them.
29644         (mono_reflection_inflate_field): Likewise.      
29646 2003-11-02  Martin Baulig  <martin@ximian.com>
29648         * class.c (mono_class_setup_vtable): Don't store generic methods
29649         in the vtable.  
29651 2003-11-02  Martin Baulig  <martin@ximian.com>
29653         * reflection.h (MonoReflectionGenericInst): Added
29654         `MonoReflectionType *declaring_type'.
29656         * reflection.c (mono_reflection_bind_generic_parameters): Use
29657         `if (tb->parent)' instead of `klass->parent'.
29659 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29661         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29662         with an empty ASSEMBLY table.
29664         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29665         variable in the inner and outer loops.
29667 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29669         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29670         argument.
29672         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29673         
29674         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29675         icalls. Instead, do everything in managed code. This is needed since
29676         it is hard to restore the original domain etc. in unmanaged code in the
29677         presence of undeniable exceptions.
29679         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
29680         New icalls to push and pop appdomain refs.
29682 2003-10-31  Martin Baulig  <martin@ximian.com>
29684         * class.c (inflate_generic_type): Renamed to
29685         mono_class_inflate_generic_type() and made it public.
29687         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
29688         New interncall.
29690         * loader.c (mono_field_from_memberref): Also set the retklass for
29691         typespecs.
29693         * fielder.c (mono_image_get_inflated_field_token): New static
29694         method; creates a metadata token for an inflated field.
29695         (mono_image_create_token, fixup_method): Added support for
29696         "MonoInflatedField".
29697         (fieldbuilder_to_mono_class_field): New static function.
29698         (mono_reflection_inflate_field): New public function.
29700         * reflection.h
29701         (MonoReflectionGenericInst): Added `MonoArray *fields'.
29702         (MonoReflectionInflatedField): New typedef.     
29704 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
29706         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
29707         for Solaris and other platforms without s6_addr16
29709 2003-10-30  Martin Baulig  <martin@ximian.com>
29711         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
29712         argument instead of two.
29713         (mono_class_inflate_generic_signature): Likewise.
29714         (inflate_generic_header): Likewise.
29715         (mono_class_inflate_generic_method): Likewise.  In addition, if
29716         `ginst->klass' is set, it becomes the new `method->klass'.
29718         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
29719         field.
29721         * reflection.c (encode_generic_method_sig): Write a 0xa as the
29722         first byte. [FIXME]
29723         (method_encode_methodspec): If we have generic parameters, create
29724         a MethodSpec instead of a MethodRef.
29725         (fixup_method): Added support for "MonoInflatedMethod" and
29726         "MonoInflatedCtor".
29727         (mono_image_create_token): Added support for "MonoInflatedMethod"
29728         and "MonoInflatedCtor".
29729         (inflated_method_get_object): New static function; returns a
29730         managed "System.Reflection.MonoInflatedMethod" object.
29731         (mono_reflection_bind_generic_method_parameters): Return a
29732         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
29733         (mono_reflection_inflate_method_or_ctor): Likewise.
29734         (mono_image_get_generic_method_param_info): Initialize unused
29735         fields to zero.
29736         (mono_image_get_generic_param_info): Likewise.
29738         * reflection.h (MonoReflectionInflatedMethod): New public
29739         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
29740         "S.R.MonoInflatedCtor" classes.
29742         * loader.c (method_from_memberref): If we're a TypeSpec and it
29743         resolves to a generic instance, inflate the method.
29745 2003-10-28  Dick Porter  <dick@ximian.com>
29747         * object.c (mono_runtime_run_main): Convert command-line arguments
29748         into utf8, falling back to the user's locale encoding to do so.
29750 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
29752         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
29753         at this time.
29755         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
29757         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
29758         up icalls at method definition time. Partially fixes #33569.
29760 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
29762         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
29763         marshalling of arrays. Fixes #50116.
29765         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
29767         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
29768         points to a vtable in the dying appdomain.
29770         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
29771         listeners into unmanaged code inside the lock.
29773         * object.c (mono_class_vtable): Turn off typed allocation in non-root
29774         domains and add some comments.
29776 2003-10-25  Martin Baulig  <martin@ximian.com>
29778         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
29780         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
29782         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
29783         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
29784         currently parsing.  Create the generic class and store it in
29785         `generic_inst->klass' before parsing the type arguments.  This is
29786         required to support "recursive" definitions; see mcs/tests/gen-23.cs
29787         for an example.
29788         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
29789         to support recursive typespec entries.
29791         * class.c (mono_class_setup_parent): If our parent is a generic
29792         instance, we may get called before it has its name set.
29793         (mono_class_from_generic): Splitted into
29794         mono_class_create_from_generic() and mono_class_initialize_generic().
29796 2003-10-25  Martin Baulig  <martin@ximian.com>
29798         * icall.c (ves_icall_Type_BindGenericParameters): Return a
29799         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
29800         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
29801         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
29803         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
29804         (create_typespec): Likewise.
29805         (mono_reflection_bind_generic_parameters): Return a
29806         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
29807         (mono_reflection_inflate_method_or_ctor): New public function.
29809         * reflection.h (MonoReflectionGenericInst): New typedef.        
29811 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
29813         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
29814         inside the domain lock. Fixes #49993.
29815         
29816         * object.c (mono_class_vtable): When typed allocation is used, 
29817         allocate vtables in the GC heap instead of in the mempool, since the
29818         vtables contain GC descriptors which are used by the collector even
29819         after the domain owning the mempool is unloaded.
29821         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
29823         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
29824         reflect what it does. Also invalidate mempools instead of freeing
29825         them if a define is set.
29827         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
29828         of the appdomain.
29829         
29830         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29831         hold the finalizable objects in this domain.
29833         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29834         appdomain.
29836         * appdomain.c (mono_domain_set): New function to set the current
29837         appdomain, but only if it is not being unloaded.
29839         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
29840         appdomain which is being unloaded.
29841         
29842         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
29843         unloading of the root appdomain.
29845         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
29846         icall to execute a method in another appdomain. Intended as a 
29847         replacement for InternalSetDomain, which can confuse the code 
29848         generation in the JIT.
29850         * appdomain.c (mono_domain_is_unloading): New function to determine
29851         whenever an appdomain is unloading.
29853         * appdomain.c (mono_domain_unload): New function to correctly unload
29854         an appdomain.
29856         * assembly.c (mono_assembly_load_references): Check that an assembly
29857         does not references itself.
29859         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
29860         domain manually, it asks the finalizer thread to do it, then waits for
29861         the result. Also added a timeout.
29863         * icall.c: Register the new icalls.
29865         * threads.h threads.c: Export the mono_gc_stop_world and 
29866         mono_gc_start_world functions.
29867         
29868         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
29869         function to fill out the mempool with 0x2a.
29871 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
29873         * reflection.h (MonoReflectionMethodAux): New structure to store
29874         information which is rarely used, thus is not in the MonoMethod
29875         structure.
29877         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
29878         store the aux info.
29880         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
29881         and marshalling info into the aux structure.
29883         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
29884         from the aux structure.
29886         * loader.c (mono_method_get_param_names): Retrieve the param names from
29887         the aux structure.
29888         
29889 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
29891         * exception.h exception.c: Add AppDomainUnloadedException && fix 
29892         warning.
29894 2003-10-21  Dick Porter  <dick@ximian.com>
29896         * socket-io.c
29897         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
29898         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
29900 2003-10-21  Martin Baulig  <martin@ximian.com>
29902         * reflection.c (mono_reflection_bind_generic_parameters):
29903         `klass->parent' is NULL for interfaces.
29905 2003-10-21  Martin Baulig  <martin@ximian.com>
29907         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29909 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
29911         * exception.c (mono_exception_from_name_msg): New helper function for
29912         creating exceptions and initializing their message field.
29914         * exception.c: Simplify functions using the new helper.
29916         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
29917         New function.
29919         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
29920         mono_raise_exception, since otherwise gcc doesn't generate the function
29921         epilog for raise_exception, confusing the stack unwinding in the JIT.
29922         Fixes #45043.
29924         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
29925         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
29926         Fixes #49499.
29928 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29930         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
29931         utf8.
29933 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
29935         * icall.c: Removed GetUninitializedObject method because
29936           AllocateUninitializedClassInstance does the same.
29938 2003-10-18  Martin Baulig  <martin@ximian.com>
29940         * class.c (inflate_generic_signature): Renamed to
29941         mono_class_inflate_generic_signature() and made it public.
29942         (my_mono_class_from_generic_parameter): New static function; if we
29943         don't already have the generic parameter's MonoClass, create a
29944         very simple one which is just used internally in the runtime and
29945         not passed back to managed code.
29947         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
29949         * metadata.h (MonoMethodSignature): Moved the
29950         `MonoGenericParam *gen_params' to the MonoMethodHeader.
29951         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
29953         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
29954         ves_icall_MonoMethod_GetGenericArguments(); this is now an
29955         interncall on the MonoMethod class, not on MethodInfo.
29956         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
29957         calling mono_reflection_bind_generic_method_parameters() directly.
29959         * loader.c (mono_method_get_signature): If this is a MethodSpec;
29960         return the already computed `method->signature'.
29961         (method_from_methodspec): New static function to load a method
29962         from a MethodSpec entry.
29963         (mono_get_method_from_token): Call the new method_from_methodspec()
29964         for MethodSpec tokens.  
29965         (mono_get_method_from_token): If we're a generic method, load the
29966         type parameters.
29968         * reflection.c (mono_image_get_memberref_token): Allow
29969         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
29970         table.
29971         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
29972         (mono_image_create_token): First check whether it's a generic
29973         method (so we'd need to create a MethodSpec), then do the other
29974         two alternatives.
29975         (mono_reflection_bind_generic_method_parameters): Return a
29976         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
29977         called directly from the interncall.
29979 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
29981         * reflection.c (load_public_key): Move loading of the public key
29982         into managed code.
29984         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
29986         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
29987         fields.
29989         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
29990         culture, hash_alg and public_key. Fixes #49555.
29992 2003-10-17  Martin Baulig  <martin@ximian.com>
29994         * class.h (MonoGenericInst): Moved this declaration here and added
29995         `MonoMethod *generic_method'.
29997         * icall.c
29998         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
29999         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30001         * metadata.c (mono_metadata_type_equal): Two types of
30002         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30003         index; ie. don't compare the address of the `MonoGenericParam'
30004         structure.
30005         (mono_metadata_load_generic_params): Removed the `MonoMethod
30006         *method' argument.
30008         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30009         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30011         * reflection.c (method_encode_signature): Encode the number of
30012         generic parameters.
30013         (encode_generic_method_sig): New static function.
30014         (method_encode_methodspec): New static function; creates an entry
30015         in the MethodSpec table for a generic method.
30016         (mono_image_get_methodspec_token): New static function.
30017         (mono_image_create_token): Call mono_image_get_methodspec_token()
30018         for generic methods.
30019         (mono_reflection_bind_generic_method_parameters): New public
30020         function.  Instantiates a generic method.
30022 2003-10-16  Martin Baulig  <martin@ximian.com>
30024         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30025         *gen_params' here from MonoMethodHeader.
30027         * metadata.c (mono_metadata_parse_method_signature): If we have
30028         generic parameters, initialize `method->gen_params' and then set
30029         the correct `type->data.generic_param' in all the parameters.
30031 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30033         * threads.c (mono_threads_get_default_stacksize): New function to 
30034         return the default stacksize.
30036         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30037         termination of the finalizer thread, since the previous method had
30038         race conditions. Fixes #49628.
30040         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30041         as for the other managed threads.
30043 2003-10-16  Martin Baulig  <martin@ximian.com>
30045         * class.c (inflate_generic_signature): Copy `generic_param_count'
30046         and `gen_params'.
30048         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30049         New interncall.
30051         * metadata.c (mono_metadata_parse_method_signature): Actually set
30052         the `method->generic_param_count' here.
30053         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30055 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30057         * object.h: Add a new field to TypedRef to simplify the implementation
30058         of the REFANY opcodes in the JIT.
30060         * icall.c: Make use of the new field.
30062         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30063         dynamically.
30065 2003-10-15  Martin Baulig  <martin@ximian.com>
30067         * class.c (mono_class_from_gen_param): Renamed to
30068         mono_class_from_generic_parameter() and moved most of the
30069         functionality from mono_reflection_define_generic_parameter()
30070         here; ie. we create a "real" class here.
30071         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30072         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30073         previously been called.
30075         * class.h (MonoGenericParam): Moved the declaration of this struct
30076         here from metadata.h and added `MonoMethod *method'.
30078         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30079         interncall.
30081         * loader.c (mono_get_method_from_token): If we have any generic
30082         parameters, call mono_metadata_load_generic_params() to read them
30083         from the MONO_TABLE_GENERICPAR.
30085         * metadata.c (mono_metadata_load_generic_params): Added
30086         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30088         * metadata.h (MonoMethodSignature): Replaced
30089         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30090         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30092         * reflection.c (mono_reflection_define_generic_parameter): Moved
30093         most of the functionality into the new
30094         mono_class_from_generic_parameter(); set the `method' field if
30095         we're a method parameter.       
30097 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30099         * marshal.c (emit_struct_conv): if native size is 0
30100         emit no code.
30102 2003-10-14  Martin Baulig  <martin@ximian.com>
30104         * icall.c: The generics API has changed in the spec since it was
30105         added to System.Type; these modifications make it match the spec
30106         again.
30107         (ves_icall_Type_GetGenericParameters): Renamed to
30108         `ves_icall_Type_GetGenericArguments'.
30109         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30110         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30111         `ves_icall_MonoType_get_HasGenericArguments'.
30112         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30113         `ves_icall_MonoType_get_IsGenericParameter'.
30114         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30115         this is no interncall anymore.
30116         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30117         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30119 2003-10-14  Martin Baulig  <martin@ximian.com>
30121         * reflection.c (mono_reflection_bind_generic_parameters): Also
30122         inflate generic methods if we're reading the class from IL.
30124 2003-10-13  Martin Baulig  <martin@ximian.com>
30126         * reflection.c (mono_reflection_define_generic_parameter): This
30127         method isn't called directly from the icall anymore; take a
30128         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30129         method generic parameters.
30130         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30131         (method_builder_encode_signature): Encode generic parameters.
30132         (mono_image_get_method_info): Write generic params to the
30133         MONO_TABLE_GENERICPARAM table.
30135         * reflection.h (MonoReflectionMethodBuilder): Added
30136         `MonoArray *generic_params'.
30138         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30140         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30141         wrapper for mono_reflection_define_generic_parameter().
30142         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30144 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30146         * marshal.h: Add missing function to fix build.
30148         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30149         the SetLastError pinvoke attribute.
30151         * marshal.c (mono_marshal_set_last_error): New helper function called
30152         by the generated code.
30153         
30154         * marshal.c (mono_mb_emit_branch): New helper function.
30156         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30158         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30159         classes as parameters and return values of delegates. Fixes #29256. 
30161 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30163         * locales.c: use gint32 in non HAVE_ICU case
30165 2003-10-11  Martin Baulig  <martin@ximian.com>
30167         * mono-debug.c (mono_debug_add_method): Added a workaround for
30168         bug #48591.
30170 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30172         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30173         delegates passed to native code must use the STDCALL calling 
30174         convention. Fixes #35987.
30176 2003-10-10  Martin Baulig  <martin@ximian.com>
30178         * class.c (inflate_generic_type): If we're inflating for a generic
30179         type instance (and not for a generic method), return
30180         MONO_TYPE_MVAR unchanged.
30182 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30184         * string-icalls.c: Join ignores null strings in the source array.
30185         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30186         * threads.c: GetAvailableTheads is slightly more accurate.
30188 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30190         * threads.h threads.c : add mono_threads_set_default_stacksize
30191         and pass default to CreateThread calls.
30193 2003-10-09  Dick Porter  <dick@ximian.com>
30195         * icall.c:
30196         * locales.h:
30197         * locales.c: Internal calls for constructing CultureInfo and
30198         related objects from libicu (if its available.)
30200 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30202         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30204 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30206         * threadpool.c: added an argument to async_invoke_thread that is the
30207         item to process, pass the MonoAsyncResult to the thread start function
30208         when creating a new thread. This way we don't need to acquire any lock
30209         when we're creating a new thread. Readded a semaphore for faster
30210         response times (instead of that Sleep i added).
30212 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30214         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30215         get daylight change dates better on Windows, fix handling
30216         of platforms without tm_gmtoff.
30218 2003-10-06  Martin Baulig  <martin@ximian.com>
30220         * class.c (inflate_generic_method): Renamed to
30221         mono_class_inflate_generic_method() and made public.
30222         (mono_class_init): Don't inflate the generic methods here.
30223         (mono_class_from_generic): Added `gboolean inflate_methods'
30224         argument.  Inflate the methods here.
30226         * loader.c (mono_method_get_param_names): Ignore instances of
30227         generic types for the moment.
30229         * reflection.c (fixup_method): Added support for inflated methods.
30230         (mono_image_create_token): Use mono_image_get_methodref_token()
30231         for inflated methods.
30232         (mono_custom_attrs_from_param): Ignore instances of generic types
30233         for the moment.
30234         (mono_reflection_bind_generic_parameters): New public function.
30235         Moved all the functionality from
30236         ves_icall_Type_BindGenericParameters() here and added support for
30237         dynamic types.
30238         (mono_reflection_define_generic_parameter): Initialize
30239         `klass->methods' here.
30241         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30242         functionality into mono_reflection_define_generic_parameter().
30243         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30244         TypeBuilder, return that TypeBuilder.
30246 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30248         * appdomain.c: removed mono_delegate_semaphore.
30250         * threadpool.c:
30251         (mono_thread_pool_add): moved hash table creation inside and the thread 
30252         creation outside of the critical region.
30253         (mono_thread_pool_finish): removed obsolete code.
30254         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30255         continue or exit the thread depending on the queue.
30257 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30259         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30260         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30261         handle more bool marshalling options
30263 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30265         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30266         arrays of structs. Also add a more descriptive error message when
30267         a structure member is marshalled as LPArray.
30269 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30271         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30272         marshalling arrays of complex types. Fixes #29098. Also remove an
30273         usused and incomplete function.
30275 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30277         * gc.c: report heap_size - free_bytes as total memory allocated
30278         (bug#49362).
30280 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30282         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30283         fix timezone handling problems on Windows.
30284         
30285         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30286         asserts when the year is outside the range handled by ms the functions.
30288         * class.c (setup_interface_offsets): If the class is an interface,
30289         fill out its interface_offsets slot.
30291 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30293         * threadpool.c: mark threadpool threads as background.
30295 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30297         * decimal.c - define DECINLINE to nothing if not using GCC
30299 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30301         * assembly.c: More refcount fixes.
30303 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30305         * string-icalls.c: if we're not trimming, return the same string.
30306         When not splitting, don't create a new string.
30308 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30310         * image.c:
30311         (mono_image_open): increment the ref_count inside the critical section.
30313 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30315         * image.c (mono_image_open): Fix reference counting bug.
30317 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30319         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30320         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30321         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30322         mono_lookup_pinvoke_call throws.        
30324 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30326         * reflection.c (mono_reflection_parse_type): Fix #49114.
30328         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30329         temporary workaround for cygwin header problem.
30331         * object.c (mono_object_isinst): Synchronize this with the code
30332         generated by the JIT for casts.
30334 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30336         * reflection.c (encode_type): Fix #38332.
30338 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30340         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30341         the original method from the wrapper method.
30343 2003-09-25  Martin Baulig  <martin@ximian.com>
30345         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30346         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30347         (ves_icall_Type_get_IsGenericInstance): New interncall.
30349 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30351         * object.c: fix cast warning in big endian code.
30353 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30355         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30356         
30357 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30359         * assembly.c: don't call check_env from mono_assembly_load. It's
30360         already done once in mono_assemblies_init and may cause headaches when
30361         multiple threads are loading assemblies.
30363 2003-09-19  Martin Baulig  <martin@ximian.com>
30365         * reflection.c (mono_reflection_define_generic_parameter): Don't
30366         allocate `klass->methods', set `klass->flags' to
30367         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30369 2003-09-18  Martin Baulig  <martin@ximian.com>
30371         * class.c (mono_class_init): Don't create `class->methods' if it's
30372         already initialized.
30374         * metadata.c (mono_metadata_load_generic_params): Make this
30375         actually work.
30377         * reflection.c (mono_reflection_define_generic_parameter): Set
30378         parent class and interfaces from the constraints.
30380         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30381         to keep this struct in sync with the declaration in TypeBuilder.cs.
30383 2003-09-17  Martin Baulig  <martin@ximian.com>
30385         * metadata.h (MonoType): Replaced the data's `int type_param'
30386         field with `MonoGenericParam *generic_param'.
30387         (MonoGenericParam): Added `MonoClass *klass'.
30389         * class.c (mono_class_from_gen_param): Removed the
30390         `MonoImage *image' and `int type_num' arguments.
30392         * metadata.c (mono_metadata_parse_generic_param): New static
30393         method; creates a MonoGenericParam which just contains the index.
30394         (do_mono_metadata_parse_type): Call
30395         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30396         MONO_TYPE_MVAR.
30398         * reflection.c (mono_image_typedef_or_ref): Generic type
30399         parameters may be in the same assembly, but never use a typedef
30400         for them.
30401         (mono_reflection_define_generic_parameter): We're now creating a
30402         "real" class for the type parameter; it's now safe to call
30403         mono_class_from_mono_type() on the class'es type, it'll do the
30404         right thing.
30406 2003-09-16  Martin Baulig  <martin@ximian.com>
30408         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30409         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30410         the `symfile' data structure must be fully initialized before it
30411         gets added to the table.
30413 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30415         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30417         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30418         class init trampolines.
30420 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30422         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30423         to the built-in profiler to turn off time and allocation profiling
30424         respectively.
30426 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30428         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30429         g_direct_equal.
30431         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30432         in human readable form.
30434 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30436         * reflection.c icall.c: Fixed warnings.
30438         * image.c (load_class_names): Use a temporary hash table to hold the
30439         namespaces in order to avoid doing many string comparisons.
30441         * image.h: Fix typo.
30443         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30444         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30445         since the NULL case is short-circuited inside g_hash_table_lookup, 
30446         leading to better performance.  
30448         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30449         obtain the first custom attribute for a given index. Depends on the
30450         CustomAttribute table being sorted by the parent field.
30452         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30453         for better performance.
30455 2003-09-07  Martin Baulig  <martin@ximian.com>
30457         * class.c (mono_class_init): If we're a generic instance, inflate
30458         all our methods instead of loading them from the image.
30459         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30461 2003-09-07  Martin Baulig  <martin@ximian.com>
30463         * mono-debug-debugger.c: Added support for constructors.
30465 2003-09-06  Martin Baulig  <martin@ximian.com>
30467         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30468         New interncall.
30470         * reflection.c (mono_reflection_setup_generic_class): Call
30471         ensure_runtime_vtable() to create the vtable.
30473 2003-09-05  Martin Baulig  <martin@ximian.com>
30475         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30476         MONO_TYPE_MVAR.
30478 2003-09-04  Martin Baulig  <martin@ximian.com>
30480         * reflection.c (mono_reflection_define_generic_parameter): Generic
30481         parameters start with zero.
30483 2003-09-04  Martin Baulig  <martin@ximian.com>
30485         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30487         * reflection.h (MonoReflectionGenericParam): New typedef.
30488         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30489         the generic parameters from the managed TypeBuilder.
30491         * reflection.c (mono_reflection_define_generic_parameter): New function.
30492         (mono_reflection_create_runtime_class): Encode generic parameters.
30493         (mono_reflection_setup_generic_class): New function; this is
30494         called after adding adding all generic params to the TypeBuilder.
30495         (encode_type): Added MONO_TYPE_VAR.
30497 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30499         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30500         here from the JIT.
30502         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30503         load hook.
30505 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30507         * reflection.h reflection.c class.h class.c: Delete duplicate 
30508         definition of mono_type_get_name () from reflection.c and export the
30509         one in class.c.
30511         * class.c: Class loading fixes from Bernie Solomon 
30512         (bernard@ugsolutions.com).
30514         * reflection.c: Endianness fixes from Bernie Solomon 
30515         (bernard@ugsolutions.com).
30516         
30517 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30519         * assembly.h assembly.c: Define a file format version for AOT
30520         libraries.
30521         
30522         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30524         * appdomain.h (MonoJitInfo): New field to determine whenever the
30525         code is domain neutral.
30526         
30527 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30529         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30531 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30533         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30534         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30535         Avoid caching the result since strings must be domain specific. Fixes
30536         #48050.
30538 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30540         * marshal.c (mono_marshal_init): Make this callable multiple times
30541         since it is hard to find a correct place to call it.
30543         * object.c (mono_runtime_class_init): Execute static constructors in
30544         the correct appdomain.
30546         * image.c (build_guid_table): Handle the case when multiple images have
30547         the same GUID.
30549 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30551         * icall.c: added a couple of icalls for System.Web.
30553 2003-08-28  Martin Baulig  <martin@ximian.com>
30555         * icall.c (ves_icall_Type_BindGenericParameters): Use
30556         `klass->generic_inst' instead of `&klass->byval_arg' in the
30557         mono_type_get_object() call.  The returned type must be
30558         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30560 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30562         * NOTES: New file.
30564         * object.c (mono_class_proxy_vtable): Make it thread safe.
30566         * pedump.c: Fix warning.
30568         * object.c appdomain.h: Get rid of metadata_section. 
30569         It is no longer needed and it was causing deadlocks with domain->lock.
30571         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30573 2003-08-26  Martin Baulig  <martin@ximian.com>
30575         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30577 2003-08-26  Martin Baulig  <martin@ximian.com>
30579         * pedump.c (main): Call mono_metadata_init(),
30580         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30581         and mono_loader_init().
30583 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30585         * loader.h: Add missing include to fix build.
30587         * image.h: mono_image_load_references is no more.
30589         * assembly.c: Reworked assembly loading to make it really thread safe.
30590         After these changes, the assembly returned by mono_assembly_open is
30591         fully initialized, i.e. all its references assemblies are loaded.
30593         * assembly.c (mono_image_load_references): Renamed to 
30594         mono_assembly_load_references, and made private, since clients no
30595         longer need to call it.
30597         * class.c: Removed calls to mono_assembly_load_references, since it was
30598         a source of deadlocks.
30600         * loader.h loader.c class.h class.c: Protect data structures using a 
30601         new lock, the loader lock.
30603         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30604         GPtrArrays only when needed.
30606         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30607         into empty structures by mcs. Fixes pinvoke7.cs.
30608         
30609         * domain.c (mono_init): Call a new initialization function.
30611         * appdomain.c (mono_runtime_init): Call the new initializer function
30612         of the marshal module.
30614         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30615         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30617         * marshal.h marshal.c: Added locks around the wrapper caches to make
30618         this module thread safe.
30620         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30621         this argument. Fixes pinvoke1.exe.
30623 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30625         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30626         enumeration of values. Removed fields to store remote call output values in
30627         MonoAsyncResult. Not needed any more.
30628         * object.c: Initialize call_type and async_result fields in mono_message_init.
30629         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30630         dispatching the message.
30631         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30632         async call to finish. To do it use a message with EndInvoke call type.
30634 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30636         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30637         determines whenever a method has marshalling info.
30639 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30641         * assembly.c: fix the build on windows.
30643 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30645         * object.cs: Fixed bug #47785.
30647 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30649         * string-icalls.c (StringReplace): If their are no occurances of
30650         the old string found return a reference to the supplied
30651         string. This saves some memory and matches MS behavoir.
30652         
30653 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30655         * socket-io.c: fixed compilation for systems that define AF_INET6
30656         and don't define SOL_IP/SOL_IPV6.
30658 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30660         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30661         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30663         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30665         * domain.c: Make this module thread safe.
30667         * domain.c (mono_init): Call new initialization function.
30669         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30670         reference types too. Fixes #38812.
30672         * image.c (mono_image_init): Fixed warnings.
30674         * class.c (mono_class_from_typeref): Handle assembly load failure
30675         correctly.
30677         * appdomain.c (add_assemblies_to_domain): Handle the case when
30678         the references of an assembly are not yet loaded.
30680         * metadata.c image.c assembly.c: Moved initialization of global
30681         variables to a separate function called at startup since lazy 
30682         initialization of these variables is not thread safe.
30683         
30684         * image.c assembly.c: Made this module thread safe by adding locks in 
30685         the appropriate places.
30687         * domain.c (mono_init): Call the new initialization functions of the
30688         three modules.
30690 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
30692         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
30693           make a direct call. It is proxy's work to make the call asynchronous.
30694           mono_delegate_end_invoke(): If the targe is a proxy, just collect
30695           the return values.
30696         * object.cs: mono_method_call_message_new(): read AsyncResult and
30697           state object from parameters list, if this info is requested.
30698         * object.h: Added fields to store remote call output values in
30699           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
30701 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30703         * object.h: add needed fields to MonoThread.
30704         * threads.c, threads.h: allow registering a function to cleanup data
30705         allocated per thread by the JIT.
30707 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30709         * loader.h: portability fix by Bernie Solomon
30710         * <bernard@ugsolutions.com>.
30712 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
30714         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
30715         return a MonoArray. This simplifies the code and also ensures that
30716         the cache allways contains an object reference as a value.
30718         * icall.c (ves_icall_get_parameter_info): Simplified using the new
30719         function.
30721 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30723         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
30724         fixes a problem with byte ordering when getting the address family for
30725         a socket.
30727 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
30729         * .cvsignore: Added monosn.
30731         * reflection.h reflection.c loader.c: Added support for parameter
30732         marshalling to dynamically created types. Fixes #47295.
30734 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
30736         * rand.c: remove useless warnings.
30738 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30740         * class.c: implemented ldtoken for methods and fieldrefs.
30742 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30744         * threadpool.c: when mono_async_invoke was called, no one took care of
30745         monitoring the queue. So if the method invoked took some time and we
30746         got new async invoke requests after 500 ms (the thread created waited
30747         that long in WaitForSingleObject), the new async invoke was not called
30748         until the previous one finished.
30750         This is fixed now. Thanks to Totte for helping with it.
30752 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30754         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
30756 2003-08-11  Martin Baulig  <martin@ximian.com>
30758         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
30760 2003-08-06  Martin Baulig  <martin@ximian.com>
30762         * mono-debug-debugger.c: Added support for static fields,
30763         properties and methods.
30765 2003-08-06  Martin Baulig  <martin@ximian.com>
30767         * mono-debug-debugger.c: Don't store the MonoString's vtable to
30768         make this work for applications with multiple application domains.
30770 2003-08-04  Martin Baulig  <martin@ximian.com>
30772         * mono-debug-debugger.c: Completely reworked the type support; the
30773         most important thing is that we're now just using one single
30774         `MonoType' instance per type.
30776 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
30778         * mono-endian.h, mono-endian.c, icall.c: Added icall
30779         ves_icall_System_Double_AssertEndianity to assert double word endianity
30780         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
30782 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30784         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
30785         support, icalls and fixes.
30787 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
30789         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
30790         classes that are a punctuation character in .NET is not the same a
30791         g_unichar_ispunct.
30793 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30795         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
30797 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
30799         * icall.c: Add new MemCopy internalcall.
30800         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
30801         Simplified code; It is not necessary to handle all the cases here,
30802         as the C# code takes care of it.  Only handle the case of the name
30803         resource embedded into the assembly.
30805         Changed signature to return the data pointer and the size of the
30806         data. 
30808 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
30810         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
30811         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
30813 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30815         * socket-io.c: ignore EINTR error in select.
30817 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30819         * class.h, class.c: removed unused subclasses field in MonoClass.
30821 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30823         * icall.c: improve fix of get_base_definition(). If the parent class
30824           doesn't have the mehod, look at the parent of the parent.
30825         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
30826           to check if a parameter is an in or out parameter
30827           (PARAM_ATTRIBUTE_IN is not set by default).
30828           mono_method_return_message_restore(): Use mono_class_value_size to
30829           get the size of a value type. mono_type_stack_size (parameterType)
30830           does not return the correct value if parameterType is byRef.
30831           mono_load_remote_field(), mono_load_remote_field_new(),
30832           mono_store_remote_field(), mono_store_remote_field_new():
30833           raise exception if the remote call returns an exception.
30835 2003-07-28  Martin Baulig  <martin@ximian.com>
30837         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30838         method.  This is a wrapper around mono_runtime_invoke() which
30839         boxes the instance object if neccessary.
30841 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30843         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
30844         metadata.h, row-indexes.h, verify.c: first cut of generics support.
30846 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30848         * icall.c: disable mcs bug workaround.
30850 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
30852         * object.c (mono_runtime_class_init): Take the metadata_section
30853         mutex before obtaining the domain mutex.
30855         * appdomain.h: Added definition of metadata_section mutex here. 
30857         * object.c: define metadata_mutex here.
30859 2003-07-24  Ravi Pratap  <ravi@ximian.com>
30861         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
30862         fixed.
30864 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
30866         * reflection.c: Fix bug #46669
30868 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30870         * exception.c:
30871         * exception.h:
30872         * icall.c:
30873         * object.h: fill in the type name for TypeLoadException.
30875 2003-07-23  Ravi Pratap  <ravi@ximian.com>
30877         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
30878         relationship between TypeBuilders while compiling corlib) and bug
30879         45993 (Array types returned from the runtime while compiling
30880         corlib were from the loaded corlib).
30882 2003-07-22  Martin Baulig  <martin@ximian.com>
30884         * mono-debug-debugger.c: Reworked the type support a bit more;
30885         distinguish between types and classes.
30887 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
30889         * icall.c: add IsArrayImpl icall.
30891 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
30893         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
30894         initializing real_size only once. Also fix bug #46602.
30896 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
30898         * object.c: Renamed mono_metadata_section to metadata_section.
30900 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
30902         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
30903           empty array if the type is an array. Fixed.
30904           ves_icall_MonoMethod_get_base_definition: if the base method
30905           is abstract, get the MethodInfo from the list of methods of
30906           the class.
30907         * reflection.c: ParameterInfo.PositionImpl should be zero-based
30908           and it was 1-based. Fixed in mono_param_get_objects.
30910 2003-07-20  Martin Baulig  <martin@ximian.com>
30912         * mono-debug.h: Set version number to 31.
30913         (mono_debug_init): Added `MonoDomain *' argument.
30915         * mono-debug-debugger.c: Reworked the type support; explicitly
30916         tell the debugger about builtin types; pass the `klass' address to
30917         the debugger.
30919 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
30921         * image.c: Allow new metadata tables to be loaded without a
30922         warning. Also update the warning message to give the new constant value.
30923                 
30924 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
30926         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
30927         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
30928         array type representation changes.
30930 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30932         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
30933         on Environment.Exit () call.
30935 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30937         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
30938         requires a matching corlib.
30940 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30942         * Changelog: My editor decided to add a CR to each line. Sorry about that.
30943           Committed again without the CRs.
30944         
30945 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30947         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
30948           getting it from the "this" socket instance. Did not work
30949           if the socket is a subclass of Socket.
30950           Also fixed bug #35371.
30952 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30954         * metadata.c: fixed size for TypedByRef.
30955         * loader.c: when searching for a method, consider the vararg amrker.
30956         * unicode.c, decimal.c: constify some arrays.
30958 2003-07-15  Dick Porter  <dick@ximian.com>
30960         * socket-io.c: Fixed compilation for gcc < 3.2.
30962         Fixed compilation for machines that don't have AF_INET6 (thanks to
30963         Bernie Solomon <bernard@ugsolutions.com> for that part.)
30965         Fixed compile warnings.
30966         
30967         Fixed formatting and line endings.
30969 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
30971         * socket-io.h:
30972         * socket-io.c: Added IPv6 support.
30974 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
30976         * class.c (mono_class_is_assignable_from): New function to implement
30977         the is_assignable_from logic. Used by mono_object_isinst, 
30978         Type::IsAssignableFrom () and the interpreter.
30980         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
30981         Object, even interfaces.
30982         
30983         * object.c (mono_object_isinst): Implement in terms of 
30984         is_assignable_from.
30986         * icall.c (ves_icall_type_is_assignable_from): New icall.
30988 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
30990         * domain.c (foreach_domain): fix compiler warning.
30992 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
30994         * image.c (load_metadata_ptrs): use g_strndup because strndup is
30995         not available on all plattforms
30997 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
30999         * image.h image.c: Store the metadata version string in MonoImage.
31000         * icall.c: New icall to retrieve the image version.
31001         * reflection.c (create_dynamic_image): Fill in the image version field
31002         * reflection.c (build_compressed_metadata): Use the image version
31003         from the image structure.
31005 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31007         * appdomain.c: modified comment.
31008         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31009         That will be its last iteration when mono_gc_cleanup is called from
31010         mono_runtime_cleanup and before the domain is unloaded.
31012         Fixes bug #45962.
31014 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31016         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31017         attributes.
31019 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31021         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31022         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31023         Bernie Solomon <bernard@ugsolutions.com>.
31025 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31027         * object.c, object.h: provide mono_object_new_fast() for faster
31028         allocation in some special cases.
31030 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31032         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31033         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31035 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31037         * threadpool.c: fix leaks.
31039 2003-07-01  Dick Porter  <dick@ximian.com>
31041         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31042         using MonoGHashTables.  Fixes threadpool bug posted to list.
31044 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31046         * image.h, image.c: added support to load an assembly from a byte array.
31047         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31048         assembly bundle support.
31050 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31052         * threadpool.c (mono_thread_pool_add): keep a reference to the
31053         AsyncResult to prevent GC
31055 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31057         * class.c: leak fix.
31059 2003-06-25  Dick Porter  <dick@ximian.com>
31061         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31062         for the async object, the WaitHandle object will close the handle.
31063         Fixes bug 45321.
31065 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31067         * class.c: in mono_array_class_get (), lookup from the hash with the
31068         same type we insert: this works around a bug in
31069         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31070         lluis. The real fix will have to wait for after the release.
31072 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31074         * icall.c: fix memory leak when getting type members.
31076 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31078         * reflection.c: added more pubtoken special cases.
31080 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31082         * class.c: handle field offset correctly when class size
31083         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31085 2003-06-20  Martin Baulig  <martin@ximian.com>
31087         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31088         *image' field.
31090 2003-06-20  Martin Baulig  <martin@ximian.com>
31092         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31094 2003-06-20  Martin Baulig  <martin@ximian.com>
31096         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31097         just distinguish between variables in registers and variables at
31098         an offset relative to a register.
31100 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31102         * icall.c: #ifdef out latest changes until mcs is fixed.
31104 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31106         * icall.c: return members in metadata order.
31108 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31110         * icall.c: avoid infinite loop in GetTimeZoneData.
31112 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31114         * icall.c: added Marshal.Prelink/All icalls.
31116 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31118         * object.c, object.h: fix warnings and do some overflow checking
31119         when creating arrays.
31121 2003-06-17  Dick Porter  <dick@ximian.com>
31123         * file-io.h:
31124         * file-io.c: File attributes need to be tweaked slightly when
31125         passed from the managed to the w32 world.
31127 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31128         * profiler.h profiler-private.h profiler.c: Rework last patch
31129         based on suggestion by Paolo.
31130         
31131 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31133         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31134         instruction level coverage data collection.
31135         * profiler.h profiler.c (: Added new callback function which can be
31136         used by the profiler to limit which functions should have coverage
31137         instrumentation.
31138         * profiler.c (mono_profiler_load): Call g_module_build_path to
31139         generate the file name of the profiler library.
31141 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31143         * profiler.c, profiler.h, profiler-private.h: added basic block 
31144         coverage profiling API.
31146 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31148         * reflection.c (mono_reflection_create_runtime_class): Add support
31149         for events in dynamically generated code.
31151         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31152         not allocated.
31154 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31156         * icall.c: when getting timezone info, return reasonable values if we
31157         can't get the actual data.
31159 2003-06-14  Dick Porter  <dick@ximian.com>
31161         * threads.c (start_wrapper): Remove the reference to the thread
31162         object in the TLS data, so the thread object can be finalized.
31163         This won't be reached if the thread threw an uncaught exception,
31164         so those thread handles will stay referenced :-( (This is due to
31165         missing support for scanning thread-specific data in the Boehm GC
31166         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31168 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31170         * reflection.c: ensure streams and tables are first allocated with
31171         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31173 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31175         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31177 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31179         * reflection.c (mono_reflection_create_runtime_class): Add support for
31180         properties to dynamically created classes.
31181         * reflection.c: Fix a few places where non-MonoObjects were inserted
31182         into the tokens hashtable.
31184 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31186         * object.c: some support to handle out of memory exceptions.
31188 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31190         * marshal.c (mono_marshal_get_native_wrapper): support reference
31191         return types
31193 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31195         * object.h, object.c: more portability stuff from Bernie Solomon.
31196         Unexport mono_object_allocate(). Added mono_object_unbox ().
31197         Set exitcode when an unhandled exception is thrown.
31199 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31201         * marshal.c (mono_marshal_get_native_wrapper): use custom
31202         marshaler for return types.
31204 2003-06-10  Dick Porter  <dick@ximian.com>
31206         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31207         ip_mreq is available
31209 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31211         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31212         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31213         by Bernie Solomon <bernard@ugsolutions.com>.
31215 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31217         * gc.c (mono_gc_init): Avoid error message on shutdown when
31218         GC_DONT_GC=1 is used.
31220         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31221         New icall to return the GUID of a module.
31223 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31225         * class.c: ensure instance size always includes the parent's size
31226         even whem class size is set explicitly (fixes bug#44294).
31228 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31230         * profiler.h, profiler.c: made the simple profiler thread-safe,
31231         get more accurate timing info. Allow the loading of an
31232         externally-developed profiler module.
31234 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31236         * marshal.c (mono_marshal_get_native_wrapper): improved
31237         class/byref arguments.
31238         (mono_marshal_get_native_wrapper): better string marshaling support.
31240 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31242         * class.c: ensure .pack and .size are handled correctly and
31243         simplified layout of static fields.
31245 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31247         * appdomain.c
31248         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31250         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31251         current directory (fix bug 44008)
31253 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31255         * marshal.c (mono_marshal_get_native_wrapper): started support for
31256         custom marshalers.
31257         (mono_delegate_to_ftnptr): consider marshalling specifications
31259 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31261         * reflection.c, reflection.h: emit custom marshal info.
31263 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31265         * object.c: free the GError.
31266         * icall.c: added CloseEvent_internal.
31267         * threads.[ch]:
31268         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31269         call.
31271 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31273         * loader.c (mono_method_get_signature): Add support for dynamic
31274         assemblies.
31276 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31278         * reflection.c: fixed bug #43905.
31280 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31282         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31283         handling TypedReference and ArgIterator.
31284         * loader.c, loader.h: added function to get signature at call site.
31286 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31288         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31289         data readonly. Buglets and warning fixes. Some MethodSpec support.
31291 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31293         * class.h, class.c, object.c: remove relative numbering support.
31295 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31297         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31298         free the string, until we get a chance to fix Gtk#
31300 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31302         * marshal.c: revert last patch.
31304 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31306         * icall.c: updates for new mono_class_vtable() not calling
31307         the type constructor anymore.
31309 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31311         * object.h, object.c: separate vtable creation from type
31312         initialization. Make running the .cctor thread safe.
31314 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31316         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31318 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31320         * loader.c (mono_get_method): consider calling convention
31322 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31324         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31325         to return the invisible global type for a module.
31327         * reflection.c (mono_image_build_metadata): Emit global fields too.
31329 2003-05-20  Peter Williams  <peterw@ximian.com>
31331         * loader.c (mono_lookup_internal_call): Add a few newlines.
31333 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31335         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31336         literal strings.
31338         * appdomain.c (set_domain_search_path): Recalculate search path when
31339         AppDomainSetup.PrivateBinPath changes.
31341         * object.c (mono_class_compute_gc_descriptor): It turns out some
31342         parts of the class libs (like System.Thread) holds pointers to
31343         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31344         to treat native int a pointer type here.
31345         
31346 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31348         * appdomain.h, domain.c: add hashtable for jump target resolution.
31350 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31352         * reflection.h reflection.c icall.c: Added new icalls 
31353         GetManifestResourceInfoInternal, GetModulesInternal and support
31354         infrastructure.
31356 2003-05-16  Dick Porter  <dick@ximian.com>
31358         * icall.c:
31359         * file-io.h:
31360         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31362 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31364         * object.c: mono_store_remote_field: little fix to previous patch.
31366 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31368         * class.c: add constructors to array classes.
31369         * icall.c: special case array construction for InternalInvoke (),
31371 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31373         * class.h class.c reflection.c object.c: Added support for field
31374         defaults in dynamically generated classes.
31376 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31378         * reflection.c: properly encode charset for ddlimport.
31380 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31382         * threads.c: allow compiling without GC.
31384 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31386         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31387         handling of thread static data.
31389 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31391         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31393 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31395         * class.c (mono_array_class_get): always set the serializable flags
31396         (mono_array_class_get): always set the SEALED attribute for array types
31398 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31400         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31401         attributes (fix for bug 42021).
31403 2003-05-12  Dick Porter  <dick@ximian.com>
31405         * gc.c: Don't run finalizers when the finalizer thread is
31406         finishing up, because the default domain has already been
31407         destroyed.
31409 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31411         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31412         value is null, we should throw an exception.   This is slightly
31413         different than the other conventions used for the constructor.
31415 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31417         * socket-io.c: fixed windows build.
31419 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31421         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31423 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31425         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31426         compilers.
31428 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31430         * class.c (mono_class_layout_fields): Add experimental GC aware
31431         auto layout facility. Requires class library changes to work correctly.
31433         (mono_class_setup_vtable): Avoid overriding explicit interface
31434         method implementations. Fixes iface3.exe test.
31436         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31437         object reference.
31438         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31439         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31441         * metadata.h: Add new type classification macro which determines
31442         whenever the type holds an object reference.
31444 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31446         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31448 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31450         * gc.c (finalizer_thread): Work around a GC bug.
31452 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31454         * marshal.c (emit_struct_conv): allow unions
31456         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31458 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31460         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31462 2003-05-06  Martin Baulig  <martin@ximian.com>
31464         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31466 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31468         * socket-io.c:
31469         (Select_internal): allow NULLs, don't create arrays if not needed.
31470         Coupled with Socket.cs changes.
31472         * threadpool.c:
31473         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31474         register a finalizer for it that will close the semaphore handle. This
31475         fixes the leak and make Lupus' test run with > 4080 loops.
31477 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31479         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31480         Jerome Laban (bug #42287)
31482 2003-05-02  Martin Baulig  <martin@ximian.com>
31484         * debug-mono-symfile.h
31485         (MonoSymbolFile): Moved declaration into mono-debug.h.
31486         (MonoDebugMethodJitInfo): Likewise.
31487         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31488         argument.
31489         (_mono_debug_address_from_il_offset): Take a
31490         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31492         * mono-debug.h
31493         (MonoDebugDomainData): New struct.
31494         (mono_debug_get_domain_data): New function.
31495         (mono_debug_add_method): Take an additional `MonoDomain *'
31496         argument.
31497         (mono_debug_source_location_from_address): Likewise.
31498         (mono_debug_il_offset_from_address): Likewise.
31499         (mono_debug_address_from_il_offset): Likewise.
31501 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31503         * reflection.c: one more check for null type in custom attrs.
31505 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31507         * reflection.c: avoid warning (comparison is always false due to limited
31508         range of data type).
31510 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31512         * icall.c: throw an exception in Type.GetField if the argument 'name'
31513         is NULL.
31515 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31517         * reflection.c: fixed handling of enums in named arguments to custom
31518         attributes (bug #42123).
31520 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31522         * reflection.c: use the right array element type and handle
31523         a null for a Type argument, too.
31525 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31527         * reflection.c: handle arrays as arguments to custom attributes.
31529 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31531         * reflection.c: handle a string value in a custom attr
31532         ctor that takes an object.
31534 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31536         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31537         (fix bug #42063)
31539 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31541         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31543 2003-04-27  Martin Baulig  <martin@ximian.com>
31545         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31546         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31547         MONO_DEBUGGER_EVENT_BREAKPOINT.
31548         (mono_breakpoint_trampoline_code): Removed.
31549         (mono_debugger_event_handler): The last argument is now a
31550         `guint32'.
31551         (mono_debugger_insert_breakpoint_full): Removed the
31552         `use_trampoline' argument.
31553         (mono_debugger_method_has_breakpoint): Likewise.
31554         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31555         mono_debugger_breakpoint_callback(); take the method and
31556         breakpoint number as arguments.
31558 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31560         * metadata.c: fix off by one when loading parameters attributes.
31562 2003-04-24  Martin Baulig  <martin@ximian.com>
31564         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31566 2003-04-24  Martin Baulig  <martin@ximian.com>
31568         * mono-debug-debugger.c: Moved all code which interacts with the
31569         Mono Debugger here.
31571         * debug-mono-symfile.c: This code now just deals with the symbol
31572         file itself, the debugger code is now in mono-debug-debugger.c.
31574 2003-04-23  Martin Baulig  <martin@ximian.com>
31576         * mono-debug.c (mono_debug_source_location_from_il_offset):
31577         New method; like mono_debug_source_location_from_address(), but
31578         takes an IL offset instead of a machine address.
31580 2003-04-23  Martin Baulig  <martin@ximian.com>
31582         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31583         `line' field; this is now computed by the debugger.
31585 2003-04-23  Martin Baulig  <martin@ximian.com>
31587         * mono-debug.[ch]: New files.  This is the new debugging interface.
31589         * mono-debug-debugger.[ch]: New files.  Moved all code which
31590         interacts with the Mono Debugger here.
31592 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31594         * domain.c (mono_init): initialize mono_defaults.monitor_class
31596 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31598         * reflection.c (method_encode_code): Add a spicy exception to help
31599         future compiler authors.
31601 2003-04-21  Martin Baulig  <martin@ximian.com>
31603         * icall.c
31604         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31605         Make this work with relative pathnames; g_filename_to_uri() needs
31606         an absolute filename.
31608 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31610         * icall.c: Track name changes in Object and ValueType.
31612 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31614         * metadata.c (mono_type_stack_size): size should be a multiple of
31615         sizeof (gpointer)
31617 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31619         * gc.c:
31620         (internal_domain_finalize): moved into mono_domain_finalize. No need
31621         to create another thread because the finalizers will be run in the
31622         finalizer thread.
31623         
31624         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31625         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31626         to be run (MS does this too).
31628 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31630         * object.c (mono_class_compute_gc_descriptor): Update comment.
31632         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31634         * image.h: Add synchronized wrapper cache.
31636         * image.c (do_mono_image_open): Initialize cache.
31638         * reflection.c (create_dynamic_mono_image): Initialize cache.
31640 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31642         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31643         ves_icall_System_Buffer_ByteLengthInternal.
31645 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31647         * reflection.c: setup klass->nested_in earlier. Allow
31648         a dash in the assembly name.
31650 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31652         * metadata.c (mono_type_to_unmanaged): dont access
31653         type->data.klass for MONO_TYPE_OBJECT
31654         (mono_type_to_unmanaged): consider System.Delegate class
31656 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31658         * class.c: just setup supertypes in the proper place instead of
31659         initializing the full element class for arrays.
31661 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31663         * class.c: ensure the element class of arrays is initialized.
31664         Setup the supertype info for array classes, too.
31666 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31668         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31670 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31672         * Makefile.am: re-added -m option when running cygpath. This way,
31673         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31674         separator.
31675         * mono-config.c: same codepath for locating mono config file for WIN32
31676         and the rest.
31677         * assembly.c: if mono_assembly_setrootdir is called, don't override
31678         the value set.
31680 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31682         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
31683         MONO_ASSEMBLIES variable.
31685 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
31687         * icall.c: added Assembly::GetNamespaces() icall.
31689 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31691         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
31693 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
31695         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
31696         * object.c: fixed bug in the construction of vtable for proxies
31698 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
31700         * object.c (mono_array_new): Mark mono_array_new as an icall.
31702 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31704         * class.c: fixed test for public method when overriding interfaces.
31705         Closes bug #40970.
31707 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31709         * appdomain.h, domain.c: added mono_domain_foreach() to
31710         be able to access the currently loaded appdomains.
31711         * object.c: make string interning work across sppdomains.
31712         Mark some functions for use as icalls.
31714 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
31716         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
31718         * reflection.h reflection.c: Allocate long living data using 
31719         GC_MALLOC_ATOMIC so the collector does not need to scan it.
31721         * reflection.c: Double the allocation size in streams instead of
31722         increasing it, to prevent unneccesary copying on large assemblies.
31723         
31724         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
31725         creation if the assembly does not have the Run flag set.
31727 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
31729         * class.h: avoid the C++ keywords in header files (Jerome Laban
31730         spotted and fixed this).
31732 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31734         * object.c:
31735         (mono_unhandled_exception): fill in the arguments for the
31736         UnhandledException event. Only trigger that event for the default
31737         domain (as MS does).
31739 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
31741         * object.c: Improve typed allocation stuff based on suggestions from
31742         Paolo. Also turn it on if the GC library supports it.
31744 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31746         * object.c object.h class.h: Added experimental typed allocation
31747         facility using the interfaces in gc_gcj.h.
31749         * os/gc_wrapper.h: Added new include files.
31750         
31751 2003-04-03  Martin Baulig  <martin@ximian.com>
31753         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
31754         which is not yet enabled by default.
31756         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
31757         functions.
31758         (mono_gc_lock, mono_gc_unlock): New static functions.
31760         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
31761         functions; stop/start the world for the garbage collector.  This
31762         is using the windows API; we need to complete the SuspendThread()/
31763         ResumeThread() implementation in the io-layer to make this work on Unix.
31764         (mono_gc_push_all_stacks): New public function; tells the garbage
31765         collector about the stack pointers from all managed threads.
31767 2003-04-03  Martin Baulig  <martin@ximian.com>
31769         * object.h (MonoThread): Added `gpointer stack_ptr'.
31771         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
31773 2003-04-03  Martin Baulig  <martin@ximian.com>
31775         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
31777 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31779         * reflection.c (typebuilder_setup_fields): Initialize field.first and
31780         field.last.
31782 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
31784         * loader.c (mono_lookup_internal_call): Report the corlib that is
31785         out of sync.
31787 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
31789         * icall.c (ves_icall_type_GetTypeCode): fixed check for
31790         System.DBNull (it's class not valuetype).
31792 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31794         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
31795         if the array method was already assigned a token (fixes bug#40646).
31797 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
31799         * reflection.c (mono_reflection_get_type): Attempt type resolve even
31800         if no assembly is given.
31802 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
31804         * metadata.h: Added the new tables.
31806         * row-indexes.h: Added definitions for new tables.
31808         * metadata.c: Add schemas for new tables, and add support for
31809         computing the sizes of them.
31811         * class.c: Update for handling the new type cases.
31813 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
31815         * metadata.h (MONO_TYPE_IS_VOID): new macro
31817 2003-03-31  Martin Baulig  <martin@ximian.com>
31819         * threads.h (MonoThreadCallbacks): Added `thread_created'.
31821         * threads.c (mono_thread_new_init): Call `thread_created' in the
31822         mono_thread_callbacks.
31824 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
31826         * loader.h: added marshalbyrefobject_class to mono_defaults
31827         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
31828         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
31829           generation of output parameters.
31830           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31831         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31832           contextbound and the target object belongs to the context of the caller.
31833         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31834         * object.c: Implemented support for interfaces and abstract classes
31835           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31836           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31838 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31840         * class.h class.c (mono_class_is_subclass_of): New function.
31841         
31842         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
31843         routines for most common case (calls from ArrayList::ToArray).
31845         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
31846         routine so programs which call Environment::Exit() can be profiled.
31848         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
31849         Added MONO_ARCH_SAVE_REGS.
31851         * icall.c (ves_icall_type_is_subtype_of): Use new function.
31853 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
31855         * blob.h: Add a couple of new MonoType types definitions.
31857         * tabledefs.h: Add a couple of new call convs.
31859 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
31861         * reflection.h (MonoReflectionDynamicAssembly): track changes in
31862         the layout of the class.
31864         * reflection.c (alloc_table): double the size on overflow to avoid
31865         unnecessary copying.
31867         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
31868         avoid filling out metadata tables and blobs. Also set mb->ilgen to
31869         null so it can be garbage collected.
31870         
31871 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
31873         * reflection.c (mono_reflection_get_type): Return the resolved type
31874         only if it is in the assembly we searched.
31876         * reflection.c (ensure_runtime_vtable): Initialize method slots.
31878         * class.c (mono_class_setup_vtable): Set the slot of the overriding
31879         method.
31881 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31883         * appdomain.c:
31884         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
31885         the right one is 'file:///blah', but MS allows it.
31886         * assembly.c:
31887         (mono_assembly_open): allow 'file://blah'
31889         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
31891 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
31893         * socket-io.c: fixes bug #40310.
31895 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
31897         * reflection.c (mono_reflection_parse_type): handle deeply nested
31898         types correctly.
31900         * reflection.c (mono_image_create_token): Use unique token values
31901         since they will be put into a hash table.
31903         * class.c (mono_class_setup_vtable): If a method occurs in more than
31904         one place in the vtable, and it gets overriden, then change the
31905         other occurances too.
31907         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31908         object as return type.
31910 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31912         * icall.c: Deleted "ToString" implementation for double and float
31913         because they are full implemented in managed code.
31915 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31917         * reflection.c, reflection.h: implemented and exported functions
31918         to retrieve info about custom attributes.
31920 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31922         * appdomain.c: moved Uri handling to assembly.c
31923         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
31924         work when using a file Uri in *nix and windows.
31926         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
31927         GetReferencedAssemblies.
31929 2003-03-18  Dick Porter  <dick@ximian.com>
31931         * icall.c: Rename a couple of internal calls
31933         * threads.c: Set the thread state to Stopped when a thread exits.
31934         Fixes bug 39377.
31936 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
31938         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
31939         New icall.
31941         * object.c (mono_class_vtable): fix warning.
31943 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
31945         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
31947         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
31948         memory.
31949         (method_encode_clauses): Create exception info structures in the right
31950         order.
31951         (mono_reflection_setup_internal_class): Initialize supertypes field.
31953         * class.c object.c: Handle interfaces which implement other interfaces 
31954         correctly.
31956         * class.h class.c: Move the supertypes array initialization code into 
31957         a separate function so it can be used for dynamic types too. Also call
31958         it earlier, in mono_class_init(), since it can be used before the
31959         type is initialized.
31961 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31963         * Makefile.am:
31964         * assembly.c:
31965         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
31967         * appdomain.c:
31968         * appdomain.h:
31969         * marshal.c:
31970         * object.c: remove warnings.
31972 2003-03-13  Martin Baulig  <martin@ximian.com>
31974         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
31975         (MonoDebugLexicalBlockEntry): New types.
31977         * debug-mono-symfile.c
31978         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
31980 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31982         * process.c: ret can be any non-zero value accroding to MS doc.
31984 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
31986         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
31987         fixing a warning for a miss-used prototype, would have cause
31988         random memory corruption.
31990 2003-03-07  Martin Baulig  <martin@ximian.com>
31992         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
31993         getting really annoying ....
31995 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
31997         * reflection.c (fixup_method): added support for array methods.
31999 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32001         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32002         (pointed out by Michael Adams).
32004 2003-03-04  Dick Porter  <dick@ximian.com>
32006         * icall.c: Temporarily reverted the Double and Single ToString()
32007         change, because it broke nunit.
32009 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32011         * object.h, threads.h: make include files compatible with C++
32012         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32014 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32016         * icall.c: Erased ToString helper functions for Double and Single.
32017         Now, that implementations ar all in managed code (Double and Single
32018         Formatters).
32020 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32022         * appdomain.c: Added method for initializing the default context of
32023         a domain. Added internal call for getting the default context.
32024         * appdomain.h: Added context variable in MonoDomain struct.
32025         * domain.c: mono_domain_set also sets the default context of the domain
32026         * icall.c: Mapped internal method InternalGetDefaultContext.
32027         * object.c: mono_object_get_virtual_method returns always a remoting
32028         wrapper if the object is a transparent proxy.
32029         mono_runtime_invoke_array: when creating an object by calling the
32030         constructor, if the created object is a proxy, then the constructor should
32031         be called using the a remoting wrapper.
32033 2003-03-03  Dick Porter  <dick@ximian.com>
32035         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32036         variable so it compiles on solaris.  Problem spotted by
32037         Christopher Taylor <ct@cs.clemson.edu>
32039 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32041         * appdomain.c:
32042         (get_info_from_assembly_name): don't leak value.
32044         * icall.c:
32045         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32046         result.
32048 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32050         * assembly.c: export mono_image_load_references ().
32051         * class.c: handle function pointers. mono_class_from_name() now
32052         supports nested type names directly.
32054 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32056         * reflection.h reflection.c: Encode already created dynamic methods 
32057         and fields correctly as a DEF instead of a REF.
32059         * reflection.c: Get rid of the force_ref argument to 
32060         mono_image_typedef_or_ref since it was wrong in the first place.
32062         * string-icalls.c: add error checking to string constructors according
32063         to the MSDN docs.
32065         * reflection.c: Emit types in the order their TypeBuilders were 
32066         created. Previously, a new table index was assigned to each type before
32067         the tables were emitted. This was wrong because the signature blob
32068         might already refer to a type by its original table index.
32070 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32072         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32073         change.
32074         
32075 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32077         * Makefile.am: make assemblies dir have \ instead of / on windows.
32079 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32081         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32082         iterate over the NESTEDCLASS table using a linear search since the
32083         table is not guaranteed to be sorted by the secondary key.
32085         * class.c (mono_class_create_from_typedef): fixed up call to
32086         mono_metadata_nesting_typedef.
32087         
32088 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32090         * marshal.c (mono_string_to_byvalstr): clear the memory as
32091         suggested by Jerome Laban <jlaban@wanadoo.fr>
32093 2003-02-26  Dick Porter  <dick@ximian.com>
32095         * process.c: Cope with padding in .rsrc blocks
32097 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32099         * metadata.h: reverted the filter_len change, it breaks reflection
32100         
32101 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32103         * metadata.h: added a new field to store the filter_len
32104         
32106 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32108         * reflection.c: handle custom attributes for types and members
32109         created with Reflection.Emit (bug#38422).
32111 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32113         * reflection.c: define RTSpecialName automatically for constructors for
32114         compatibility with MS.NET.
32116         * reflection.c (mono_reflection_create_runtime_class): initialize
32117         nested_in field of dynamically created classes.
32119 2003-02-22  Martin Baulig  <martin@ximian.com>
32121         * debug-mono-symfile.h: Incremented version number.
32123 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32125         * object.h icall.c process.c: fix warnings.
32127 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32129         * appdomain.h appdomain.c:
32130         (mono_domain_try_type_resolve): split the 
32131         name_or_tb argument into a name and a tb argument.
32132         (mono_domain_has_type_resolve): new function to check whenever the
32133         application has registered a TypeResolve event handler.
32134         
32135         * icall.c reflection.h reflection.c: move the type resolve logic into
32136         mono_reflection_get_type () so it will be invoked when 
32137         Assembly::GetType () is called.
32139         * reflection.c:
32140         (mono_reflection_get_type): renamed to get_type_internal.
32141         (mono_reflection_get_type): fixed type name generation so it works 
32142         for nested types too.
32143         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32144         costly type name generation if there is no resolve event handler.
32146 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32148         * class.c, image.c: load exported types from file references.
32150 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32152         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32153           used to cache the managed methods used to create proxies and make 
32154           remote invocation of methods.
32155         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32156           to be remotely created.
32157         * object.c: Modified the method mono_class_vtable(). It now initializes 
32158           the remote flag of the vtable. Modified mono_object_new_specific(), 
32159           so now it checks the remote flag.
32160         * icall.c: Added a couple of internal methods, one for enabling instance 
32161           creation interception for a type, and one for creating objects bypassing
32162           the remote check.
32164 2003-02-18  Martin Baulig  <martin@ximian.com>
32166         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32167         New interncall to get a method's metadata token.
32169         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32170         New interncall for the debugger.
32172 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32174         * class.c (mono_class_setup_vtable): allocate supertype array
32176 2003-02-18  Martin Baulig  <martin@ximian.com>
32178         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32180 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32182         * reflection.c:
32183         (assembly_name_to_aname): jump over unknown properties (i've found
32184         something like: 'type, assembly, version=xxx, custom=null, public...',
32185         so now will ignore custom=null and still get the rest of the values).
32187 2003-02-17  Dick Porter  <dick@ximian.com>
32189         * threads.c: Have Thread.Start() wait for a semaphore to signal
32190         that the thread has set up all its local data.  This fixes bug
32191         34323, where Abort() raced the new thread's TLS data.
32193         Also removes the handle_store() call from start_wrapper, because
32194         threads are now always created suspended and there is no longer a
32195         race between the parent and child threads to store the info.
32197 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32199         * image.c: explain the #- heap issue in a message, hopefully
32200         avoiding FAQs on mono-list.
32202 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32204         * icall.c:
32205         (GetEntryAssembly): if the domain has not invoked
32206         AppDomain.ExecuteAssembly yet, return the assembly of the default
32207         AppDomain.
32209 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32211         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32213 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32215         * metadata.c, reflection.c: simple speedup to type hash
32216         and equals code.
32218 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32220         * image.c, image.h, class.c, assembly.c: move module loading
32221         to MonoImage. When loading metadata, consider alignemnet from
32222         the start of metadata, not from the metadata address in memory.
32224 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32226         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32227         AssemblyBuilder objects. Factored out custom attribute creation into
32228         a separate function.
32229         (create_custom_attr): new function to create custom attributes.
32231 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32233         * Makefile.am: Got tired of typing the full pathname to pedump.
32234         Until there is another option, am installing this.
32236 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32238         * class.c (class_compute_field_layout): always set field->parent 
32239         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32241 2003-02-11  Dick Porter  <dick@ximian.com>
32243         * threads-types.h:
32244         * monitor.c: Rewrote Monitor, making lock much faster and
32245         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32246         creates them as needed.
32248         * exception.c: Added SynchronizationLockException
32250         * threads.c: Deleted old Monitor implementation.  The new one is
32251         in a new file.
32253 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32255         * class.c: handled TypedReference type code. Set the correct size for
32256         class data. Setup interface_offsets for interface classes, too.
32258 2003-02-09  Martin Baulig  <martin@ximian.com>
32260         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32262 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32264         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32265         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32266         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32267         * verify.c: check for code that runs after the end of the method.
32269 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32271         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32272         "System.Math::Round2".
32273         * sysmath.h: Added Floor, Round and Round2 definitions.
32274         * sysmath.c: Modified certain functions that were not 100% compliant
32275         with MS.NET (math precision) and added the implementation of Floor,
32276         Round and Round2.
32278 2003-02-07  Martin Baulig  <martin@ximian.com>
32280         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32282 2003-02-07  Martin Baulig  <martin@ximian.com>
32284         * debug-mono-symfile.c: Reflected latest symwriter changes.
32285         (mono_debug_create_mono_symbol_file): Removed.
32286         (mono_debug_open_mono_symbol_file): Take an argument which
32287         specifies whether to create a dynamic symbol file.
32289 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32291         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32293 2003-02-05  Martin Baulig  <martin@ximian.com>
32295         * reflection.c (mono_image_build_metadata): Make this public,
32296         protect it against being called multiple times, don't create
32297         resources and don't build the compressed metadata here.
32298         (mono_image_create_pefile): Do this here.
32300         * icall.c
32301         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32303 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32305         * socket-io.c: fixed bug #36322.
32307 2003-02-06  Piers Haken <piersh@friskit.com>
32309         * appdomain.[ch]:
32310         * class.h:
32311         * debug-mono-symfile.c:
32312         * icall.c:
32313         * loader.c:
32314         * mono-config.c:
32315         * monosn.c:
32316         * reflection.c:
32317         * socket-io.c: warning cleanups
32319 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32321         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32322         function. works like remoting invoke, but does a check for the Proxy first.
32324 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32326         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32328 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32330         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32331         array of pointers.
32332         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32333         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32335         * object.c (mono_store_remote_field_new): used by the new jit
32336         instead of mono_store_remote_field
32337         (mono_load_remote_field_new): used by the new jit
32338         instead of mono_load_remote_field
32340 2003-02-05  Patrik Torstensson
32342         * appdomain.c: changed unload to take the domain id instead
32343         of domain
32344         
32345         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32348 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32350         * appdomain.c: don't look for assemblies in ApplicationBase if
32351         PrivateBinPathProbe is set.
32353 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32355         * object.c: make the first argument in main_args contain the absolute
32356         path to the assembly. Fixes bug #37511.
32358 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32360         * icall.c: get correct UTC offset for countries not using daylight
32361         time saving. Fixes bug #30030.
32363 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32365         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32366         and 1 are the family).
32368 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32370         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32372         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32374 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32376         * reflection.c: added support for SignatureHelper tokens, which is
32377         needed by the Calli opcode.
32379         * reflection.h: track changes to SignatureHelper class.
32381         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32383 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32385         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32387 2003-02-03  Patrik Torstensson
32388         * appdomain.[c|h], domain.c : 
32389          - Added support for getting a domain via domain id
32390          - Support for setting and getting domain from System.AppDomain 
32391            (used in cross appdomain channel)
32392          - Added support for get/set for a MonoAppContext on a thread 
32393            (Context class in System.Runtime.Remoting.Contexts),
32394          - Removed hack in Get/SetData and ExecuteAssembly.
32395         
32396         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32397         the managed world to get control when a proxy is created.
32399         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32400         
32401 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32403         * icall.c
32404         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32405         Populate the codebase field as well.
32407 2003-02-02  Martin Baulig  <martin@ximian.com>
32409         * debug-mono-symfile.c
32410         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32411         (mono_debug_symfile_add_method): Allow interncalls.
32413 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32415         * icall.c: throw parse exception if strtod fails or the string is empty.
32417 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32419         * marshal.c: handle object type separately from defined
32420         class types.
32422 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32424         * marshal.c: handle NATIVE_LPSTR for strings when it's
32425         explicitly specified.
32427 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32429         * reflection.c, reflection.h, icall.c: setup the reflection
32430         handle cache for ModuleBuilders and AssemblyBuilders.
32432 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32434         * reflection.c (reflection_methodbuilder_to_mono_method): set
32435         pinvoke flag
32437 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32439         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32441 2003-01-29  Dick Porter  <dick@ximian.com>
32443         * threads.c: No need for the fake_thread kludge now that Thread
32444         doesn't run a class constructor
32445         
32446 2003-01-29  Dick Porter  <dick@ximian.com>
32448         * threads.c: Use g_direct_hash instead of the rather bogus
32449         g_int_hash
32451 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32453         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32454         (fix pinvoke12.exe)
32455         (mono_marshal_get_struct_to_ptr): generate valid IL code
32456         (mono_marshal_get_ptr_to_struct): generate valid IL code
32457         (*): correctly set sig->pinvoke, we need to memdup the signature
32458         to do that
32460 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32462         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32463         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32465 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32467         * profiler.c: provide more callers information.
32469 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32471         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32473         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32475         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32477 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32479         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32480         exception instead of going into an infinite loop on dates which it 
32481         can't yet handle.
32483         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32484         out-of-range exception if needed.
32486         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32487         an implementation for an interface method and to override an inherited
32488         method at the same time. 
32489         Imagine a scenario when a virtual method is used to override a
32490         virtual abstract method in a parent class, and this same method 
32491         provides an implementation for an method inherited from an interface. 
32492         In this case, the interface resolution code will set im->slot, which 
32493         means that the virtual method override pass will skip this method 
32494         which means a pointer to the abstract method inherited from the parent
32495         will remain in the vtable of this non-abstract class.
32497         * class.c: (mono_class_setup_vtable): continue search for a real 
32498         method if only an abstract method is found.     
32500 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32502         * reflection.c: add size to encoding for ByValStr and ByValArray
32503         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32505 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32507         * class.c (mono_class_setup_vtable): pass the override info as an
32508         argument.
32510         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32511         correctly.
32512         
32513         * reflection.c (ensure_runtime_vtable); add support for method 
32514         overrides.
32515         
32516 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32518         * reflection.c (resolution_scope_from_image): Hack to work to work with
32519         dynamic assemblies.
32521         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32522         added a 'force_ref' argument to force this function to allways return 
32523         a TypeRef. This is needed by mono_image_get_memberref_token ().
32524         
32525 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32527         * reflection.c (mono_image_get_type_info): interfaces really don't have
32528         a parent.
32530         * reflection.c (mono_image_basic_init): fill out missing fields of
32531         image structure.
32533         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32534         dynamic assemblies. This is required so dynamic assemblies show up in
32535         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32536         Type::GetType() etc. This is consistent with MS behaviour.
32538         * image.c image.h reflection.c: add newly created classes to the name 
32539         cache so mono_class_get () will find them.      
32541 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32543         First part of changes to get IKVM.NET running under mono.
32544         
32545         * appdomain.h, appdomain.c: added new function 
32546         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32547         This function will call AppDomain::DoTypeResolve to do the actual work.
32549         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32550         moved existing code dealing with dynamic tokens to a new function 
32551         called mono_reflection_lookup_dynamic_token (). This function will 
32552         raise TypeResolve events when appropriate. Since reflection.c is not 
32553         part of libmetadata, a new hook function called 
32554         mono_lookup_dynamic_token() is added to class.c which will call this.
32556         * assembly.h assembly.c: make the invoke_load_hook function public,
32557         so it can be called for dynamic assemblies.
32559         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32561         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32562         type isn't found.
32564         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32565         MonoGHashTable, since it contains pointers to objects which the GC 
32566         needs to track.
32568         * assembly.c (search_loaded): remove unused variable.
32569         
32570 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32572         * object.c: fixed issue exposed by gcc-generated IL programs
32573         that use RVA data for pointers.
32575 2003-01-25  Martin Baulig  <martin@ximian.com>
32577         * threads.c (start_wrapper): Moved the initialization of
32578         `start_func' above the mono_new_thread_init() call to which we
32579         pass it as argument.
32581 2003-01-24  Martin Baulig  <martin@ximian.com>
32583         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32584         the MonoThread pointer.
32586 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32588         * icall.c: Rename `PowImpl' to Pow.
32590 2003-01-23  Dick Porter  <dick@ximian.com>
32592         * threads.c (start_wrapper): Create a Thread object if needed, so
32593         the Main() thread can do the class initialisation in a subthread
32594         that has been set up to allow managed code execution.
32596         Pass the thread ID instead of the MonoThread pointer to the thread
32597         start and attach callbacks.  This change is required, because the
32598         jit thread start callback must be called _before_ the Thread
32599         object can be created.
32600         
32601         (mono_thread_init): Removed much object creation code that is no
32602         longer needed.  No managed code is called from here now.
32604         * object.c (mono_runtime_exec_managed_code): Create a subthread
32605         for Main, and call back to the runtime to use it.
32606         Set the exit code when Main exits.
32608         * gc.c: Make sure domain finalisation happens in a subthread.
32609         Re-enable threaded GC, fixing bug 31333 (again).
32611         * environment.c: System.Environment internall calls (so far just
32612         ExitCode is here, the others are still in icall.c)
32614         * appdomain.c (mono_runtime_cleanup): All threads running managed
32615         code should have finished before mono_runtime_cleanup() is
32616         reached, so no need to clean up threads.
32618 2003-01-22  Martin Baulig  <martin@ximian.com>
32620         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32621         `gpointer func' arguments.      
32622         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32623         but added `MonoThread *thread' argument.
32624         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32626         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32627         and pass it to the mono_thread_start_cb callback.
32628         (mono_install_thread_callbacks): New public function to install a
32629         set of callbacks which are set by the debugger.
32630         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32632 2003-01-22  Martin Baulig  <martin@ximian.com>
32634         * Makefile.am: Install debug-mono-symfile.h.
32636 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32638         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32640 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32642         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32643         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32644         (mono_array_class_get): correctly set access levels of arrays
32646 2003-01-20      Patrik Torstensson
32647         * image.h (MonoAssemblyName): changed major, minor, build, revision
32648         from signed to unsigned.
32650 2003-01-20  sean kasun <skasun@azstarnet.com>
32652         * reflection.c (load_cattr_value): Now this handles
32653         MONO_TYPE_SZARRAY.  Fixes bug #35629
32655 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32657         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32658         integer value
32660 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32662         * decimal.c: fixed bug #26056.
32664 2003-01-17  Martin Baulig  <martin@ximian.com>
32666         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32668 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32670         * exception.[ch]:
32671         (mono_get_exception_type_initialization): new function.
32673         * object.c: throw a TypeInitializationException when an exception is
32674         thrown invoking the class constructor.
32676 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32678         * reflection.c: fixed attribute reading.
32680 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32682         * icall.c:
32683         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
32684         provided, look for the type in the calling assembly and then in
32685         mscorlib; if the assembly name is provided, only try that one.
32687 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
32689         * object.c: register the vtable before there is a chance it's
32690         queried again recursively.
32692 2003-01-13  Duncan Mak  <duncan@ximian.com>
32694         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
32695         gc-internal.h. 
32696         
32697 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
32699         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
32701 2003-01-11  Martin Baulig  <martin@ximian.com>
32703         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
32704         this to 20 for the release.
32706 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
32708         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
32710         * loader.c (mono_method_get_marshal_info): bug fix
32712         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
32713         structures with explicit layout
32715 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32717         * profiler.c: made the output more readable (and sorted). 
32718         Added caller information for the allocation profiler.
32720 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
32722         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
32724 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32726         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
32727         to get value types.
32728         
32729 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
32731         * object.c, profiler.h, profiler.c, profiler-private.h:
32732         Added object allocation profiler.
32734 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
32736         * reflection.h, reflection.c: handle global methods.
32737         Compress blob entries.
32739 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
32741         * marshal.c: fix compilation.
32743 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
32745         * loader.c (mono_method_get_marshal_info): impl.
32747         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
32749 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32751         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
32752         for reference types.
32754 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
32756         * loader.c: fixed off by one error in loaded parameter names.
32758 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
32760         * marshal.c (mono_marshal_get_icall_wrapper): like
32761         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
32762         instead of a MonoMethod.
32764 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32766         * decimal.c: fixed bug #36537.
32768 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
32770         * marshal.c: throw a missing method exception if a
32771         P/Invoke method is not found.
32773 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32775         * icall.c: allow a null this for constructors.
32777 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
32779         * icall.c: raise the proper exceptions if the arguments to the
32780         internal Invoke are incorrect.
32782 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
32784         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
32786 2003-01-03  Martin Baulig  <martin@ximian.com>
32788         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32790 2002-12-31  Martin Baulig  <martin@ximian.com>
32792         * debug-mono-symfile.c: Completely rewrote the type section.
32793         Instead of using individual malloc()ed fields, we use one big
32794         continuous memory area and offsets into this area.
32795         See the comments in the source code for details.
32797 2002-12-30  Martin Baulig  <martin@ximian.com>
32799         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
32801 2002-12-30  Martin Baulig  <martin@ximian.com>
32803         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
32804         line number table in this data blob instead of using an external
32805         pointer.
32807 2002-12-28  Martin Baulig  <martin@ximian.com>
32809         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32811 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
32813         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
32814         as a boxed return type.
32816 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
32818         * appdomain.c
32819         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
32820         g_build_filename to properly get separators on the filename created.
32822         * object.h: Small change, introduce MonoMarshalByRefObject to
32823         track the layout of that structure in the C# universe as we make
32824         changes there.
32826 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
32828         * object.c: removed assert to allow static fields on interfaces.
32829         * loader.c: a TypeSpec may be used for any type, not just arrays.
32831 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32833         * class.c, class.h: added mono_class_array_element_size ().
32834         Ignore static methods in interfaces.
32836 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32838         * threads.c: fixed the build under cygwin.
32840 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32842         * reflection.c: handle nullref constants. Allocate keys for
32843         reflection handles with the GC.
32845 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32847         * threads.c, threads.h: added mono_thread_get_abort_signal()
32848         to get a suitable signal for thread abort.
32850 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32852         * metadata.c: fix handling of ExportedType table.
32854 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32856         * icall.c: added WriteWindowsDebugString internal call.
32858 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32860         * reflection.h: added fields to match C# implementation.
32862 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32864         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
32866 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
32868         * gc.h, gc-internal.h: Rename header for GC internal calls to
32869         gc-internal.h from gc.h as to not clash with Boehm GC having its
32870         header installed as <gc.h> in outside include paths.
32871         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
32872         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
32874 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32876         * icall.c: assign minor, build and revision in FillName.
32878 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
32880         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
32881         Added support for running code generated by Reflection.Emit.
32883 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32885         * appdomain.c: check for NULL argument in LoadFrom.
32887 2002-12-10  Dick Porter  <dick@ximian.com>
32889         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
32891 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32893         * appdomain.c: fix buglet when building exe file name.  Handle full
32894         assembly name (needed after latest changes to AssemblyName).
32895         * image.c:
32896         (mono_image_close): free some hashtables.
32898 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
32900         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
32901         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
32902         on some systems (redhat 7.3) 
32904 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
32906         * threads.c: delete the critical section of a sync block,
32907         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
32909 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
32911         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
32913 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32915         * appdomain.[ch]: handle the assembly preload event to try loading the
32916         assemblies using the paths we have in the current domain.
32918         * assembly.[ch]: created an assembly preload hook that is called to try
32919         loading the assembly by other means that the ones provided here.
32921         * domain.c: initialize the domain search path.
32923         From now on, assemblies (TODO: except corlib and System) are loaded
32924         according to these rules when using mono_assembly_load ():
32926                 1. It tries to load the assembly from the ApplicationBase
32927                 of the current domain appending .dll and .exe (TODO: have to
32928                 try loading from name/name.dll and name/name.exe).
32930                 2. It tries the search path specified in PrivateBinPath for the
32931                 current domain (if any).
32933                 3. Previous behavior.
32935 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
32937         * icall.c: implemented GetInterfaceMap() related icall.
32938         * domain.c, loader.h: load MethodInfo in mono_defaults.
32940 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32942         * gc.c: disable the finalizer thread for now, untill all the issues
32943         with it are resolved.
32945 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32947         * string-icalls.c: handle embedded nulls in string ctor when the
32948         length is specified.
32950 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
32952         * class.c: look for explicit interface implementation in parent
32953         classes, too.
32955 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
32957         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
32959 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
32961         * gc.c: protect handles with a critical section.
32963 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32965         * icall.c:
32966         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
32967         parameters. If no assembly specified, try getting the type from all
32968         the assemblies in the current domain, else, load the assembly and get
32969         the type from it.
32971 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32973         * marshal.c: applied patch from Aleksey Demakov that fixes
32974         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
32976 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32978         * icall.c: fixed get_location.
32980 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
32982         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
32983         declarations to make it work with older gcc. 
32985         * loader.c (mono_get_method): set signature->pinvoke for native calls
32987 2002-11-20  Dick Porter  <dick@ximian.com>
32989         * threads.c (mono_thread_init): Set the main thread's handle
32991 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
32993         * gc.c: allow compilation without GC support. Changed to match the
32994         mono coding style.
32996 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
32998         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33000 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33002         * reflection.c: set a public key token on the core assemblies.
33004 2002-11-18  Dick Porter  <dick@ximian.com>
33006         * threads.c: Split out some thread initialisation so that other
33007         files can set the start callback function.
33009         * gc.c: Run finalisers in a separate thread, to avoid stack
33010         overflow.  Fixes bug 31333.
33012         * appdomain.c: Set up GC finalisation thread.
33014         * reflection.c: 
33015         * object.c: 
33016         * domain.c: Use gc.h macros for GC_malloc
33017         
33018 2002-11-15  Dick Porter  <dick@ximian.com>
33020         * threadpool.c: 
33021         * threads.c:
33022         * appdomain.c: Removed mono_runtime_init_with_attach(),
33023         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33024         merging the extra parameter with the existing function.  Removed
33025         unneeded code in mono_thread_attach().
33027 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33029         * image.c (mono_image_loaded_by_guid): a method to get loaded
33030         images by guid. 
33031         (load_metadata_ptrs): we store the guid as string.
33033 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33035         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33037         * metadata.c (mono_guid_to_string): imported method form Zoltan
33038         Varga (slightly modified)
33040         * assembly.c (mono_assembly_open): load precompiled code
33042         * loader.h (MonoMethod): we store the method token for use in the
33043         aot compiler. 
33045 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33047         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33048         the hook function called when an assembly is loaded.
33049         
33050         * domain.c: Modified file.
33051         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33053         Fixes bug #33196.
33055 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33057         * reflection.c: Map PEFileKind to the value expected by the WinNT
33058         image loader. 
33060 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33062         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33063         Read until the buffer is filled completely.
33065 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33067         * icall.c: implemented MonoType.InternalGetEvent ().
33069 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33071         * appdomain.c: implemented InitAppDomainSetup. Delayed
33072         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33073         the entry_assembly.
33075         * assembly.c: base_dir is now an absolute path ending with
33076         G_DIR_SEPARATOR.
33078         * icall.c: modified get_location according to the above changes.
33080         * object.c: init AppDomain.SetupInformation for the default domain after
33081         we have the entry assembly.
33083         * domain.c: when unloading a domain, setup = NULL.
33085 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33087         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33089 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33091         * object.h, object.c: introduced mono_object_get_virtual_method ()
33092         to lookup the method invoked on an object when a callvirt is done on
33093         a method.
33094         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33096 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33098         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33099         current domain when loaded an assembly and failed to load it.
33101         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33103 2002-10-31  Dick Porter  <dick@ximian.com>
33105         * icall.c: 
33106         * file-io.h: 
33107         * file-io.c: Return the error status in a parameter, as the
33108         GetLastError() value has long since been blown away if we try and
33109         look it up in a subsequent internal call invocation.  Delete the
33110         GetLastError() internal call, because it's useless.
33112 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33114         * class.[ch]: added cast_class to fix bug 29517
33116 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33118         * marshal.c: create valid IL code in the filter clause:
33119         the new JIT is less forgiving:-)
33121 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33123         * icall.c: removed get_property internal call.
33125 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33127         * appdomain.h domain.c: Added an ID to appdomains.
33128         
33129         * threads.c threads.h icall.c: Implement icall
33130         Thread:GetDomainID(), and remove unused icall 
33131         CurrentThreadDomain_internal.
33133 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33135         * icall.c: Don't recurse through the base types in GetConstructor.
33136         Fixes bug #32063. 
33138 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33140         * mempool.h, mempool.c: added mono_mempool_empty() and
33141         mono_mempool_stats().
33143 2002-10-23  Dick Porter  <dick@ximian.com>
33145         * file-io.c: 
33146         * file-io.h: 
33147         * icall.c: Added MonoIO.GetFileType internal call
33149 2002-10-17  Dick Porter  <dick@ximian.com>
33151         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33152         delegate semaphore before waiting for all threads to finish,
33153         because new threads can also call async delegates.  Fixes bug
33154         32004.
33156         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33157         of 3 seconds, in case another async job is queued.  (This part is
33158         needed because the bug fix reintroduced the 3s exit lag.)  This
33159         makes the mono_runtime_shutdown flag superfluous.
33161 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33163         * reflection.c: include ehader size in method section headers.
33164         Really check for suplicated modules entries.
33166 2002-10-17  Martin Baulig  <martin@gnome.org>
33168         * debug-mono-symfile.c: Added back support for locals.
33170 2002-10-14  Martin Baulig  <martin@gnome.org>
33172         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33173         MONO_TYPE_VOID.
33175 2002-10-14  Martin Baulig  <martin@gnome.org>
33177         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33178         mono_class_get() instead of looking in the class cache. 
33180 2002-10-13  Martin Baulig  <martin@gnome.org>
33182         * debug-mono-symfile.c: Set version number to 28, include the
33183         signature in method names.
33185 2002-10-13  Martin Baulig  <martin@gnome.org>
33187         * debug-mono-symfile.h: Set version number to 27.
33189 2002-10-11  Martin Baulig  <martin@gnome.org>
33191         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33193 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33195         * metadata.c, metadata.h: added helper function to allocate signatures.
33197 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33199         * icall.c: added internal call to get the location of machine.config.
33201 2002-10-08  Martin Baulig  <martin@gnome.org>
33203         * debug-mono-symfile.c: Ignore classes with a pending init for the
33204         moment.
33206 2002-10-03  Dick Porter  <dick@ximian.com>
33208         * threads.c: Freebsd pthread_t is a pointer
33210 2002-10-03  Dick Porter  <dick@ximian.com>
33212         * socket-io.c: Implemented GetHostName_internal
33214 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33216         * mono-config.c:
33217         (mono_config_parse_file): don't leak the text.
33219 2002-10-02  Martin Baulig  <martin@gnome.org>
33221         * debug-mono-symfile.c: Added support for methods.
33223 2002-10-01  Martin Baulig  <martin@gnome.org>
33225         * debug-mono-symfile.c: Don't emit methods and line numbers for
33226         the dynamic symbol file, just write the type table.  We can easily
33227         have an external helper program which creates a symbol file for an
33228         IL file.        
33230 2002-10-01  Dick Porter  <dick@ximian.com>
33232         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33233         Only add the handle to the cleanup array when we're about to
33234         launch the thread.  Bug 31425 deadlocked when the test was run on
33235         mono under w32.
33237 2002-10-01  Martin Baulig  <martin@gnome.org>
33239         * debug-mono-symfile.c: Added support for properties.
33241 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33243         * reflection.c: unaligned store fix from Mark Crichton
33244         <crichton@gimp.org>.
33246 2002-09-27  Martin Baulig  <martin@gnome.org>
33248         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33249         New interncall.
33251 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33253         * assembly.h, assembly.c: use a sane API to hook into the assembly
33254         loading process instead of a useless special-purpouse hack
33255         (ngen needs a hook, too, for example).
33257 2002-09-27  Dick Porter  <dick@ximian.com>
33259         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33260         io-layer can set up some process handle info.  Not needed on w32,
33261         but doesn't hurt either.
33263         * process.c: Pass the program name in the second parameter to
33264         CreateProcess, so the path is searched.  Include the working
33265         directory. Implemented process name, process enumeration, and some
33266         process detail internal calls.
33267         
33268         * icall.c: Added internal calls for process lookup, and some
33269         process details
33271 2002-09-26  Martin Baulig  <martin@gnome.org>
33273         * assembly.c (mono_install_open_assembly_hook): New global
33274         function to install a function to be invoked each time a new
33275         assembly is loaded.
33276         (mono_assembly_open): Run this callback function if set.
33278         * debug-mono-symfile.c: Put back line numbers for the dynamic
33279         symbol file and also record the .il file as source file.  This
33280         allows us to install the temporary symbol file as `file.dbg' just
33281         like a compiler-generated one.
33283 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33285         * Corrected typo in gc.c (BOHEM vs BOEHM).
33287 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33289         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33290         GetProperties. Also avoid calling g_slist_length in GetProperties and
33291         GetMethods.
33293 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33295         * reflection.c: avoid unaligned stores (bug spotted by
33296         Mark Crichton  <crichton@gimp.org>).
33298 2002-09-25  Martin Baulig  <martin@gnome.org>
33300         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33301         instead of guint64 for addresses and added prologue/epilogue info.
33303 2002-09-25  Martin Baulig  <martin@gnome.org>
33305         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33306         store line number info.  For the dynamic symbol file, we only need
33307         to provide the JIT generated dynamic line number info for the dynamic
33308         symbol file.
33310 2002-09-25  Martin Baulig  <martin@gnome.org>
33312         * debug-mono-symfile.h: Incremented version number.
33314 2002-09-24  Martin Baulig  <martin@gnome.org>
33316         * class.c (mono_debugger_class_init_func): New global function
33317         pointer variable.
33318         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33319         call it.
33321         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33322         function.  This is called via the mono_debugger_class_init_func
33323         hook to add all types to the dynamic type table.
33324         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33325         from its metadata token.
33327         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33328         New interncall for the debugger.
33330 2002-09-24  Nick Drochak <ndrochak@gol.com>
33332         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33333         before using it in case it is null.
33334         
33335 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33337         * metadata.c: allow custom modifiers in local var signatures
33338         (bug spotted by Zoltan Varga).
33340 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33342         * class.c: deal with the <Module> class that may have a NULL vtable.
33343         Eliminate warnings.
33345 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33347         * image.c, image.h: more strong name helpers.
33348         * monosn.c: more work: convert pem keys to cryptoapi format.
33350 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33352         * string-icalls.c: speedup IndexOf.
33354 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33356         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33358 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33360         * icall.c: cleanup: use mono_object_domain ().
33362 2002-09-23  Martin Baulig  <martin@gnome.org>
33364         * debug-mono-symfile.c: Improved type support.
33366 2002-09-22  Martin Baulig  <martin@gnome.org>
33368         * debug-mono-symfile.c: Added support for reference types and strings.
33370 2002-09-22  Martin Baulig  <martin@gnome.org>
33372         * debug-mono-symfile.c: Started to work on the type table.
33374 2002-09-21  Martin Baulig  <martin@gnome.org>
33376         * debug-mono-symfile.c: Largely reworked the symbol table format.
33377         The symbol table is now incrementally updated each time a new
33378         method is added.  We're now also using our own magic and version
33379         so that you don't need to recompile all your classes if the
33380         dynamic table changes.
33381         (mono_debug_update_mono_symbol_file): Removed.
33382         (mono_debug_symfile_add_method): New function to add a method.
33384 2002-09-21  Martin Baulig  <martin@gnome.org>
33386         * icall.c
33387         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33388         New interncall.
33390         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33391         New interncall to get a method from its metadata token.
33393 2002-09-21  Martin Baulig  <martin@gnome.org>
33395         * debug-mono-symfile.c: Create type table.
33397 2002-09-20  Martin Baulig  <martin@gnome.org>
33399         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33401 2002-09-20  Martin Baulig  <martin@gnome.org>
33403         * debug-mono-symfile.c: Provide information about params and locals.
33405 2002-09-20  Martin Baulig  <martin@gnome.org>
33407         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33408         New interncall.
33410         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33411         interncall to get a method from its metadata token.
33413 2002-09-20  Martin Baulig  <martin@gnome.org>
33415         * debug-mono-symfile.c: Added a few checks for method->header
33416         being non-NULL.  This should never happen, but for the moment
33417         let's use a g_warning() rather than a g_assert().
33419 2002-09-19  Mark Crichton  <crichton@gimp.org>
33421         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33422         even if support for it isn't present.  Added an #ifdef to fix this.
33424         * socket-io.c: Added checks back for Solaris support.
33426 2002-09-19  Martin Baulig  <martin@gnome.org>
33428         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33429         changes in the symbol file format.
33431 2002-09-18  Martin Baulig  <martin@gnome.org>
33433         * debug-mono-symfile.c: Set version number to 21.
33435 2002-09-18  Dick Porter  <dick@ximian.com>
33437         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33438         on netbsd.  Fixes bug 30051.
33440 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33442         * reflection.c:
33443         (set_version_from_string): little fix.
33445 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33447         * monosn.c, Makefile.am: added strong name utility.
33448         * reflection.h, reflection.c: implemented delayed signing,
33449         locale, version and hash id assembly attributes.
33451 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33453         * loader.c, metadata.c: load param attributes in signatures.
33455 2002-09-16  Martin Baulig  <martin@gnome.org>
33457         * debug-mono-symfile.c: Added string table with all method names.
33459 2002-09-14  Martin Baulig  <martin@gnome.org>
33461         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33462         fast method lookup.
33464 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33466         * reflection.c: record the public key token of referenced assemblies.
33468 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33470         * image.c, image.h: added functions to get the strong name and the
33471         public key of an assembly.
33472         * pedump.c: use them.
33474 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33476         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33478 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33480         * marshal.c (mono_marshal_get_managed_wrapper): Added
33481         MONO_TYPE_BOOLEAN 
33483 2002-09-11  Martin Baulig  <martin@gnome.org>
33485         * gc.c: Call GC_unregister_disappearing_link() on all links when
33486         finalizing them, this is necessary to aviod a crash in boehm's
33487         finalize handler.
33489 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33491         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33492         nick@chemlab.org.
33494 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33496         * icall.c: implemented MonoType::Module.
33497         * reflection.c, reflection.h: mono_module_get_object () from
33498         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33500 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33502         * icall.c: ignore overridden methods in GetMethods ().
33503         Fix for FieldInfo::SetValue().
33504         * object.c: handle float/double in runtime invoke.
33506 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33508         * object.c: allow a constructor to be called again on an object.
33510 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33512         * class.h, class.c: move field layout code to it's own function and
33513         export it. Get an interface id earlier. Move fields in MonoClass
33514         so they are more cache friendly and align the bitfields.
33515         * loader.c: temporary handle get_param_names() for a runtime method.
33516         * reflection.c, reflection.h: more code to handle runtime creation of
33517         types.
33519 2002-09-09  Martin Baulig  <martin@gnome.org>
33521         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33522         signature with the pinvoke field being set for the actual call.
33524 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33526         * icall.c: removed some unused icalls. Start of map of glib charsets
33527         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33529 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33531         * debug-helpers.c: break infinite loop (found and fixed by
33532         Holger Arnold <harnold@gmx.de>).
33534 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33536         * icall.c: target may be null in create_delegate.
33538 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33540         * marshal.c: handle a boolean return type.
33542 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33544         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33546 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33548         * gc.c: fix weakreferences.
33550 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33552         * icall.c: added icall to get default codepage.
33554 2002-09-03  Dick Porter  <dick@ximian.com>
33556         * threads.h: 
33557         * threads.c: Use MonoThread instead of MonoObject where
33558         apropriate.
33560         Store running thread objects in a hash table, so that we have all
33561         the info to hand when waiting for them to finish
33562         (means we don't need OpenThread() any more, so mingw builds should
33563         be fully functional again.)
33565         * verify.c:
33566         * object.h: Added thread ID to MonoThread
33568 2002-09-03  Martin Baulig  <martin@gnome.org>
33570         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33572 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33574         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33576 2002-09-03  Martin Baulig  <martin@gnome.org>
33578         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33579         argument to store the end address of the disassembled instruction.
33581         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33582         here from debug-symfile.h.
33583         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33584         JIT into this struct.
33585         (MonoSymbolFile): Added `char *image_file' field.
33586         (MonoDebugGetMethodFunc): Removed.
33587         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33588         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33589         (mono_debug_find_method): New method.
33591         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33592         create a full symbol file.
33593         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33594         and static symbol files.
33595         (mono_debug_find_method): The symbol file keeps an internal method hash,
33596         call this to get a MonoDebugMethodInfo from a MonoMethod.
33598         * debug-symfile.[ch]: Removed.
33600 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33602         * image.c (do_mono_image_open): Remove linker version check.
33604 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33606         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33607         wrappers for instance methods.
33608         
33609 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33611         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33613 2002-08-28  Dick Porter  <dick@ximian.com>
33615         * Makefile.am: Export HOST_CC for w32 builds
33617 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33619         * file-io.c process.c: MonoString are null terminated, no
33620         need for mono_string_to_utf16() anymore.
33622 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33624         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33626 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33628         * icall.c, reflection.h: speedup System.MonoType.
33630 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33632         * reflection.c: allow null as the value of a string argument in
33633         custom attributes constructors.
33635 2002-08-27  Martin Baulig  <martin@gnome.org>
33637         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33638         `trampoline_address' field.
33640 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33642         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33643         check (fixes bug #29486) 
33645 2002-08-27  Martin Baulig  <martin@gnome.org>
33647         * debug-mono-symfile.c: Changed the file format in a way that allows us
33648         open it read-only and to use a specially malloced area for all the
33649         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33650         debugging IL code and there is no MCS generated symbol file for it.
33652 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33654         * object.c: added a define for a good string and array
33655         creation speedup (not enabled by default because we need to deal with
33656         the synch stuff).
33658 2002-08-26  Martin Baulig  <martin@gnome.org>
33660         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33661         function to create a dynamic symbol file.  This is used by the
33662         debugger to create a symbol file for IL code on-the-fly.
33664 2002-08-26  Martin Baulig  <martin@gnome.org>
33666         * loader.c (mono_lookup_pinvoke_call): Include the error message
33667         from g_module_error() in the error message.
33669 2002-08-24  Martin Baulig  <martin@gnome.org>
33671         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33672         function to update the symbol file.  The symbol file is mmap()ed
33673         writable, but private.  This allows us to install the symbol file
33674         together with the assembly.
33676 2002-08-24  Martin Baulig  <martin@gnome.org>
33678         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
33679         but they can read the new symbol file format which mcs is now creating.
33681         * debug-symfile.c (mono_debug_find_source_location): Moved to
33682         debug-mono-symfile.c; this is now operating on the new symbol file.
33684 2002-08-23  Martin Baulig  <martin@gnome.org>
33686         * debug-helpers.c (mono_method_desc_from_method): New function to get
33687         a MonoMethodDesc from a MonoMethod.
33689 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33691         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
33692         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
33694 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33696         * string-icalls.[ch]: make helper methods static.
33698 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33700         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
33701         types to it and to SetValueInternal.
33703         * object.c: Moved handle_enum label to its proper place. This was the
33704         f... bug! ;-)
33706         This time i compiled mcs and gtk-sharp and they both work.
33708 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33710         * icall.c: reverted partially my previous patch until 
33711         object.c:set_value handles enums correcly.
33713 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33715         * icall.c:
33716         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
33717         (ves_icall_System_Environment_get_MachineName): removed warning when
33718         compiling under cygwin.
33720 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33722         * object.c: fixed field_get_value() for reference types.
33724 2002-08-22  Dick Porter  <dick@ximian.com>
33726         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
33727         Don't free a buffer while it's still needed.  Patch from Jonathan
33728         Liger <Jonathan.liger@wanadoo.fr>
33730 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
33732         * icall.c (ves_icall_System_Environment_get_Platform): Add new
33733         internal call.
33735 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
33737         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
33738         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
33740         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
33741         we call unmanaged code which throws exceptions.
33743 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33745         * appdomain.h: added per-domain entry_assembly.
33746         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
33747         arguments.
33748         * icall.c: Assembly::GetEntryAssembly icall.
33749         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
33750         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
33752 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33754         * appdomain.h, gc.c: added mono_domain_finalize ().
33756 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33758         * object.c:
33759         (mono_print_unhandled_exception): changed g_warning by g_printerr
33760         because g_log has a 1024 characters limit (yeah, i got a big stack
33761         trace). Don't print exception name, that should be in ToString 
33762         returned string.
33764 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33766         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
33767         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
33769 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33771         * object.c:
33772         (mono_print_unhandled_exception): after previous commit, i realized
33773         that MS calls ToString on the exception. I changed this function to
33774         do that. This way we get stack_trace for free.
33776 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33778         * object.c:
33779         (mono_print_unhandled_exception): invoke Message property instead of
33780         getting 'message' field from Exception. Don't allocate memory for
33781         'trace' and 'message' if not needed.
33783 2002-08-18  Dick Porter  <dick@ximian.com>
33785         * unicode.c: Fix asserts to match Encoder.cs checks
33787 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33789         * marshal.c: fix unaligned store issue and a few wrong
33790         opcode argument types.
33792 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33794         * icall.c: added GetUninitializedObjectInternal internal call.
33796 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
33798         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
33799         to the right domain.
33801 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
33803         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
33805         * class.c (class_compute_field_layout): set blittable to false for Strings
33807         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
33809 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33811         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
33812         first chunk of code to create types at runtime. Code to
33813         handle ReflectedType/DeclaringType. Make reflection handles
33814         domain specific.
33816 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33818         * class.c: set correct name in arrays.
33820 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
33822         * appdomain.c (mono_domain_transfer_object): make it work with
33823         valuetypes. bug fixes.
33825 2002-08-12  Dick Porter  <dick@ximian.com>
33827         * object.h: Rename some parameters to avoid c++ keywords (Patch
33828         from Joseph Wenninger <kde@jowenn.at>)
33830 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33832         * icall.c: added icall to implement Assembly.GetFile*.
33834 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33836         * reflection.h, reflection.c: code to embed managed resources.
33838 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33840         * class.c: move all the type size stuff into
33841         class_compute_field_layout().
33843 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33845         * class.c: ensure enums have always the correct instance size.
33846         * unicode.c: remove wrong assert.
33848 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33850         * assembly.c: fix mem corruption issue.
33851         * image.h, image.c: added mono_image_get_resource () to access
33852         managed resources.
33853         * icall.c: implemented Assembly.EntryPoint property and some
33854         Managed Resources related internalcalls.
33857 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33859         * image.c, image.h: impemented mono_image_get_entry_point ().
33860         * appdomain.c: use mono_image_get_entry_point.
33862 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33864         * reflection.c: support the object type argument when loading
33865         custom attributes.
33867 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
33869         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
33870         String as return type.
33872 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
33874         * reflection.c: fix encoding of named args for custom attrs to match
33875         the ms implementation. Read them back when instantiating custom
33876         attributes.
33878 2002-08-02  Radek Doulik  <rodo@ximian.com>
33880         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
33881         by Dietmar as quick fix
33882         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
33883         16 as stack size, used on more places as quick fix before Dietmar
33884         will fix it properly
33886 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33888         * object.h, object.c: added accessors for fields and properties.
33890 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33892         * class.c, class.h: made mono_class_get_field_from_name ()
33893         loop on parent types.
33894         Added mono_class_get_property_from_name ().
33896 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33898         * class.c, class.h: move the code to setup the type vtable in its own
33899         function so that it can be reused also for types created at runtime.
33900         Eliminate the "class" identifier from the header file.
33901         * reflection.c: setup the vtable for enums so that we can create
33902         objects for use in SetConstant ().
33904 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
33906         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
33907         instead of the delegate itself as this pointer (bug #28383)
33909 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
33911         * marshal.c (mono_marshal_get_managed_wrapper): added return type
33912         conversions.
33914 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33916         * loader.c: don't set the pinvoke bit on icalls.
33918 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
33920         * debug-helpers.c (mono_method_full_name): only print a number to
33921         indicate wrapper type (so that the output is more readable in traces).
33923 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
33925         * class.c (mono_class_init): include method override patch from Paolo
33927 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
33929         * icall.c: fixed GetTypeCode().
33931 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
33933         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
33934         use real delegate invoke function to make it work with multicast
33935         delegates (fix bug# 28291).
33937 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33939         * object.c: load constant strings.
33941 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33943         * reflection.c: no magic numbers.
33944         * tabledefs.h: security action enum.
33946 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33948         * assembly.c: fix possible memory corruption.
33950 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33952         * reflection.h, reflection.c: added support for linking resources.
33953         * verify.c: check we have an updated corlib.
33955 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
33957         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
33958         string arrays.
33959         (mono_marshal_string_array): null terminate unmanaged string arrays.
33960         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
33962 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33964         * icall.c: Type.GetType () can now return also types from the
33965         calling assembly.
33967 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
33969         * loader.h, loader.c: stack walking support.
33970         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
33971         GetCallingAssembly.
33973 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
33975         * marshal.c: added optimisations for blittable types 
33977         * class.c (mono_array_class_get): do not set blittable attribute on arrays
33978         (mono_class_setup_mono_type): set blittable attribute for single
33979         and double.
33981         * marshal.c (mono_string_utf8_to_builder): impl.
33982         (mono_string_builder_to_utf8): impl.
33983         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
33985 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
33987         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
33988         (mono_marshal_get_managed_wrapper): impl. byref types
33990 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33992         * icall.c:
33993         (search_method): don't display debug message. 
33995 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
33997         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
33999 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34001         * appdomain.c: set the missing filename when throwing exception.
34003 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34005         * metadata.c (mono_type_size): code cleanup
34006         (mono_type_stack_size): removed some test code
34008 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34010         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34011         mono_get_exception_file_not_found now.
34013         * exception.c (mono_exception_from_name_two_strings): New version
34014         that will call a constructor with two string arguments. 
34015         (mono_get_exception_file_not_found): New helper routine, used to
34016         report file-not-found errors.
34018 2002-07-20  Dick Porter  <dick@ximian.com>
34020         * process.h:
34021         * process.c: Pass file handles to CreateProcess
34022         
34023         * icall.c:
34024         * file-io.h:
34025         * file-io.c: Implemented CreatePipe
34027 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34029         * metadata.c (mono_get_param_info): set alignment for value types
34031 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34033         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34034         Constify mono_domain_assembly_open().
34035         * loader.c: handle null namespace in icalls.
34037 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34039         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34040         (emit_str_to_ptr_conv): marshal object as structs
34042         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34044         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34046 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34048         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34049         (mono_marshal_get_native_wrapper): we an now return value types
34051 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34053         * verify.c: more checks implemented.
34055 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34057         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34058         (fix bug #27695)
34059         (mono_marshal_get_native_wrapper): allow byref arguments
34060         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34061         impl. PtrToStringXXX methods
34062         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34063         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34064         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34065         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34066         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34068 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34070         * reflection.c: fix buglet in parsing an assembly name.
34072 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34074         * marshal.c (emit_ptr_to_str_conv): first impl.
34076 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34078         * object.c, class.h: cache the vtable in the class as suggested by
34079         vargaz@freemail.hu (Zoltan Varga).
34081 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34083         * class.h, loader.c: added mono_field_from_token().
34084         * verify.c: first cut of type checking code.
34086 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34088         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34090 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34092         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34093         (fix bug #27782)
34094         (mono_marshal_get_remoting_invoke): impl.
34095         (mono_delegate_begin_invoke): impl.
34096         (mono_mb_emit_save_args): impl.
34097         (mono_delegate_end_invoke): impl.
34098         (mono_marshal_get_delegate_begin_invoke):
34099         (mono_marshal_get_delegate_end_invoke):
34100         (mono_marshal_get_delegate_invoke): generate a special name for
34101         those methods (including the signature) and associate them whith
34102         the delegate class. 
34104 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34106         * reflection.[ch]: 
34107         (mono_reflection_type_from_name): now it has a MonoImage parameter
34108         which is used as the default image to search the type in. If the image
34109         is NULL or getting the type from it fails, it defaults to corlib.
34111         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34112         new parameter.
34114 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34116         * reflection.c: update the parameter table index.
34118 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34120         * domain.c: don't include the mark byte in the string hash.
34122 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34124         * icall.cs: icall for Type.GetTypeCode ().
34125         * verify: a couple of fixes and disabled local initialization checks.
34127 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34129         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34131         * debug-helpers.c (mono_method_full_name): print the type of the
34132         runtime wrapper
34134         * metadata.c (mono_signature_hash): a hash function for signatures
34135         (mono_signature_hash): better hash algorithm
34137         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34139         * debug-helpers.c (mono_method_full_name): this can now generate
34140         method names with signatures
34142         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34143         method dont have this pointers.
34145 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34147         * reflection.c: fixup typebuilder tokens.
34148         * image.c: fix buglet.
34149         * marshal.h: remove whitespace.
34150         * metadata.h, metadata.c: reinstate code that was removed.
34151         * verify.c: handle catch directives and fix another couple of bugs.
34153 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34155         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34156         (mono_marshal_get_native_wrapper): make it comp. with the old code
34157         (mono_marshal_get_native_wrapper): support boolean
34158         (mono_marshal_get_managed_wrapper): support more types
34160 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34162         * class.c (class_compute_field_layout): compute class->blittable attribute.
34164 2002-07-09  Dick Porter  <dick@ximian.com>
34166         * threads.c: Make the thread cleaning up cope with threads that
34167         call ExitThread()
34169 2002-07-08  Radek Doulik  <rodo@ximian.com>
34171         * reflection.c (method_encode_code): use non-translated values to
34172         compute finally_start, this fixes exception handling on ppc, yay!
34174         * decimal.h (struct signscale): fix endianess
34176 2002-07-07  Radek Doulik  <rodo@ximian.com>
34178         * reflection.c: swap box_val and not val
34180 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34182         * reflection.c, reflection.h: handle full assembly info in type name.
34183         Handle Type arguments when loading custom attributes.
34184         * icall.c: updated to use new mono_reflection_type_from_name () method.
34186 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34188         * loader.c:
34189         (method_from_memberref): also print assembly name when method not found.
34191 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34193         * icall.c:
34194         (ves_icall_TypeGetProperties): fixed bug #27473. 
34196 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34198         * reflection.c: display image name and token when cannot find the
34199         .ctor for an attribute.
34201 2002-07-05  Martin Baulig  <martin@gnome.org>
34203         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34205 2002-07-04  Dick Porter  <dick@ximian.com>
34207         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34208         compile on mingw.  This will cause mingw builds to not wait for
34209         subthreads to terminate after the main thread does.  I've lodged a
34210         bug with the mingw developers for them to wrap OpenThread().
34212 2002-07-03  Dick Porter  <dick@ximian.com>
34214         * threads.c: Store thread IDs instead of handles, because
34215         GetCurrentThread() returns a pseudohandle and therefore stores
34216         useless values.  mono_thread_cleanup() continues checking the
34217         array of threads until it is empty, to cope with subthreads
34218         spawning new threads after the main thread has finished.
34220         * profiler.h:
34221         * profiler.c:
34222         * profiler-private.h: Pass the thread ID to thread profiler
34223         functions, instead of a handle
34225 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34227         * verify.c: fixes to make it more usable.
34228         * pedump.c: added --verify code to verify IL code in an assembly.
34230 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34232         * reflection.c: turn errors into warnings to allow compiling corlib.
34234 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34236         * reflection.c: add special cases to compile corlib.
34238 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34240         * reflection.c: handle properties with only a set method.
34242 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34244         * opcodes.h: add enum with opcodes in opval order.
34246 2002-07-01  Dick Porter  <dick@ximian.com>
34247         
34248         * object.h:
34249         * object.c (mono_runtime_run_main): Removed unneeded argument
34251 2002-06-28  Martin Baulig  <martin@gnome.org>
34253         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34255 2002-06-27  Dick Porter  <dick@ximian.com>
34257         * threads.c: Store the handle in both the parent thread and in the
34258         subthread, to minimise the time between starting a new thread and
34259         storing its ID.
34261 2002-06-26  Dick Porter  <dick@ximian.com>
34263         * appdomain.c (mono_runtime_cleanup): Close the socket library
34264         after all the threads have finished, not before
34266 2002-06-26  Martin Baulig  <martin@gnome.org>
34268         * debug-symfile.c (mono_debug_find_source_location): Added
34269         `guint32 *line_number' argument.  If it's not NULL, store the line number
34270         there and return the file name without the line number.
34272 2002-06-25  Dick Porter  <dick@ximian.com>
34274         * icall.c:
34275         * process.h:
34276         * process.c: Process forking and other support functions
34278 2002-06-25  Dick Porter  <dick@ximian.com>
34280         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34281         things dont happen when the image is closed.
34282         (mono_image_lookup_resource): Walk the resource section looking
34283         for a particular entry
34285         * cil-coff.h: PE resource section decoding
34287 2002-06-25  Dick Porter  <dick@ximian.com>
34288         
34289         * assembly.h:
34290         * assembly.c: 
34291         (mono_assembly_foreach): Accessor functions to walk the list of
34292         loaded assemblies
34293         (mono_assembly_set_main):
34294         (mono_assembly_get_main): Process methods need to know which
34295         assembly is the "main" one
34297         * object.c (mono_runtime_run_main): Record the main assembly
34299         * debug-helpers.c: Fix typo
34301 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34303         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34304         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34306 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34308         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34310 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34312         * image.c (do_mono_image_open): Initialize reference count,
34313         otherwise we leak the MonoImage.
34315 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34317         * reflection.c: small tweak to handle self-hosting.
34319 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34321         * reflection.c: fix type name parse code.
34323 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34325         * reflection.c: break out of the loop.
34326         * image.c: special case corlib.
34328 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34330         * reflection.c: add all the custom attrs at the end to ensure the
34331         ctors have been properly initialized when the attributes are defined
34332         in the current assembly.
34334 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34336         * reflection.c: handle correctly multiple-nested types.
34338 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34340         * row-indexes.h: fix typos.
34341         * reflection.c: adjust for typos and fix method_def_or_ref
34342         encoding in MethodImpl table.
34344 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34346         * reflection.c: fix entry point patching (thanks Serge!).
34348 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34350         * verify.c: add check for System.Exception
34352 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34354         * image.c, class.c: minifix for code just c&p'ed.
34355         * reflection.c: warning fix.
34356         * object.h, loader.h, domain.c: load also StringBuilder.
34358 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34360         * marshal.h, marshal.c: some support code to handle complex marshaling.
34362 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34364         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34365         Better signatures with vtable error dump.
34367 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34369         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34371 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34373         * icall.c (ves_icall_Type_GetField): impl.
34375 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34377         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34378         to retrieve a marshal description blob for a field or param.
34380 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34382         * reflection.h, reflection.c: change order of nested type emission
34383         to avoid table corruption. The NestedTypes table is sorted.
34384         * icall.c: change order of GetConstructor results to workaround mcs bug.
34386 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34388         * reflection.h, reflection.c: handle field and param marshal
34389         information.
34391 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34393         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34395 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34397         * reflection.c: fix call convention.
34399 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34401         * reflection.h, reflection.c: mono_image_get_memberref_token()
34402         takes a type instead of a class, now. Added
34403         mono_image_get_array_token() to create tokens for the special
34404         multi-dim array methods.
34406 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34408         * assembly.c: handle modules (no assembly table). Split
34409         loading references in its own function.
34410         * class.c: handle moduleref resolution scope.
34411         * image.c, image.h: cache module name in image.
34413 2002-06-07  Martin Baulig  <martin@gnome.org>
34415         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34416         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34418 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34420         * icall.c: more signature fixes that used uint instead of int.
34422 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34424         * reflection.c: fixed signature of field refs.
34426 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34428         * class.c, reflection.c: handle typerefs of nested types
34429         (both on read and when writing files).
34431 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34433         * icall.c: fix method signatures that tried to workaround the previous
34434         typo, d'oh!
34436 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34438         * debug-helpers.c: fix typo.
34440 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34442         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34443         rewrote the PE/COFF writing code (our programs are understood by the
34444         ms runtime, now).
34446 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34448         * gc.c, gc.h, icall.c: weakreference support.
34450 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34452         * Makefile.am, mono-config.c: use $(sysconfdir).
34454 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34456         * icall.c: changed default precision of Double.ToString() to 15.
34457         Fixed memory leak. Unified with Single.ToString.
34459 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34461         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34463 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34465         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34466         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34467         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34468         and myself.
34470 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34472         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34474 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34476         * reflection.c, socket-io.c: more compilation fixes.
34478 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34480         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34481         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34482         unicode.c: warning and compiler compatibility fixes.
34484 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34486         * class.h, metadata.c: fixed warnings/compilation errors.
34488 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34490         * Makefile.am, mono-config.c, mono-config.h: configuration file
34491         support routines.
34492         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34493         config file. Export methods to insert and lookup mappings.
34495 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34497         * reflection.c: handle types and boxed objects in custom attr
34498         constructors.
34500 2002-05-30  Martin Baulig  <martin@gnome.org>
34502         * debug-symfile.c
34503         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34505 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34507         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34508         to lookup the implmap row for a P/Invoke method.
34509         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34510         P/Invoke method from the runtime on an as needed basis.
34512 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34514         * metadata.c (mono_metadata_parse_signature): impl.
34516 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34518         * class.c: handle .pack directive.
34520 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34522         * object.c: initialize static fields with RVA data.
34524 2002-05-25  Martin Baulig  <martin@gnome.org>
34526         * debug-symfile.c
34527         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34529 2002-05-24  Martin Baulig  <martin@gnome.org>
34531         * debug-symfile.c
34532         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34533         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34534         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34536 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34538         * object.c: special case string ctros in invoke.
34539         * gc.c: silly whitespace changes.
34541 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34543         * threadpool.[ch]: impl. a threadpool that can
34544         be used by mint and mono.
34546 2002-05-22  Martin Baulig  <martin@gnome.org>
34548         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34549         The first argument is now a `MonoReflectionModuleBuilder *', the return
34550         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34551         `methods' field to get the method builder.  The `token' argument is the
34552         unfixed token.
34554         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34555         invalid characters instead of g_assert_not_reached()ing.  This seems
34556         to be the behaviour of mscorlib.
34558 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34560         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34561         Hestilow to fix bug #25104
34563 2002-05-21  Martin Baulig  <martin@gnome.org>
34565         * debug-symfile.c (mono_debug_find_source_location): New function.
34566         Looks up an IL offset in the line number table and returns the source
34567         location as a string.
34569 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34571         * icall.c:
34572         (mono_double_ToStringImpl): changed %f by %g until we have something
34573         better.
34575 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34577         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34578         parameters first in C#.
34580 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34582         * icall.c, reflection.h: added icall to get info about an event.
34584 2002-05-20  Radek Doulik  <rodo@ximian.com>
34586         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34587         endian
34588         (mono_value_box): don't use memcpy for small sizes on
34589         architectures with unaligned access
34591 2002-05-20  Martin Baulig  <martin@gnome.org>
34593         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34594         if `tb->parent == NULL'.
34595         (mono_reflection_create_internal_class): New function.  This is
34596         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34597         for enum types.
34599         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34600         New interncall.
34602 2002-05-19  Martin Baulig  <martin@gnome.org>
34604         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34605         argument to get the length, don't default to the array length.
34607 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34609         * assembly.c (mono_assembly_setrootdir): New function used to
34610         override the MONO_ASSEMBLIES directory.
34612 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34614         * icall.c: ValueType_GetHashCode() initialize local var.
34616 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34618         * reflection.c: sort custom attributes table.
34620 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34622         * reflection.c: support named args in custom attributes (write support).
34624 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34626         * reflection.c: fix finally position calculation.
34628 2002-05-15  Radek Doulik  <rodo@ximian.com>
34630         * reflection.c: fixed endianess at many places
34632         * icall.c (ves_icall_InitializeArray): comment out debug msg
34634 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34636         * object.c (mono_unhandled_exception): new function to handle
34637         unhandled exceptions.
34638         (mono_unhandled_exception): call the UnhandledException event.
34639         (mono_runtime_delegate_invoke): impl.
34641 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34643         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34644         returns the RVA, not the direct pointer to the data. Handle the case
34645         when the class size is fixed.
34647 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34649         * reflection.c: fix some endianess issues.
34651 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34653         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34655         * threads.c (mono_thread_init): added a callback which is invoked
34656         at thread start.
34658 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34659         
34660         * icall.c: make GetHashCode return non-negative values.
34662 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34664         * object.c, icall.c, gc.c: revert to address-based hashcode.
34666 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34668         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34670 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34672         * icall.c, class.c: special case <Module>.
34674 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34676         * icall.c: fix bug in GetNow().
34678 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
34680         * object.c (mono_runtime_class_init): make sure that we call all
34681         static class constructors.
34683 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34685         * reflection.c: sort methodsemantics table.
34687 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34689         * reflection.h, reflection.c: honour init locals setting.
34691 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
34693         * icall.c: copied Double ToStringImpl for Single ToStringImpl
34695 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34697         * reflection.c: support ContructorBuilders in attribute blob creation.
34699 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34701         * reflection.c: some changes to build a binary that can be run
34702         directly in windows.
34704 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34706         * loader.c: print a big message when an icall can't be found.
34708 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34710         * string-icalls.c: fix bug 24248.
34712 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34714         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
34715         icall.c, reflection.h: separate assembly loading by pathname and by
34716         assembly name. Use the MONO_PATH env var to search for assemblies.
34718 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34720         * assembly.c, image.h: add some support for assemblies
34721         with multiple modules.
34722         * class.c, class.h: export mono_class_from_typeref().
34723         * loader.c: remove duplicated code and use mono_class_from_typeref(),
34724         instead.
34726 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34728         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
34729         documentation says (the ECMA one is correct).
34731 2002-05-02  Dick Porter  <dick@ximian.com>
34733         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
34734         Don't name the synchronisation mutex.
34736 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
34738         * rand.c
34739         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
34740         Make the prototypes match.
34741         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
34742         Same.
34744         * icall.c
34745         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
34746         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
34747         all systems have tm.tm_zone, so use strftime() with %Z to print
34748         the timezone abreviation into a temp string.
34750         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
34751         rather than mono_array_addr() on a MonoString on Big Endian
34752         machines.
34754 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
34756         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
34757         fix bug 24041
34759 2002-04-30  Dick Porter  <dick@ximian.com>
34761         * socket-io.c: Cope with SOCKET being an integer rather than a
34762         pointer now.
34764         * threads.c: Added Thread_free_internal, to deal with thread
34765         handle cleanup.  Moved calls to handle_store() and handle_remove()
34766         to start_wrapper(), so each can only be called once.  Allocate
34767         synchronisation blocks with GC_malloc(), and use GC finalisation
34768         to close the handles.
34770         * icall.c: added System.Threading.Thread::Thread_free_internal
34772 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34774         * icall.c: support Environment.Exit, CommandLineArgs().
34776 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34778         * object.c, object.h: added mono_runtime_run_main () and
34779         mono_runtime_get_main_args () for use in System.Environment.
34781 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34783         * gc.c: fix thinko, enable actual finalization since the jit is now
34784         fixed.
34786 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34788         * gc.c, object.c: take into account that an object may be offset wrt the address
34789         returned by GC_malloc().
34791 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34793         * image.c: handle files without entries in the assembly table (modules).
34795 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
34797         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
34798         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
34799         allowed to be null when it's System.Object class setup.
34801 2002-04-27  Martin Baulig  <martin@gnome.org>
34803         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
34804         if `tb->parent == NULL' rather than crashing.
34806 2002-04-28  Nick Drochak  <ndrochak@gol.com>
34808         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
34809         calling acos() where asin() should have been called.
34811 2002-04-26  Martin Baulig  <martin@gnome.org>
34813         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
34814         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
34815         there's a subdirectory called `System', but we don't want to read that
34816         subdirectory as an assembly.
34818 2002-04-25  Martin Baulig  <martin@gnome.org>
34820         * debug-symfile.c: Reflect latest MonoString changes.
34822 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34824         * rand.c, rand.h: instance method icalls need to have an explicit
34825         this pointer as first argument in the C implementation.
34827 2002-04-25  Nick Drochak <ndrochak@gol.com>
34829         * icall.c: Fix typo in map for GetNonZeroBytes
34831 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34833         * string-icalls.c : String does now passes unit tests without any 
34834         errors, the following changes has been made:
34835         
34836         Implemented replace methods.
34837         Renaming of methods to (try) follow the standard.
34838         Fixed compare ordinal
34839         Made all memory allocated directly to function instead of via icall function.
34840         Small performance fix in is_in_array function
34841                         
34842  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
34844         c (mono_string_Internal_ctor_charp_int_int):
34845         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
34846         sindex < 0, throw ArgumentOutOfRangeException instead of
34847         ArgumentNullException.
34849         Added new check for length == 0, however
34850         I need to make it return String.Empty from the C code.
34851         
34852         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
34853         that calculate the length for us here.
34854         
34855         (mono_string_Internal_ctor_sbytep_int_int): Replaced
34856         mono_string_new_utf16 with mono_string_new, since value is utf8.
34858 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34860         * object.c: register the object for finalization if needed.
34861         Allocate one more char in the string for the terminating 0 char.
34863 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34865         * class.c, class.h, image.c: check if a type implemenst a destructor.
34866         Use the proper key for array class lookups.
34867         * icall.c: register the icalls in the System.GC class.
34868         * gc.c, gc.h: GC-related functions and icalls.
34870 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34872         * icall.c:
34873         * socket-io.c:
34874         * unicode.c: free some strings gotten from mono_string_to_utf8 and
34875         changed a couple of free () by g_free ().
34877         * decimal.c: one-liner in the comments for decimal2string ().
34879 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34881         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
34883 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34885         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
34886         * object.c (mono_runtime_invoke_array) : handle null in params
34888 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34890         * string-icalls.c: fixed bug in split (one off bug)
34892 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34894         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
34895         * icalls.c: added String::Equals as internal method
34897 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34899         * threads.c: fixed bug in the double interlocked functions
34901 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
34903         * threads.c: implemented all of the new interlocked icalls.
34904         * string-icalls.c: fix a bug in insert.
34905         * icalls.c: added the icalls for interlocked, removed old string functions.
34906         
34907 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34909         * loader.c: fix off-by-one error when reading argument names.
34911 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34913         * profiler.c: win32 counter implementation (untested).
34914         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
34915         (the latter needs testing and more complete impl. from win32 folks).
34917 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
34919         * object.c: mono_array_new_full workaround mono_array_class_get
34920         problem.
34922 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34924         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
34925         * object.h (mono_string_chars): Changed casting type.
34927 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34929         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
34930                            method signatures to use gunichar2 instead of gint16.
34932 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
34934         * object.h, object.c: domain-specific versions of mono_object_new and
34935         mono_array_new.
34937 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
34939         * object.c: changed String layout
34941         * string-icalls.c (mono_string_Internal_ctor_chara): added
34942         internal string constructors.
34944 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
34946         * threads.c: pass 'this' to the thread start routine.
34948 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34950         * string-icalls.c: fix IndexOf and LastIndexOf. Now
34951         InternalCompareStr don't call twice mono_string_cmp_char for the last
34952         character. Improved performance in mono_string_cmp_char.
34954 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34956         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
34957         code into its own library: libmonoruntime.
34959 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
34961         * object.h, object.c: changed array format so that szarrays do not
34962         require a bounds structure.
34963         * icall.c, appdomain.c: support for new szarray format.
34965 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34967         * metadata.c: compare also the retuns type when comparing signatures:
34968         we didn't do this as an optimization since really overloaded methods
34969         must differ also in the arguments, but this doesn't work with
34970         low-level IL code (or when using explicit conversion operators: see
34971         bug#23498 for an example).
34973 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34975         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
34977 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34979         * icall.c: make MonoType::GetElementType its own icall.
34981 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34983         * icall.c: remove MonoMethod_get_Name().
34984         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
34985         object.
34987 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34989         * string-icalls.c: optimized a few methods.
34991 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34993         * icall.c: added all new string internal calls
34994         * string-icalls.c: added, new string internal call implementation.
34995         * object.c: added mono_string_new_size for allocating a string a size
34997 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
34999         * object.c (mono_object_isinst): use the same code as in the
35000         optimized x86 version.
35002 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35004         * profiler.c: TSC-based timer code (faster and more accurate).
35005         Not hooked up in configure, yet (set USE_X86TSC to 1).
35007 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35009         * profiler.c, profiler.h: track time spent compiling methods.
35010         * threads.c: track thread creation/destruction.
35012 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35014         * profiler.c, profiler.h, profiler-private.h: profiling interface
35015         and sample implementation. Moved here so that it can be used also by
35016         the jit.
35018 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35020         * reflection.c, reflection.h: keep types and other handles separate in
35021         the hash tables for referred tokens. Add guid for modules.
35023 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35025         * assembly.c: fix bugs found with valgrind.
35026         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35028 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35030         * threads: added icall support for getting current domain for
35031                    the thread.
35033 2002-04-13  Martin Baulig  <martin@gnome.org>
35035         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35036         (MonoDebugVarInfo): Added `index' field for register based addresses.
35037         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35038         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35039         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35040         `MonoDebugVarInfo *this_var'.
35042         * debug-symfile.c (relocate_variable): New static function to write
35043         a location description for a local variable or method parameter.
35045 2002-04-12  Martin Baulig  <martin@gnome.org>
35047         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35048         stack offset and begin/end scope address of a local variable.
35049         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35050         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35051         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35053         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35054         Added new relocation types for start/end scope of a local variable.
35056 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35058         * object.h: add mono_object_domain() macro.
35059         * reflection.c: handle typespecs.
35060         * icall.c: MonoMethod::get_Name() implementation.
35062 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35064         * icall.c: String::GetHashCode() icall implementation.
35066 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35068         * icall.c: String::IndexOfAny icall.
35069         * object.c, object.h: make array->max_length more useful.
35070         Intrduced mono_object_class() and mono_string_length() macros.
35072 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35074         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35075         instead of g_unichar_isdigit.
35077 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35079         * icall.c: Implement a simple Double.ToString().
35081 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35083         * appdomain.h: only io-layer.h is supposed to be included.
35084         * icall.c: explicitly import environ. Fix warning.
35086 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35088         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35089                 return true even if it's not Daylight Savings time.
35090                 Only return false for the case where the function isn't
35091                 implemented for a plaform (read Windows).
35093 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35095         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35096         data with a mutex.
35098 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35100         * mempool.c (mono_mempool_alloc): only use g_malloc when
35101         absolutely necessary.
35103 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35105         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35107         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35108         (mono_class_proxy_vtable): use domain mempool
35110 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35112         * appdomain.h, appdomain.c: split initialization that requires the
35113         execution engine support into mono_runtime_init().
35115 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35117         * class.c (mono_class_init): don't include vtable inside MonoClass
35118         to save some memory, gather some statistics.
35119         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35121 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35123         * icall.c: internalcall implementation for ValueType.Equals().
35125 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35127         * object.c (mono_message_init): moved 
35128         (mono_runtime_exec_main): new arch. independent impl.
35129         (mono_runtime_invoke_array): new method - like
35130         mono_runtime_invoke, but you can pass an array of objects.
35131         (mono_remoting_invoke): new arch. independent impl.
35132         (mono_message_invoke): new arch. independent impl.
35133         (mono_runtime_class_init): new arch. independent impl.
35134         (mono_runtime_object_init): new arch. independent impl.
35136 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35138         * metadata.c, object.c, reflection.c: documented the exported
35139         functions.
35141 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35143         * icall.c: simpler code to pass the assembly builder data to corlib.
35144         Implement GetNestedTypes() internalcall.
35146 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35148         * class.c: warn if a type can't be loaded.
35150 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35152         * image.h: typedef MonoImageOpenStatus
35153         * types.h: removed unused file
35154         
35155 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35157         * icall.c: Enum_ToObject accepts enum value arguments.
35159 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35161         * class.c: move initialization of properties, events and nested
35162         classes, so that they happen for interfaces, too.
35164 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35166         * icall.c: cleanup some ugly casts in Array_SetValue*.
35168 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35170         * icall.c: the values array fro enums is of the correct type, now.
35171         Implement (correctly) getFullName instead of assQualifiedName for
35172         MonoType.
35173         * reflection.h, reflection.c: added mono_type_get_name ().
35175 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35177         * assembly.c, image.h: for each MonoImage, record from wich assembly
35178         it was loaded.
35179         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35180         Make Type.Assembly work.
35182 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35184         * debug-symfile.h: use char* instead of gpointer to avoid
35185         unnecessary casts.
35187         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35189         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35190         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35192 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35194         * icall.c (mono_message_init): impl. (code cleanup)
35195         (ves_icall_InternalExecute): impl. FieldGetter
35197         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35198         defined we call all (non-static)methods through the vtable. 
35200 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35202         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35203         finalizer even though the memory is still referenced (and the chunk of
35204         memory is not freed).
35206 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35208         * assembly.c: fix brokeness.
35210 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35212         * class.c: kill some warnings. Check explicit interface method
35213         implementation also without considering the namespace.
35214         Load also literal strings in static class data.
35216 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35218         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35219         (default_assembly_name_resolver): Make the resolver take the
35220         "base" directory where the assembly was originally defined, so we
35221         can load DLLs that are in the same directory as the assembly that
35222         is being referenced.
35224 2002-03-28  Dick Porter  <dick@ximian.com>
35226         * file-io.h: 
35227         * file-io.c:
35228         * socket-io.c: 
35229         * unicode.h: 
35230         * unicode.c: Warning cleanups
35232 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35234         * object.h, reflection.h: use the correct type instead of MonoObject.
35236 2002-03-28  Martin Baulig  <martin@gnome.org>
35238         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35239         (mono_debug_update_symbol_file): Initialize classes if necessary.
35241 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35243         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35244         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35246 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35248         * assembly.h: fix function prototype.
35249         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35250         * mono-endian.h: use const cast.
35252 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35254         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35256 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35258         * loader.c: don't assert when a typeref can't be loaded, give
35259         a chance to the runtime to trow an exception instead.
35260         * loader.h: fix warning.
35262 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35264         * class.c (mono_class_proxy_vtable): added proxy support
35266 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35268         * icall.c: removed last of PAL calls, added System.Environment
35269         * file-io.h, file-io.c: MonoIO implementation
35270         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35272 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35274         * appdomain.c: do not use the byte marker in ldstr table lookup.
35275         * debug-helpers.c: allow two ':' to separate class and method name.
35276         * object.c: allocate arrays bounds with the GC, too.
35277         * verify: add a few more checks.
35279 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35281         * reflection.c: output also literal strings. Allocate parameter data
35282         with GC_malloc() (thanks, Martin, for catching this!).
35284 2002-03-26  Martin Baulig  <martin@gnome.org>
35286         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35287         include the `this' offset in the `param_offsets'.
35289 2002-03-25  Martin Baulig  <martin@gnome.org>
35291         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35292         mono_debug_get_class() function to get the classes. Added new
35293         relocation types for arrays and strings.
35294         (mono_debug_get_class): New static function to search in all
35295         referenced assemblies for a metadata token.
35297         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35299 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35301         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35302         hold gc-allocated objects. Make the string heap a stream like the
35303         others. Removed duplicated code when writing stream info.
35304         Added asserts to catch possible buffer overflows. Set the sorted map
35305         for tables that need sorting. Added some documentation.
35307 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35309         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35310         for interned strings and vtables.
35312 2002-03-24  Martin Baulig  <martin@gnome.org>
35314         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35315         it in the array since it was created with g_slist_prepend().
35317 2002-03-24  Martin Baulig  <martin@gnome.org>
35319         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35320         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35321         (mono_debug_method_from_token): Renamed to
35322         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35323         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35325         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35326         relocation types.
35328         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35330 2002-03-24  Martin Baulig  <martin@gnome.org>
35332         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35333         (mono_debug_method_from_token): New func.
35335         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35336         New interncall, calls mono_debug_local_type_from_signature().
35337         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35338         calls mono_debug_method_from_token().
35340 2002-03-23  Martin Baulig  <martin@gnome.org>
35342         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35343         specifies the number of bytes to be converted, not the array size.
35344         Return the number of chars, not the number of bytes.
35345         (ves_icall_iconv_get_chars): The `byteCount' argument
35346         specifies the number of bytes to be converted, not the array size.
35348 2002-03-23  Martin Baulig  <martin@gnome.org>
35350         * reflection.h (MonoReflectionSigHelper): New type.
35352         * reflection.c (mono_reflection_sighelper_get_signature_local),
35353         (mono_reflection_sighelper_get_signature_local): New functions.
35355         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35356         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35357         interncalls.
35359 2002-03-23  Martin Baulig  <martin@gnome.org>
35361         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35362         is_writeable is set.
35363         (mono_raw_buffer_update): New function to write the modified map
35364         back to disk.
35366         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35368         * debug-symfile.c (mono_debug_update_symbol_file): Call
35369         mono_raw_buffer_update() when done writing.
35371 2002-03-23  Martin Baulig  <martin@gnome.org>
35373         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35375         * debug-symfile.c: Added support for arguments and local variables.
35377 2002-03-23  Dick Porter  <dick@ximian.com>
35379         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35380         protected by ifdefs, hence breaking the w32 build.
35382 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35384         * object.c: implement is_interned() the right way.
35386 2002-03-21  Martin Baulig  <martin@gnome.org>
35388         * debug-symfile.[ch]: New files to handle debugging information
35389         files. There's also support to dynamically update these symbol
35390         files to include machine dependent information.
35392 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35394         * threads.c (mono_thread_create): new function to create thread
35395         from C
35397 2002-03-20  Martin Baulig  <martin@gnome.org>
35399         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35400         method is a constructor.
35401         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35402         points to ves_icall_InternalInvoke().
35404 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35406         * file-io.c: Flush shouldn't throw exceptions.
35408 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35410         * file-io.c: FileStream flush support; FileSetLength now
35411         restores file pointer.
35413 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35415         * class.c: set image for pointer classes.
35417 2002/03/19  Nick Drochak <ndrochak@gol.com>
35419         * sysmath.c: Forgot one.
35421 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35423         * sysmath.c: Avoid redefining existing names.
35425 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35427         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35428         handled by runtime as icall rather than dllimport from libm.so
35429         * file-io.c, file-io.h: fixed handle argument type.
35431 2002-03-18  Dick Porter  <dick@ximian.com>
35433         * reflection.c (mono_image_get_type_info): rename interface to
35434         iface, because of "#define interface struct" on windows.
35436 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35438         * class.c, class.h: rename and export mono_ptr_class_get().
35439         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35440         * reflection.c, reflection.h, icall.c: better/saner type name
35441         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35442         method signatures.
35444 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35446         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35448         * icall.c (ves_icall_InternalInvoke): impl.
35450 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35452         * reflection.c: output the interface map table, too.
35454 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35456         * class.c (class_compute_field_layout): separate computation of 
35457         static field layout
35459 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35461         * icall.c: added System.Buffer support.
35462         * file-io.c: moved file icalls from PAL to FileStream.
35464 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35466         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35468 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35470         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35472 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35474         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35476 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35478         * debug-helpers.{c,h}: moved here from monograph some useful functions
35479         to locate a method by name/signature in a class or image. Included
35480         also a small and flexible IL disassembler.
35482 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35484         * reflection.c: fixup tokens in methods with small header size, too.
35486 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35488         * object.c (mono_string_to_utf8): remove assert(!error), instead
35489         print a warning. 
35491 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35493         * icall.c: update to the new mono_Array_class_get interface.
35495 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35497         * appdomain.c, object.c: Boehm-GC enable.
35498         * icall.c: make get_data_chunk() support split data requests.
35499         Ensure a class is initialized in more cases. Return only the first
35500         property found in GetProperties() or the compiler gets confused. 
35501         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35502         * reflection.h, reflection.c: add fixup mechanism for field and method
35503         tokens. Initialize assembly->typeref in a single place. Output
35504         properties after events. Support custom attributes for events, too.
35505         Typo fix for paramter custom attrs.
35507 2002-03-07  Martin Baulig  <martin@gnome.org>
35509         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35511 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35513         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35515 2002-03-06  Martin Baulig  <martin@gnome.org>
35517         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35518         non-zero lower bounds. See testcases #F10-#F13.
35520 2002-03-05  Martin Baulig  <martin@gnome.org>
35522         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35524         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35525         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35526         here.
35527         (ves_icall_System_Array_SetValue): Likewise.
35528         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35529         as argument and does the actual work. This function is used when copying a
35530         multi-dimensional array.
35531         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35532         now do all the widening conversions of value types.
35533         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35535 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35537         * class.c: remove some magic numbers and use the smbolic names,
35538         instead. Added init_events() to load event info at class init time.
35539         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35540         and mono_metadata_methods_from_event().
35541         * reflection.h, reflection.c: added support for writing out the evnets
35542         related information.
35544 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35546         * reflection.h, icall.c: use a different method (GetInterfaces)
35547         to gather interface info and add isbyref, isprimitive and
35548         ispointer to the ves_icall_get_type_info() return value.
35550 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35552         * class.h: stared adding support for events.
35553         * icall.c: split find_members implementation. Added debug icall to get
35554         the address of an object.
35555         * reflection.c: handle TypeBuilders in mono_type_get_object().
35557 2002-03-01  Martin Baulig  <martin@gnome.org>
35559         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35560         ArgumentOutOfRangeException(), not an ArgumentException().
35561         (ves_icall_System_Array_GetLowerBound): Likewise.
35562         (ves_icall_System_Array_GetValue): Improved argument checking.
35563         (ves_icall_System_Array_SetValue): Improved argument checking.
35565 2002-03-01  Martin Baulig  <martin@gnome.org>
35567         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35568         called with invalid arguments rather than just dying with g_assert().
35569         (ves_icall_System_Array_SetValue): Likewise.
35570         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35571         raise a NotImplementedException instead.
35572         (ves_icall_System_Array_GetLength): Added argument checking.
35573         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35575 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35577         * object.h (mono_assert): new macros mono_assert and
35578         mono_assert_not_reached
35580 2002-02-28  Martin Baulig  <martin@gnome.org>
35582         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35583         and "System::String::IsInterned" to "System::String::_IsInterned".
35585 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35587         * icall.c: remove hacks for typebuilder. Added icall to create a
35588         modified type from a tybebuilder.
35589         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35590         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35591         to create a backing MonoClass for a TypeBuilder.
35593 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35595         * class.c, class.h: more refactoring of class init.
35596         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35598 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35600         * marshal.c, marshal.h: start of marshaling interface.
35602 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35604         * icall.c: fix order in assembly qualified name icall.
35606 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35608         * class.c: do not free str, since we store it in the hash table.
35609         * reflection.h: add label field to MonoILExceptionInfo.
35610         * reflection.c: handle references to more than one assembly. Handle
35611         case when there isn't a module created in the assembly.
35613 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35615         * class.c: Fix typo. Start refactoring of class init code.
35617 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35619         * appdomain.c: exit with 1 on error.
35620         * class.c: we already have the name in MonoClassField.
35621         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35622         MonoStreamHeader instead of an offset of image->raw_metadata.
35624 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35626         * appdomain.c (mono_init): Be even more descriptive about the error.
35628 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35630         * appdomain.c: give the user an informative message when corlib can't
35631         be loaded.
35633 2002-02-26  Martin Baulig  <martin@gnome.org>
35635         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35636         New icall to get the time zone data.
35638 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35640         * reflection.c: set virtual and raw size of section correctly.
35641         * threads.c: transfer domain information to newly created threads.
35643 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35645         * class.c: when instancing a class in a domain, load the default
35646         vaules for static fields from the constant table. Fix System.Enum to
35647         not be an enum.
35648         * icall.c: implement Object::GetType() internalcall. Implemented
35649         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35650         Fixed checking of binding flags in find_members().
35651         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35652         * reflection.c: handle enumerations when writing to the constant
35653         table. Use a different object cache for types.
35656 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35658         * object.c (mono_object_isinst): fix for arrays
35660         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35662 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35664         * object.c: don't use mprotect ()  and fix intern pool hash table
35665         lookup for big endian systems.
35667 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35669         * icall.c: change type_is_subtype_of () signature.
35671 2002-02-21  Mark Crichton  <crichton@gimp.org>
35673         * rand.c, rand.h: Added random number generator for
35674         System.Security.Cryptography classes.
35676         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35678         * icall.c: Added System.Security.Cryptography calls.
35680 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
35682         * class.c, icall.c, metadata.c: better support for pointer types.
35683         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
35684         * reflection.c: Add support for getting custom attrs for properties
35685         and simplify some code.
35687 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35689         * icall.c: change getToken () and add custom attribute GetBlob()helper
35690         method.
35691         * reflection.h: add custom attrs array to the reflection builder structures.
35692         * reflection.c: encode and emit custom attributes for all the relevant
35693         reflection objects. Cache fieldref and methodref tokens. Change
35694         mono_image_create_token() interface to take a MonoDynamicAssembly.
35695         More complete custom attributes decoder. Load custom attributes for
35696         Assembly, Field, Method and Constructor objects, too. Make the
35697         returned array an Attribute[] one, not object[]. Added
35698         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
35699         custom attribute constructor.
35701 2002-02-20  Dick Porter  <dick@ximian.com>
35703         * icall.c:
35704         * rawbuffer.c:
35705         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
35706         problem code out for now).
35708 2002-02-19  Radek Doulik  <rodo@ximian.com>
35710         * object.c (mono_ldstr): use hash table to avoid multiple swapping
35712 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
35714         * icall.c: register the GetCustomAttributes method.
35715         * object.c, object.h: add mono_string_new_len ().
35716         * reflection.h, reflection.c: added mono_runtime_invoke(),
35717         mono_install_runtime_invoke(). Added
35718         mono_reflection_get_custom_attrs () to load custom attributes and
35719         create the attribute objects.
35721 2002-02-19  Dick Porter  <dick@ximian.com>
35722         * threads-dummy-types.c:
35723         * threads-dummy-types.h:
35724         * threads-dummy.c:
35725         * threads-dummy.h:
35726         * threads-pthread-types.c:
35727         * threads-pthread-types.h:
35728         * threads-pthread.c:
35729         * threads-pthread.h:  Deleted obsolete files
35731 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
35733         * class.c (mono_class_vtable): runtime init the class when we
35734         allocate static class data.
35736         * icall.c (ves_icall_System_Array_SetValue): check for null values.
35738         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
35739         and String - but we will need generic marshalling support in the
35740         future. 
35741         (mono_init): set the domain name in a ms compatible way
35743         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
35744         String[].
35746 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
35748         * object.c (mono_array_clone): use alloca() instead of g_malloc  
35749         for sizes
35751         * appdomain.c (mono_domain_unload): impl.
35753 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35755         * appdomain.c, object.c: fix intern pool implementation.
35756         * class.c: fix alignment code.
35758 2002-02-16  Radek Doulik  <rodo@ximian.com>
35760         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
35761         and s2 > s1, just copy lower bytes to be compatible with little
35762         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
35763         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
35765         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
35766         force big_endian to be 1 for big endian machines 
35767         (ves_icall_iconv_new_decoder): ditto
35769 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
35771         * socket-io.c (convert_sockopt_level_and_name): If the system
35772         doesn't define SOL_IP or SOL_TCP, get them by hand using
35773         getprotobyname() and caching the values (because this could be a
35774         slow operation).
35775         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
35776         Use the appropriate struct when the system does support it. Ie,
35777         not all systems have struct ip_mreqn so use struct ip_mreq when
35778         appropriate.
35780 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
35782         * reflection.c: handle finally clauses.
35784 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
35786         * socket-io.c: use g_snprintf() instead of snprintf.
35788 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35790         * reflection.c (mono_param_get_objects): Cast second argument to
35791         mono_method_get_param_names to a const char** to silence the
35792         compiler warning.
35794         * appdomain.c (mono_domain_assembly_open): Put parens around the
35795         truth statement in the for-loop.
35797         * unicode.c (iconv_convert): Got rid of a compiler warning about
35798         int i being unused when the system has a new iconv.
35799         (iconv_get_length): Same.
35801         * image.c (load_class_names): Cast the second argument to
35802         g_hash_table_insert() to char* to hush compiler warnings about the
35803         arg being a const.
35804         (mono_image_open): Same here.
35806         * socket-io.c: Don't conditionally include sys/filio.h or
35807         sys/sockio.h here anymore since we now get them from
35808         io-layer/io-layer.h
35809         (inet_pton): If the system doesn't support inet_aton, implement
35810         using inet_addr and also #define INADDR_NONE if it isn't defined
35811         by the system.
35813 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
35815         * metadata.c, metadata.h: added function to get packing and size info
35816         of a typedef.
35817         * reflection.h, reflection.c: handle field RVA data. Save info about
35818         the table layout if needed. Assign typedef indexes to all the types
35819         before dumping the info about them to avoid forward reference problems.
35821 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
35823         * socket-io.c (convert_sockopt_level_and_name): ifdef
35824         SO_ACCEPTCONN because it is not defined on my system (old debian)
35826 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35828         * opcode.c: use stddef.h to get NULL.
35830 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35832         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35833         for FIONBIO, FIONREAD and SIOCATMARK.
35834         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35835         define INADDR_NONE and besides, inet_addr() is deprecated and
35836         should not be used. Use inet_pton() instead - it also has the
35837         added bonus that it can easily handle IPv6 addresses as well.
35838         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35840 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35842         * decimal.c: remove _MSC_VER conditional.
35844 2002-02-13  Dick Porter  <dick@ximian.com>
35846         * socket-io.c: 
35847         * icall.c: Internal calls for Blocking, Select, Shutdown,
35848         GetSocketOption and SetSocketOption
35850 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35852         * assembly.cs: better resolver: use it instead of some kludgy
35853         code.
35855 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
35857         * reflection.c: the best way to speed-up the compiler is to avoid
35858         infinite loops.
35860 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
35862         * class.c (mono_class_vtable): changed the object layout
35863         (obj->vtable->class). 
35864         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
35866 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35868         * assembly.c: look for assemblies in the assembly dir, too.
35870 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35872         * class.c: fix thinko in mono_class_from_type().
35874 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35876         * exception.h, exception.c: added TypeLoadException.
35877         * object.h, object.c: added mono_array_clone ().
35878         * icall.c: handle throwOnError in AssemblyGetType().
35879         Added Array.Clone().
35880         * opcode.h, opcode.c: use a single value for the opcode val.
35881         Compile fix for non-gcc compilers.
35883 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
35885         * opcodes.c, opcodes.h: export interesting info about opcodes.
35887 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
35889         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
35890         icalls. 
35892         * class.c (class_compute_field_layout): set element_class for enums
35893         (mono_class_create_from_typedef): set element_class for normal classes
35895         * icall.c (ves_icall_System_Enum_get_value): impl.
35897         * class.c (mono_class_create_from_typedef): do not set valuetype
35898         flag for System.ValueType and System.Enum
35900 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
35902         * unicode.c (iconv_convert): fix big endian problem.
35904 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35906         * class.c: add asserts if we are ever going to scribble over memory.
35907         * socket-io.c: not all systems have AF_IRDA defined.
35909 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
35911         * class.c (class_compute_field_layout): do not consider static
35912         fields to compute alignment
35914 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
35916         * appdomain.c (mono_appdomain_get): impl.
35917         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
35919 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35921         * icall.c: ignore "file://" prefix when loading an assembly.
35923 2002-01-23  Dick Porter  <dick@ximian.com>
35925         * socket-io.c:
35926         * icall.c:
35927         * Makefile.am: Added socket support
35929 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35931         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
35932         code back.  This should return the assemblies that are loaded by
35933         the runtime on behalf of an application domain. 
35935         The current implementation is still broken, it just returns every
35936         assembly loaded, but until we get real applications domain this
35937         will do.
35939 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
35941         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
35942         AppDomain object.
35944 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35946         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
35947         the mono_class_from_name lookup.
35948         (ves_icall_get_parameter_info): ditto.
35949         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
35950         method.
35951         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
35953 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
35955         * class.c: load also nested classes on class init.
35956         System.ValueType instance methods gets passed boxed
35957         values, unless methods in derived classed that get a pointer to the
35958         data.
35959         * icall.c: use better name parsing code in GetType().
35960         * image.c, image.h: add mono_image_loaded ().
35961         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
35962         * reflection.c, reflection.h: added mono_reflection_parse_type().
35964 2002-01-22  Veronica De Santis <veron78@interfree.it>
35966         * icall.c : Added mapping of internal calls for Manual and Auto reset events
35967         * threads.c : Added the implementation of internal calls for events
35968         * threads.h : Added prototypes of internal calls for events
35969         
35970 2002-01-21  Radek Doulik  <rodo@ximian.com>
35972         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
35974 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
35976         * class.c (mono_class_init): set min_align to 1 (instead of 0)
35977         (mono_class_value_size): use min_align
35979 2002-01-20  Dick Porter  <dick@ximian.com>
35981         * threads.h:
35982         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
35983         so it compiles on w32.
35985 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
35987         * metadata.c (mono_type_stack_size): impl.
35989         * class.c (mono_class_get_field): impl. memberref token
35991 2002-01-16 Veronica De Santis <veron78@@interfree.it>
35993         * icall.h : Added the internal calls mapping for CreateMutex_internal
35994                     and ReleaseMutex_internal.
35995         * threads.h : Added the prototype of mutexes internal calls.
35996         * threads.c : Added the implementations of mutexes internal calls.
35998 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36000         * metaparse.h: removed unused file.
36001         * reflection.c, reflection.h: added stream_data_align () function 
36002         to align data in streams and keep stream aligned. Add support for
36003         exception support in method headers.
36005 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36007         * unicode.c: make iconv_convert () return the number of bytess written
36008         in the output buffer.
36010 2002-01-15  Dick Porter  <dick@ximian.com>
36011         * threads.c: Make the runtime's idea of infinite timeouts coincide
36012         with the class library's
36014         Fix a particularly egregious bug in mono_thread_cleanup(). That
36015         code was so utterly bogus it must have been written on a Monday.
36017 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36019         * reflection.h: add subtypes field to TypeBuilder.
36020         * reflection.c: encode constants for literal fields.
36021         Handle subtypes. Fix user string token (and add a zero byte)
36022         at the end.
36023         
36024 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36026         * class.c (mono_class_init): bug fix: assign slot numbers for
36027         abstract methods.
36029 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36031         * reflection.c: don't try to output a code RVA for abstract methods.
36032         Small fixes for method header format. Output parameter info to the
36033         ParamDef table. Save method overriding info to MethodImpl table.
36034         Fix property support. Allow typedef.extends to be a type in the
36035         building assembly.
36036         * verify.c: fix off-by-one error.
36038 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36040         * class.c: fix mono_class_from_mono_type () for szarray types.
36041         Remove unused cache check in mono_class_from_type_spec().
36042         * icall.c: *type_from_name () functions handle simple arrays and byref.
36043         * reflection.c: handle byref and szarray types. Handle methods without
36044         body (gets P/Invoke compilation working). Handle types and fields in
36045         get_token ().
36046         * reflection.h: add rank to MonoTypeInfo.
36048 2002-01-10  Dick Porter  <dick@ximian.com>
36050         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36051         internal calls
36053 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36055         * icall.c: initialize class in type_from_handle ().
36056         Loop also in parent classes for get_method ().
36057         * reflection.c: properly encode class and valuetype types.
36058         Start on encoding TypeBuilder types. Handle fieldrefs.
36059         Use correct length when registering a user string.
36060         Handle ConstructorBuilder and MonoMethod in get_token ().
36061         Make mono_type_get_object () aware of cached types.
36062         * object.c: back out change to mono_string_new ().
36064 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36065         * object.c: mono_string_new should return a NULL when the string 
36066         passed in is NULL -- not try to deference it.
36067         
36068 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36070         * icall.c: hack to make IsSubType work for TypeBuilders.
36071         * reflection.c: emit constructors before methods.
36072         Retrieve param names in mono_param_get_objects().
36074 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36076         * Makefile.am: fix list of headers and sources so automake 1.5
36077         doesn't complain. Removed \# at end of list.
36079 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36081         * reflection.c: get token for a method ref. Set return type of
36082         constructor to void.
36083         * loader.c: debug message.
36084         * class.c: typo fix.
36086 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36088         * icall.c: fix array init with rank > 1. FindMembers
36089         loops in parent class as well.
36090         * image.c: do not insert nested types in name cache.
36091         * reflection.c: warning fix.
36092         * reflection.h: add override method (for interface impl).
36094 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36096         * metadata.c: fix customattr decoding.
36098 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36100         * rawbuffer.cs: Added native Win32 implementation, avoids using
36101         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36103 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36105         * class.c: make the low-level routines handle the cache.
36107 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36109         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36111 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36113         * class.c: fix mono_array_element_size() for objects.
36114         * class.h, class.c: add properties to MonoClass and load them
36115         at init time.
36116         * icall.c: check with isinst() when assigning a value to an array
36117         instead of requiring the classes to match exactly.
36118         Implemented icall for System.Type::GetType().
36119         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36120         enums. Handle bindingflags when looking for methods and fields.
36121         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36122         and mono_metadata_methods_from_property().
36123         * reflection.h, reflection.c: added structures for propreties,
36124         parameters and enums. Implemented mono_property_get_object() and
36125         mono_param_get_objects().
36127 2001-12-18  Dick Porter  <dick@ximian.com>
36129         * file-io.c: Use mono_string_to_utf16() instead of
36130         mono_string_chars()
36132         * object.c: Added mono_string_to_utf16(), which copies the non
36133         NULL-terminated MonoString into a new double-null-terminated
36134         buffer.
36136 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36138         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36140 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36142         * file-io.c: raise exceptions if handle is invalid.
36144 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36146         * assembly.c: yet another check for mscorlib.
36147         * class.c, class.h: load nesting info for classes.
36148         * icall.c: many new functions to support the Reflection classes.
36149         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36150         * reflection.h, reflection.c: mono_image_create_token(),
36151         mono_assembly_get_object(), mono_type_get_object(),
36152         mono_method_get_object(), mono_field_get_object(): methods to return
36153         objects that parallel the C representation of assemblies, types,
36154         methods, fields.
36156 2001-12-11  Dick Porter  <dick@ximian.com>
36158         * icall.c:
36159         * file-io.c: Internal calls for file IO.
36161 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36163         * tabledefs.h: missing FileAttributes.
36164         * verify.h, verify.c: use is_valid_string () to simplify and check for
36165         valid strings more correctly. Fix warnings and speeling.
36166         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36167         Check code: branches, maxstack, method calls.
36169 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36171         * object.c (mono_object_allocate): removed static, so that the jit
36172         can allocate value types.
36174         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36176 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36178         * class.c: init enum types right away and register the
36179         token->MonoClass map in mono_class_create_from_typedef ().
36180         * verify.h, verify.c: first cut of the verifier.
36181         * pedump.c: add --verify switch to verify metadata tables.
36182         * tabledefs.h: add some missing enums.
36184 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36186         * class.c (mono_install_runtime_class_init): impl.
36187         (mono_class_init): renamed mono_class_metadata_init to
36188         mono_class_init, also removed the metadata_inited flag
36190         * object.c (mono_object_isinst): use faster algorithm
36192 2001-11-30  Radek Doulik  <rodo@ximian.com>
36194         * mono-endian.h: reverted last change
36195         added function prototypes
36197         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36198         add mono-endian.c back
36200         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36201         for unaligned access, I've mistaked it with endianess. I am
36202         sorry.
36203         (mono_read16): fix reverted endianess
36204         (mono_read64): ditto
36205         (mono_read32): ditto
36207 2001-11-30  Dick Porter  <dick@ximian.com>
36209         * exception.c: Implement mono_exception_from_name()
36211 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36213         * metadata.h, metadata.c: remove params_size and locals_size and their
36214         calculation from the metadata code: they are only usefult to the
36215         interp.
36217 2001-11-29  Radek Doulik  <rodo@ximian.com>
36219         * object.c (mono_ldstr): swap bytes here, it's probably not the
36220         best place, but works for me now, I'll redo it once I know mono
36221         better, also note that I add PROT_WRITE and don't reset back, also
36222         note that it's only affects big endians, so x86 should be OK
36224         * mono-endian.h (read16): use just glib macros for both endians
36226         * mono-endian.c: removed as glib macros are used in in
36227         mono-endian.h so we don't need to care about endianess for read
36228         macros as glib does that for us already
36230 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36232         * class.h, class.h: take minimum alignment into consideration so
36233         that the fields of a class remain aligned also when in an array.
36235 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36237         * loader.h, loader.c: add mono_method_get_param_names().
36238         * class.c: 0-init class fields.
36240 2001-11-26  Dick Porter  <dick@ximian.com>
36242         * icall.c:
36243         * threads-types.h:
36244         * threads.c: New file that handles System.Threading on all platforms
36246         * object.c: 
36247         * object.h: Remove the synchronisation struct from MonoObject,
36248         replace it with a pointer that gets initialised on demand
36250         * Makefile.am: Replace all the system-specific threading code with
36251         a single file that uses the new wrapper library
36253 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36255         * class.c, class.h: add mono_install_trampoline() so that the runtime
36256         can register a function to create a trampoline: removes the ugly
36257         requirement that a runtime needed to export arch_create_jit_trampoline.
36258         * object.h, object.c: added mono_install_handler() so that the runtime
36259         can install an handler for exceptions generated in C code (with
36260         mono_raise_exception()). Added C struct for System.Delegate.
36261         * pedump.c: removed arch_create_jit_trampoline.
36262         * reflection.c: some cleanups to allow registering user strings and
36263         later getting a token for methodrefs and fieldrefs before the assembly
36264         is built.
36265         * row-indexes.h: updates and fixes from the new ECMA specs.
36267 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36269         * class.h, class.c: add enum_basetype field to MonoClass.
36270         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36271         to get index in the constant table reated to a field, param or
36272         property.
36273         * reflection.h, reflection.c: handle constructors. Set public-key and
36274         version number of the built assembly to 0.
36275         * row-indexes.h: update from new ECMA spec.
36277 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36279         * class.h, class.c: add a max_interface_id to MonoClass.
36280         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36281         since it's used to do that. Added mono_type_type_from_obj().
36282         Make GetType() return NULL instead of segfaulting if the type was not
36283         found. Handle simple arrays in assQualifiedName.
36284         * object.h: add a struct to represent an Exception.
36285         * reflection.c: output call convention in method signature.
36286         Add code to support P/Invoke methods and fixed offsets for fields.
36288 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36290         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36291         the value.
36292         * icall.c: use mono_array_addr instead of array->vector: fixes the
36293         reflection image writing.
36294         * reflection.c: init call convention byte to 0 in method signature.
36295         Encode the property signature. Don't output property-related methods
36296         twice. Really process the properties for a type (don't cast a field to
36297         a property, my mom always told me that).
36298         Fix 64 bit issues in pointer alignment in a different and more
36299         readable way.
36301 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36303         * loader.h: Removed type class from MonoDefaults, added monotype
36305         * loader.c: Loaded MonoType, removed loading of Type
36307         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36308         and fills in System.Type._impl with a RuntimeTypeHandle rather
36309         than the actual MonoClass *
36311         (ves_icall_type_from_handle): change from type_class to
36312         monotype_class
36314         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36315         implemented
36317         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36318         implemented
36320         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36322         (ves_icall_System_Reflection_Assembly_GetType): implemented
36324         (ves_icall_System_MonoType_assQualifiedName): implemented
36326         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36328 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36330         * assembly.c (mono_assembly_open): Implement a cache for the
36331         assemblies. 
36333         (mono_assembly_close): only destroy the assembly when the last
36334         reference is gone.
36335         
36336 2001-11-09  Dick Porter  <dick@ximian.com>
36338         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36340 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36342         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36344 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36346         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36347         from Martin Weindel.
36348         * object.h: add mono_string_chars ().
36350 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36352         * reflection.c (build_compressed_metadata): Eliminates warnings
36353         and uses 64-bit clean code.
36355         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36356         (mono_type_equal): Change signature to eliminate warnings.
36358 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36360         * icall.c, loader.c: remove the internalcall array constructors.
36361         Changes to match the new MonoArray structure.
36362         * object.h, object.c: an array object doesn't allocate an extra
36363         vector. Add mono_array_new_full () to create jagged arrays easily.
36365 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36367         * metadata.h, metadata.c: add mono_metadata_field_info () to
36368         retreive all the info about a field from vairous tables.
36369         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36370         * class.h, class.c: augment MonoClassField with more info.
36371         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36372         policy and load a field's RVA if needed.
36374 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36376         * class.c (mono_class_metadata_init): create a trampoline for all
36377         virtual functions instead of actually compiling them.
36379 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36381         * class.h, class.c: include name in MonoClassField.
36382         * class.c: fix fundamental type of System.Object and System.String.
36383         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36384         tokens in ldtoken.
36385         * icall.c: remove internalcalls for the Reflection stuff that is now
36386         done in C# code.
36387         * loader.c: mono_field_from_memberref () implementation.
36388         * mono-endian.c: thinko (s/struct/union/g).
36389         * object.c, object.h: make the mono_string_* prototypes actually use
36390         MonoString instead of MonoObject.
36391         * reflection.c, reflection.h: updates for changes in the reflection
36392         code in corlib: we use C structures that map to the actual C# classes.
36393         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36394         fat method header if needed and use the info from the ILGenerator for
36395         methods. Handle fields in types. Misc fixes.
36397 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36399         * class.c (mono_class_metadata_init): bug fix: always allocate
36400         space for static class data
36402 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36404         * class.c (mono_compute_relative_numbering): use relative
36405         numbering to support fast runtime type checks.
36407 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36409         * class.c (mono_class_create_from_typeref): added debugging output
36410         to print class name when MonoDummy is returned instead of real class
36412 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36414         * class.c (mono_class_metadata_init): interface offset table now
36415         contains pointers into the vtable - this is more efficient for the jit
36417 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36419         * class.c (mono_class_metadata_init): use a temporary vtable (the
36420         old algorithm only worked for the interpreter, but not for the jit)
36422 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36424         * loader.c (method_from_memberref): use mono_class_get to get the
36425         class of an array instead of using System.Array directly.
36426         (mono_get_method): also add MEMBERREF methods to the method cache
36427         which usefull for arrays.
36429 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36431         * pedump.c (arch_compile_method): added to compute vtable entry
36433         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36434         number of interfaces.
36435         
36436         * class.h: merged MonoArrayClass into MonoClass
36438         * class.c (mono_class_create_from_typedef): compute the vtable size and
36439         allocate space to include the vtable inside MonoClass
36440         (mono_class_metadata_init): initialize the vtable
36442 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36444         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36445         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36446         * image.c: endian fixes by Laurent Rioux.
36447         * object.h, object.c: rename MonoStringObject to MonoString and
36448         MonoArrayObject to MonoArray. Change some function names to conform to
36449         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36450         guint16* as first argument, so don't use char*.
36451         Provide macros to do the interesting things on arrays in a portable way.
36452         * threads-pthread.c: updates for the API changes and #include <sched.h>
36453         (required for sched_yield()).
36454         * icall.c: updates for the API changes above.
36455         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36456         platforms that need them.
36458 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36460         * class.c: set the correct type for all the fundamental
36461         type when loading the class.
36463 2001-10-05  Dick Porter  <dick@ximian.com>
36465         * threads-pthread.c (pthread_mutex_timedlock): Simple
36466         compatibility version for C libraries that lack this call.
36468 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36470         * class.c: MonoTypes stored in MonoClass are stored as
36471         fundamental MonoTypes when the class represents a
36472         fundamental type (System.Int32, ...).
36473         The TypeHandle return by ldtoken is a MonoType*.
36474         * icall.c: ves_icall_get_data_chunk () write out all the
36475         PE/COFF stuff. Implement ves_icall_define_method (),
36476         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36477         * image.c: properly skip unknown streams.
36478         * loader.h, loader.c: add type_class to mono_defaults.
36479         * metadata.c, metadata.h: export compute_size () as
36480         mono_metadata_compute_size () with a better interface.
36481         Typo and C&P fixes.
36482         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36483         * reflection.c, reflection.h: many cleanups, fixes, output method
36484         signatures and headers, typedef and typeref info, compress the metadata
36485         tables, output all the heap streams, cli header etc.
36486         * row-indexes.h: typo fixes.
36488 2001-10-04  Dick Porter  <dick@ximian.com>
36490         * object.h: Add a synchronisation mutex struct to MonoObject
36492         * object.c (mono_new_object): Initialise the object
36493         synchronisation mutexes
36495         * icall.c: System.Threading.Monitor internal calls
36496         
36497         * threads-pthread.h:
36498         * threads-pthread.c: System.Threading.Monitor internal calls
36500         * threads-types.h: New file, includes the system-specific thread
36501         structures
36502         
36503         * threads-pthread-types.h:
36504         * threads-pthread-types.c: New files, handle pthread-specific
36505         synchronisation types
36507         * threads-dummy-types.h: 
36508         * threads-dummy-types.c: New files of dummy support for
36509         thread-specific types
36511         * metadata.c:
36512         * image.c:
36513         * pedump.c: include mono-endian.h not endian.h
36514         
36515         * Makefile.am: More threads files.
36516         Name mono-endian.h not endian.h
36518 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36520         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36521         stuff and implement a few more bits.
36522         * icall.c: a field needs to be dereferenced twice. Do not use the same
36523         name for two variables in the same scope.
36524         * image.c, image.h: cleanups.
36526 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36528         * class.c (mono_class_metadata_init): bug fix: compute the right size
36530 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36532         * icall.c: implemented some of the Reflection internalcalls.
36533         * image.c, image.h: start writing out the PE/COFF image.
36534         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36535         that does the reverse than decode_blob_size ().
36536         * object.c: use mono_metadata_encode_value (). Move here
36537         temporary implementation of mono_string_to_utf8 ().
36538         * rawbuffer.c: make malloc_map static.
36540 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36542         * metadata.c: fix type comparison for arrays.
36543         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36544         Added a couple of new classes to monodefaults.
36545         * icall.c: added a couple of Reflection-related internalcalls.
36546         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36547         Added a byval_arg MonoType to MonoClass.
36549 2001-09-28  Dick Porter  <dick@ximian.com>
36551         * icall.c:
36552         * threads-pthread.h: 
36553         * threads-pthread.c: Implemented internal calls for
36554         LocalDataStoreSlot operations.  Applied mutexes around all shared
36555         data.  Reworked the thread creation and Start() operations to
36556         avoid a race condition.
36557         
36558         * threads-dummy.h:
36559         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36561 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36563         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36565 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36567         * class.c, loader.c: warn and return NULL instead of erroring out.
36568         * icall.c: added System.AppDomain::getCurDomain().
36569         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36571 2001-09-25  Dick Porter  <dick@ximian.com>
36573         * threads-pthread.h:
36574         * threads-pthread.c: Implemented timed thread joining and added
36575         System.Threading.Thread::Join_internal internal call
36577         * icall.c: Added System.Threading.Thread::Join_internal internal call
36579         * threads-dummy.h:
36580         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36582 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36584         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36585         mono_string_intern () to implement the semantics of the ldstr opcode
36586         and the interning of System.Strings.
36587         * icall.c: provide hooks to make String::IsIntern and String::Intern
36588         internalcalls.
36590 2001-09-23  Dick Porter  <dick@ximian.com>
36592         * threads-dummy.c: 
36593         * threads-dummy.h: New files of dummy threading routines
36595         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36596         support code based on system specifics
36598         Rename PTHREAD_LIBS to THREAD_LIBS
36599         
36600 2001-09-23  Dick Porter  <dick@ximian.com>
36602         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36603         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36604         internal calls.
36605         (mono_thread_init): Set up a Thread object instance to return when
36606         the main thread calls Thread.CurrentThread
36607         (mono_thread_cleanup): Wait for all subthreads to exit
36609         * icall.c: New internal calls for System.Threading.Thread::Sleep
36610         (including Schedule) and CurrentThread
36612         * threads.h: New file, to insulate thread-specific stuff from the
36613         rest of the code
36615 2001-09-21  Dick Porter  <dick@ximian.com>
36617         * threads-pthread.h: 
36618         * threads-pthread.c: New file, for handling pthreads-style
36619         threading support.  Start() now starts a new thread and executes
36620         the ThreadStart delegate instance.
36622         * icall.c: Added the internalcall for
36623         System.Threading.Thread::Start_internal
36625         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36627 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36629         * loader.c: work around the different signatures for delegates
36630         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36632 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36634         * class.h, class.c: add mono_class_get_field_from_name ().
36635         * *: Fix C comments and other ANSI C issues.
36637 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36639         * endian.h, assembly.c: fix some endianness issues.
36641 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36643         * loader.h, load.c: add delegate_class to mono_defaults.
36644         Handle runtime provided methods in mono_get_method ().
36646 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36648         * loader.c (mono_get_method): use pinvoke for internal call
36650         * icall.c: use pinvoke for internal call
36652         * loader.c (method_from_memberref): set the method name
36654 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36656         * metadata.c: help the compiler generate better code for
36657         mono_class_from_mono_type ().
36659 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36661         * class.c (mono_class_metadata_init): delayed computing of the
36662         class size to mono_class_metadata_init ()
36664 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36666         * class.c, class.h: add an interfaces member to MonoClass.
36667         * image.c, image.h: add assembly_name field to MonoImage
36668         from the assembly table.
36669         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36671 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36673         * class.c: Handle Array in mono_class_from_mono_type ().
36674         * metadata.c, pedump.c: some endian fixes.
36676 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36678         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
36679         * metadata.c: fix small problem introduced with the latest commit.
36681 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
36683         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
36684         We don't need a MonoMetadata pointer anymore to compare signatures in
36685         mono_metadata_signature_equal (), update callers.
36686         Reduced memory usage an number of allocations for MonoMethodHeader and
36687         MonoMethodSignature.
36689 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
36691         * metadata.c: added compare for szarray.
36693 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
36695         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
36696         and add a couple more types to it and mono_defaults. Give an hint on
36697         classes that need implementing in our corlib and are referenced
36698         in mscorlib.
36700 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
36702         * class.h, class.c: keep track if a class is also an Enum.
36703         * loader.c: Implement a couple more types for use in libffi
36704         marshalling. Gives better diagnostics when failing to dlopen
36705         a library. Set method->klass for P/Invoke methods, too.
36707 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
36709         * class.c, class.h: add a MonoType this_arg to MonoClass that
36710         represents a pointer to an object of the class' type that
36711         can be used by the interpreter and later the type cache.
36712         Add best guess alignment info for valuetype objects.
36714 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
36716         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
36717         into MonoType: one less level of indirection and allocation and
36718         simplifies quite a bit of code. Added cache for MonoTypes that are
36719         used frequently, so that we don't need to allocate them all the time.
36721 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
36723         * class.c (mono_class_create_from_typedef): System.Enum is also a
36724         value type, although it does not derive from System.ValueType
36725         (maybe a bug in the ms compiler?)
36727         * metadata.c (mono_type_size): return the right size for value types
36729         * loader.c (mono_get_method): only initialize method header if not abstract
36731         * class.c (mono_class_from_mono_type): use mono_default values. 
36733 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
36735         * *: use MonoClass pointers instead of <type_tokens>
36736         
36737         * class.h: new flag: metadata_inited.
36739         * class.c (mono_class_metadata_init): impl.
36740         (mono_class_instance_size): impl.
36741         (mono_class_data_size): impl.
36743 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36745         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
36746         MonoClass now has the name and name_space fields. 
36747         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
36748         mono_get_method () takes and optional MonoClass as argument.
36749         Removed mono_typedef_from_name() and added mono_class_token_from_name()
36750         instead that takes advantage of a map from class names to typedef
36751         tokens in MonoImage.
36753 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
36755         * metadata.c: zero is not a valid alignment boundary.
36756         Merge MONO_TYPE_VOID in default decoding code.
36758 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
36760         * image.h: merged MonoMetadata into MonoImage
36762         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
36763         identify the type of elements.
36765 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
36767         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
36768         * cil-coff.h: split MonoMSDOSHeader and add size info.
36769         * image.c: add some consistency checks.
36770         * metadata.c: fix row size computation: one programmer
36771         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
36772         add explanation for the locator routine.
36773         Fix decoding of size in method header.
36774         
36775 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
36777         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
36778         (g_concat_dir_and_file): Bring g_concat_dir_and_file
36779         function from gnome-libs.  This uses the right path separator
36780         based on the OS, and also works around a bug in some systems where
36781         a double slash is not allowed. 
36782         (default_assembly_name_resolver): Use g_concat_dir_and_file
36783         (mono_assembly_open): ditto.
36785 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
36787         * metadata.c (mono_metadata_signature_equal): impl.
36789         * *: void is now a realy MonoType (instead of using NULL)
36790         
36791         * metadata.c (do_mono_metadata_parse_type): use
36792         mono_metadata_parse_type to parse void value.
36794 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
36796         * metadata.c, metadata.h: in the signature and method header store
36797         only the space required for holding the loca vars and incoming arguments.
36799 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
36801         * metadata.c (do_mono_metadata_parse_type): treat void like any
36802         other type (instead of assigning NULL);
36804 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
36806         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
36808 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
36810         * image.c (do_mono_image_open): added a cache for arrays.
36812 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36814         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
36815         decode a single column from a row in a metadata table and changes
36816         to take advantage of it in the typedef locator (gives a nice speed up).
36817         Store offset info for function params.
36819 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
36821         * image.h (MONO_IMAGE_IS_CORLIB): removed 
36823 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
36825         * assembly.c: how could mono_assembly_close () had ever worked?
36826         * metadata.c, metadata.h: provide offset info for local vars.
36827         Implement mono_type_size () to take care of alignment as well
36828         as size (it was mono_field_type_size in cli/class.c before).
36830 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36832         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36834         * assembly.h (CORLIB_NAME): set to corlib.dll
36836         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36838 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36840         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
36841         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
36842         tokentype.h: massive namespace cleanup.
36844 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36846         * metadata.h, metadata.c: decode exception clauses when parsing method header.
36848 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
36850         * metadata.c (mono_metadata_free_type): added check for type !=
36851         NULL (void) before calling mono_metadata_free_type()
36853 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
36855         * metadata.h, row_indexes.h: added header with enumerations to use
36856         to index in the columns from tables in metadata and to decode coded
36857         tokens: we should start using this instead of embedding magic numbers
36858         all over the code.
36860 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
36862         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
36863         Move metadata_t info from cli_image_info_t to MonoImage, where
36864         it's easily accessible. Changed all the uses accordingly.
36865         Added the method and class caches to MonoImage.
36866         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
36867         and mono_metadata_decode_value () signature to be more consistent
36868         with the other parse functions (and simplify code). Taken advantage
36869         of zero-length array allocation with GCC. Removed reduntant (and
36870         wrong) MonoFieldType struct and use MonoParam instead. Changed
36871         mono_metadata_parse_field_type () to use common code for parsing.
36872         Added mono_metadata_typedef_from_field () and
36873         mono_metadata_typedef_from_method () to lookup a typedef index from a
36874         field or method token.
36875         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
36877 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
36879         * metadata.c (mono_metadata_parse_field_type): Implement. 
36880         (do_mono_metadata_parse_type): Split engine from
36881         mono_metadata_parse_type, so that we can create smaller structures
36882         for things that just have one pointer to the MonoType (look at
36883         the MonoFieldType)
36885 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
36887         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
36888         as Jan Gray found out, it is incorrect. 
36890 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
36892         * assembly.c: Implement asssembly loading.  This loads an image
36893         and loads all the referenced assemblies.  Come to think of it, we
36894         could always do lazy loading of the assemblies. 
36896         * image.c (mono_image_open): Keep loaded images in a hashtable.
36898         * image.h (MonoImage): Add reference count.
36900 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
36902         * assembly.c (mono_assembly_open): Keep track of the file name in
36903         case the assembly has no ASSEMBLY table.
36905         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
36906         from get.c here.
36908 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
36910         * metadata.c, metadata.h: decode local vars in method header
36911         parse function. Change callers accordingly.
36913 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
36915         * metadata.h, cil-coff.h: protect against multiple inclusion.
36916         Added some new structures to hold information decoded from metadata:
36917         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
36918         and relevant decoding/free functions.
36919         * metadata.c: implement decoding functions. Add warning for out of bounds
36920         index in mono_metadata_locate(). Implement mono_get_method () to retreive
36921         all the info about a method signature and invocation. Remove check on
36922         uninitialized local var in parse_mh() and fix memory leak.
36924 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
36926         * metadata.h: More macros.
36928         * tokentype.h: New file.
36930 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
36932         * assembly.c: added a consistency check and initialize
36933         some structures with g_new0().
36934         * metadata.c: fixed a couple more bugs in table size computation
36935         and add other checks for out-of bound access to metadata.
36937 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
36939         * metatada.c: fix bugs computing table sizes. Spew a
36940         warning when index in string heap is out of bounds.
36942 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
36944         * metadata.h: Add a couple of macros to manipulate tokens. 
36946 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36948         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
36949         cli_section_tables).
36951 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
36953         * metadata.c (mono_metadata_user_string): New function, provides
36954         access to the UserString heap. 
36956 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
36958         * metadata.c: Add inline documentation.
36960 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
36962         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
36963         files. 
36965 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
36967         * typeattr.h: New file, TypeAttribute flags. 
36969 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
36971         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
36972         mono_assembly_ensure_section): Section loading code.
36973         (load_section_tables): Load the sections.
36975         * mono/metadata/metadata.c (mono_metadata_locate_token,
36976         mono_metadata_locate): Functions to locate the information
36977         definition given a token or a table and an index.
36978         (mono_metadata_compute_table_bases): New.
36979         (compute_size): New function to compute the sizes of the various
36980         tables.
36982         * mono/metadata/metadata.h: Finish listing the different index
36983         types. 
36985         * mono/metadata/pedump.c: Improve to dump new information.
36987 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
36989         * mono/metadata/metadata.c: Entered all the tables matching
36990         Beta2. 
36992         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2