2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git] / mono / metadata / ChangeLog
blob0795fd3c56f627ddddf5be481e496eb92468b97e
1 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3         * loader.c (inflate_generic_signature): Add _checked variant
4         and move this function to use it.
6 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
8         * class.c (mono_class_setup_vtable_general): Use error checking
9         version of mono_class_inflate_generic_method_full.
11         Fixes #596975.
13 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
15         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
16         error handling passing MonoError around.
18         Fixes #560336.
20 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
22         * socket-io.c: make GetHostByName ("") work on windows.
23         Fixes bug #456723.
25 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
27         * object-internals.h:
28         * threads.c: use a spin lock when accesing the per-thread appdomain
29         list.
31 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
33         * threads.c: no need to take the threads lock in push/pop appdomain.
35 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
37         * reflection.c (_mono_reflection_parse_type): MS supports
38         non-assembly-qualified types in a generic type parameter list
39         when enclosed in '[]' (which signals that they should be a fqn).
41         This breaks ECMA specs for how type names are encoded in cattr
42         blobs but F# does it.
44         Fixes #576342.
46 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
48         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
49         for instance methods/ctors.
51         Fixes #422113.
53 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
55         * reflection.c: Use the new verifier support for checking
56         custom attributes.
58         Fixes #595306.
60 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
62         * metadata-verify.c: Implement structural verification
63         of custom attributes. This check requires access to the
64         loader since to resolve the size of an enum we have to
65         look it up.
66         We don't check if named argumenments are encoded in a
67         compatible fashion to their underlying field/prop.
68         Maybe we should?
70         * verify-internals.h: Add two new cattr verification API.
72 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
74         * metadata-verify.c (decode_signature_header): Fix signature.
76 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
78         * verify.c (mono_verifier_is_enabled_for_method): Handle
79         assembly less images.
81         * verify.c (mono_verifier_is_class_full_trust): Ditto.
83 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
85         * loader.c (mono_method_signature_checked): Properly
86         init MonoError.
88         * loader.c (mono_method_signature): It's the calee
89         resposibility to init the error object.
91 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
93         * metadata-verify.c (decode_signature_header): Do proper
94         overflow checking.
96 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
98         * reflection.c: maintain the invariants required by
99         mono_class_layout_fields() also in typebuilder_setup_fields ().
101 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
103         * security-core-clr.c: Call mono_class_setup_methods in 
104         get_default_ctor before checking klass->methods. Fix typo in
105         comment
107 2010-04-10  Jb Evain  <jbevain@novell.com>
109         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
110         add .net 4.0 RTM version.
112 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
114         * reflection.c (resolve_object): Properly inflate generic
115         methods when a context is supplied.
117         Fixes #591226.
119 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
121         * verify.c (mono_method_verify): A switch op don't empty
122         the stack for the next one. Fixes a bug when running fsi
123         under --verify-all.
125 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
127         * metadata-verify.c (is_valid_standalonesig_blob): Accept
128         fields as valid standalone sig too. F# does generate them.
130         * metadata-verify.c (verify_typedef_table_full): Ignore
131         what <module> extends.
133 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
135         * verify.c (do_invoke_method): It's ok to do use call with
136         virtual, non-final methods if their class is sealed.
138 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
140         * icall.c (ves_icall_MonoField_GetValueInternal): This function
141         is a near identical copy of mono_field_get_value_object. So simply
142         call it.
144         * object.c (mono_field_get_value_object): Handle literal fields
145         on open generic classes.
147         Fixes #594942.
149 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
151         * reflection.c (mono_reflection_create_runtime_class): Setup
152         parent/supertype information again since it can be changed
153         without notice.
155 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
157         * verify.c (verify_type_compatibility_full): Properly handle
158         stores between arrays of primitives.
160         Fixes the verifier side of #555950.
162 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
164         class.c (mono_bounded_array_class_get): Properly init
165         cast_class to take the fact that uint[] and int[] can be
166         casted between each other.
168         Fixes #555950.
170 2010-04-07  Geoff Norton  <gnorton@novell.com>
172         * domain.c: Avoid a deadlock on osx.  Fixes #565765
174 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
176         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
177         builders. Fixes #594464.
179 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
181         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
182         waiting for all threads to suspend, as those threads can't be suspended.
184 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
186         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
187         to avoid crashes on newly created threads.
189 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
191         * file-io.c: reset the MonoIOStat structure in case of error.
192         Fixes bug #582667.
194 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
196         * class.c (print_implemented_interfaces): Print proper type name.
198         * class.c (mono_class_setup_vtable): Don't try that hard to produce
199         the override map for generic instances since it later ignored.
201         * class.c (mono_class_implement_interface_slow): Don't break for
202         dynamic generic instances.
204         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
206         * reflection.c (mono_reflection_method_get_handle): New method that
207         resolves a method handle.
209         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
210         case when we override methods from a dynamic generic instance interface.
212         Fixes #575941.
214 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
216         * threadpool.c: don't attempt to close the pipe when it has not been
217         created.
219 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
221         * threadpool.c: if there are no waiting threads, try to start a new
222         one. This fixes the not-so-random hangs in System.ServiceModel tests.
223         No need to use InterlockedCompareExchange to read volatile variables.
225 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
227         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
228         and reference types that point to the same class.
230         Fixes #565598.
232 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
234         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
235         when verifying compatibility between a generic instance and a generic
236         parameter.
238         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
240         * verify.c (stack_slot_stack_type_full_name): Improve verification type
241         name.
243         Fixes #587849.
245 2010-04-04  Mark Probst  <mark.probst@gmail.com>
247         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
249 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
251         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
253 2010-04-03  Marek Habersack  <mhabersack@novell.com>
255         * process.c: when cross-compiling with MinGW, force GetProcessId
256         lookup using GetProcAddress.
258 2010-04-02  Mark Probst  <mark.probst@gmail.com>
260         * sgen-gc.c: parse_environment_string_extract_number() must be
261         static.
263 2010-04-02  Mark Probst  <mark.probst@gmail.com>
265         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
266         gray_object_dequeue(), to make sure they're inlined.
268 2010-04-02  Mark Probst  <mark.probst@gmail.com>
270         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
271         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
273 2010-04-02  Jb Evain  <jbevain@novell.com>
275         * exception.c: remove dead code.
277 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
279         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
280         with mono-gc.h.
282 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
284         * sgen-gc.c: Make the nursery size adjustable by the
285         MONO_GC_PARAMS environment variable.
287         Code is contributed under MIT/X11 license.
289 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
291         * threadpool.c: threadpool threads wait is alertable.
292         Fixes bug #592964.
293         Reduced the stack size of the *poll_wait thread.
295 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
297         * exception.c|metadata-internals.h: Add new mono_get_exception_
298         field_access_msg and mono_get_exception_method_access_msg 
299         functions that accept a const char* parameter to provide more 
300         details when the exception is thrown.
301         * security-core-clr.c|h: Rework code to allow logging exceptions
302         (export MONO_LOG_MASK="security") and to supply more details in
303         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
304         mono_security_core_clr_is_field_access_allowed and 
305         mono_security_core_clr_is_call_allowed to return an exception,
306         with messages and logging, that can be emitted by method-to-ir.c
308 2010-04-01  Mark Probst  <mark.probst@gmail.com>
310         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
311         pinned object.
313 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
315         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
316         the assembly name is not well formed utf8. Fixes #567882.
318 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
320         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
321         the generic parameters from the builder. Fixes #473298.
323 2010-03-31  Miguel de Icaza  <miguel@novell.com>
325         * object.c (mono_class_proxy_vtable): Eliminate warning. 
327         * marshal.c (emit_marshal_boolean): Eliminate possible
328         uninitialized local warning. 
330 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
332         * class.c (mono_class_init): Postpone coreclr inheritance check
333         until the end of the initialization (so we can check up the 
334         default ctor manually for the core-clr inheritance rules).
335         * security-core-clr.c: Add the missing (undocumented) checks on
336         default constructors when verifying inheritance rules.
338 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
340         * domain-internals.h (MonoJitExceptionInfo): Add new field
341         handler_end to the data union. To be used to point the end
342         of a finally block.
344 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
346         * reflection.c: Add support for new v4 type
347         System.Reflection.MonoModule that is the concrete version
348         of Module which is abstract unver v4.
350 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
352         * class.c (mono_class_init): Don't set class failure after
353         inited = 1 is set. It must be done before.
355 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
357         * mono-config.c: Add support for OS "haiku"
358         * ChangeLog: Fix UTF-8 encoding
360         Code is contributed under MIT/X11 license.
362 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
364         * console-unix.c: fixed include logic for sys/ioctl.h.
366 2010-03-30  Mark Probst  <mark.probst@gmail.com>
368         * threads.c: Fix bitmap generation for TLS marking on 64 bit
369         systems.
371 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
373         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
374         unfinished/broken typebuilders.
376 2010-03-29  Mark Probst  <mark.probst@gmail.com>
378         * sgen-gc.c: Use the same heuristic for the LOS target that we use
379         for the minor section allowance.
381 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
383         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
384         "NoOptimization".
386 2010-03-29  Mark Probst  <mark.probst@gmail.com>
388         * sgen-gc.c: Count bytes allocated with heavy statistics.
390 2010-03-29  Mark Probst  <mark.probst@gmail.com>
392         * sgen-gc.c: More detailed time statistics.
394 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
396         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
397         fix the user defined mark interface to pass a pointer
398         to the object location and not the object itself.
400 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
402         * reflection.c (mono_method_body_get_object): Release
403         the method header before the call to CACHE_OBJECT since
404         this is a macro that returns.
406 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
408         * class.c (inflate_generic_type): mono_metadata_type_dup
409         already dupes array information, the g_memdup was just
410         leaking memory.
412 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
414         * verify.c: Add stack_peek function. Fix CEE_DUP
415         to not read from invalid memory if push did expand
416         the stack.
418 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
420         * verify.c: Remove old table verification code that has
421         been superseeded by the new metadata verifier.
423         * verify.h: Remove mono_image_verify_tables from the public
424         API.
426         * pedump.c: Fix for removed bits.
428 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
430         * verify.c: Allocate stack slows lazily to reduce stack usage
431         in case of methods with huge stacks. Reduces memory consumption
432         for mcs yyparse from 459Mb to 1.8Mb.
434 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
436         * threadpool.c: don't try executing items from domains being
437         unloaded. Fixes appdomain-async-invoke test.
439 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
441         * threadpool.c: spin while the threadpool initializes.
442         * mono-wsq.c: if the WSQ has not been initialized or has been shut
443         down, don't do anything.
445 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
447         * threads.c (mono_thread_create_internal): Set the GC type of the
448         threads_starting_up hash table.
450 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
452         * threadpool.c: reset 'state' to avoid returning non-null when the
453         event type is not found.
455 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
457         * sgen-gc.c: make copy_object () take the address of the
458         slot holding the reference. This allows saving memory stores
459         when not needed and it allows keeping track of oldspace->nursery
460         references for the card table code.
462 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
464         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
466         Code is contributed under MIT/X11 license.
468 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
470         * object.c, threads.c, threads-types.h, threads.h: make the
471         managed thread local storage references precisely tracked.
473 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
475         * threadpool.[ch]: reworked the threadpool:
476                 -Threadpool threads use a work-stealing queue. Adding a work
477                 item from a threadpool thread will queue it in the thread
478                 local queue without locking (in most cases).
479                 -epoll events are coalesced before being added to the IO
480                 queue.
481                 -Dynamically change the number of active threads
482                 -Changed the global queue to be more GC friendly
484         * class-internals.h: add 2 new performance counters for the number of
485         threads in the threadpool and the IO threadpool.
487         * object-internals.h: new field in MonoAsyncResult.
488         * icall-def.h: new internal call for queueing work items.
490         * Makefile.am: add 2 new files.
492         * appdomain.c: bump up corlib version.
494         * mono-wsq.[ch]: an implementation of a work-stealing queue.
496         * mono-perfcounters-def.h:
497         * mono-perfcounters.c: added 2 new performance counters.
499 2010-03-26  Mark Probst  <mark.probst@gmail.com>
501         * sgen-gc.c: More FIXME/TODO updates.
503 2010-03-25  Mark Probst  <mark.probst@gmail.com>
505         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
506         function mono_gc_invoke_with_gc_lock() which invokes a function
507         with the guarantee that no collection will occur during its execution.
509 2010-03-25  Mark Probst  <mark.probst@gmail.com>
511         * sgen-gc.c: Update a few comments.
513 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
515         * reflection.c: Add support for new v4 type
516         System.Reflection.MonoAssembly that is the concrete version
517         of Assembly which is abstract unver v4.
519 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
521         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
522         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
524         Expose a few macros that are needed for SR but not SRE to the
525         world (previous inside the SRE ifdef)
527 2010-03-24  Mark Probst  <mark.probst@gmail.com>
529         * sgen-gc.c (gc_register_current_thread): We need
530         stack_start_limit as well in the non-attribute pthread case.
532 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
534         * threads.c: Fix windows build.
536 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
538         * thread-types.h: Add mono_thread_resume_interruption.
540         * threads.c: Add mono_thread_resume_interruption, this
541         function should be called after the last protected handler
542         found at interruption time has finished.
544 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
546         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
547         Check MonoInternalThread's ::state instead of ::abort_exc
548         since the later can be lazily created.
550         This is specially problematic when running a finally block
551         under AbortRequested state. ResetAbort must work, but the
552         abort_exc object has not been created because interruption
553         has not began.
555 2010-03-22  Geoff Norton  <gnorton@novell.com>
557         * locales.c: Its possible for CFStringGetCStringPtr
558         to return null and not convert encodings.  Use
559         CFStringGetCString instead.
561 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
563         * class-internals.h, class.c, object.c: introduce compressed
564         interface bitmaps (for now only under small config): this saves
565         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
566         startups.
568 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
570         * mono-debug.c: don't try to get the method header, it causes a
571         deadlock and it is not used for anything anymore.
573 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
575         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
576         broken by the last change.
578 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
580         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
581         SOCK_RDM.
582         
583         Code is contributed under MIT/X11 license.
585 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
587         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
588         nursery.
590         Code is contributed under MIT/X11 license.
592 2010-03-19  Martin Baulig  <martin@ximian.com>
594         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
595         dummy field, containing an empty string.
596         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
599 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
601         * class.c: setup_interface_offsets() refactor to not call
602         mono_class_get_implemented_interfaces () more times than needed and
603         to reduce the runtime memory requirements to be O(num_interfaces)
604         instead of O(max_interface_id).
606 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
608         * mono-mlist.[ch]: add mono_mlist_set_next ().
610 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
612         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
613         associated changes to support holes in the protected range of a
614         try block.
616         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
617         retrieves the holes table from a given MonoJitInfo.
619 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
621         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
622         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
623         hide the contents of the MonoString and MonoArray structs from the
624         public API. Change the accessor macros to accessors functions where
625         needed. Adjusted the array API to allow for pointer-sized lengths and
626         starting positions, so 64 bit arrays can be optionally provided in an
627         API compatible way if needed on 64 bit systems.
629 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
631         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
632         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
634 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
636         * class-internals.h: remove the method header from MonoMethod since
637         from now on it will be transient. We have a header pointer for method
638         wrappers, since in that case we need to keep track of it. For this
639         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
640         structs now. The same happens with MonoMethodInflated.
641         * class.c: reset the sre_method flag for inflated method structures:
642         this makes the code that cares look at the header in the MonoMethodInflated
643         structure.
644         * loader.c: lookup the method header in the appropriate field now that
645         it is removed from MonoMethod.
646         * metadata-internals.h: add a flag to the method header to know if it
647         can be freed inside mono_metadata_free_mh ().
648         * method-builder.c: updates after moving the header field from
649         MonoMethod to MonoMethodWrapper.
650         * reflection.c: MonoMethods generated from Reflection.Emit use
651         MonoMethodWrapper structs if they need a method header now (later take
652         advantage of this and remove all the current unsafe uses of method_aux_hash).
653         * metadata.c: make method header parsing not leak when verification
654         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
655         These changes save a few hundred KB of runtime memory in a mcs
656         bootstrap or a monodevelop startup.
658 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
660         * verify.c: Improve error message.
662 2010-03-12  Jb Evain  <jbevain@novell.com>
664         * reflection.c (add_exported_type): populate the exported
665         table with the type's nested type.
667 2010-03-10  Mark Probst  <mark.probst@gmail.com>
669         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
670         can't read parentheses.
672 2010-03-10  Mark Probst  <mark.probst@gmail.com>
674         * threads.c (thread_cleanup): Add a guard to dereferencing
675         "thread" to avoid an unlikely race condition.
677 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
679         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
680         instead of an empty string.
682 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
684         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
685         convert to a boolean, recent gcc versions compile this differently.
687 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
689        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
690        inlined.
692 2010-03-09  Mark Probst  <mark.probst@gmail.com>
694         * sgen-gc.c (STRING_SIZE): Off by one.
696 2010-03-09  Mark Probst  <mark.probst@gmail.com>
698         * sgen-archdep.h: Fix the signal context register access for
699         AMD64.
701 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
703         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
705 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
707         * verify.c: Store the initial basic block returned by mono_basic_block_split
708         so we can release the whole list and not just the first one.
710 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
712         * verify.c, debug-helpers.c, profiler.c, loader.c,
713         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
714         MonoMethodHeader a transient entity.
716 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
718         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
719         uncontrolled growth of the gray stack.
721         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
722         added items are removed first, improving cache locality. Avoid freeing queue
723         segments in the fast path, use the list of segments as the free list, truncate
724         it to its max size at the start of collection.
726 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
728         * metadata-internals.h: more memory savings, both with small config and without.
731 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
733         * appdomain.c, domain-internals.h, domain.c, object.c:
734         make class_vtable_hash into an array to reduce memory usage.
736 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
738         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
739         object-internals.h, object.c, reflection.c, threadpool.c:
740         reduce resource usage when the small config is selected.
741         In particular, up to 64K of methods/fields/properties/events
742         are allowed and "other" methods in events are ignored.
744 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
746         * threads.c: reduce resource usage when compiled for a small config.
748 2010-03-05  Mark Probst  <mark.probst@gmail.com>
750         * sgen-gc.c: Also collect number of degraded-alloced objects with
751         heavy statistics.
753 2010-03-04  Geoff Norton  <gnorton@novell.com>
755         * assembly.c: Only support OSX bundling if the bundle is 
756         actually detectable.
758 2010-03-04  Geoff Norton  <gnorton@novell.com>
760         * loader.c: The marshal specs are freed at the end of the call
761         but it explicitly frees the strings as well as the container,
762         so we need to dup them too to avoid referencing free'd memory.
764 2010-03-04  Geoff Norton  <gnorton@novell.com>
766         * icall-def.h:
767         * icall.c: Add a new private internal icall to construct
768         an object from its type without running the ctor.
770 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
772         * profiler.c: allow multiple profiler engines to be loaded
773         at the same time.
775 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
777         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
778         profiler event to track object moves.
780 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
782         * object.c, profiler.c, profiler.h, string-icalls.c:
783         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
785 2010-03-03  Miguel de Icaza  <miguel@novell.com>
787         * decimal.c (mono_double2decimal): Add support for reducing the
788         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
789         expected.
791 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
793         * icall-def.h:
794         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
796 2010-03-03  Marek Habersack  <mhabersack@novell.com>
798         * mono-config.c (mono_config_parse_assembly_bindings): added -
799         parses assembly binding redirections from appdomain's config
800         file.
802         * metadata-internals.h: added definition of a new function -
803         mono_config_parse_assembly_bindings - to support parsing assembly
804         binding redirections defined in appdomain's config file.
806         * domain-internals.h: added two new fields to _MonoDomain - a list
807         of assembly bindings and a flag to parse the config file only
808         once.
810         * assembly.c (assembly_binding_maps_name): empty culture name and
811         NULL culture name are considered equal.
812         (mono_assembly_apply_binding): added support for domain specific
813         assembly binding redirections, read from the appdomain's
814         configuration file. Fixes bug #580185
816 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
818         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
819         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
820         support.
822 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
824         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
825         from this function. The new function receive the parent token instead of a type.
827         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
828         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
829         typebuilders. This make it possible to properly encode generic type builders since
830         their unmanaged type don't have generics data while unfinished.
832         Fixes #583655.
834 2010-03-02  Mark Probst  <mark.probst@gmail.com>
836         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
837         writing binary log files (can be enabled by #define'ing
838         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
839         bugs in longer running programs.
841 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
843         * metadata.c: added some API documentation.
845 2010-03-01  Robert Jordan  <robertj@gmx.net>
847         * filewatcher.h: Include glib.h to fix the MSVC build.
849 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
851         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
852         a GC handle instead. This is a bit slower to access, but avoids burdening the
853         GC with 100s of individual roots.
855         * reflection.c (mono_class_get_ref_info):
856         (mono_class_set_ref_info):
857         (mono_class_free_ref_info): New internal helper fuctions.
859         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
860         of accessing klass->reflection_info directly.
862         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
863         words.
865         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
866         the previous array.
868 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
870         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
871         needs an indirection.
873 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
875         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
876         so all generic sharing code is in one place.
878         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
879         we don't call setup_interface_offsets () for unfinished types.
881 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
883         * class.c (mono_class_generic_sharing_enabled): Move this to
884         generic-sharing.c.
886         * image.c: Add an unload hook which is called before an image is unloaded.
888         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
889         metadata.c having to depend on generic sharing.
891 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
893         * class.c: reduce size of ridiculously large cache.
895 2010-02-26  Martin Baulig  <martin@ximian.com>
897         * mono-debug.h
898         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
900         * threads.c (mono_thread_internal_reset_abort): New method; resets
901         the abort, but doesn't throw any exception if no abort was requested.
903 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
905         * class.c (get_implicit_generic_array_interfaces): Call
906         mono_class_setup_interface_offsets () before accessing
907         eclass->interface_offsets_count. This only shows up on platforms without IMT for
908         some reason.
910 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
912         * environment.c, environment.h, icall.c: make the GetOSVersionString()
913         icall internal.
915 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
917         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
918         direct access to the MonoType fields.
920 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
922         * threads.h: Move some internal functions which were added to this header by
923         mistake to threads-types.h.
925         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
927 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
929         * class-internals.h, class.h, object.h: make MonoRemoteClass
930         and mono_remote_class() internal.
932 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
934         * metadata-internals.h, class-internals.h, metadata.h: make the
935         MonoType guts internal as well.
937 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
939         * reflection.h: the MonoTypeNameParse guts are internal now.
940         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
941         are internal now, provide accessors as needed.
942         * metadata.h, metadata-internals.h: the MonoMethodSignature
943         guts are internal now.
944         * Makefile.am: mempool.h is an internal header now.
945         * *.h, *.c: remove glib.h usage from the public headers.
947 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
949         * culture-info-table.h : regenerated.
951 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
953         * metadata.c: Add mono_method_get_header_summary which returns minimal
954         information about the header of a method. This is the information used
955         by the inline oracle to reject methods.
957         This method doesn't decode local variables and doesn't cache it's result,
958         so it should cause a minimal reduction in memory usage.
960         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
961         mono_method_get_header_summary.
963 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
965         * threads.c (mono_thread_exit): Make sure that the main thread is
966         non-null before dereferencing it.
968 2010-02-21  Geoff Norton  <gnorton@novell.com>
970         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
971         locale.
972         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
973         before falling back to the posix lookup.
975 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
977         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
978         the DONT_MANAGE flag set.
980 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
982         * domain.c: Remove old v1 version strings. Let the runtime
983         default to 2.0 instead of failing because it can't find a
984         working 1.0 instalation.
986 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
988         * domain.c: Add v4 RC version string.
990 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
992         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
993         of overflow checking function.
995 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
997         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
998         generic methods.
1000         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1001         cases for ParameterInfo.
1003         Fixes #579493.
1005 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1007         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1008         have has_cctor set. Fixes #575946.
1010 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1012         * appdomain.c: display a warning if the parsing the config file
1013         produces any error.
1014         Skip the BOM in UTF-8 files.
1015         Copy the AppDomainSetup before setting the privateBinPath so that the
1016         correct configuration file is read.
1018 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1020         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1021         vtable trampoline per vtable slot index. Not used yet.
1023 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1025         * icall-def.h:
1026         * icall.c: add internal call that returns the system page size.
1028 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1030         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1031         'int' for system classes.
1033 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1035         * icall.c, icall-def.h: new icall to check for sufficient
1036         stack space.
1038 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1040         * reflection.c (ensure_complete_type): Check that reflection_info
1041         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1043 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1045         * attrdefs.h:
1046         * tabledefs.h: Add NoOptimization flag.
1048 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1050         * sgen-gc.c: Don't consider it a missing remset if the target
1051         object is pinned - we might have done the store but not added the
1052         remset yet.
1054 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1056         * sgen-gc.c: When checking for missing remsets, don't assert on
1057         the first one, but print them all and then assert.
1059 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1061         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1063 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1065         * console-unix.c: On OSX Control-Y is assigned to
1066         VDSUSP (non-Posix), the
1067         suspend-program-next-time-it-tries-to-read-input command (this is
1068         different than C-z, which suspends immediately).
1070         Do the same thing that bash does and ignore this setting,
1071         making our repl/getline support pasting.
1073 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1075         * sgen-gc.c: Simple plausibility check for scan_starts.
1077 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1079         * sgen-gc.c: Round up when calculating the number of scan starts.
1081 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1083         * reflection.c: Export mono_get_object_from_blob.
1085         * object-internals.h: Ditto.
1087         * icall.c: New icall property_info_get_default_value to get the default
1088         value of a property. Since using this is not common, no caching is done.
1090         * icall-def.h: Add new icall.
1092 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1094         * class.c: Add mono_class_get_property_default_value.
1096         * class-internal.h: Export mono_class_get_property_default_value.
1098 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1100         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1102 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1104         * sgen-gc.c: introduced critical regions to allow some lockless
1105         operations and increase scalability.
1107 2010-02-10  Geoff Norton  <gnorton@novell.com>
1109         * reflection.c: Support building with DISABLE_REFLECTION
1111 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1113         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1114         Closes bug #566057.
1116         * exception.c: fix typo in comment.
1118 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1120         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1121         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1123         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1125         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1126         the internal API.
1128         Fixes #574434.
1130 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1132         * threads.c: Removed two assertions that were too strict.  Added a
1133         clarifying comment.  Fixes #577090.
1135 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1137         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1138         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1140         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1142         * verify.c (mono_type_get_stack_name): Fix a warning.
1144 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1146         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1147         mono_marshal_wrapper_info_from_wrapper.
1149         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1150         mono_marshal_method_set_wrapper_data, and export.
1152         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1153         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1154         by calling mono_marshal_get_wrapper_info ().
1156         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1157         small objects which does no size checks.
1159 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1161         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1163 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1165         * verify.c (mono_method_verify): Use the new basic block formation pass
1166         to avoid verifying dead basic blocks. This is the same behavior as the
1167         runtime MS verifier.
1169 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1171         * mono-basic-block.c:
1172         * mono-basic-block.h: New implementation of a basic block formation pass.
1173         The formation pass does static liveness analysis as well to detect dead
1174         basic blocks.
1176 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1178         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1179         'this' argument in icalls.
1181 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1183         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1185 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1187         * object.c, domain.c: When using SGen, we must register
1188         vtable->type as a root if it's not a MonoType, because then it
1189         wasn't pin-alloced.
1191 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1193         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1194         at the start of nursery collections, because we might have had
1195         degraded allocations which changed next_data.
1197 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1199         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1200         custom attr so this function works in cross-compiling mode.
1202 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1204         * class.c (make_generic_param_class): Initialize interface offsets since we
1205         set klass->inited. Fixes #574819.
1207 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1209         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1210         calling the JIT domain cleanup hook.
1212 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1214         * pedump.c (main): Properly set the verifier mode when running the metadata
1215         verifier.
1217 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1219         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1220         overlapping fields now that we're called before has_references is set.
1222         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1223         method. Otherwise all sort of weird stuff happens.
1225 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1227         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1228         Fixes #572874.
1230 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1232         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1233         Fixes #573322.
1235 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1237         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1238         pin_staging_area_index is greater than 0.
1240 2010-01-22 Miguel de Icaza (miguel@novell.com)
1242         * loader.c: Since we do nothing with the error returned, pass NULL
1243         to ignore the error.
1245 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1247         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1248         happened before starting to encode the actual fields. This avoid ciclic
1249         dependencies and eventual crashes.
1251         Fixes #572660.
1253 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1255         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1256         atomic and remove the half-constructed hack in SGen.
1258 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1260         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1261         has a recursive reference to itself.
1263         Fixes #571863.
1265 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1267         * loader.c (mono_method_signature): Fix error message.
1269 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1271         * sgen-gc.c: Reuse to-space sections between nursery collections.
1273 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1275         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1276         from the current assembly or mscorlib. Fixes bug #322957.
1278 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1280         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1281         get_wrapper_target_class.
1283 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1285         * sgen-gc.c: Fix warnings.
1287 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1289         * verify.c (store_local): Better error message.
1291 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1293         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1294         arguments.
1296 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1298         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1299         function is generics variance aware.
1301 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1303         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1304         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1306 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1308         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1309           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1311         Code is contributed under MIT/X11 license.
1313 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1315         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1316         on a GTD.
1318 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1320         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1321         return a point to a wrapper specific info structure describing the wrapper.
1322         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1324 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1326         * sgen-gc.c: Make minor collection section allowance adaptive,
1327         depending on the amount of memory reclaimed in the last major
1328         collection.  If more memory was reclaimed (i.e. more garbage
1329         produced), do the next collection earlier.
1331 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1333         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1334         to itself.
1336         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1337         the token as parameter.
1339         * verify-internals.h: Ditto.
1341         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1343         Fixes #571460.
1345 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1347         * sgen-gc.c: Make store_remset_buffer_index long.
1349 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1351         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1353         Fixes #569579.
1355 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1357         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1358         off precise marking if it is available.
1359         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1361 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1363         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1365         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1366         pinned objects.
1368         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1369         to the array allocator.
1371 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1373         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1374         result of mono_compile_method (), it already includes an ftnptr.
1376 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1378         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1380 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1382         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1383         hash value which doesn't depend on glib/eglib versions.
1384         (mono_metadata_type_hash): Use it.
1386         * object.c (mono_method_get_imt_slot): Ditto.
1388 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1390         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1391         independently of the GTD.
1393         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1395         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1396         to the upper limit since instance_size includes this amount.
1398         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1400         Fixes #569544.
1402 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1404         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1405         with static methods.
1407         * object.c (build_imt_slots): Avoid asserting when static methods are
1408         encountered in an interface.
1410 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1412         * sgen-gc.c (to_space_expand): Fix assertion.
1414 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1416         * string-icalls.c: missing declaration fixes.
1417         * sgen-gc.c: portability fixes.
1419 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1421         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1423         * class.c:
1424         * cominterop.c:
1425         * icall.c:
1426         * object.c: 
1427         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1429 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1431         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1432         it can fail loading the type.
1434         * class.c: Add mono_class_inflate_generic_class_checked.
1436         * class.c:
1437         * verify.c:
1438         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1440 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1442         * loader.c (mono_method_signature_checked): New internal function taking an
1443         MonoError argument.
1445         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1446         Fixes build on rh 7.3.
1448 2010-01-10  Aaron Bockover  <abockover@novell.com>
1450         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1451         at runtime in the same way as on Windows, which yields a relocatable
1452         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1453         of the running mono process.
1455         On TARGET_ARM, fallback () will always be executed.
1457 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1459         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1461 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1463         * class.c (mono_class_is_assignable_from_slow): Support variant
1464         generic delegates.
1466         * class.c (mono_class_implement_interface_slow): Support types with
1467         variant generic arguments.
1469 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1471         * verify.c: Remove some code duplication.
1473 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1475         * object.c: Update docs.
1477 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1479         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1481         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1482         fallback trampoline as well.
1484         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1485         out argument that is set to TRUE if the match was direct. 
1487         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1489         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1491 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1493         * class.c: Add mono_class_interface_offset_with_variance function that does same
1494         as mono_class_interface_offset but takes variance into account.
1496         * class-internal.h: Export mono_class_interface_offset_with_variance.
1498         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1500 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1502         * object.c:
1503         * icall.c:
1504         * class.c: Add some FIXME for due to variant generic arguments.
1506         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1507         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1508         the bitfield check fails.
1510 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1512         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1513         to be easier to read and fix bugs in the case a non generic type implements a variant
1514         interface.
1516         * class.c (mono_class_has_variant_generic_params): Make non static.
1518         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1519         the private API.
1521 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1523         * assembly.c: fix MONO_PATH debug output.
1525 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1527         * culture-info-table.h : regenerated.
1529 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1531         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1532         types that are meant to not have a parent.
1534 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1536         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1537         from the image mempool, so it is not leaked.
1539 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1541         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1543 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1545         * verify.c (verify_valuetype_layout_with_target): Fix case
1546         that can lead to infinite recursion. Fix bug #567861
1548 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1550         * pedump.c: Run code verifier even if image verification fails
1551         due to a failed type we. This allows more errors to be shown.
1553 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1555         * class.c (count_virtual_methods): Remove the assert and now
1556         fail properly.
1557         
1558         * class.c (setup_interface_offsets): This can fail now.
1560         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1561         errors. Check setup_interface_offsets errors.
1563         * class.c (setup_interface_offsets): Simplify the return error logic
1564         and remove class_init_ok.
1566         Fixes #560327.
1568 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1570         * class.c (mono_class_init): Do class verification at the beginning. Add
1571         some asserts to avoid tripping into invalid memory.
1573         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1574         g_error and a decent message.
1576         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1578         Fixes #567548.
1580 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1582         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1583         as inline functions instead of defining them in mempool.c.
1585         * metadata-internals.h (MonoImageSet): New structure representing a set of
1586         MonoImages, which own a collection of generic instances.
1588         * metadata.c: Get rid of the global generic caches, instead assign each generic
1589         instance to the image set which consists of all the images referenced by the
1590         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1591         the memory used by generic instances to be allocated from a per image-set mempool
1592         later.
1594 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1596         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1598 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1600         * appdomain.c (zero_static_data): Fix a warning.
1602         * locales.c (construct_culture_from_specific_name): Applied patch from
1603         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1604         not found. Fixes #567900.
1606 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1608         * loader.c (mono_method_get_signature_full): Remove two asserts.
1609         Return NULL instead so that the verifier can handle both cases 
1610         gracefully.
1612 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1614         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1615         so we can properly fail types instead of crashing.
1617         Fixes #567676.
1619 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1621         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1622         generic method.
1624 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1626         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1628 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1630         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1631         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1632         we can't remove it from it since we don't hold the lock.
1633         (mon_new): Free the orphaned events here when a mon structure is added to the
1634         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1635         this down.
1637 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1639         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1640         as max stack might be zero.
1642         Fixes #562320.
1644 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1646         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1648         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1649         instances if the GTD did.
1651         * class.c (mono_class_setup_properties): Ditto.
1653         * class.c (mono_class_setup_events): Ditto.
1655         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1657         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1658         error setting.
1660         * class.c (mono_class_init): Fail if GTD did.
1662         * cominterop.c:
1663         * generic-sharing.c:
1664         * icall.c:
1665         * loader.c:
1666         * object.c:
1667         * verify.c: Properly handle failure of mono_class_setup_methods.
1669 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1671         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1672         mono_class_inflate_generic_method_full internal.
1674         * class.c (inflate_generic_context): Now takes a MonoError argument.
1676         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1677         errors.
1679 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1681         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1682         they cannot be patched. Partly fixes #564408.
1684 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1686         * metadata-internals.h, reflection.c: Use the
1687         MonoDynamicImage.handleref hash table only with unmanaged keys,
1688         and add a managed hash table handleref_managed for managed keys.
1690 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1692         * sgen-gc.c: Unset to-space bumper between collections.  It might
1693         become invalid due to degraded allocations.
1695 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1697         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1698         with the one from the original method.
1700         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1701         compatibility.
1703         * verify-internals.h: Add new function to the internal API.
1705 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1707         * culture-info-tables.h: regenerated it to include the Georgian culture.
1709 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1711         * sgen-gc.c: Include mono/utils/memcheck.h.
1713         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
1714         instead of the current domain, since the two might not match if this is called
1715         from the debugger.
1717         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
1718         domain which created this assembly.
1720 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1722         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
1724 2009-12-17  Mark Probst  <mark.probst@gmail.com>
1726         * sgen-gc.c: Managed implementation of the specialized generic
1727         store write barrier.
1729 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
1731         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
1732         A private virtual newslot method is used to implement an interface method without exposing
1733         it to users. When querying for public instance methods, such method would hide a public one
1734         on a parent type.
1736         Fixes #564379.
1738 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1740         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
1741         conventions.
1743 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1745         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
1747 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1749         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
1750         as they are no longer used.
1751         
1752          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
1754         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
1756 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1758         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
1759         if the owner class has not been finished before returning reflection_info.      
1761         Fixes #565127.
1763 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1765         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
1766         param doesn't have custom attributes. Fixes #565117.
1768         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
1769         #565120.
1771 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1773         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
1775 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1777         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
1778         same amount done by a core-clr enabled runtime.
1780 2009-12-15  Marek Habersack  <mhabersack@novell.com>
1782         * appdomain.c (mono_make_shadow_copy): make sure access mode of
1783         the target files is reset to writable by owner and readable by
1784         everyone else to prevent problems when updating shadow copies of
1785         files whose source is read-only. Fixes bug #556884
1787 2009-12-15  Mark Probst  <mark.probst@gmail.com>
1789         * class.c (mono_generic_class_get_class): Allocate the generic
1790         class via malloc again, so that it can be freed when any one of
1791         the images of its constituent types is closed.
1793         * metadata.c: When closing an image, don't free generic insts and
1794         generic classes right away, but put them into a list for later
1795         freeing.
1797         * image.c, metadata-internals.h: Store the free list and in the
1798         second pass of closing an image, free it.
1800 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1802         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
1804         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
1805         types in type_hash.
1807         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
1809 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1811         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
1812         user type.
1814         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
1815         is used.
1817 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1819         * verify.c (mono_method_verify): The Unused opcodes produce an
1820         InvalidProgramException on .NET
1822 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
1824         * loader.c (mono_method_get_header): Move assert after the verifier
1825         has been called on the method header.
1827 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1829         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
1831         * appdomain.c: Bump corlib version.
1833 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1835         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
1836         types as well since otherwise generic instances would not return UT as arguments but
1837         their undelying system type.
1839         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
1840         to reflect the fact that they can have now multiple different types.
1842         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
1844         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
1846         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
1848         * reflection.c (mono_reflection_register_with_runtime): Init super types
1849         if the image is not dynamic.
1851         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
1852         check if the generic type definition is a TypeBuilder.
1854         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
1855         doesn't belong to a dynamic image, skip initialization.
1857         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
1858         base definition is not a dynamic type.
1860 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1862         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
1863         mono_profiler_string_allocation
1865         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1866         if string profiling is enabled, call
1867         mono_profiler_string_allocation
1869         * profiler.h: added two MonoProfileFlags -
1870         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1871         installation functions for the hooks below.
1873         * profiler-private.h, profiler.c: added two hooks:
1874         mono_profiler_string_allocation called whenever a string is
1875         allocated by InternalAllocateStr and mono_profiler_iomap called
1876         whenever IOMAP code performs an adjustement on a file path.
1878 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
1880         * boehm-gc.c: fixed race condition while getting the target of a
1881         disappearing link (bug #522233).
1883 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1885         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
1886         the error.
1888 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1890         * reflection.c: Add mono_reflection_register_with_runtime icall to
1891         allow a MonoGenericClass to register itself as the managed mirror of
1892         a given generic instance.
1893         This is a temporary workaround until all MGC instantiation happens in
1894         managed code.
1896         * object-internals.h: Ditto.
1898         * icall-def.h: Ditto.
1900 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1902         * sgen-gc.c (find_in_remsets): Also search the generic store
1903         remsets.
1905 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1907         * sgen-gc.c: Don't access class names in debugging code when
1908         unloading a domain, because they might not be valid anymore.
1910 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1912         * domain.c, domain-internals.h: New function mono_domain_unset().
1914         * appdomain.c (unload_thread_main): Detach the thread again at the
1915         end.
1917         * threads.c: When a thread exists or is detached, unset its domain
1918         so that it's NULL when, for example, a pthread destructor runs.
1920         * sgen-gc.c: Assert that there is no domain set after a thread is
1921         done.
1923 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1925         * class.c (mono_generic_class_get_class),
1926         metadata.c (free_generic_class): Allocate generic MonoClass's from
1927         the image mempool, not via malloc.  The problem with malloc is
1928         that when unloading a domain those classes are freed before
1929         clearing the heap and SGen needs the classes.  Rewriting the
1930         unloading code to do the free later would be more work and there's
1931         no point in using malloc anyway.
1933 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
1935         * loader.c (mono_method_signature): Always call mono_loader_unlock 
1936         before returning.
1938 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1940         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
1941         user string blobs.
1943         * verify-internals.h: Add new function to the internal API.
1945         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
1946         check if it's a valid string.
1948         * object.c (mono_ldstr): Ditto.
1950         Fixes #561943.
1952 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1954         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
1955         from a method before returning it. This is the expected behavior.
1957 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1959         * reflection.c (inflate_method): Handle the case of a regular system type.
1961 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1963         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
1964         gathering code.
1966         * mempool.c, mempool-internals.h: New function
1967         mono_mempool_get_bytes_allocated().
1969         * Makefile.am: sgen-pinning-stats.c added.
1971 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1973         * sgen-gc.c (create_allocator): Only use the fast path if the
1974         object size is within the small object size limit.
1976 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1978         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
1979         possibly adding padding to sizeof (GCMemSection).
1981 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1983         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
1984         reference is not in the nursery.
1986 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
1988         * class.c (mono_class_from_typeref): Bounds check idx against the 
1989         assemblyref table.
1991 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1993         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
1994         through the potential roots, then sort the results and find the
1995         pinned objects from there.
1997         * Makefile.am: sgen-pinning.c added.
1999 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2001         * sgen-gc.c: Record generic stores in specialized remset buffers.
2003 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2005         * sgen-gc.c: Make pinned chunks the same size as major heap
2006         sections, and align them as well, so that we can check whether an
2007         object is in a pinned chunk or a major section in constant time.
2009 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2011         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2013 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2015         * sgen-gc.c: Make all major heap sections the same size (currently
2016         128k) and allocate them on aligned addresses.  Small heap sections
2017         give us better granularity with pinned objects - we can free up
2018         much more memory.
2020 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2022         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2023         output removed.
2025 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2027         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2029         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2030         names in addition to the runtime generated one.
2032         * mono/metadata/image.h: Add a function to take the real name of the assembly
2033         image.
2035         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2036         use it instead of the runtime generated one.
2038         Code is contributed under MIT/X11 license.
2040 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2042         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2043         before the other checks to prevent problems if the DateTime class is blittable.
2044         Hopefully fixes #559600.
2046 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2048         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2049         returns the largest string length that will not be put into the
2050         LOS.
2052         * sgen-gc.c, gc-internal.h: New function that returns the largest
2053         object size that will not be put into the LOS.
2055         * appdomain.c: Bump corlib version.
2057 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2059         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2061         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2063 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2065         * reflection.c (inflate_method): Fix signature.
2067         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2068         in managed code.
2070 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2072         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2074 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2076         * sgen-gc.c: Abstract to-space handling.
2078 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2080         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2082         Fixes #559906.
2084 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2086         * sgen-gc.c: Only add references from outside the nursery to
2087         within the nursery to the global remset list.
2089 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2091         * appdomain.c (create_exceptions): Set the domain temporarily if
2092         necessary to avoid cross-domain references.
2094 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2096         * verify.c (get_stack_type): Return that the type is invalid instead of
2097         asserting.
2099         * verify.c (mono_method_verify): Verify that all locals and arguments
2100         have valid stack types.
2102         Fixes #559913.
2104 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2106         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2107         bounds checking overflow aware.
2109         Fixes #559910.
2111 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2113         * verify.c (do_invoke_method): Check for invalid method signatures.
2115         Fixes #553450.
2117 2009-12-02  Jb Evain  <jbevain@novell.com>
2119         * appdomain.c (MONO_CORLIB_VERSION): bump.
2120         * icall-def.h (get_base_definition): renamed to get_base_method
2121         and add a boolean argument indicating we want the original
2122         method definition, or the immediate base method.
2123         * icall.c: apply the get_base_definition to get_base_method change.
2125 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2127         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2129         Fixes #558042.
2131 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2133         * class.c: remove asserts for invalid type token in
2134         mono_class_name_from_token(), mono_assembly_name_from_token() and
2135         mono_class_create_from_typedef () (fixes bug #553318).
2137 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2139         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2140         incorrect assemblies (bug #553322).
2142 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2144         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2146         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2148         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2150         * class.c (inflate_generic_context): Ditto.
2152         * loader.c (method_from_methodspec): Ditto.
2154         Fixes #558230.
2156 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2158         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2160         * class.c (mono_class_create_from_typespec): Ditto.
2162         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2164         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2166         Fixes #558184.
2168 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2170         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2172         * verify.c (verify_delegate_compatibility): Ditto.
2174         * verify.c (do_newobj): Ditto.
2176         Fixes #558046.
2178 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2180         * sgen-gc.c: Use a gray queue instead of requiring that gray
2181         objects are in a contiguous region.
2183         * sgen-gray.c: The gray queue implementation.
2185         * Makefile.am: sgen-gray.c added.
2187 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2189         * appdomain.c: When unloading a domain, zero its static data and
2190         perform a minor collection when using SGen.  That will get rid of
2191         all the remsets pointing into that domain's static data.
2193         * sgen-gc.c: Allow remsets into static data.  By doing this we
2194         need less checks so we're more efficient.
2196 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2198         * verify.c (mono_method_verify): Check for catch clauses with broken
2199         types.
2201         Fixes #558465.
2203 2009-12-01  Jb Evain  <jbevain@novell.com>
2205         * class.c (make_generic_param_class): set the namespace of
2206         the generic parameter class from its owner, if available.
2208 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2210         * verify.c (code_bounds_check): Do proper overflow checking.
2212         * verify.c (mono_method_verify): The number of switch entries is
2213         an unsigned int. Properly bounds check it.
2215         Fixes #558594.
2217 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2219         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2220         mono_metadata_method_has_param_attrs which only checks if a given param
2221         list has a non zero flags entry.
2223         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2224         to inform how many params should we expect to decode.
2226         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2227         as it's faster than mono_metadata_get_param_attrs.
2229         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2230         add mono_metadata_method_has_param_attrs.
2232 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2234         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2235         failures.
2237         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2238         is -1 but its class is broken.
2240         Fixes #558522.
2242 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2244         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2245         for parameter overflow.
2247         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2248         of mono_metadata_get_param_attrs.
2250         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2251         API.
2253         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2255 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2257         * class.c (mono_class_setup_fields): Check for fields with broken types.
2259         Fixes #558741.
2261 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2263         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2264         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2265         its TypeBuilder::CreateType ().
2267         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2268         if not needed.
2270         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2271         to make setup_interface_offsets happy.
2273         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2274         compilation now works.
2276 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2278         * appdomain.c (create_exceptions): New helper function extracted from
2279         mono_runtime_init () to precreate objects used during exception handling.
2280         (mono_runtime_init): Call it.
2281         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2283 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2285         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2286         compilation until the proper one is found.
2288 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2290         * class.c (mono_class_setup_vtable_general): Cache the result of
2291         get_virtual_methods () since it can be slow because of the metadata
2292         optimization.
2294         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2295         from a MonoValueHashTable for now, since the later is based on an earlier
2296         version of hpj's internal probing code and seems to have serious collision
2297         issues.
2299         * loader.c (mono_get_method_full): Update after the change above.
2301 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2303         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2305 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2307         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2308         the GTD instead of the DGC instead of crashing.
2310         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2311         required. Inflate fields if needed.
2313         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2314         finished. Renamed.
2316 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2318         * class.c (check_interface_method_override): Check for NULL signatures and fail
2319         the type.
2321         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2323         Fixes #553428.
2325 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2327         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2328         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2330 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2332         * loader.c (field_from_memberref): Resolve the class first then the field
2333         signature. Remove a lot of duplicated code and make sure we don't pass valid
2334         values to mono_loader_set_error_field_load.
2336         Fixes #553306.
2338 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2340         * class.c (inflate_generic_type): Change code to use new signature of
2341         mono_error_set_bad_image.
2343         Fixes #558124.
2345 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2347         * verify.c (mono_method_verify): Don't free ctx.params items if 
2348         we aborted while inflating the ctx.locals. Complete previous fix
2350 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2352         * verify.c (mono_method_verify): Use the uninflated type name, 
2353         when the inflated is null, to report errors. Also take care when
2354         freeing, not to free everything since, in case of an error, some
2355         stuff would be copies (i.e. not allocated by the function itself)
2356         Fix bug #558145
2358 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2360         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2361         or overflow. The caller must have done this check explicitly. This guard us
2362         from accessing invalid memory.
2364         * verify.c (do_push_static_field): Check for stack overflow.
2366         Fixes #553333.
2368 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2370         * loader.c (find_method_in_class): Don't crash if the signature cannot
2371         be resolved.
2373         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2374         of asserting for the case of invalid params.
2376         Fixes #553304.
2378 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2380         * image.c (mono_image_load_module): Fix crash when a bad assembly
2381         has no module at all (fix bug #553412) and also replace the 
2382         g_assert with a return NULL (documented return value for failure)
2384 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2386         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2388 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2390         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2391         file attribute to managed code and avoid doing the mask/attribute
2392         checks here. 
2394 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2396         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2397         the managed world.
2399         * icall-def.h: New entry points.
2400         
2401 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2403         * process.c: Don't put references to managed objects into a
2404         g_ptr_array.
2406 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2408         * class.c (can_access_internals): Allow CoreCLR to participate in
2409         allowing (or not) [InternalsVisibleTo] between assemblies.
2410         * security-core-clr.c|h: Make sure that only trusted code (a 
2411         superset of platform code) can access the internals of platform
2412         code.
2414 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2416         * reflection.c: use the correct base class to get the virtual method
2417         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2419 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2421         * security-core-clr.c (get_caller_no_reflection_related): 
2422         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2423         it's still reflection and must be filtered correctly.
2425 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2427         * object.c (compute_class_bitmap): Fix for large bitmaps.
2429 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2431         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2433         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2434         koush@koushikdutta.com). Disable GC_no_dls on android.
2436 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2438         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2439         tlab_next points outside the TLAB because the allocator was
2440         interrupted.
2442 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2444         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2446 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2448         * object-internals.h: Change signature for mono_string_to_utf8_image.
2450         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2451         argument.
2453         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2454         exceptions due to mono_string_to_utf8.
2456 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2458         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2460         * object.c (mono_remote_class): Make sure all resources are released before
2461         raising an exception.
2463         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2465 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2467         * mono-perfcounters.c (network_get_impl): Change variable initialization
2468         ordering to fix potential memory leak in case of exceptions.
2470         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2471         encoded strings.
2472         
2473 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2475         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2476         variable initialization ordering to fix potential memory leak in case
2477         of exceptions.
2479 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2481         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2482         needed.
2484 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2486         * appdomain.c: Fix shadow path code to better deal with exceptions.
2488 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2490         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2491         exception in the middle of the runtime code.
2493 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2495         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2496         leak memory with broken envvar value.
2498 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2500         * reflection.c (mono_reflection_setup_internal_class): Because
2501         nested classes are not added to the name cache, we must put them
2502         in the reflection_info_unregister_classes list.
2504 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2506         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2507         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2508         platform (trusted) code. Instead we return a TypeLoadException to
2509         be thrown later. This is the exception thrown by Silverlight 2 if
2510         a type, inside application (user) code is marked with [ComImport]
2512 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2514         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2515         mono_is_debugger_attached () too.
2517         * mono-debug.c (mono_is_debugger_attached): New helper function.
2518         (mono_set_is_debugger_attached): Ditto.
2520 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2522         * object-internals.h: Add mono_string_to_utf8_checked.
2524         * object.c: Implement mono_string_to_utf8_checked.
2526 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2528         * class.c: Add missing check for load errors after every
2529         call to mono_class_setup_fields
2531         Fixes #552282.
2533 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2535         metadata-verify.c (verify_tables_schema): Fix the error message.
2537 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2539         * metadata.c: Change event table schema to use TDOR for event type
2540         as this is what it's meant to be.
2542         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2543         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2544         entry.
2546         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2547         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2548         rows in MONO_TABLE_GENERICPARAM.
2550         Fixes #552289.
2552 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2554         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2555         insertion.
2557         * reflection.c (mono_reflection_setup_internal_class): Avoid
2558         registering a gc root the same MonoClass multiple times.
2559         Don't register nested types on the global scope as they should
2560         not be available there.
2562 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2564         * culture-info-tables.h: regenerated.
2566 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2568         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2570 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2572         * string-icalls.c|h: Remove string internal calls that are not 
2573         used anymore by the class libraries.
2574         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2575         which is not used in the class librairies.
2576         * icall-def.h: Update tables.
2578 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2580         * class.h: Move mono_class_inflate_generic_type_checked...
2582         * class-internals.h: to here and make it internal. We don't want to
2583         further expose MonoGenericContext. 
2585 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2587         * verify.c (mono_method_verify): Improve error message.
2589 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2591         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2592         the token is already properly encoded. Fixs 4.0 build.
2594 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2596         * locales.c (construct_number_format): Check if the number index is
2597         valid before trying to use it, if not, just return.
2598         
2599 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2601         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2602         since that loses the abort state. Fixes #539394.
2604 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2606         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2607         explicit this argument to the call signature.
2608         (mono_marshal_get_icall_wrapper): Ditto.
2610 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2612         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2613         to indicate which assembly to use when resolving a custom-mod.
2615         Fixes handling of volatile fields used across assemblies as reported in #551513.
2617 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2619         * loader.c: Improve error messages.
2621 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2623         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2624         of interfaces. Fixes IKVM.
2626         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2628 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2630         * verify.c (verifier_inflate_type): Return the inflated type on success.
2632 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2634         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2636         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2638         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2640         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2641         flag set.
2643         * profiler.c: Add new profiler callbacks for runtime invoke.
2645         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2647 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2649         * sgen-gc.c: Keep track of the reason for a major collection and
2650         write it to the heap-dump file.
2652 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2654         * threads.c: refactor the code that initializes the
2655         thread_start_args into a reusable function and use this in the two
2656         methods that start up threads.
2658 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2660         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2661         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2663 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2665         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2666         Until now, we only had the per-cpu(core) counters.
2668 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2670         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2671         mono_gc_get_suspend_signal(), which returns the suspend signal
2672         number used by the GC.
2674 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2676         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2678         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2679         signalling start_notify.
2681 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2683         * appdomain.c: do not test the st_mode field for shadow-copies.
2684         Fixes bug #545276.
2686 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2688         * threadpool.[ch]: added hooks for thread start/finish and item
2689         processing begin/end. For monotouch use only.
2691 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2693         * threads.c (mono_thread_get_name): New helper function.
2695         * reflection.c (resolve_object): Set handle_class for strings too.
2696         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2697         a cattr blob into a set of arrays and structures without creating the custom
2698         attributes themselves.
2699         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2701         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2703         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2704         function.
2706 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2708         * verify.c: Replace calls to mono_class_inflate_generic_type with
2709         mono_class_inflate_generic_type_checked. Fixes #480005.
2711 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2713         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
2714         object since not all paths lead to callees initing it.
2716 2009-10-23  Alp Toker  <alp@nuanti.com>
2718         Fix embedding API breakage from r144688. mono-compiler.h is an internal
2719         header and should not be shipped:
2721         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
2722         which is specific to the mono build. Not going to work.
2724 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
2726         * security-manager.c: Report if core-clr is active from
2727         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
2728         to allow Moonlight BCL to behave appropriately (both in browser
2729         and outside, e.g. smcs)
2731 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2733         * mono-config.c: ignore UTF-8 BOM and report parser errors.
2734         Fixes bug #549108.
2736 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2738         * class.c: fix typo.
2740 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
2742         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
2743         a MonoError parameter.
2745         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
2746         version that can does proper error handling.
2748         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
2750         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
2752         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
2754 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2756         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
2757         NO_UNALIGNED_ACCESS is defined.
2759 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2761         * marshal.c (mono_string_builder_to_utf16): Applied patch from
2762         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
2763         Fixes #549173.
2765 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2767         * sgen-gc.c: Shorten sections whenever possible.
2769 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2771         * sgen-gc.c: Use our portable semaphore #defines.
2773 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2775         * sgen-gc.c: A debug option for dumping the heap layout to a file
2776         after each collection.
2778 2009-10-21  Mark Probst  <mark.probst@gmail.com>
2780         * sgen-gc.c: Make managed write barriers atomic via
2781         thread-restarts.
2783 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
2785         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
2786         methods. Fixes #543021.
2788 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2790         * socket-io.[ch]: fix VS build.
2792 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2794         * icall-def.h:
2795         * socket-io.[ch]: implemented SendFile.
2797 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2799         * class.c (mono_class_create_from_typedef): Initialize class->element_class
2800         before the interfaces to avoid crashes later if class initialization fails.
2801         Fixes #548417.
2803         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
2804         Fixes #548276.
2806 2009-10-20  Marek Safar  <marek.safar@gmail.com>
2808         * domain.c: Bump 4.0 version.
2810 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2812         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
2813         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
2814         check since 'pubkey' can't be NULL at this stage
2815         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
2816         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
2817         initialization of 'iter'
2819 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
2821         * cominterop.c : Search the interface parts of vtable to find 
2822           method matches.  Fixes 547030.
2824         Code is contributed under MIT/X11 license.
2826 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
2828         * marshal.c: BeginInvoke cannot be called on multicast delegates with
2829         multiple targets. Fixes bug #574426.
2831 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2833         * profiler.h: Put here the definition of
2834         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
2835         (and fix the build...).
2837 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2839         * profiler.c, profiler.h, profiler-private.h:
2840         Added support for different ways of getting call chains in stat mode.
2842 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2844         * object.c, object-internals.h: New function for computing the
2845         size of an array, factored out of mono_array_new_full().  Use
2846         SGen's functions for allocating arrays and vectors.
2848         * sgen-gc.c, gc-internal.h: Special functions for allocating
2849         arrays and vectors without race conditions.  A managed array
2850         allocator method.
2852         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
2854 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2856         * object.c, object.h, icall.c: Write barriers do the copying now,
2857         as well, so no need for an additional memcpy.
2859         * sgen-gc.c: Lock when storing remsets.  Do the memory
2860         copying/moving in the write barriers.
2862         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
2864         * reflection.c: Added an assert.
2866 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2868         * threads.c, process.c: A few missing write barriers.
2870 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2872         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2873         network performance counters for bytes sent per second, bytes
2874         received per second, and bytes total per second.
2876         Code is contributed under MIT/X11 license.
2878 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2880         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2881         Fix warning.
2883 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2885         * threads.c, object-internals.h, object.c: Move code for
2886         transferring an object to a different domain (via
2887         serialization/remoting) to object.c.
2889         * object.c (call_unhandled_exception_delegate): If the exception
2890         is in a different domain than the delegate, transfer the exception
2891         to that domain.
2893 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
2895         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
2896         Fixes #322934.
2898 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
2900         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
2902 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2904         * object.c (mono_method_return_message_restore): Handle the case
2905         where the argument is an instance of a generic type.  Fixes
2906         #544446.
2908 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2910         * object.c (set_value): Write barrier fix - we must pass the
2911         count, not the size.
2913 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
2915         * domain.c (mono_init_internal): Print a useful error message when encountering
2916         an old mscorlib, instead of crashing. Fixes #544307.
2918 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
2920         * appdomain.c (copy_app_domain_setup): Fix a warning.
2922         * debug-helpers.c (dis_one): Ditto.
2924 2009-10-04  Mark Probst  <mark.probst@gmail.com>
2926         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
2927         into the new domain, instead of referencing the original one.
2929         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
2930         non-static.
2932         * appdomain.c: Corlib version bump.
2934 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2936         * threadpool.c: one more...
2938 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2940         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
2941         threads to die because we're shutting down. delgate5.exe works again.
2943 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
2945         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
2946           ccw_interface_hash table when a ccw is finalized.
2948         Code is contributed under MIT/X11 license.
2950 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2952         * assembly.c, domain.c, image.c, metadata-internals.h: Split
2953         domain and image unloading into two steps.  We must do this
2954         because clearing the domain in SGen requires the class metadata to
2955         be intact, but we need to free the mono_g_hash_tables in case a
2956         collection occurs during domain unloading and the roots would trip
2957         up the GC.
2959 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2961         * object-internals.h: Remove serialized culture fields from
2962         MonoInternalThread.
2964         * icall-def.h, thread-types.h, threads.c: Remove serialized
2965         culture icalls.
2967         * appdomain.c: Corlib version bump.
2969 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
2971         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
2972         Fixes #543133.
2974 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2976         * sgen-gc.c: Try to shorten the new section after a major
2977         allocation to avoid ever-growing sections.
2979 2009-10-13  Martin Baulig  <martin@ximian.com>
2981         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
2982         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
2983         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
2984         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
2986         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
2988 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
2990         * threadpool.c: fixed the order in which 'completed' and the wait
2991         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
2992         No need to use the wait_handle field of ASyncCall. Make sure the
2993         threadpool is active when adding a job or queueing an idle thread.
2995 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
2997         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
2999         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3000         when using --compile-all.
3002 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3004         * metadata.c (free_generic_class): Unregister the field_objects
3005         roots if we're using SGen.
3007 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3009         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3010         for GenericParamTableEntry.gparam.
3012 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3014         * marshal.c: don't create the handle when calling. It is created later
3015         if needed.
3017 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3019         * sgen-gc.c: Warning fixes.
3021 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3023         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3024         whole heap for cross-domain references before each collection.
3026         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3027         object.
3029         * threadpool-internals.h, threadpool.c: New function
3030         mono_thread_pool_is_queue_array() for checking whether a given
3031         array is used as a (cross-domain) queue by the thread pool code.
3033 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3035         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3036         searches the whole heap for objects containing a specific
3037         reference.  Only for debugging.
3039 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3041         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3043         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3044         byte arrays between domains.
3046 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3048         * threadpool.c:
3049         * class-internals.h:
3050         * mono-perfcounters-def.h:
3051         * mono-perfcounters.c:
3052         -There is a list of idle threads
3053         -Each of those idle threads wait on their own WaitHandle instead
3054         of all of them using the same semaphore. When a new work item is
3055         added, the job is assigned directly to an idle thread or a newly
3056         created one if possible and then the handle for that thread is
3057         signaled. Compare that to the current approach where all the
3058         threads in the pool compete to dequeue a job from the same
3059         queue.
3060         -New struct ThreadPool that brings together the bunch of static
3061         variable for each threadpool (IO and regular).
3062         -New performance counters: # of items added and its rate per
3063         threadpool. The rate will be used later, perhaps together with
3064         other perf. counters, to decide when idle threads should exit.
3066 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3068         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3069         Fix typo on Windows build.      
3070         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3071         
3072         Code is contributed under MIT/X11 license.
3074 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3076         * object-internals.h: The Thread class is split up into Thread and
3077         InternalThread now.  We have exactly one InternalThread per
3078         thread, and at most one Thread per appdomain per thread.  Most
3079         data is stored in InternalThread.  All InternalThread objects live
3080         in the root domain.
3082         * class-internals.h: Add internal_thread_class to MonoDefaults.
3084         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3085         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3086         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3087         resulting from the split of the Thread class.
3089         * gc-internal.h: Prototype for new function for checking whether a
3090         thread is the finalizer thread.
3092         * appdomain.c: Corlib version bump.
3094 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3096         * appdomain.c|h: Add a mono_domain_try_unload method which is
3097         equivalent to mono_domain_unload, except that it returns an exception
3098         instead of throwing it. Make mono_domain_unload use the
3099         mono_domain_try_unload method to avoid code-duplication.
3101 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3103         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3104         a problem.
3106 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3108         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3109         aborting when a conversion is not implemented.
3111 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3113         * verify.c: when comparing culture strings, use g_ascii_strcmp
3115         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3116         when comparing public key tokens to use memcmp on 16 bytes.   I do
3117         not believe this ever worked as advertised in the past.
3119         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3120         which would have always failed earlier.
3122 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3124         * gc.c: Raise a NullArgumentException if the object passed is
3125         null.
3127 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3129         * image.c (mono_image_close): Atomically decrement the reference count and
3130         remove the image from the hash tables, to prevent another thread from seeing a
3131         dying MonoImage. Fixes #541194.
3133 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3135         * threadpool.c: actually use the minimum number of 'completion ports'
3136         (for us is just a potential worker thread).
3138 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3140         * threadpool.c: remove ares_htable. It does not make sense any more
3141         since the same objects are now stored in GC-tracked arrays while they are
3142         in the queue.
3144 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3146         * threadpool.c: increase the minimum length of the queues to 128.
3147         Remove warning.
3149 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3151         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3152         return the modified signature used by string ctors.
3154 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3156         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3157         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3158         method, to be used by full-aot.
3160 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3162         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3163         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3164         be known to be good.
3166         * class.c (mono_class_init): Fail array types if their element type fails initialization
3167         as well.
3169         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3170         initialization, additionally we request the element_type vtable to be initialized as well.
3172         This is fine and should not increase the working set in any meaningful way since it's reasonable
3173         to assume       that most code will create an array and eventually populate it, which will require the
3174         type's vtable to be initialized.
3176         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3178 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3180         * normalization-tables.h : regenerated.
3182 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3184         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3185         a leb128 encoding can take up to 5 bytes.
3187 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3189         * class.c (verify_class_overrides): Remove useless argument.
3191         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3192         before interface enumeration as this is no longer required.
3194 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3196         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3197         used under mono_class_init context. This functions avoid any code path that
3198         calls mono_class_init, which leads it to be slow as some things like the interface
3199         bitmap are not available.
3201         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3202         of it's own broken version. Fixes the verifier part of #538588.
3204         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3205         API.
3207 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3209         * class.c (mono_class_init): Always set an exception in a class if
3210         vtable setup fails.  Fixes #538577.
3212         * generic-sharing.c: Raise an exception if mono_class_vtable()
3213         returns NULL.
3215 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3217         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3218         methods of vtypes, as they could be incorrectly shared with static methods
3219         taking an IntPtr argument.
3221 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3223         * domain.c:
3224         * object.c:
3225         * class-internals.h: renamed waithandle_class to
3226         manualresetevent_class.
3227         * marshal.c: propagate the exception if a remoting BeginInvoke call
3228         fails.
3230 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3232         * object.c: Properly handle vtable failures.
3234 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3236         * socket-io.c: Assert on vtable failure.
3238         * mono-mlist.c: Assert on vtable failure.
3240 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3242         * marshal.c: Assert on vtable failure.
3244 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3246         * icall.c: Properly handle vtable failures.
3248 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3250         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3252 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3254         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3256         * console-unix.c (do_console_cancel_event): Same.
3258 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3260         * class-internals.h: Add mono_class_vtable_full function that allows control
3261         if an exception should be raised or not.
3263         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3264         to do what its documentation say, that is to return NULL and set exception_type on
3265         failure.
3267         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3268         and change the code to honor it.
3270 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3272         * verify.c: Fix typo in error message.
3274 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3276         * security-core-clr.c: Fix default_platform_check so it can run
3277         the runtime coreclr tests (without an infinite recursion when
3278         throwing an exception).
3280 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3282         object.c (mono_delegate_ctor_with_method): Guard against null method.
3284 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3286         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3287         that should be replaced with error handling later.
3289 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3291         * marshal.c (mono_delegate_end_invoke): Fix warning.
3293 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3295         * loader.c (mono_field_from_token): Properly handle invalid
3296         dynamic tokens.
3298 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3300         * pedump.c (verify_image_file): Skip types that can't be
3301         decoded.
3303 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3305         * verify.c: Look for recursive valuetypes only against the
3306         type been initialized as this is a lot simpler and works.
3308 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3310         * verify.c: Ensure that fields are properly loaded before
3311         checking them.
3313 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3315         * object.c (mono_object_get_virtual_method) : Call 
3316           mono_cominterop_get_invoke if the object is a COM object.
3318         Code is contributed under MIT/X11 license.
3320 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3322         * verify.c: Check for recursive valuetype definitions.
3324 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3326         Use inheritance-aware interface offsets. Inherited types use the same offsets
3327         of their parents. This reduce offset duplication in case more than one type in
3328         the inheritance tree explicitly implements the same interface.
3330         This also removes a source of vtable bubbles found in #532409. An abstract type
3331         isn't required to provide abstract methods to all interfaces it implements, which
3332         resulted in a bubble with the previous scheme as the child would get a non-full
3333         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3334         should be fixed.
3336         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3337         it's expected to not cause any significant increase beyond that.
3339         * class.c (setup_interface_offsets): Compute super class iface offsets
3340         first to force sharing.
3342         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3343         dumping only the relevant ones.
3345         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3346         methods a new slot regardless if they belong to an interface or not. This allows
3347         an inherited type to override the iface method separately from the class one.
3349 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3351         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3352         applications that take less than 2s to execute.
3353         Bug #524984 fixed.
3355 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3357         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3359         * object.c (mono_get_runtime_callbacks): New helper function to return
3360         the runtime callbacks.
3362         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3363         mono_get_runtime_build_info () as the display name.
3364         
3365 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3367         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3368         argument, since NEWARR expects a native int. Fixes #481559.
3370 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3372         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3373         against broken SRE methods.
3375 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3377         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3378         a NULL variable. Abort early on failure.
3380 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3382         * class.c (can_access_type): Fail visibility test for non nested
3383         types with nested visibility.
3385 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3387         * assembly.c (parse_public_key): Avoid allocating (and not 
3388         freeing) the public key array when it's not requested by the 
3389         caller.
3390         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3391         ves_icall_System_Threading_Thread_Thread_internal): Free 
3392         allocated memory on error.
3394 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3396         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3398 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3400         * class.c (mono_class_setup_fields): Remove duplicated local variable
3401         named gklass.
3402         Rename gklass to gtd to reflect the fact that it points to the generic
3403         type definition.
3404         Remove the duplicated call to mono_class_setup_fields on gtd and move
3405         the error check to the beginning.
3407 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3409         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3410         Remove cruft of the previous patch.
3412 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3414         * metadata-verify.c (verify_method_table): Check for abstract + final.
3415         Fixes #534175.
3417 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3419         * verify.c (verify_class_fields): Check for duplicate fields.
3421 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3423         * metadata-verify.c: Verify the typeref table for duplicates.
3425 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3427         This reverts r140936 and properly handles interfaces with static methods. The
3428         right fix is to ensure vtables without bubles which is an easier to verify
3429         constraint. We should avoid such special cases as of the reverted patch as those
3430         only make the runtime more brittle.
3432         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3433         static methods on interfaces.
3435         * class.c (setup_interface_offsets): Use the number of virtual methods when
3436         calculating interface offsets instead of the number of methods. This way we
3437         avoid bubles on the layout.
3439 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3441         * metadata-verify.c (verify_metadata_header): Some very smart
3442         obfuscators like to add extra stream headers. Ignore them.
3444 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3446         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3447         methods correctly.
3449 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3451         * metadata-verify.c: Verify for duplicated types.
3453 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3455         * metadata-verify.c (verify_typedef_table): Verify for nested types
3456         without an entry on the nested class table.
3458 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3460         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3461         <tom_hindle@sil.org>. Add locking around hash table accesses.
3463 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3465         * verify.c (mono_verifier_verify_class): Verify all interface if
3466         really are interfaces. Fixes #534184.
3468 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3470         * pedump.c: Initialize all types during metadata validation so we report
3471         errors only detected as part of class initialization.
3473 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3475         * metadata-verify.c (verify_method_table): PInvoke requires method to
3476         be static. Fixes #534189
3478 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3480         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3481         being NULL.
3483 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3485         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3486         for holes or bad methods. Fixes #525314.
3488 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3490         * class.c (setup_interface_offsets): Don't allocate slot
3491         for the same interface multiple times. This creates bubbles
3492         that waster space and make vtable verification harder.
3494         The same interface get a slot multiple times since we need
3495         to get the closure of all implemented interfaces, which means
3496         the same interface is reported multiple times.
3498 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3500         * verify.c (mono_verifier_verify_class): Don't check the fields
3501         of generic instances since the context on which they got expanded
3502         might lead to false positives.
3504         Such thing happens when a generic type is inflated in the context
3505         of a generic method and the inflated type of a field turns into a
3506         generic method argument, which causes the checking code to think
3507         it's an invalid class when it's not.
3509 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3511         * verify.c (mono_type_is_valid_in_context): Verify if type
3512         is NULL and remove duplicate test.
3514 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3516         * verify.c (mono_verifier_verify_class): Check fields for
3517         invalid generic arguments.
3519 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3521         * class.c (verify_class_overrides): Verify if for static
3522         and non virtual methods.
3524 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3526         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3527         Check for errors after retrieving the vtable.
3529 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3531         * class.c (mono_class_setup_vtable_general): Verify
3532         if method overrides are valid before processing them.
3534 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3536         * marshal.c (mono_array_to_lparray): Fix minimal build with
3537         cominterop disabled.
3539         * marshal.c (mono_free_lparray): Same.
3541 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3543         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3544         the hash function for the ares_htable.
3546 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3548         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3549         bit for assembly flags. MS is ok with it but there is no spec anywhere
3550         on its mean
3552 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3554         * class.c (mono_class_create_from_typedef): Emit profiler events
3555         in all cases.
3557 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3559         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3560         Release memory on failure.
3562 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3564         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3565         to the internal API.
3567         * metadata.c (get_constraints): Use a single-linked table as we don't
3568         traverse it backward. Fail and return FALSE if only of the contraint types
3569         is not found.
3571         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3572         to mono_metadata_load_generic_param_constraints except for having a return value.
3573         This has to be done since the later is part of the public API.
3575         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3576         and fail the type.
3578         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3579         and fail the method.
3581 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3583         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3584         with MS broken behavior of emmitting EH section sizes without the
3585         header size added.
3587 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3589         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3590         memory until we're sure that we'll need it. This avoids leaking for
3591         broken types or duplicated instantiation.
3593 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3595         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3596         mistake.
3598 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3600         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3601         and expected size calculation.
3603 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3605         * class.c (mono_class_get_field_idx): Add fixme for broken
3606         behavior for types with multiple fields with the same name.
3607         I would rather fix it, but have no idea on how to generate
3608         such artifact for testing.
3610 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3612         * verify.c (verifier_load_field): We should allow references to
3613         fields to be made using the generic type definition. It's up to
3614         the loader system to fail invalid ops.
3616         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3617         are invalid.
3619 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3621         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3623         * metadata-internals.h: Fix declaration of 
3624         mono_metadata_interfaces_from_typedef_full.
3626         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3627         heap_alloc_result parameter that controls if the result should be
3628         g_malloc'd.
3630         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3631         array be g_malloc'd and properly document this public API function.
3633 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3635         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3636         remove METHOD_HEADER_TINY_FORMAT1.
3638         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3640         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3642         Both spec and MS uses only 2 bits to enumerate the kind of header.
3643         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3644         is superfluous, only used for tiny headers with odd code lengths.
3646         This change also make sure that mono doesn't wronly interpret bit 2
3647         of fat header flags, which is currently reserved.
3649 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3651         * metadata.c (do_mono_metadata_parse_type): Do error
3652         checking for element types. Don't abort if presented
3653         with a broken type kind.
3655 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3657         * metadata.c (mono_metadata_parse_method_signature_full):
3658         Gracefully fail bad vararg signatures.
3660 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3662         * profiler.c:
3663         * class.c: Fix warnings for uninitialized variables.
3665 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3667         * icall.c: Fix _NSGetEnviron method declaration warning.
3669 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3671         * icall.c:
3672         * reflection.c: Make bitwise checks explicit.
3674 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3676         * debug-helpers.c:
3677         * marshal.c: Fix printf warnings.
3679 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3681         * reflection.c (encode_cattr_value): Fix a warning.
3683 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3685         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3686         of array bounds.
3688 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3690         * loader.c (mono_method_signature): Don't assert on broken
3691         signature. Print a more useful error message.
3693 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3695         * loader.c (mono_method_get_marshal_info): Assert if
3696         signature is invalid. Bounds check stores to the
3697         mspecs array;
3699 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3701         * loader.c (field_from_memberref): Fix warning.
3703 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3705         * loader.c (mono_method_get_param_names): Check if signature
3706         is null. Don't store beyond the size of the name array.
3708 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3710         * loader.c (mono_get_method_constrained): Check if signature
3711         is null.
3713 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3715         * loader.c (mono_loader_set_error_bad_image): Improve
3716         error messages.
3718 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3720         * loader.c (mono_get_method_full): Convert an assertion
3721         into a loader error.
3723 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3725         * class-internals.h, class.c: Better naming and documentation.
3727 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
3729         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
3730         obj is NULL.
3732 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3734         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
3735         parsing fails.
3737 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3739         * loader.c (mono_loader_error_prepare_exception): Handle missing field
3740         errors with no class set.
3742         * loader.c (field_from_memberref): If the field signature is of the wrong
3743         type fail with a MissingFieldException instead of a BadImageException as
3744         this is the behavior observed on MS. 
3746 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3748         * loader.c (field_from_memberref): Don't crash if either the field
3749         signature or the typespec class are invalid.
3751 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3753         * verify.c (verifier_load_field): Don't allow field related
3754         ops to reference fields on generic type definition.
3756 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3758         * metadata-verify.c: Add new warning level for errors specified
3759         by ECMA 335 but that MS ignores.
3761         * metadata-verify.c (verify_method_table): Make compiler controled
3762         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
3763         this check is safe because the end result will only be some visibility
3764         exceptions been thrown.
3766 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3768         * verify.c (get_boxable_mono_type): Don't allow the
3769         use of the generic type definition on boxed type positions.
3771         Fixes #531237.
3773 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3775         * threadpool.c: Make sure no cross-domain references remain in
3776         ares_htable or the arrays that are thrown away when resizing.
3778 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3780         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
3781         list of classes for which we have to unregister reflection_info
3782         with the GC and which are not in the namespace cache.
3784         * reflection.c (mono_reflection_initialize_generic_parameter): Add
3785         the class to the list.
3787 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3789         * domain.c (mono_domain_free): Unregister the GC roots in
3790         MonoDomain.
3792 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3794         * reflection.c (mono_reflection_type_get_handle): Fix typo.
3796 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3798         * class.c: Add mono_class_get_field_from_name_full which does
3799         the same as mono_class_get_field_from_name but does check field
3800         signature as well.
3802         * class-internals.h: Export mono_class_get_field_from_name_full as
3803         part of the internal API.
3805         * loader.c (field_from_memberref): Search fields by name and signature
3806         as it's valid to have two fields with same name but different types.
3808         Fixes #528055.
3810 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
3812         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
3814         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
3816         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
3817         System.Type.
3819 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
3821         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
3823         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
3825 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3827         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
3828         to sgen-scan-object.h, which can be included and parameterized via
3829         macros.
3831         * Makefile.am: sgen-scan-object.h added.
3833 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3835         * gc.c: #define GC_dont_gc if we're compiling with SGen.
3837 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3839         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
3840         before clearing a domain in the GC.
3842 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3844         * exception.c (mono_exception_from_name_domain): Actually create
3845         the exception in the specified domain.
3847         * appdomain.c (mono_domain_create_appdomain_internal): Create the
3848         OutOfMemoryException a bit later so that the domain is inialized
3849         "enough" that it works.
3851 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3853         * threads.c (thread_cleanup): Clean up the cached_culture_info
3854         array to prevent cross-domain references.
3856 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3858         * metadata.c: more documentation for MonoType accessors.
3860 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
3862         Fix incorrect size definitions where the tail array isn't a list
3863         of pointers
3864         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3865         define size.
3866         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3867         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3868         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3870 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3872         * reflection.h:
3873         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
3875 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3877         * metadata.c:
3878         * loader.c:
3879         * metadata-internals.h:
3880         * method-builder.c:
3881         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
3883 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3885         * cominterop.c:
3886         * metadata.c:
3887         * metadata.h:
3888         * loader.c:
3889         * marshal.c:
3890         * reflection.c: #define for sizeof in MonoType and
3891         MonoMethodSignature.
3893 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3895         * domain.c:
3896         * domain-internals.h: add and use #define's instead of sizeof()
3897         for MonoJitInfo and MonoJitInfoTable.
3899 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3901         * object.c:
3902         * class.h: use #define instead of sizeof() for MonoRemoteClass.
3904 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3906         * metadata.c:
3907         * metadata.h:
3908         * object.c:
3909         * class-internals.h:
3910         * generic-sharing.c:
3911         * marshal.c: use a #define instead of sizeof() for a few
3912         structures that use a zero-length array.
3914 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3916         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
3917         to handle inflated generic methods.
3919         * appdomain.c: Bump corlib version.
3921         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
3922         instances.
3924         * reflection.c (fixup_method): Same
3926         * reflection.c (resolve_object): Same.
3928         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
3929         g_error and a decent message.
3931 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
3933         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
3934         from the object because it could not yet be available globally
3935         (it happens if the profiler tries to create a gchandle on the
3936         MonoThread object of a thread that is still registering itself
3937         with the runtime).
3939 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
3941         * reflection.c (mono_generic_class_get_object): Initialized the
3942         managed type arguments array.
3944         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
3946         * appdomain.c: Bump corlib version.
3948 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
3950         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
3951         #527902.
3953 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
3955         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3956         Avoid a crash if synch_cs is not set.
3957         
3958         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3959         Handle the case when the handle is 0.
3961         * appdomain.c: Bump corlib version.
3963 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
3965         * reflection.c (mono_type_get_object): Fix a warning.
3967 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3969         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
3970         descriptor here.  We assume it's already been computed.
3972         * generic-sharing.c (instantiate_other_info): Compute the GC
3973         descriptor for info type MONO_RGCTX_INFO_KLASS.
3975 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3977         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
3978         type, so don't use MONO_OBJECT_SETREF to set a field.
3980 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3982         * gc.c: We were missing one case where invoking a finalizer would
3983         not reset the domain.  Also, in the finalizer thread loop, assert
3984         that we're in the root domain.
3986 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3988         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
3989         if the type is not an array.
3991 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3993         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
3994         method bound to the declaring type of the method. Raise an exception
3995         if the type is not a generic param.
3997 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3999         * class.c (print_unimplemented_interface_method_info): Print the
4000         full type name.
4002         * class.c (mono_class_setup_vtable_general): When dealing with a
4003         generic instance first check if the generic type definition is
4004         not broken.
4006 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4008         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4010         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4012         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4014         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4016         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4018         Code is contributed under MIT/X11 license
4020 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4022         * verify.c: Fix naming of stelem and ldelem.
4024 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4026         * generic-sharing.c: Replace the templates lock with the loader
4027         lock because of very hard to resolve deadlock issues.
4029 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4031         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4032         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4033         directly. Fixes #525338.
4035         * class.c (mono_class_get_vtable_size): New helper function.
4037         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4038         the field belongs to the type. Fixes #525733.
4040 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4042         * sgen-gc.c: When we stop a thread and its stack top is not within
4043         its allocated stack (because it's in an altstack signal handler),
4044         restart it and stop it again, until it is.
4046 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4048         * sgen-gc.c: Take a thread's stack top and registers from the
4049         sigcontext in the suspend signal handler.
4051         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4052         stuff to sgen-archdep.h.
4054         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4055         caller, because have code in sgen-archdep.h to acquire that data.
4057 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4059         * profiler.c, profiler.h, profiler-private.h:
4060         Added support for keeping track of code chunks and buffers.
4062 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4064         * metadata-verify.c: Fix endianness problems on decoding functions.
4065         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4067 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4069         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4070         schema for vectors and one dimension SZARRAY.
4072 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4074         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4075         schema for vectors and one dimension SZARRAY.
4077 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4079         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4080         Interlocked.(Compare)Exchange with object arguments, which invoke
4081         write barriers.
4083 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4085         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4086         passed invalid arguments.   Fixes another crasher in the
4087         Silverlight test suite.
4089         * class.c (mono_class_array_element_size): Return 0 for the size
4090         of the class;  This fixes the crasher exposed by :
4092         typeof (void).MakeArrayType ();
4094         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4095         if there is no method to dereference.    Put all the code that
4096         depends on this inside the if (method) block.
4098         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4099         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4101         With this change, we pass the test.
4102         
4103         * reflection.c (mono_reflection_sighelper_get_signature_local):
4104         Only dereference the assembly if it has been set.    Fixes a
4105         crasher exposed by #525328
4107 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4109         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4110         don't perform the store in mono_gc_wbarrier_generic_nostore().
4111         Remove the second argument (value), which is not needed.
4113 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4115         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4116         the build.
4118         * boehm-gc.c: Ditto.
4119         
4120 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4122         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4123         not perform the store itself.  Introduce
4124         mono_gc_wbarrier_generic_nostore(), which is the same as
4125         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4126         store.
4128 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4130         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4131         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4132         we still need the memcpy().
4134 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4136         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4137         so that big arrays are handled correctly.  Always use
4138         safe_object_get_size() to calculate array object sizes, which
4139         takes bounds into account.
4141 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4143         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4144         GC descriptor is computed before we use it.
4146 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4148         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4149         write barrier if necessary.
4151 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4153         * icall-def.h, icall.c, thread-types.h: New separate icall for
4154         VolatileWrite(object&,object) that uses a write barrier.
4156         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4157         barriers in icalls which write to "ref" or "out" arguments.
4159 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4161         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4162         handler in a separate icall, to reduce the size of the wrappers.
4164 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4166         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4168 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4170         * metadata-verify.c (parse_field): Allow byref field.
4172         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4174         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4176 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4178         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4179         Fixes #522784.
4181 2009-07-20  Robert Jordan  <robertj@gmx.net>
4183         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4184         Fix invalid IL in valuetype handling (STOBJ must push the
4185         corresponding class). Fixes bug #523149.
4187         Code is contributed under MIT/X11 license.
4189 2009-07-20  Geoff Norton  <gnorton@novell.com>
4191         * gc.c: Use proper semaphores where available on posix and darwin.
4193 2009-07-19  Geoff Norton  <gnorton@novell.com>
4195         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4197 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4199         * refletion.c (is_sre_usertype): Change name to is_usertype and
4200         invert it's result so it returns true if the type is an user type
4201         and not the opposite.
4203         * reflection.c (is_*_type): Change all of those to use new macro
4204         check_corlib_type_cached that cached the type lookup so we don't
4205         need to do string comparisons all the type. Changed the signature
4206         to take a MonoClass instead.
4208         * reflection.c: Change mono_image_create_token and resolve_object
4209         to use is_sre_* functions.
4211 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4213         * sgen-gc.c: Check for writes to the stack in the managed
4214         wbarrier as well.
4216 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4218         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4219         but put them on a list which is processed with the other thread's
4220         remsets.
4222 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4224         * sgen-gc.c: Fix and enable the internal allocator instead of
4225         using malloc/free (which causes deadlocks).
4227 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4229         * refletion.c: Fix builds with SRE disabled by adding a minimal
4230         implementation of mono_reflection_type_get_handle.
4232 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4234         * refletion.c: Make mono_reflection_type_get_handle non static.
4236         * object-internals.h: Export mono_reflection_type_get_handle.
4238         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4239         unmanaged handle using mono_reflection_type_get_handle.
4241 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4243         * refletion.c: Replace all reads of MonoReflectionType::type with
4244         calls to mono_reflection_type_get_handle. Only the functions that
4245         deal with constructing TypeBuilder::type have not been changed
4246         because they have to deal with NULL values.
4248         This is a first step into supporting reflection types that don't
4249         map directly into their unmanaged counterpart.
4251 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4253         * metadata-verify.c (parse_locals_signature): Don't complain
4254         on signature with zero locals since MS generates it and doesn't
4255         bother with.
4257 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4259         * reflection.c (mono_image_get_array_token): Resolve return
4260         type using mono_reflection_type_get_handle.
4262         * reflection.c (mono_image_get_array_token): Resolve array method
4263         parent type using mono_reflection_type_get_handle.
4265 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4267         * reflection.c (mono_image_basic_init): Applied patch from
4268         <Dax@daxxfiles.net>. Set the public key token from the assembly
4269         builder. Fixes #518909.
4271         * appdomain.c: Bump corlib version.
4273 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4275         * class.c (mono_class_needs_cctor_run): Make this return false if
4276         the class has no cctor.
4278 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4280         * sgen-gc.c: When the minor GC needs to allocate a new section,
4281         invoke the major GC afterwards.
4283 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4285         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4286           Applying the window_style field to the SHELLEXECUTEINFO struct.
4288         Code is contributed under MIT/X11 license.
4290 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4292         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4293         locking earlier.  Fix it in the managed allocator by making sure
4294         that no thread is stopped there before the GC runs.  If we do stop
4295         a thread there, we restart it and let it run a but, until it stops
4296         somewhere else.
4298         * gc-internal.h, gc.c: Function for getting the IP from a signal
4299         context via a function registered by mini.
4301 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4303         * object-internals.h (MonoIntPtr): New structure describing a boxed
4304         IntPtr.
4306         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4307         returns. Fixes #519953.
4309         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4311 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4313         * class-internals.h, generic-sharing.c: New RGCTX info type for
4314         getting a remoting invoke with check wrapper.
4316 2009-07-07  Geoff Norton  <gnorton@novell.com>
4318         * icall-def.h: Fix the enable-minimal build.
4320 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4322         * object-internals.h: Add MonoReflectionDerivedType.
4324         * reflection.c: Implement support for PointerType.
4325         Fixed tons of warnings.
4327 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4329         * object-internals.h: Add MonoReflectionByRefType.
4331         * reflection.c: Implement support for ByRefType.
4333 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4335         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4337         * object-internals.h: Add MonoReflectionArrayType and
4338         mono_reflection_create_unmanaged_type.
4340         * reflection.c: Implement support for ArrayType.
4342 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4344         * metadata-verify.c (is_valid_method_header): Parse EH block
4345         flags correctly.
4347 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4349         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4350         processing the disappearing links, and process disappearing links
4351         in a loop until no new objects are copied.
4353 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4355         * object.c (handle_enum): Invoke the write barrier when copying
4356         value type instances.
4358         * sgen-gc.c: Register remsets for unmanaged write barriers only
4359         when the address written to is actually on the heap.  This makes
4360         set_value() in object.c work without requiring that the result be
4361         on the heap.
4363 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4365         The runtime wrappers are all bound to a given type that must
4366         exist in the same image. For regular images we use the <Module>
4367         type, which is required to exist for all images.
4369         The <Module> type can't be used for dynamic images because it
4370         might not exist at the time the wrapper is required, so we create
4371         a synthetic type to use instead.
4373         The current code works because of the 2 stage setup of MonoClass,
4374         but once this is gone it will no longer work.
4376         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4378         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4380         * object-internals.h: Export mono_image_set_wrappers_type icall
4381         as part of the internal API.
4383         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4384         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4386         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4387         image wrappers_type to the provided value.
4389 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4391         * appdomain.c (deregister_reflection_info_roots): No need
4392         to use the image lock here.
4394 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4396         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4398 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4400         * threads.c: Store the thread start argument in a hash table instead of
4401         registering it as a root, as libgc doesn't support unregistering roots
4402         under windows, leading to 'too many root sets' errors when many threads
4403         are created.
4405         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4406         shutdown, they can still be referenced by the other dying objects.
4407         Fixes #514506.
4409 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4411         * socket-io.c: DontLinger does not allow LingerOptions.
4413 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4415         * metadata-verify.c: The spec doesn't mention that it's possible to add
4416         custom attribute to a generic parameter. Fixed.
4418 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4420         * class.c (inflate_generic_type): Don't crash while trying to output a message
4421         on why we're aborting.
4423 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4425         * socket-io.c: DontLinger can take an int or a boolean too.
4427 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4429         * gc.c: check for a null argument to SuppressFinalize () and
4430         ReRegisterForFinalize ().
4432 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4434         * loader.c (method_from_methodspec): Call into the verifier to check
4435         the signature.
4437         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4439         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4440         part of the internal API.
4442 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4444         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4445         the signature.
4447         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4449         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4450         part of the internal API.
4452 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4454         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4455         the signature.
4457         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4458         blob verification.
4460         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4461         part of the internal API.
4463 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4465         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4466         when doing basic verification. 
4468         This check must be done since the runtime peeks into signatures in much
4469         more places than it does decoding so it makes sense to ensure that all
4470         pointers to blob objects are well formed.
4472 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4474         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4475         Use proper overflow dectection. Fix usage of it.
4477 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4479         * loader.c (field_from_memberref): Call into the verifier to check
4480         the signature.
4482         * loader.c (mono_method_get_signature_full): Same.
4484         * loader.c (method_from_memberref): Same.
4486         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4488         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4489         part of the internal API.
4491 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4493         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4494         or unloaded, still return an AsyncResult, but don't add it to the
4495         threadpool.
4497 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4499         * threads.c: fix missing colon when DEBUG is defined.
4501 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4503         * threadpool.c: Don't add new calls to a threadpool if the domain
4504         of the call is unloading or unloaded.  When dequeuing a job, null
4505         the reference in the queue.
4507 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4509         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4510         generation if an object was moved.
4512 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4514         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4515           parameters of type SAFEARRAY[VARIANT].
4517         * reflection.c (encode_marshal_blob): Properly generate element type
4518           (SafeArraySubType marshal attribute option).
4520         Code is contributed under MIT/X11 license.
4522 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4524         * reflection.c: in mono_method_clear_object () really ensure all the
4525         objects are removed.
4527 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4529         * loader.c (mono_method_signature): Call into the verifier to check
4530         the method signature.
4532         * metadata-verify.c (verify_method_table): Move signature verification
4533         to verify_method_table_full.
4535         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4537         * verify-internals.h: Export mono_verifier_verify_method_signature as
4538         part of the internal API.
4540 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4542         * loader.c (mono_method_get_header): Call into the verifier to
4543         check the method header.
4545         * metadata-verify.c: Add mono_verifier_verify_method_header.
4547         * verify-internals.h: Export mono_verifier_verify_method_header as
4548         part of the internal API.
4550 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4552         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4553         check the field signature. Replace an assert with an explicit check.
4555         * class.c (mono_class_setup_fields): Call into the verifier to check
4556         the field signature.
4558         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4560         * verify-internals.h: Export mono_verifier_verify_field_signature as
4561         part of the internal API.
4563 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4565         * class.c (mono_class_find_enum_basetype): Simplify this function
4566         by moving code outside of the loop and not decoding static fields.
4568 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4570         * metadata-verify.c (verify_typedef_table): Check the extends
4571         token here. Move to here a flags check from verify_typedef_table_full.
4573 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4575         * metadata-verify.c (is_valid_method_header): Fix a warning.
4577         * metadata-internals.h (MonoImage): Remove the unused 
4578         static_rgctx_invoke_wrapper_cache.
4580         * image.c marshal.c: Ditto.
4582 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4584         * image.c (do_mono_image_load): Enable table data verification.
4586 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4588         * metadata-verify.c (is_valid_constant): Fix nullref check.
4590 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4592         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4594 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4596         * sgen-gc.c: Managed allocation with pthreads TLS.
4598         * threads.c, threads-types.h: Functions for the JIT to tell the
4599         runtime whether it supports the MONO_TLS opcode.
4601 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4603         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4604         without methods.
4606 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4608         * metadata-verify.c (is_valid_constant): Fix the string length check.
4609         Use safe overflow checking. Add decent error messages.
4611 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4613         * metadata-verify.c: Move remaininh blob checks to the offline
4614         verification path.
4616 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4618         * metadata-verify.c: Move more blob checks to the offline verification
4619         path.
4621 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4623         * object-internals.h : Adding interrupt_on_stop field.
4625         * threads.c (mono_thread_request_interruption) : On Windows exit the
4626           thread if interrupt_on_stop is set.
4628         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4629          Removing old interrupt logic and setting the interrupt_on_stop for the
4630          thread when calling accept.
4632         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4633          setting the interrupt_on_stop for the thread when calling accept.
4635         Contributed under MIT/X11 license.
4637 2009-06-20  Martin Baulig  <martin@ximian.com>
4639         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4641 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4643         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4644         running in no-exec mode.
4646 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4648         * metadata-verify.c (verify_method_table): Move header
4649         checking to verify_method_table_full.
4651         * metata-verify.c (mono_verifier_verify_full_table_data):
4652         Call verify_method_table_full.
4654 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4656         * metadata-verify.c (verify_field_table): Move signature
4657         checking to verify_field_table_full.
4659         * metata-verify.c (mono_verifier_verify_full_table_data):
4660         Call verify_field_table_full.
4662 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4664         * metadata-verify.c (verify_typedef_table): Move remaining
4665         stuff to verify_typedef_table_full.
4667 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4669         * metadata-verify.c: Kill is_corlib from VerifyContext.
4670         It is only used by the offline mode.
4671         So we better remove it from the runtime path.
4673 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4675         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4676         function that perform the offline metadata verification steps.
4678         * metadata-verify.c (verify_typedef_table): Move some checks to
4679         verify_typedef_table_full and make it been called by new function
4680         mono_verifier_verify_full_table_data.
4682         * pedump.c: Call mono_verifier_verify_full_table_data.
4684         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4685         part of the internal API.
4687 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4689         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4690         check.
4692         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4693         flags bits. SupportLastError was confused as bit 7 instead of 6.
4695         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4696         to check against the module ref table instead of module.
4698         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4700         * pedump.c: Call mono_image_load_names.
4702 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4704         * image.c: Extract mono_image_load_names from do_mono_image_load.
4706         * metadata-internals.h: Export mono_image_load_names as part of
4707         the internal API.
4708         
4709 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4711         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4712         first, as it could reference data in the other caches.
4714 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4716         * metadata-verify.c: Finished with method header verification.
4718 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4720         * metadata-verify.c: Added more header verification code.
4721         Now only EH clauses are missing.
4723 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4725         * marshal.c (get_runtime_invoke_type): Don't share primitive types
4726         for return values.
4728 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4730         * metadata-verify.c: Initial method header verification.
4732 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4734         * metadata-verify.c (verify_import_table): The IAT contents
4735         might end been patched by the windows DL when running with
4736         coree enabled.
4738 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
4740         * class.c (mono_class_from_typeref): If the enclosing type is not
4741         found return null instead of crashing. Fixes #508487.
4743 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
4745         * normalization-tables.h : updated to the latest unicode charcter
4746           data.
4747         * appdomain.c : bump corlib version.
4749 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
4751         * class.c (mono_class_from_name): Fix support for assembly references
4752         in the EXPORTEDTYPE table. Fixes #511704.
4754 2009-06-13  Geoff Norton  <gnorton@novell.com>
4756         * domain.c: Ensure that mono_domain_assembly_open actually opens the
4757         assembly in the target domain.
4759 2009-06-12  Robert Jordan  <robertj@gmx.net>
4761         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
4762         because "this" of the managed signature has become an
4763         ordinary parameter in the unmanaged signature.
4765 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
4767         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
4768         field for owner-less generic containers.
4770         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
4771         image field of the owner-less generic containers created here.
4773         * metadata.c (mono_metadata_load_generic_params): Ditto, the
4774         contain is ownerless until the caller sets its owner.
4776         * metadata.c (type_in_image): Handle owner-less generic containers
4777         correctly.
4778         
4779 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4781         * image.c (mono_image_close): Support debug_assembly_unload for
4782         dynamic images too.
4784 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
4786         * class.c: Fix some typos in comments.
4788 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4790         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
4792         * threads.c (mono_thread_execute_interruption): Avoid creating the
4793         abort exception object while holding the synch_cs lock.
4795 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4797         * metadata-verify.c: Verify basic cattr content.
4799 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4801         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
4802         nested types.
4803         
4804         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
4805         support for nested types. Fixes #511704.
4807 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4809         * metadata-verify.c: Verify methodspec signatures.
4811 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4813         * metadata-verify.c: Verify typespec signatures.
4815 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4817         * metadata.c (free_inflated_method): Call 
4818         mono_marshal_free_inflated_wrappers (), which was missed earlier.
4820 2009-06-08  Miguel de Icaza  <miguel@novell.com>
4822         * mono-config.c: Small change to report the PPC64/ILP32 model.
4824 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4826         * metadata-verify.c (parse_type): Check szarray.
4828 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4830         * metadata-verify.c (parse_type): Check fnptr.
4832 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4834         * metadata-verify.c (parse_type): Check generic instances.
4836 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4838         * metadata-verify.c (parse_type): Check array shape.
4840 2009-06-05  Robert Jordan  <robertj@gmx.net>
4842         * class.c (mono_class_create_from_typedef): Check only for
4843         mscorlib's System.Array.
4845 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4847         * metadata-verify.c (parse_type): Check pointer, class/valuetype
4848         and generic params. 
4850         * metadata-verify.c (parse_field): Check the signature.
4852 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4854         * metadata-verify.c: Implement locals signature check.
4856 2009-06-04  Marek Safar  <marek.safar@gmail.com>
4858         * domain.c: Add .NET 4.0 Beta 1 version.
4860 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
4862         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
4863           For QueryInterface on CCWs consider the base class
4864           interfaces as well.
4866         Code is contributed under MIT/X11 license.
4868 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4870         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4872         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4873         used.
4875         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4876         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
4878         * generic-sharing.c (inflate_other_data): Ditto.
4879         
4880 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
4882         * metadata-verify.c: Implement property signature check.
4884 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4886         * sgen-gc.h: Register saving support for PPC.
4888 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4890         * sgen-gc.c: Fixed a pthread TLS screwup.
4892 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4894         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
4895         supported.
4897 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4899         * sgen-gc.c: Disable TLA and managed allocation if the __thread
4900         keyword is not supported.
4902 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4904         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
4905         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
4906         the inflated method is freed. Fixes #508389.
4908         The code is contributed under the MIT/X11 license.
4909         
4910 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
4912         * marshal.c (get_wrapper_target_class): New helper function.
4913         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
4914         the <Module> class of the image. Fixes #509049.
4916 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4918         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
4919         Check if the thread was interrupted and proccess it straight away.
4920         Makes abortion much more responsive.
4922 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4924         * threads.c (mono_thread_execute_interruption): Use atomic cas with
4925         MonoThread::interruption_requested to match it's counterpart.
4927         Fixes a hang in abort-stress-1 on a 2 core x86.
4929         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4930         Fix warning.
4932 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4934         Change MonoImage::name_cache to be protected by the image lock
4935         instead of the loader lock.
4937         * appdomain.c (deregister_reflection_info_roots): Protect access
4938         to name_cache.
4940         * class.c (mono_image_init_name_cache): Change from the loader lock
4941         to the image lock. Check if the cache wasn't already created.
4943         * class.c: Change from the loader to the image lock.
4945         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
4946         the code to hold the image lock while iterating over name_cache and
4947         not go into mono_array_new holding it.
4949         * metadata-internals.h: Add a comment about this change.
4951 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4953         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4954         Under the 2.0 profile raise the loader error.
4956         Fixes #508532.
4958 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4960         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
4961         of ldind opcode for generic instances so we don't fail for direct wrappers.
4962         This only affect direct calls.
4964 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4966         * reflection.c (create_dynamic_mono_image): Fix warnings.
4968         * generic-sharing.c (other_info_equal): Ditto.
4969         
4970 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4972         * metadata-verify.c: Implement field signature check.
4974 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4976         * metadata-verify.c: Implement standalone signature check.
4978 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
4980         * metadata-verify.c: Implement methodref signature check.
4982 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
4984         * object-internals.h (MonoRuntimeCallbacks): New structure containing
4985         callbacks supplied by the runtime.
4987         * object.c (mono_install_callbacks): New internal function to install
4988         the callbacks.
4990         * object.c (mono_create_ftnptr): Move the implementation of this to
4991         mini/.
4993         * object.c (mono_get_addr_from_ftnptr): Ditto.  
4995 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4997         * metadata-verify.c (parse_return_type): Proper byref check.
4998         * metadata-verify.c (is_valid_method_signature): Check for zero arity
4999         generic signatures and method params.
5001 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5003         * metadata-verify.c (decode_signature_header): Fix bounds check.
5005         * metadata-verify.c (parse_custom_mods): Check custom mods.
5007         * metadata-verify.c (parse_type): Do initial basic verification
5008         of valid values.
5009         
5010         * metadata-verify.c (is_valid_method_signature): Parse the generic
5011         param count.
5013 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5015         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5016         discarded based on their most specific definition so we set the method_slots
5017         array before checking if the method is acceptable or not.
5019         Fixes #506757.
5021 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5023         * icall.c: Free the old array when resizing a mono_ptr_array.
5025 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5027         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5028         for the hashes whose keys are managed objects.
5030 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5032         * object-internals.h, threads.c: Set the execution context on
5033         thread start here, not in corlib.
5035         * appdomain.c: Bump corlib version.
5037 2009-05-27  Martin Baulig  <martin@ximian.com>
5039         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5040         if `_mono_debug_using_mono_debugger' is set to make things work
5041         properly when embedding Mono.
5043 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5045         * class.c (mono_class_setup_fields): Don't mark simd types as having
5046         16 bytes alignment as the whole runtime doesn't support.
5048 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5050         * metadata-verify.c (safe_read): Use endian safe read macros.
5052 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5054         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5055         it is read-only when using full aot.
5057 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5059         * metadata-verify.c (is_valid_method_signature): Verify parts
5060         of the return type. Provide an error message in case of failure.
5062 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5064         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5066 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5068         * metadata-verify.c: Include the size prefix in the bounds check.
5070 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5072         * icall.c: Remove warnings.
5074         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5075         prevent auto-detection based on GCC defines.
5077         Add PS3
5079         * metadata-verify.c: Do not include signal.h
5081         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5082         messages.  Not sure why the g_assert_not_reached is not enough to
5083         quiet the compiler.
5084         
5086         * appdomain.c: Remove code that is not used when
5087         DISABLE_SHADOW_COPY is set.
5089         * image.c: use g_getenv
5091 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5093         * reflection.c: Remove code that it not used with
5094         DISABLE_REFLECTION_EMIT is defined.
5096 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5098         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5099         invoke wrappers.
5101 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5103         * socket-io.c
5104         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5105         the ifdef here and instead put that on io-layer
5107 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5109         * metadata-verify.c: Verify the generic param constraint table.
5111 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5113         * metadata-verify.c (verify_generic_param_table): Fix
5114         thinko on the valid flags bits for generic params.
5116 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5118         * metadata-verify.c: Verify the methodspec table.
5120 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5122         * metadata-verify.c: Verify the generic param table.
5124 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5126         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5128 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5130         * sgen-gc.c: Use generation enum more consistently and use the
5131         correct generation in mono_gc_register_for_finalization().
5133 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5135         * metadata-verify.c: Verify the nested class table.
5137 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5139         * metadata-verify.c: Verify the manifest resource table.
5141 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5143         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5145 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5147         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5148         wrappers, this is now done in the JIT.
5149         
5150         * class.c (mono_set_generic_sharing_supported): New internal function.
5151         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5153 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5155         * metadata-verify.c: Verify the exported type table.
5157 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5159         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5161 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5163         * metadata-verify.c: Verify the file table.
5165 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5167         * metadata-verify.c (verify_assembly_table): Fix an error message.
5169         * metadata-verify.c: Verify the assemblyref table.
5171 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5173         * metadata-verify.c (verify_assembly_table): Fix the valid
5174         bits mask for flags.
5176 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5178         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5179         generic methods as well.
5181 2009-05-15  Geoff Norton  <gnorton@novell.com>
5183         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5184         use-case and is significantly more performant than the wapi layer.
5186 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5188         * metadata-verify.c: Verify the assembly table.
5190 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5192         * metadata-verify.c: Fix rows limit check.
5194 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5196         * metadata-verify.c: Verify the fieldrva table.
5198 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5200         * sgen.c: Speed up weak links and finalizers by grouping them by
5201         generation.
5203 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5205         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5206         free the old GCHandle (only applies to SGen).
5208 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5210         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5211         mono_metadata_load_generic_params () for non-generic methods.
5213 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5215         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5216         New function for returning a monitor's weak link if it has one.
5218         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5219         one) when clearing a domain.  These can still be around because
5220         the object might not have been collected.
5222 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5224         * gc.c: Fix a warning.
5226 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5228         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5229         prevous wait that resulted in a deadlock on Windows when initializing
5230         the runtime form DllMain. Also results in improved startup time.
5231         (finalizer_thread): Get rid of thread_started_event.
5232         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5233         resulting MonoThread.
5235         Contributed under MIT/X11 license.
5237 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5239         * metadata-verify.c: Verify the implmap table.
5240         Don't require that #US and #Strings be present.
5242 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5244         * security-core-clr.c: Delegate checks are done at creation time,
5245         not a invocation time. Fix exception for Telerik Silverlight demo
5247 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5249         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5250         case for the Thread class.
5252         * threads.c: Do clean-up of abort exception/state in
5253         thread_cleanup() instead of Thread.free_internal().  Also clean up
5254         current_appcontext.  The reason we have to do that is because
5255         those references might point into another domain and if that
5256         domain is unloaded before the thread is finalized, they point to
5257         invalid data.
5259 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5261         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5262         stub signatures.
5263         
5264         Contributed unter MIT/X11 license.
5266 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5268         * verify.c, metadata-verifier.c: Add support for disabling the
5269         verifier in some builds.
5271         [ Sorry, my previous commit accidentally commited some work in
5272         progress ]
5274 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5276         * class.c (mono_class_setup_fields): Set class->field.first for
5277         generic instances.
5279 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5281         * metadata-verify.c: Verify the typespec table.
5283 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5285         * metadata-verify.c: Verify the module table.
5287 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5289         * metadata-verify.c: Verify the methodimpl table.
5291 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5293         * metadata-verify.c: Verify the property table.
5295 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5297         * debug-helpers.c (mono_method_desc_match): Add support for generic
5298         glob patterns.
5300 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5302         * metadata-verify.c: Verify the propertymap table.
5304 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5306         * metadata-verify.c: Verify the event table.
5308         * metadata-verify.c (search_sorted_table): Fix offset
5309         calculation.
5311 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5313         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5315 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5317         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5318         because mono_delegate_free_ftnptr() needs it.
5320 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5322         * metadata-verify.c: Verify the eventmap table.
5324 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5326         * metadata-verify.c: Verify the standalonesig table.
5328 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5330         * metadata-verify.c: Verify the field layout table.
5332 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5334         * class.c (mono_type_get_name_recurse): Don't crash
5335         for ownerless generic params.
5337         * debug-helpers.c (mono_type_get_desc): Correct the format
5338         for ownerless generic params.
5340 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5342         * metadata-verify.c: Verify the class layout table.
5344 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5346         * metadata-verify.c: Verify the decl security table.
5348 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5350         * domain.c (mono_domain_set_internal_with_options): Don't do
5351         anything if the old domain is the same as the old one.  Fixes
5352         #499326.
5354 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5356         * appdomain.c: Deregister the reflection_info roots when unloading
5357         a domain.
5359         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5360         memory allocated by a domain and frees its disappearing links.
5362         * boehm-gc.c, null-gc.c: Empty implementation of
5363         mono_gc_clear_domain().
5365 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5367         * appdomain.c (clear_cached_vtable): Free the static fields memory
5368         block.
5370 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5372         * gc.c: Set the correct domain when invoking finalizers.
5374         * appdomain.c: Set the correct domain when creating threads.
5376 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5378         * sgen-gc.c: Fix skip size for vectors.
5380 2009-05-03  Martin Baulig  <martin@ximian.com>
5382         * mono-debug-debugger.c
5383         (mono_debugger_check_breakpoints): Check class init handlers even
5384         if we don't have any method load handers.
5386 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5388         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5389         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5391 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5393         * metadata-verify.c: Verify the field marshal table.
5395 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5397         * metadata-verify.c: Verify the custom attribute table.
5399 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5401         * metadata-verify.c: Verify the constant table.
5403 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5405         * metadata-verify.c: Verify the memberef table.
5407 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5409         * metadata-verify.c (get_coded_index_token): Remove
5410         dead argument.
5412 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5414         * metadata-verify.c: Verify the interfaceimpl table.
5416 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5418         * verify.c: Improve error message.
5420         * debug-helpers.c (mono_type_get_desc): Harden the code that
5421         deals with VAR and MVAR.
5423 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5425         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5426         part of #498692.
5428 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5430         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5431         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5433 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5435         * security-core-clr.c: Avoid redundant checks for platform code, 
5436         e.g. check for method and for class (very common) and check
5437         for class and outer class (less common)...
5439 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5441         * reflection.c: Avoid returning random cattrs for synthetic methods.
5442         Fixes #498545.
5444 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5446         * assembly.c: assemblies in the GAC should never be shadow-copied.
5448 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5450         * domain.c, domain-internals.h: Disable
5451         track_resurrection_{objects,handles}_hash in MonoDomain if using
5452         SGen.
5454 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5456         * metadata-verify.c: Verify the param table.
5458 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5460         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5461         MethodList.
5463         * metadata-verify.c (verify_method_table): Proper check the ParamList
5464         field.
5466 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5468         * metadata-verify.c (verify_method_table): Check for runtime
5469         implemented functions such as delegate .ctors. Remove spurious
5470         printf.
5471         
5472 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5474         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5476 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5478         Don't allocate MonoGenericInfo for ownerless generic params.
5479         * class-internals.h (MonoGenericParam::info): Move field to ...
5480         (MonoGenericParamFull): ... this.  New struct.
5481         (MonoGenericContainer::type_params): Change type to
5482         MonoGenericParamFull.
5483         (MonoGenericParam, MonoGenericContainer): Update accessors.
5484         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5485         'info' field for ownerless generic param.
5486         (mono_metadata_load_generic_params): Update to changes.
5487         * reflection.c (mono_reflection_create_generic_class): Likewise.
5488         (reflection_methodbuilder_to_mono_method): Likewise.
5489         (mono_reflection_initialize_generic_parameter): Likewise.
5491 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5493         Don't use MonoGenericParamInfo for ownerless generic params.
5494         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5495         use ParamInfo class at all.
5496         (mono_class_from_generic_parameter): Use them.
5497         (make_generic_param_class): Fix a couple of instances where 'pinfo
5498         == NULL' wasn't handle.
5500 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5502         * class.c (make_generic_param_class): Carve out of ...
5503         (mono_class_from_generic_parameter): ... here.
5505 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5507         Simplify mono_class_from_generic_parameter
5508         * class-internals.h (MonoGenericParamInfo::token): New field.
5509         * metadata.c (mono_metadata_load_generic_params): Initialize it
5510         from metadata.
5511         * class.c (mono_class_from_generic_parameter): Use it instead of
5512         searching through metadata.
5514 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5516         * metadata-verify.c: Add verification of the method table.
5518 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5520         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5521         Delegate::Invoke optimization.
5523 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5525         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5526         string returned by get_shadow_assembly_location_base.
5528         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5529         about caller's ownership.
5531 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5533         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5534         reflection memory on domain unload.
5536         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5537         reflection cleanup code do it.
5539         * domain-internals.h: Add mono_reflection_cleanup_domain.
5541         This fixes a memory leak for managed mirrors of reflection objects
5542         on domain unload. 
5544 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5546         * metadata-verify.c: Implement more verification of the field table.
5548 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5550         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5551         doesn't try to parse the input assembly, which can be broken.
5553 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5555         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5556         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5557         by using the lowest bit in the link to store whether the link is
5558         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5560 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5562         * Makefile.am: Split the console support in platform specific code
5563         and put together a framework for making this easy in the future so
5564         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5566 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5568         * pedump.c: Fix a warning.
5570 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5572         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5573         mono_class_from_mono_type to avoid bad interactions with the dual representation
5574         of the generic type definition.
5576 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5578         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5579         get the MonoClass for the call context type as it might be a generic
5580         instance.
5582         Fixes #491483.
5584 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5586         * object-internals.h: The Thread object has no execution_context
5587         member anymore.
5589         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5590         the execution context.
5592         * appdomain.c: Bump corlib version.
5594 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5596         * verify.c (do_newobj): Improve error message.
5598 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5600         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5601         is nested in the filter block.
5603         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5604         block is not fully nested.
5606         Fixes #495656.
5608 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5610         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5611         not MonoType to check for equality of valuetypes as the generic type
5612         definition allows for two different encodings: the generic type definition
5613         class or a generic instance over the GTD arguments.
5615         Fixes #496175.
5617 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5619         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5621         * verify.c (do_initobj): Improve error message.
5623 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5625         * metadata-verify.c: Enable pe verification as the issue with #496453
5626         is that the authenticode data directory have a different unspecified
5627         format. Ignore it for now.
5629         * pedump.c: Run the metadata verifier together with the IL verifier.
5631         Fixes ##496453.
5633 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5635         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5637 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5639         * class.c (can_access_type): Check visibility against
5640         the element type for pointers and arrays.
5642         Fixes #496150.
5644 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5646         * metadata-verify.c: Fix cli and table verification to use information
5647         from the MonoImage. A lot of duplicated code got killed.
5649 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5652         This patch starts to integrate the metadata verifier with the runtime code.
5654         This patch causes major regression in functionality for the metadata verifier
5655         as cli and table verification are disabled since they require to be ported to
5656         use MonoImage information.
5658         * image.c (do_mono_image_load): Split the code in this function
5659         into mono_image_load_pe_data and mono_image_load_cli_data.
5660         Add     care_about_pecoff parameter to not load pecoff data.
5661         Call into the metadata verifier for pecoff and cli verification.
5663         * image.c (mono_image_open_raw): New function that doesn't perform
5664         any parsing of the image contents.
5665         
5666         The reason for the 3 new functions is to give pedump better control
5667         into the interaction with the verifier.
5669         * metadata-internals.h: Add new functions from image.c as part of the
5670         internal mono API.
5672         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5673         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5674         to make those functions work together with the runtime.
5676         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5677         true if the image needs to be verified.
5679         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5681         * pedump.c: Use new metadata verifier API.
5683 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5685         * object.c (mono_install_vtable_trampoline): Make this receive a
5686         trampoline creation function instead of trampoline, allowing the JIT
5687         to use a different trampoline for each vtable.
5689 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5691         * object.c (mono_raise_exception): Don't reset the thread abort
5692         exception state here.
5694 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5696         * icall-def.h: New icall for getting the thread abort exception
5697         state for a thread.
5699         * object.c, thread.c, object-internals.h: A thread's abort
5700         exception state is now a GC handle.  To get the object it stands
5701         for, we must move it into the current app domain, if it's
5702         different than the one where it originated from.
5704         * appdomain.c: Bump corlib version.
5706         * domain.c, domain-internals.h: New function for setting the
5707         domain and migrate the thread abort exception or not.
5709 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5711         * metadata-verify.c: Add initial verification of the
5712         field table.
5714 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5716         * metadata-verify.c: Add a macro to conditionally enable
5717         dumping of verification information. Add  make_coded_token
5718         and search_sorted_table to enable search sorted tables
5719         by a given coded token.
5721 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5723         * metadata-verify.c: Add array mapping from table index
5724         to description offset. Add get_col_offset and get_col_size
5725         functions.
5727 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5729         * metadata-verify.c: Add remaining table descriptions offsets.
5730         Add remaining coded index descriptions.
5732 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5734         * metadata-verify.c: Fixed constant table description.
5735         Fixed calculation of HasCustomAttribute coded index size.
5736         Fixed calculation of size for many table indexes. 
5738 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5740         * pedump.c (dump_metadata): Dump table offset instead
5741         of useless pointer in memory.
5743 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5745         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
5747 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5749         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
5750         a missing of for interface types.
5752 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5754         * metadata-verify.c (verify_pe_optional_header): Add comment of why
5755         the code is commented.
5757         * metadata-verify.c (verify_resources_table): Remove spurious printf
5758         and don't fail if there are unmanaged resources. Gmcs generates a useless
5759         one     for all assemblies - I bet it's some MS compatibility junk.
5761 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5763         * metadata-verify.c (verify_typedef_table): Verify the extends field.
5765         * metadata-verify.c (mono_image_verify): Add a is_corlib.
5767         * verify-internals.h: Same.
5769         * pedump.c: Fix for mono_image_verify new signature.
5771 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5773         * metadata-verify.c (verify_typedef_table): Verify for some invalid
5774         flags combinations.
5776 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5778         * metadata-verify.c (verify_module_table): Ignore the generation field.
5780 2009-04-15  Martin Baulig  <martin@ximian.com>
5782         * debug-mono-symfile.c
5783         (mono_debug_symfile_lookup_location): Don't print a warning for
5784         unknown extended opcodes if they're within 0x40 and 0x7f.
5786 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
5788         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
5789         invoke signatures returning an enum. Fixes #494847.
5791 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5793         * metadata-verify.c: Initial code to verify the typedef table.
5795 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5797         * verify.c (mono_method_verify): Don't fail if an unconditional branch
5798         with non empty stack happens before the beginning of a try block.
5800         Fixes #494812.
5802 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5804         * metadata-verify.c: Verify typename and typenamespace fields of
5805         the typeref table.
5807 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5809         * metadata-verify.c: Initial code to verify the typeref table.
5811 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5813         * verify.c (verify_delegate_compatibility): Fix error message.
5815 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5817         * security-core-clr.c: Fix typo
5819 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5821         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
5822         a MonoGHashTable to keep its values alive.
5823         (emit_marshal_boolean): Fix a warning.
5825 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5827         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
5828         not have any interface configured for IPv4/IPv6.
5830 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5832         * assembly.c: fix typo in error message.
5834 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5836         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
5837         allocating the location holding the this argument to prevent
5838         'too many root sets' errors.
5840         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
5841         to mark fields as special static.
5842         (mono_field_static_get_value): Handle special static fields.
5843         (mono_field_static_set_value): Ditto.
5845         * class-internals.h (struct _MonoClassField): Document this.
5847 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5849         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
5850           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
5851           case.  This will handle when managed code returns null to native code.
5853         Code is contributed under MIT/X11 license.
5855 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5857         * object.c (build_imt_slots): Changing a free to a g_free to match
5858           the g_malloc0 in add_imt_builder_entry that allocated this memory.
5860         Code is contributed under MIT/X11 license.
5862 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5864         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5865           the correct TRUE value is passed through the marshaling layer.
5867         Code is contributed under MIT/X11 license.
5869 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5871         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5872         correctly. Fixes #492330.
5873         
5874         * marshal.c: Fix the embedding of object pointers into JITted code in
5875         the native-to-managed wrappers by allocating some GC tracked memory, and
5876         embedding the address of that.
5878 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5880         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
5881         pointers into the vtable.
5883 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
5885         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
5887         * verify.c (verify_ldftn_delegate): Improve error message.
5889 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5891         * reflection.c (my_mono_class_from_mono_type): Remove.
5893 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5895         Prepare to reduce memory usage of owner-less generic parameters (1/n)
5896         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
5897         and constraints fields into ...
5898         (MonoGenericParamInfo): ... this.
5899         (mono_generic_param_info, mono_generic_container_get_param_info):
5900         New accessors.
5901         * class.c, debug-helpers.c, icall.c: Update to changes.
5902         * metadata.c, reflection.c, verify.c: Likewise.
5904 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
5906         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
5908         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
5909         
5910         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
5911         booleans with sbytes.
5913 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5915         * class.c (can_access_instantiation): Verify accesibility of element types
5916         for arrays and pointers.
5918         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
5920         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
5922         Fixes #493068.
5924 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5926         * verify.c (do_invoke_method): Improve error messages.
5928 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5930         * verify.c:  Fixing the MSVC build.
5932         Code is contributed under MIT/X11 license.
5934 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
5936         * security-core-clr.c: Simplify get_reflection_caller not to call
5937         mono_method_get_last_managed (another stack walk) and adjust the
5938         callers to handle a (should not happen) NULL return value.
5940 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5942         Add accessors to some MonoGenericParam fields
5943         * class-internals.h (mono_generic_param_owner): New accessor.
5944         (mono_generic_param_num): Likewise.
5945         (mono_type_get_generic_param_owner): New helper.
5946         (mono_type_get_generic_param_num): New helper.
5947         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
5949 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5951         * class-internals.h (mono_generic_container_get_param): New wrapper.
5952         * class.c, icall.c, metadata.c, verify.c: Use it.
5954 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5956         Fix gtest-252.cs
5957         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
5958         the standard case/loop.  In particular, don't complain about
5959         references to generic type definitions.
5961 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
5963         * debug-helpers.c (dis_one): Decode string arguments.
5965 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5967         * pedump.c (dump_verify_info): Dump type name correctly.
5969 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5971         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
5972         are larger than code size.
5974         This can happen in valid code if the try/catch block is not followed by any instruction
5975         and do a backward branch on the leave instruction.
5977         Fixes #492494.
5979 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
5981         * security-core-clr.c: Fix typo while comparing second method names
5982         in can_avoid_corlib_reflection_delegate_optimization
5984 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5986         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
5988         Fixes #487738.
5990 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5992         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
5993         a MVAR using a class context.
5995         Fixes #490335.
5997 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
5999         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6001         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6003         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6004         functions supplied by the JIT for the SGEN GC.
6006         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6007         
6008 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6010         monitor.c (mono_monitor_try_enter_internal):
6011         Added calls to profile monitor contentions.
6012         Also duplicated a small piece of code (the "get the monitor" logic)
6013         from the fast path to the slow path, and changed the relevant goto
6014         statements, so that monitor acquisition events can be emitted from the
6015         slow path (this is by Paolo Molaro).
6017 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6019         * profiler.c, profiler.h, profiler-private.h:
6020         Added support for profiling monitor contentions.
6022 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6024         * metadata-verify.c: Verify the modules table.
6026 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6028         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6029         using the context of the method been verifier and not of the method been called.
6031         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6032         safely inflate generic types. 
6034 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6036         * security-core-clr.c: Change the strategy for checking the 
6037         "reflection using delegates optimization" to avoid unneeded 
6038         attributes in multiple class libraries.
6040 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6042         * sgen-gc.c: Remove object element in the disappearing link struct
6043         by storing the object pointer in the link.
6045 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6047         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6049 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6051         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6053         * verify.c (mono_method_verify): Do proper bounds checking of exception
6054         clause ranges.
6056 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6058         * loader.c (mono_field_from_token): Don't crash if the field parent could
6059         not be decoded.
6061 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6063         * sgen-gc.c: Execute critical finalizers after ordinary
6064         finalizers.
6066         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6067         mono_defaults.
6069 2009-03-31 Jb Evain <jbevain@novell.com>
6071         * verify.c (do_ldstr): don't check if a string is in the user strings
6072         heap if the current image is dynamic.
6074 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6076         * sgen-gc.c: Wait until the last finalizer has executed when
6077         returning from WaitForPendingFinalizers.
6079 2009-03-31  Martin Baulig  <martin@ximian.com>
6081         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6082         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6083         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6084         (mono_debugger_event_create_appdomain): New function.
6085         (mono_debugger_event_unload_appdomain): New function.
6087         * appdomain.c (mono_domain_create_appdomain_internal): Call
6088         mono_debugger_event_create_appdomain().
6090 2009-03-31  Martin Baulig  <martin@ximian.com>
6092         * mono-debug-debugger.c
6093         (mono_debugger_register_class_init_callback): Also register the
6094         class init callback if the class is already initialized to make
6095         things work with shadow copied assemblies.
6097 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6099         * security-core-clr.c
6100         (mono_security_core_clr_ensure_reflection_access_field): Let 
6101         critical code access the field (just like we do for methods). Use
6102         check_field_access helper.
6103         (mono_security_core_clr_ensure_reflection_access_method): Use 
6104         check_field_access helper.
6106 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6108         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6109         call the run-finalize function directly.
6111         * gc.c, gc-internal.h: Make run_finalize() non-static.
6113 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6115         * sgen-gc.c: Use a separate struct for disappearing links.
6117 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6119         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6120         * MaxIOVectorLength enabled, just ignore them.
6121         Fixes bug #349688.
6123 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6125         * metadata-verify.c: Fix eglib build.
6127 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6129         * threads-types.h: Fix the win32 build.
6131 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6133         * class.c: move coreclr inheritance/override checks to 
6134         security-core.clr.c
6135         * security-core.clr.c|h: add code from class.c with additional
6136         documentation. Fix override check when the method is not critical.
6138 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6140         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6141         (match_class): Ditto.
6143 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6145         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6147         * metadata-verify.c: Implement table layout row size calculation. Verify
6148         the total size of the tables.
6150 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6152         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6154 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6156         * appdomain.c:
6157         * console-io.[ch]: added new mono_console_init() to make sure that
6158         file descriptors 0, 1 and 2 are opened.
6159         Bug #489019 fixed.
6161 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6163         * appdomain.h: Export a new callback type and a new function to
6164         set this callback. This allow a mono host to provide it's own
6165         definition for "platform code".
6166         * metadata-internals.h: Add a core_clr_platform_code flag on 
6167         _MonoImage to (cache and) know if it is representing platform 
6168         code.
6169         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6170         on platform code images.
6171         * security-core-clr.c|h 
6172         (mono_security_set_core_clr_platform_callback): Allow the host
6173         to provide it's own platform check definition.
6174         (mono_security_core_clr_determine_platform_image): Detect if an 
6175         image is platform code (using the specified callback).
6176         (mono_security_core_clr_is_platform_image): Return cached value 
6177         for platform code.
6179 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6181         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6182         which has different parameter types for the 'tid' argument in windows and
6183         the io-layer.
6185         * appdomain.c attach.c threads.c: Use the new helper.
6187 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6189         * metadata-verify.c: Verify valid table bits.
6191 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6193         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6195         * metadata-verify.c: Add initial table schema verification.
6197 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6199         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6200         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6201         #488383.
6203         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6205         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6207 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6209         * security-core-clr.c: Add/update documentation
6211 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6213         * marshal.c (emit_marshal_object): Generate code to throw an exception
6214         instead of throwing it. Fixes #488670.
6216 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6218         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6219         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6220         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6221         and add a call to mono_security_core_clr_ensure_delegate_creation
6222         to do the extra checks required by CoreCLR.
6223         * security-core-clr.c|h: Add function to check delegate creation,
6224         both in the binding and accessibility, under CoreCLR.
6226 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6228         * reflection.c (mono_reflection_create_dynamic_method): when 
6229         coreclr is enabled make sure that every resolved object are
6230         checked (e.g. field and method access).
6231         * security-core-clr.c|h: Add function to check objects resolved
6232         when a dynamic method is created.
6234 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6236         * metadata-verify.c: Cache directory rva translations.
6238         * metadata-verify.c: Add cli-header and streams verification.
6240 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6242         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6243         the wrong offset (8 instead of 6).
6245 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6247         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6248         methods, return the native function address itself. Fixes
6249         #487758.
6251 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6253         * console-io.c: some of the values for control characters might not be
6254         present.
6256 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6258         * exception.c|h: Add helpers to create [Field|Method]AccessException
6259         * icall.c: Add required coreclr check calls for field reflection.
6260         Move the existing (method) check logic into security-core-clr.c
6261         * security-core-clr.c: Add functions to check if the access of a
6262         field or method is allowed when reflecting under coreclr. This is
6263         mostly done using a stack walk to find the "real" caller: i.e. the
6264         code that is calling the reflection
6266 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6268         * gc-internal.h: Change location of gc_wrapper.h
6270 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6272         * class.c: Simplification to coreclr checks for overrides that
6273         makes it easier to set breakpoints.
6275 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6277         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6278         mono_security_core_clr_method_level): Avoid potential 
6279         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6280         user/application code) and make it easier to set breakpoints
6282 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6284         * metadata-verify.c: Reject cli header tables that mono don't handle.
6286 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6288         * pedump.c: Fix CLI header dumping.
6290 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6292         * metadata-verify.c: More CLI header verification.
6294 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6296         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6298 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6300         * metadata-verify.c: Initial verification of the CLI header.
6302 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6304         * metadata-verify.c (verify_resources_table): Fix verification of zero
6305         sized resource section and id entries count.
6307 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6309         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6311 2009-03-17  Jb Evain  <jbevain@novell.com>
6313         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6315 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6317         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6318         (mono_gc_make_descr_for_array): Ditto.
6320 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6322         * verify.c (mono_verifier_is_class_full_trust): Add support for
6323         CoreCLR security mode where trusted assemblies are defined as
6324         "platform code".
6326 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6328         * metadata-verify.c: Add minimal PECOFF resource verification.
6330 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6332         * metadata-verify.c: Be less restrictive with some coff fields.
6334 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6336         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6337         params as boxed values on stack. Fixes #485706.
6339 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6341         * console-io.c: the termios values may vary in different flavors of unix.
6343 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6345         * console-io.[ch]: return the entire set of control characters when
6346         initializing the terminal.
6347         * appdomain.c: bump corlib version.
6349 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6351         * mono-perfcounters.c: added support for in-process custom
6352         performance counters.
6354 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6356         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6358 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6360         * metadata-verify.c: Verify the data pointed by the import table. 
6362 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6364         * metadata-verify.c (load_data_directories): Store data
6365         directory contents.
6367         * metadata-verify.c: Verify the import table. 
6369 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6371         * metadata-verify.c: Verify data directories.
6373 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6375         * metadata-verify.c: Check section header flags.
6377 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6379         * appdomain.c: if the assembly name is a shadow-copied file, return
6380         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6381         in mono_make_shadow_copy.
6382         * icall.c: if the assembly name is a shadow-copied file, replace it
6383         with the original assembly path.
6385         Bug #484244 fixed. NUnit tests for corlib can be run without
6386         --noshadow now.
6388 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6390         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6391         entries when the table is reallocated.
6393         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6394         mono_gc_alloc_fixed () since it contains GC refs.
6396 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6398         * reflection.c (ensure_complete_type): New helper function to call
6399         type resolve handlers for unfinished dynamic types.
6400         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6402 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6404         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6405         #483247.
6407 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6409         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6411 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6413         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6414         between GCHandles of type WeakTrackResurrection and the objects they
6415         point to.
6417         * gc.c: Partly implement the sematics of GCHandles of type 
6418         WeakTrackResurrection: these handles should only be cleared after the
6419         finalizer of the object they are pointing to has ran.
6421 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6423         * icall.c: Partially revert r126631 because using the jump
6424         trampolines for generic shared methods makes it superfluous.
6426 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6428         * threads.c (handle_store): Create the 'threads' hash table with the proper
6429         MONO_HASH_VALUE_GC type.
6431 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6433         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6434         FIRST_GC_TRACKED.
6436         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6437         and LAST_GC_TRACKED as a GC root.
6439         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6441         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6442         the static data even if it consists of 1 reference.
6444         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6445         if there is a GC descriptor.
6447         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6448         instead of through the GC since they contain no object references.
6450 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6452         * generic-sharing.c (instantiate_other_info): Always return a jump
6453         trampoline for method code.
6455 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6457         * culture-info-tables.h: generated to include the en-tt culture.
6459 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6461         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6462         capture the thread context.
6464         * object.c (mono_async_result_new): Cache the invoke wrappers to
6465         ExecutionContext::Capture.
6467 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6469         * marshal.h: Add a prototype for what mono_compile_method returns
6470         for invoke wrappers.
6472         * gc.c: Use the new prototype declaration.
6474 2009-03-04  Geoff Norton  <gnorton@novell.com>
6476         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6477         * gc-internal.h:
6478         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6480 2009-03-04  Martin Baulig  <martin@ximian.com>
6482         * mono-debug.h
6483         (mono_debugger_runtime_invoke): Removed.
6485         * mono-debug-debugger.c
6486         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6488 2009-03-02  Martin Baulig  <martin@ximian.com>
6490         * mono-debug.h
6491         (mono_debugger_unhandled_exception): Removed.
6492         (mono_debugger_handle_exception): Removed.
6493         (mono_debugger_throw_exception): Removed.
6495         * mono-debug.c
6496         (mono_debug_debugger_version): Bump to 5.
6498         * mono-debug-debugger.c: Moved the exception handling code to
6499         ../mini/debug-mini.c
6501 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6503         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6504         finalize_objects_hash.
6506         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6507         
6508         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6509         field.
6511         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6512         cache.
6514         * image.c (mono_image_close): Free it.
6515         
6516         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6517         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6518         on the this argument.
6520         * gc.c (run_finalize): Optimize the calling of the finalizers.
6522 2009-03-03  Martin Baulig  <martin@ximian.com>
6524         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6525         of the `MonoGenericInst' changes.
6527 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6529         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6530         mono_array_class_get_cached to reduce locking contention. Extract
6531         a domain var.
6533         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6534         intermediary managed arrays. Use caching version of mono_array_new
6535         to allocate the result array.
6537         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6539         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6541         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6542         to reduce locking contention.
6544 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6545                 
6546         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6547         thunk builder code for the non-interface case.
6549 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6551         * object.c (get_generic_virtual_entries): New helper function to collect
6552         the virtual generic method instances which need to be added to an IMT
6553         thunk.
6554         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6555         Instead of creating a new IMT thunk, reset the vtable slot to the
6556         trampoline, the thunk will be created the next time the trampoline is called.
6557         (build_imt_slots): Add support for virtual generic methods in interfaces by
6558         adding to the IMT thunk all the methods registered using 
6559         mono_method_add_generic_virtual_invocation ().
6561         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6562         (struct _MonoIMTCheckItem): Ditto.
6564         * object.c (mono_method_add_generic_virtual_invocation): Take a
6565         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6566         the IMT thunk to include all items.
6567         
6568         * object.c (mono_class_create_runtime_vtable): Add a missing
6569         mono_loader_unlock ().
6571 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6573         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6575         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6577 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6579         * object-internals.h: Rename _MonoReflectionEvent to
6580         MonoReflectionMonoEvent so it reflects the right managed type.
6581         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6583         * icall.c:
6584         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6585         type.
6587 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6589         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6590         intermediary managed arrays. Use caching version of mono_array_new
6591         to allocate the result array.
6593 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6595         * reflection.c: Use cached version of mono_array_new alongside
6596         the mono_reflection_get_custom_attrs_by_type call path.
6598 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6600         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6601         intermediary managed arrays. Use caching version of mono_array_new
6602         to allocate the result array.
6604         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6606 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6608         * icall.c: Add small implementation of a growable stack bound array.
6610         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6612         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6613         intermediary managed arrays. Use caching version of mono_array_new
6614         to allocate the result array.
6616 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6618         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6619         helps Enum::CompareTo to be implemented without reboxing all enums
6620         to their underlying type.
6621 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6623         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6624         since it acquires a global lock leading to scalability problems.
6626         * profiler.c: Make the stat profiler work with multiple appdomains, this
6627         currently only works when no appdomains are unloaded.
6629 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6631         * appdomain.c: make the check to avoid copying when the assembly is
6632         already shadow copied actually work.
6634 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6636         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6638         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6639         changes to the managed side.
6641 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6643         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6644         classes + a separate lock for it, as it is used frequently at runtime, not
6645         just during metadata loading/JIT compilation.
6647         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6648         for szarrays.
6649         
6650         * object-internals.h (mono_class_from_name_cached): New macro to cache
6651         the results of the lookup locally without having to declare a static
6652         variable to hold it.
6653         (mono_class_get_field_from_name_cached): Ditto.
6654         (mono_array_class_get_cached): Ditto.
6656         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6657         the new macros.
6658         
6659         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6660         slower search in metadata.
6662         * pedump.c: Fix a warning.
6664 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6666         * reflection.c (encode_locals): Add checks for user types.
6667         (method_encode_clauses): Ditto.
6668         (method_encode_code): Ditto.
6669         (mono_image_create_token): Ditto.
6671         * object-internals.h: Change the type of more fields from MonoReflectionType*
6672         to MonoObject*.
6674 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6676         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6677         the a thread does not suspend within 100ms.
6679         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6680         in addition to StopRequested as well.
6682         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6684         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6685         search the method_hash before inserting a new entry, to avoid crashes when
6686         the same method is inserted multiple times, causing the old 
6687         MonoDebugMethodInfo structure to be freed by the value dtor function.
6689 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6691         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6692         SO_EXLUSIVEADDRUSE where available.
6694 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6696         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6697         runtime invoke wrappers, this time it is string ctor wrappers, which
6698         pass a dummy string as 'this' instead of their obj argument. Fixes
6699         #478473.
6701 2009-02-21  Jb Evain  <jbevain@novell.com>
6703         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6704         only get create_culture once.
6706 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6708         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6709         check before the locking.
6710         
6711         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6712         (mono_reflection_create_runtime_class): Ditto.
6713         (mono_reflection_sighelper_get_signature_local): Ditto.
6714         (mono_reflection_sighelper_get_signature_field): Ditto.
6716         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
6717         is a System.MonoType object or similar.
6718         (monotype_cast): New helper function to cast a MonoObject to a 
6719         MonoReflectionType object.
6721         * object-internals.h: Change MonoReflectionType* members in structures to
6722         MonoObject* members to force the usage of the monotype_cast () function.
6724         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
6725         structures/arrays. This causes us to assert instead of crashing when 
6726         instances of user defined subclasses of System.Type are encountered.
6728 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6730         * cil-coff.h:
6731         * icall-def.h:
6732         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
6733         win32 resource loaded from a PE file.
6735         * image.c: fix mono_image_lookup_resource.
6737 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6739         * icall-def.h:
6740         * threads-types.h:
6741         * threads.c: added internal call for WaitHandle.SignalAndWait.
6743 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
6745         * cominterop.c : Adding cominterop_type_from_handle and 
6746           registering it as an icall.  Replacing all references
6747           to type_from_handle.
6749         Code is contributed under MIT/X11 license.
6751 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6753         * Makefile.am: Add lock-tracer.h and lock-trace.c.
6755         * appdomain.c: Call the tracer init function.
6757         * domain-internals.h: Enable the tracer for the domain locks.
6759         * image.c: Enable the tracer for image locks.
6761         * loader.c: Enable the trace for the loader lock.
6763         * lock-tracer.h:
6764         * lock-tracer.c: Initial implementation of the lock trace utility.
6765         The tracer requires a compile time define to be enabled and a env var
6766         to be enabled at runtime.
6768 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6770         * domain.c (mono_domain_code_foreach): Improve documentation.
6772 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6774         * appdomain.c:
6775         * generic-sharing.c:
6776         * object.c:
6777         * reflection.c:  Adjust locking order to the new semantics where the loader lock
6778         comes first.
6780 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6782         * domain.c: Add mono_domain_code_* functions that perform locking
6783         around the domain codeman.
6785         * domain-internals.h: Export those functions.
6787         * object.c: Use new functions instead of acquiring the domain lock.
6789 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
6791         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
6792         delegate. Fixes #477396.
6794 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6796         * reflection.c (create_custom_attr): Get rid of alloca.
6798 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
6800         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
6801           Adding exception handling for all CCW calls.
6803         Code is contributed under MIT/X11 license.
6805 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6807         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
6809         * marshal.c (emit_marshal_boolean): Add null checks to the new 
6810         native->managed marshalling code. Fixes #476247.
6812 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6814         * class.c (mono_class_get_vtable_entry): Move the addition of
6815         static rgctx invoke wrappers for vtable methods here, this simplifies
6816         a lot of code and causes fewer rgctx wrappers to be created.
6818         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
6819         name of the statistics to begin with an uppercase.
6821 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6823         * reflection.c: Revert previous change as it breaks the build.
6824         
6825 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6827         * verify.c: Properly handle SZARRAY element type.
6829         Fixes #474271.
6831 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6833         * reflection.c (mono_image_create_method_token): Correctly encode
6834         MethodDef MemberRefParent token.
6836         Fixes #472845.
6838 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6840         * image.c (mono_image_close): Delete the critical section before
6841         freeing the memory holding it.
6843 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6845         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
6846         Fixes #476257.
6848 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6850         * pedump.c (main): Call mono_marshal_init so pedump
6851         doesn't crash.
6853 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6855         * loader.c (method_from_memberref): Properly fix #474271 and
6856         don't break the runtime bad.
6858 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6860         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
6861         (mono_domain_alloc0): Ditto.
6863 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6865         * loader.c (method_from_memberref): Don't abort if the array
6866         method is not found. A regular loader failure is more informative
6867         and correct.
6869         Fixes #474271.
6871 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6873         *loader.c: Guard MonoImage::method_cache/methodref_cache
6874         using the image lock instead of the loader lock.
6876         * metadata.h: Add comments about which fields are protected by
6877         the image lock.
6879 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6881         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
6883         * generic-sharing.c (mono_method_construct_object_context): Remove the
6884         wrapper_type == NONE assert, it is not needed.
6886 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6888         * reflection.c (clear_cached_object): New helper function.
6889         (mono_method_clear_object): New function to clear the cached reflection
6890         objects for a dynamic method.
6892         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
6893         Partly fixes # 463323.
6894         
6895 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6897         * class.c:
6898         * loader.c:
6899         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
6901 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6903         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
6904         take the image lock instead of the loader lock.
6906         * metadata-internals.h: Export new functions.
6908 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6910         * domain.c (app_config_parse): Remove another use of stat that is
6911         not necessary as g_file_get_contents already does the presence
6912         check. 
6914 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6916         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
6918         * marshal.c: Move the bstr handling code to cominterop.c.
6920         * marshal.c: Remove some COM interop code missed previously.
6922 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6924         More Paolo patches from the Wii port:
6925         
6926         * security.c: Remove ves_icall_System_Environment_get_UserName
6927         from here.
6929         * icall.c: And put ves_icall_System_Environment_get_UserName
6930         here. 
6932         * appdomain.c (mono_set_private_bin_path_from_config): Remove
6933         redundant call to stat that was only used to test for the file
6934         existence.   Patch from Paolo.
6936         * gc.c (run_finalize): If COM is disabled, do not link in
6937         mono_marshal_free_ccw.
6939         * generic-sharing.c: Use alloca.h here as well.
6941 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
6943         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
6945 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6947         * cominterop.c cominterop.h: New files.
6949         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
6950         function/typedefs which are needed by cominterop.c global.
6952 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6954         * generic-sharing.c: Don't take the loader lock to guard image
6955         mempool allocs.
6957 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6959         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
6960         called without the loader lock which is required to guard MonoImage:tokens.
6962 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6964         * class.c:
6965         * metadata.c:
6966         * method-builder.c:
6967         * marshal.c:
6968         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
6970 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6972         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6973         Rework the code to use regular mono_image_alloc/0.
6975         * loader.c: Rework the code to use regular mono_image_alloc/0.
6977         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6979 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
6981         * object-internals.h : Fixing a typo in the 
6982           MonoReflectionComVisibleAttribute struct.
6984         * marshal.c (cominterop_com_visible): Check the implemented 
6985           interfaces for ComImport.
6987         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
6988           assume that bools should be treated as VARIANTBOOLs.
6990         * marshal.c (emit_marshal_boolean): Adding cases for 
6991           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
6993         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
6994           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
6996         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
6997           should be treated as VARIANTBOOLs.    
6999         Code is contributed under MIT/X11 license.
7001 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7003         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7004         allocation with the image lock.
7006 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7008         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7009         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7011         * object.c: Add mono_string_to_utf8_image.
7013         * object-internals.h: Export mono_string_to_utf8_image.
7015         * reflection.c: Rework all explicit references to the the image mempool to go thought
7016         the mono_image_alloc set of functions.
7018 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7020         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7021         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7022         and generics-sharing.c.
7024         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7025         as first argument. Note that this function remains broken as it doesn't perform locking around the
7026         mempool allocation.
7028         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7030         * image.c: Add g_slist_append_image.
7032         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7033         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7035         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7036         Fix all related code to do the same.
7038         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7040         * metadata-internals.h: Fix the signatures.
7042 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7044         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7045         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7046         and similar to work using MonoImage.
7048         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7049         MonoMemPool.
7051         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7053         * class.c (mono_metadata_signature_deep_dup): Same.
7055         * class.c (inflate_generic_type): Same.
7057         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7059         * metadata.c (mono_metadata_signature_dup_full): Same.
7061         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7062         mono_metadata_signature_dup_full.
7064         * metadata.c (mono_metadata_type_dup): Same.
7066         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7068         * reflection.c: Same.
7070         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7072         * metadata-internals.h: Fix the signatures.
7074         * class-internals.h: Same.
7076 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7078         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7079         and use mono_image_alloc set of functions instead. 
7081         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7082         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7083         of a MonoMemPool.
7085         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7087         * class.c (g_list_prepend_mempool): Removed.
7089         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7091         * image.c: Add g_list_prepend_image.
7093         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7095         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7098 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7100         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7101         mono_image_unlock.
7103         * image.c (mono_image_init): Init the lock field.
7105         * image.c (mono_image_init): Cleanup the lock field.
7107         * image.c: Add mono_image_(un)lock functions.
7109 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7111         * class.c, class-internals.h: mono_method_get_context_general()
7112         combines the functionality of mono_method_get_context() and
7113         mini_method_get_context().
7115         * generic-sharing.c, domain-internals.h:
7116         mono_method_construct_object_context() and
7117         mono_domain_lookup_shared_generic() moved from mini.
7119         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7120         method doesn't have the correct instantiation because it's shared
7121         generic code.  Fixes #473999.
7123 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7125         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7127         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7128         
7129 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7131         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7133         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7135         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7136         and recheck the cache for dups after it.
7138         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7140         Fixes one of the deadlocks found in #473150.
7142 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7144         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7145           For Win32, add additional break conditions for accept.
7147         Code is contributed under MIT/X11 license.
7149 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7151         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7152         lazily initialize the native wrapper cache.
7153         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7154         cache, since they are different from the normal wrappers.
7156         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7158         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7159         AOT compiled native wrappers.
7161 2009-02-09  Geoff Norton  <gnorton@novell.com>
7163         * appdomain.h:
7164         * security-core-clr.c: Allow enabling core-clr from the embedding
7165         API.
7167 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7169         * socket-io.c: when requesting all the local ips, if there are no
7170         interfaces up and running, MS returns 127.0.0.1.
7172 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7174         * mono-perfcounters-def.h: processor time is an inverse time.
7175         Fixes bug #468625.
7177 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7179         * socket-io.c: an empty host name returns the list of local IPs.
7180         Fixes bug #386637 part 1/2.
7182 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7184         * verify.c (mono_class_interface_implements_interface): Call
7185         mono_class_setup_interfaces ().
7186         (merge_stacks): Ditto.
7188 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7190         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7191         klass->interfaces.
7192         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7193         (mono_generic_class_get_class): Ditto.
7195 2009-02-06  U-QUACK\miguel  <miguel@quack>
7197         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7198         they live in security.c
7200         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7201         another bit from Paolo's code.
7203 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7205         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7206         methods which will be discarded by add_imt_builder_entry ().
7208         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7209         need to be boxed.
7211         * loader.c: Add a statistics for the size of the memberref signature cache.
7212         
7213         * loader.c (find_cached_memberref_sig): New helper function.
7214         (cache_memberref_sig): Ditto.
7216         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7217         they will be parsed again for every generic instantiation, leading to unbounded
7218         memory growth.
7220 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7222         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7223         parameters of generic methods.
7225         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7226         after the original method is copied to the inflated method.
7227         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7229         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7230         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7232         * class.c metadata.c: Update after the changes above.
7234 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7236         * metadata-verify.c: Simplified error handling and added
7237         section table validation.
7239 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7241         * class-internals.h (MonoClassExt): New structure containing rarely used
7242         fields of MonoClass.
7243         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7244         through a new 'ext' field.
7246         * class.c (mono_class_alloc_ext): New helper function to allocate 
7247         class->ext.
7249         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7251 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7253         * object.c (mono_object_get_virtual_method): Properly inflate
7254         generic methods.  Fixes #472692.
7256 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7258         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7259         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7260         for the parent type, the created type must be ready to be used on a generic
7261         instantiation.
7262         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7263         we won't have duplicated entries in generic_inst_cache.
7265         Fixes #469553.
7267 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7269         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7270         replace with plain BSD per the comments on the bug MONO77637.
7272 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7274         * class.c (mono_class_get_generic_class): New accessor function.
7275         (mono_class_get_generic_container): Ditto.
7277         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7278         fields, similar to the ones in MonoMethod.
7280         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7281         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7283         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7284         
7285         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7286         the same information as element_class->byval_arg.
7288         * class.c reflection.c: Remove references to class->byval_arg.
7290         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7291         klass->enum_basetype directly.
7293         * verify.c metadata.c object.c icall.c reflection.c: Use 
7294         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7295         directly.
7297 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7299         * icall-def.h: Remove internal calls for sockets when
7300         DISABLE_SOCKET is defined, file system writing features when the
7301         OS only support reading and not writing data and Policy support if
7302         the Policy is disabled.
7303         
7304         * image.c (do_mono_image_open): Apply Paolo's patches for using
7305         mono_file_map_ APIs here.
7307         * assembly.c: Add support for platforms to avoid prefix
7308         auto-detection. 
7310 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7312         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7313         warning.
7315         * class.c (mono_class_inflate_generic_class): New helper function.
7317         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7318         statistics for inflated methods/classes.
7320         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7322         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7323         the call is made from Delegate.CreateDelegate () for the invoke method of
7324         a delegate.
7326         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7328         * metadata.c (mono_metadata_signature_size): New helper function.
7330         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7331         generic instances.
7333         * metadata.c (inflated_method_in_image): Avoid calling 
7334         mono_method_signature () if the method does not already have a signature.
7336 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7338         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7339         valuetype is compatible with target type, check by inheritance as a
7340         VT is not really compatible with System.ValueType, for example.
7342         * verify.c (do_invoke_method): Improve error message.
7344         * verify.c (do_box_value): If boxing a nullable, use the type argument
7345         on stack instead.
7347         * verify.c (do_newobj): Improve error message.  
7349         Fixes #469549.
7351 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7353         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7355 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7357         * generic-sharing.c: Don't hold domain lock when calling
7358         instantiate_other_info().  Fixes #471958.
7360         * domain-internals.h, loader.c: Describe locking policy of domain
7361         lock vs loader lock.
7363 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7365         * verify.c (mono_delegate_signature_equal): Make it possible to check
7366         first-arg-bound delegates to static method.
7368         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7369         static methods with the first arg bound.
7371         Fixes #469529.
7373 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7375         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7376         errors.
7378         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7379         under strict mode. Any type, when boxed can be seen as a reference type.
7381         Fixes #469528.
7383 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7385         * object.h: The lower bound of an array is a signed integer value.
7386         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7387         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7389         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7390         calculate the upper bound.
7391         
7392         Fixes #471252.
7394 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7396         From Paolo's work, refactored, cleared up:
7397         
7398         * threadpool.c, icall.c: ifdef code that requires a working socket
7399         stack.
7401         * metadata.c (mono_metadata_field_info): Do not attempt to return
7402         a value from a function declared as void.
7404         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7405         from the console stack.
7407         * assembly.c: use strrchr instead of rindex.
7409         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7410         alloca.h on systems that have it.
7412         * environment.c: Avoid code that uses stuff from
7413         HAVE_SYS_UTSNAME_H
7414         
7415         * appdomain.c: Include sys/time.h.
7417         * console-io.c: include sys/ioctl.h if it is available.
7419 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7421         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7423         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7424         the method builder.
7426         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7427         after it was created and cached, as the later is not thread safe.
7428         
7429 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7431         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7432         called while the debugging module is not initialized. Fixes #471669.
7434 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7436         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7438         Fixes #471255.
7440 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7442         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7443         loader lock is not taken while the templates lock is held.  Fixes
7444         #471089.
7446 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7448         * metadata.c (type_in_image): Added a check to fix a monodis
7449         crash.
7451 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7453         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7454         nullable arguments.
7456         * object.c (mono_runtime_invoke_array): Ditto.
7457         
7458         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7459         freeing wrappers of dynamic methods.
7461         * loader.c (mono_free_method): Call it. Fixes #463323.
7462         
7463         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7464         methods taking vtype/byref arguments, to fix yet another bug caused by
7465         the sharing of runtime invoke wrappers. Partly fixes #471259.
7467 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7469         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7470         <first file in file table>:1 when the IL offset does not have an associated
7471         line number.
7473 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7475         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7476         variable info for a method.
7478         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7479         
7480 2009-01-30  Jb Evain  <jbevain@novell.com>
7482         * pedump.c: reuse code from monodis to make sure pedump honors
7483         MONO_PATH, which is needed to verify net_2_1 assemblies.
7485 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7487         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7488         there is no line number info.
7490 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7492         Avoid some MonoType allocations
7493         * reflection.c (mono_reflection_initialize_generic_parameter):
7494         Reuse MonoType from param->pklass rather than allocating one.
7495         (mono_dynamic_image_free): Update to changes.
7497 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7499         Rearrange some code to improve consistency
7500         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7501         (mono_reflection_initialize_generic_parameter): ... here.
7503 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7505         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7506         with type constraints as an experiment.
7508         * boehm-gc.c (on_gc_notification): Update mono_stats.
7510 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7512         Avoid some allocations
7513         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7514         pointer to tail array to avoid extra allocation.
7515         * metadata.c (free_generic_inst): Update to changes.
7516         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7517         on-stack struct.
7519 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7521         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7522         return TRUE if the two type objects are the same.
7524 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7526         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7527         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7528         klass->min_align, since klass->min_align contains the managed alignment,
7529         while the native alignment can be different, like for longs on x86.
7530         Fixes #469135.
7532         * class-internals.h (MonoMarshalType): Add a min_align field.
7534 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7536         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7537         the 1.0 format.
7539 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7541         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7542         some comments about the usage of the used_regs field.
7544         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7545         Fixes #469217.
7547 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7549         * appdomain.c: return NULL instead of throwing FileNotFoundException
7550         when LoadAssembly() fails.
7552 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7554         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7555         image if the owner is NULL.  Fixes the AOT failures.
7557 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7559         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7560         MonoGenericParam structure using memset so the image field is initialized
7561         as well.
7563 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7565         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7566         a plain store.
7568 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7570         * class.c (mono_class_setup_vtable_general): In the generic instance
7571         optimization, set method->slot for abstract virtual methods. Fixes part of
7572         #467834.
7574 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7576         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7577         which signals that the unloading has started but all appdomain services must
7578         remain operational.
7580         * appdomain.c (mono_domain_unload): The initial state for unloading now
7581         is unloading_start and we switch to unloading after the managed call to
7582         AppDomain::DomainUnload has finished.
7584         The new unloading state has to be created because managed code in the
7585         DomainUnload event can depend on things like the threadpool still working.
7586         The domain must remain fully functional while the event executes.
7588         This shown as an issue due to Process::WaitForExit, which waits for
7589         async reads of stdout and stderr to complete. Since those are processed
7590         in the threadpool the code deadlocks because the DomainUnload callback 
7591         waits for the async read finished event, which should have been set by a
7592         threadpool job but has been discarded due to the domain been in unload
7593         state.
7595 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7597         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7598         image must match.
7600 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7602         * reflection.c (resolve_object): For fields, inflate the class and
7603         then get the field in the inflated class.
7605 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7607         * object-internals.h (struct _MonoException): Added a comment
7608         explaining the new use of trace_ips.
7610 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7612         * generic-sharing.c (inflate_other_data): Inflate array methods
7613         correctly.
7615         * loader.c, class-internals.h: Rename search_in_array_class() to
7616         mono_method_search_in_array_class() and make it non-static.
7618 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7620         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7621         Hopefully fixes #458168.
7623 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7625         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7626         as it is performed elsewhere.
7628         Code is contributed under MIT/X11 license
7630 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7632         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7633         requests queued.
7634         * object.c (mono_raise_exception): Increment the exceptions total
7635         counter when an exception is thrown.
7636         * class-internals.h: Add a location for storing the total number of
7637         asp.net requests served.
7638         * mono-perfcounters.c: Implement update support for asp.net counters
7639         from the class libraries. Implement read support for asp.net counters
7640         and exceptions total counter.
7642 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7644         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7645         accessing klass->methods. Fixes #467385.
7647 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7649         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7650         for byval arguments without an [Out] attribute. Fixes #467212.
7652         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7653         Fix compilation under android.
7654         
7655         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7656         processed, scan them directly after they are copied, to achieve better locality
7657         and cache usage.
7659         * socket-io.c: Applied patch from Koushik Dutta
7660         (koush@koushikdutta.com). Disable IPV6 when running under android.
7662 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7664         * icall.c (ves_icall_InternalExecute): Add write barriers.
7666         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7667         the GC code.
7669         * sgen-gc.c: Implement write barriers in IL code.
7671 2009-01-17  Geoff Norton  <gnorton@novell.com>
7673         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7675 2009-01-17  Geoff Norton  <gnorton@novell.com>
7677         * image.c: When unloading the image->references table, there can be gaps
7678         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7679         when unloading an appdomain.
7681 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7683         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7684         speed up ptr-in-nursery checks.
7686         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7687         threads_lock () to prevent deadlocks.
7689         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7690         does not need to be scanned during minor collections, since writes to it
7691         must use write barriers.
7693 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7695         * metadata-verify.c: Add pe nt header verification.
7696         
7697 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7699         * gc.c: Fix a few warnings when using SGEN.
7701 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7703         * metadata-verify.c: Add pe optional header verification.
7705 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7707         * sgen-gc.c: Add support for user defined marker functions, used by
7708         MonoGHashTable to avoid registering a GC root for every hash node.
7710 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7712         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
7713         non-pinned roots into separate hashes to avoid having to traverse them
7714         in functions which are only interested in one kind.
7716 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7718         * metadata-verify.c: Add pe header machine field verification.
7719         
7720 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7722         * metadata-verify.c: Add pe header size verification.
7724 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7726         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
7727         using the GC, they don't contain references.
7729         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
7731 2009-01-13  Geoff Norton  <gnorton@novell.com>
7733         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
7734         AppDomains created on the native side can be cleaned up on the native side.
7736 2009-01-13  Geoff Norton  <gnorton@novell.com>
7738         * appdomain.c: Ensure that we call mono_context_init for the embedding api
7739         as well as the managed api.
7741 2009-01-13  Geoff Norton  <gnorton@novell.com>
7743         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
7744         with a MonoAppDomain initialized against it.
7746 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7748         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
7749         
7750         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
7752         * marshal.c: Avoid setting the exception clauses after a method has been entered 
7753         into the wrapper caches. Fixes #465700.
7755         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
7756         method builder.
7757         (mono_mb_create_method): Set the clauses from the method builder.
7759 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7761         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
7762         Patch from Makoto Kishimoto.
7764 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7766         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
7767         encoding them as ROOT_DESC_COMPLEX.
7768         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
7770 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7772         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
7773         no longer point to the nursery.
7775         * sgen-gc.c: Add a few comments/FIXMEs.
7776         
7777         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
7779         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
7780         initialization of the various _method variables thread safe. Fixes
7781         #465377.
7783 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7785         * domain.c, domain-internals.h: Remove the shared_generics_hash
7786         and its lookup functions.
7788 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
7790         * socket-io.c:  Fixing the MSVC build. 
7792         Code is contributed under MIT/X11 license.
7794 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
7796         * metadata-verify.c: Add pe header watermark verification.
7798 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7800         * metadata-verify.c: Add lfanew verification.
7802 2009-01-12  Jb Evain  <jbevain@novell.com>
7804         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
7805         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
7807 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7809         * socket-io.c: Fix the build.
7811         * environment.c: Fix an #ifdef.
7813 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7815         * threadpool.c (async_invoke_thread): Handle the wait function returning
7816         WAIT_IO_COMPLETION as well.
7817         (async_invoke_io_thread): Ditto.
7819 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
7821         * threads.c: Fixing the Windows build.
7823         Code is contributed under MIT/X11 license.
7825 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7827         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
7828         interrupt a wait.
7829         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
7830         the thread to wait again.
7832 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7834         * metadata-verify.c: Initial skeleton of the metadata verifier.
7836         * pedump.c: Add support for the metadata verifier.
7838         * verify-internal.h: Export the whole assembly metadata verifier function.
7840 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7842         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
7844 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7846         * Makefile.am: Upgrade dtrace-prelink.sh location.
7848 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7850         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
7851         well. Otherwise the shutdown deadlock that happens on unix will can happen
7852         as well.
7853         If the main thread code finishes too fast it's possible that the finalizer
7854         thread won't have executed yet, won't record itself as the finalizer thread
7855         and the shutdown sequence will wait on it forever.
7857 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7859         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
7860         with MSVC.
7862 2009-01-08  Miguel de Icaza  <miguel@novell.com>
7864         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7865         Robert Jordan for pointing this out.
7867 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7869         * icall.c
7870         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7871         ves_icall_System_IO_DriveInfo_GetDriveType.
7873 2009-01-07  Miguel de Icaza  <miguel@novell.com>
7875         * icall.c: Wrap calls to mono_strtod in CriticalSection
7876         invocations when using eglib, to work around #464316.
7878 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7880         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
7881         return value of GetCurrentDirectory to never access unitialized memory.
7883 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7885         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
7886         return value of GetCurrentDirectory and expand the buffer if needed.
7888         Fixes #459094.
7890 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
7892         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
7893           Adding a call to mono_init_com_types.
7895         Code is contributed under MIT/X11 license.
7897 2009-01-07  Geoff Norton  <gnorton@novell.com>
7899         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
7900         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
7901         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
7902         be the value of the ip buffer.
7904 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7906         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
7907         interfaces_packed here.
7909         Fixes part of #463294.
7911 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7913         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
7915         Fixes part of #463294.
7917 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7919         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
7920         is a boxed complex as well.
7922         Fixes part of #463294.
7924 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7926         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
7927         control if a methodspec should be created for the generic method definition from external assemblies.
7928         Caching of methodspec is done using the handleref hash table.
7930         Fixes #462592.
7932 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
7934         * loader.c (find_method): When searching the interfaces of a class
7935         check the transitive closure of implemented interfaces.
7937         Fixes #463303.
7939 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7941         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
7942         
7943 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7945         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
7946         interfaces calculation to fill_valuetype_array_derived_types.
7948         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
7949         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
7950         for example.
7952         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
7953         interfaces for valuetypes if needed.    
7955         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
7956         for their basetype as well. Types are array expanded if rank is > 0.
7958         Fixes #400716.
7960 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
7962         * socket-io.h : Changing the signature of
7963           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
7964           the blocking state.
7966         * icall-def.h :  Changing the signature of
7967           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
7969         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
7970           For Windows only.  Avoid blocking when calling accept by
7971           querying for a connection via select.  The loop also queries
7972           the thread state every 1000 micro seconds for the thread
7973           stop state.  This will avoid the process hanging on shutdown
7974           when using a TcpChannel that is never connected to.
7976         Code is contributed under MIT/X11 license.
7978 2008-12-30  Marek Safar  <marek.safar@gmail.com>
7980         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
7982 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7984         * class.c (get_implicit_generic_array_interfaces): Extract common
7985         code to a helper function making it a lot easier on the eyes.
7987 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7989         * class.c (get_implicit_generic_array_interfaces): If the internal
7990         enumerator is an interface inflate System.Object instead of itself.
7992         Fixes #461261.
7994 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
7996         * object.c (mono_runtime_invoke_array): Don't assert with
7997         byref nullable types.
7999         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8000         byref nullables we unbox the object and store it on the
8001         stack. 
8002         We can't use the boxed object since it is the T of Nullable<T>
8003         and the boxed representation of a nullable it's underlying type
8004         or null.
8005         We could cheat and create a boxed nullable and use the same
8006         machinery of other byref VTs but this feels like a hack and
8007         using the stack has the bonus of reducing heap pressure.
8009         Fixes #461941.
8011 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8013         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8014         return value.
8016         Fixes #461867.
8018 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8020         * icall-def.h : Adding an internal call definition for 
8021           System.Environment.internalBroadcastSettingChange.
8023         * icall.c : Adding a Windows only implementation to broadcast a 
8024           WM_SETTINGCHANGE when an environment variable has changed.
8026         Code is contributed under MIT/X11 license.
8028 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8030         * class.c, class-internals.h: Made
8031         mono_class_has_parent_and_ignore_generics() non-static.
8033 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8035         * image.c: deal with the mmap failing when loading an image.
8037 2008-12-17  Geoff Norton  <gnorton@novell.com>
8039         * threadpool.c: Ensure that the io_queue_lock is initialized
8040         in all circumstances, as we always attempt to cleanup against it.
8042 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8044         * icall.c (ves_icall_System_Environment_get_Platform): For
8045         compatibility reasons for existing client code we will keep
8046         returning 4 for a while.   
8048         For how long will depend on the documentation being updated, and
8049         for us to give client code a chance to be updated.
8051         This reverts the original decison on #433108 since we did not
8052         catch roughly 33 instances of the broken code in our own source
8053         code base, we did not catch failures on the buildbots, and QA did
8054         not bring this as a problem.
8056         Only today I found some customer's code breaking due to our own
8057         class libraries not being fully updated and tracked it down to
8058         this change.  I am reverting it because if we could not even get
8059         our story straight in our own code base, how can we hope that our
8060         end user code be fixed?
8062         As of this morning, our Wiki page that documents how to detect
8063         Unix had not been fixed.    
8065 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8067         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8069         * class.c (mono_class_get_fields): Handle loading errors.
8071 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8073         * 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.
8074         
8075 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8077         * mono-perfcounters.c: avoid warning.
8079 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8081         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8082         make sure all interfaces have MonoClass::interface_id set.
8084         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8085         method table is property set.
8087 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8089         * class.c: New function mono_class_setup_interface_id that setup
8090         MonoClass::interface_id if needed.
8092         * class-internals.h: Export new function.
8094 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8096         * class.c: Add code to sanity check the vtable after setup_vtable_general
8097         has done it's work.
8099 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8101         * icall.c: make Assembly.GetExecutingAssembly work properly when
8102         reflection is used to invoke the method.
8103         Bug #321781 fixed.
8105 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8107         * metadata/generic-sharing.c: Look for constraints in all type
8108         arguments, not just the first one.
8110 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8112         * appdomain.c: return the correct CodeBase for an Assembly instance
8113         that was loaded from the shadow-copy directories.
8114         Bug #458190 fixed.
8116 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8118         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8120         * sgen-gc.c (check_object): New debugging helper function.
8122         * object.c: Fix calls to mono_value_copy_array ().
8124 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8126         * class.c (mono_class_setup_fields): If working on an inflated class
8127         first check if the generic definition did init with success.
8129         Fixes #445361.
8131 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8133         pedump.c (main): Fix a warning.
8135 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8137         * object-internals.h : Adding a definition for 
8138           MonoReflectionComVisibleAttribute.
8140         * marshal.c (cominterop_com_visible) :  Method added to check the 
8141           ComVisible attribute of a class.
8143         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8144           cominterop_raise_hr_exception added to consolidate common code 
8145           to raise hr exceptions.
8147         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8148           if a managed class should support IDispatch.
8150         * marshal.c 
8151           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8152           Added additional checks for managed object when getting 
8153           an IDispatch interface.
8155         Code is contributed under MIT/X11 license.
8157 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8159         pedump.c (main): Handle mono_get_method () returning NULL. 
8161 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8163         * marshal.h: Fix a warning.
8165 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8167         * marshal.c : Adding cominterop_release_all_rcws to release all
8168           runtime callable wrappers held by the runtime.
8170         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8171           
8172         Code is contributed under MIT/X11 license.
8174 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8176         * metadata.c (mono_image_alloc_lock): New helper function.
8177         (mono_image_alloc0_lock): Ditto.
8179         * metadata.c: Use the alloc_lock () helper functions for allocating
8180         memory from the image mempool.
8182 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8184         * class.c (mono_class_from_generic_parameter): Document it's
8185         locking behavior. Fix double checked locking here, we stored in
8186         param->pklass a partially initialized MonoClass and no membar was used.
8188 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8190         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8191         (3) functions are present in the C library use them to do the
8192         job. If they are absent, make sure that the sum of int_part and
8193         dec_part is rounded before returning. This is necessary due to the
8194         division of dec_part by the power of 10 before the final addition
8195         is performed - if the result is not rounded in some cases it will
8196         yield invalid results.
8198 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8200         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8201         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8202         instruction instead of a pointer constant.
8204 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8206         * loader.c (mono_method_get_header): Do most of the work outside the
8207         loader lock, to avoid assembly load hook deadlocks.
8209         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8210         (mono_metadata_parse_type_full): Ditto.
8212 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8214         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8215         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8216         funtions. Finally, use a lock to produce well ordered output.
8218         The lock looks silly, as all calls to the corlib mempool should be guarded
8219         with the loader lock, but for some reason this fact doesn't help. 
8221         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8223 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8225         * socket-io.c: 64 bit big-endian fixes.
8227 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8229         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8230         targets that require strict compatibility between the types.
8232         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8233         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8234         Kill the strict argument and create a new one valuetype_must_be_boxed.
8236         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8237         state that all valuetypes must be boxed.
8239         Fixes #448560.
8241 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8243         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8244         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8246         Contributed under MIT/X11 license.
8248 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8250         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8251         the inflate_generic_type machinery should handle it.
8253         This avoids a crash when the field's flags is zero and it's type is
8254         a primitive.
8255         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8256         is zero and will return one of the cached built-in primitive types. Since
8257         those types live in read-only memory, the code that copies it crashes.  
8259 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8261         * object.c: Don't put function descriptors into generalized IMT
8262         thunks.
8264 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8266         * class.c: Enable generic code sharing on PPC64.
8268 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8270         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8271         from mini/mini.c.
8273         * generic-sharing.c: Allocate the method template slists from the
8274         image mempool so it doesn't leak.
8276 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8278         * class.c (generic_array_methods): Release the linked list.
8280 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8282         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8283         invocation to g_utf16_to_utf8().
8285 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8287         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8288         arguments on big endian archs.
8290 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8292         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8293         the type name (test added in corlib).
8295 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8297         * pedump.c: initialize perf. counters. Fixes a segv.
8299 2008-11-25  Martin Baulig  <martin@ximian.com>
8301         * mono-debug-debugger.c
8302         (mono_debugger_runtime_invoke): Return the exception object if an
8303         exception was thrown.  Visual Studio displays the exception object
8304         in the locals window.
8306 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8308         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8309         ftnptr.
8311 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8313         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8314         MONO_TYPE_U are sizeof (gpointer), too.
8316 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8318         * marshal.c (mono_type_native_stack_size): Fixed size and
8319         alignment for reference types.
8321 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8323         * class.c (mono_class_generic_sharing_enabled): Disable generic
8324         code sharing for PPC64.
8326 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8328         * icall.c (mono_method_get_equivalent_method): Make sure
8329         method->klass->methods is inited before looping over it.
8331 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8333         * object.c: when calling ExecuteAssembly in a newly created domain,
8334         the configuration file and application base are already set up.
8335         Bug #446353 take 2 fixed.
8337 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8339         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8340         Fixes #444715. Fix a warning.
8342 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8344         * appdomain.c: write the full path of the assembly to the .ini file
8345         created when "shadow-copying"
8346         Bug #446353 fixed.
8348 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8350         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8351         if signature==FALSE.
8353 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8355         * marshal.h : Fix the cygwin build.
8356            marshal.c:12442: undefined reference to `_IID_IMarshal'
8357           
8358         Code is contributed under MIT/X11 license.
8360 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8362         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8363           free threaded marshaler when QueryInterface is called on a COM callable
8364           wrapper requesting the IMarshal interface.
8365           
8366         Code is contributed under MIT/X11 license.
8368 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8370         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8372         * reflection.c (mono_type_get_object): Special case the very common
8373         void type.
8375         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8376         hold typeof(void).
8378 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8380         * process.h : Adding method declaration for
8381           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8382           
8383         * process.c : Adding implementation for
8384           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8385           
8386         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8387           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8389         Code is contributed under MIT/X11 license.
8391 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8393         * appdomain.c (unload_thread_main): Clean up threadpool by
8394         calling mono_thread_pool_remove_domain_jobs.
8396         * domain-internals.h (struct _MonoDomain): Add new fields to
8397         help coordinate the cleanup of the threadpool.
8399         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8400         that cleans up the threadpool of all jobs associated with an appdomain.
8401         It does that by cleaning up the queues and making sure all active
8402         threads are accounted.
8404         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8405         unloaded or in the process of. Take this is such way that there is
8406         no race condition between another thread starting the unload and the
8407         current thread acknowledging it.
8409         * threadpool.c (async_invoke_thread): Same.
8411         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8412         firing the new thread.
8414         * threadpool.c (start_tpthread): Same.
8416         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8418         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8420 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8422         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8423         Add support for DuplicateHandle.
8424         
8425         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8426         Add support for DuplicateHandle.
8427         
8428         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8429         Add support for DuplicateHandle.
8431         Code is contributed under MIT/X11 license.
8433 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8435         * class-internals.h: Make min_align into a whole byte.
8437         * class.c: Set min_align for SIMD types to 16.
8439 2008-11-05  Geoff Norton  <gnorton@novell.com>
8441         * attach.c: Default the attacher to enabled for all cases including
8442         embedded.
8444 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8446         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8447         change r117650.
8449 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8451         * monitor.c, monitor.h: New function for querying offsets of
8452         members of MonoThreadsSync.
8454 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8456         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8457         to speed up this function and to avoid the boundless memory growth caused by
8458         the signature_dup () calls.
8460 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8462         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8463         wrapper.
8465         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8466         by 1 bit.
8468         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8470 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8472         * appdomain.c:
8473         * domain-internals.h: made mono_set_private_bin_path_from_config()
8474         "internal".
8475         * object.c: call the above function after setting the configuration
8476         file path for the root domain.
8477         Fixes bug #314478.
8479 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8481         * assembly.c: when the assembly is loaded from an absolute path, end
8482         basedir with a directory separator.
8483         Bug #440781 fixed.
8485 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8487         * monitor.c (mono_monitor_get_fast_enter_method): If
8488         CompareExchange is not available, don't create the fastpath
8489         instead of asserting.  (The method is missing in the 1.1 profile.)
8491 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8493         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8495         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8496         Monitor.Exit IL fastpaths.
8498 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8500         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8502 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8504         * class.c (mono_class_create_from_typedef): Added Vector2l.
8506 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8508         * class.c (mono_class_create_from_typedef): Added Vector2d.
8510 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8512         * appdomain.c: translate \ into / for cache_path.
8513         * domain-internals.h: new mono_is_shadow_copy_enabled().
8514         * icall.c: (fill_reflection_assembly_name) do the same path
8515         manipulations that get_code_base does.
8516         (get_code_base) use mono_is_shadow_copy_enabled.
8518 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8520         * appdomain.c: shadow-copied assemblies go to CachePath +
8521         ApplicationName when both are set. DynamicBase has nothing to do with
8522         shadow copies.
8523         Bug #406877 fixed.
8525 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8527         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8528         STANDALONESIG table.
8530         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8531         standalone signatures.
8533         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8534         comparison code: instead of comparing the signatures using a custom
8535         equals function, transform them to a common signature and compare that. This
8536         works better with AOT.
8538 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8540         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8542         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8543         call for generic instances.
8544         (mono_class_setup_properties): Call setup_properties () before accessing
8545         gklass->properties.
8547         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8548         over the virtual methods of a class using metadata if possible, avoiding the
8549         creation of MonoMethod's for non-virtual methods.
8550         
8551         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8552         get_virtual_methods () to iterate over the virtual methods of classes.
8554 2008-10-25  Martin Baulig  <martin@ximian.com>
8556         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8558 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8560         * class.c (mono_class_create_from_typedef): Added Vector4i.
8562 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8564         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8565         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8566         special-casing applies to eliminate the call completely.
8568 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8570         * class.c (mono_class_create_from_typedef): Added Vector8s.
8572 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8574         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8576 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8578         * icall.c: get rid of annoying warning.
8580 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8582         * threadpool.c: in 1.x, if you change the background status of the
8583         threadpool thread, it's not reset.
8584         Remove unnecessary calls to SetState.
8586 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8588         * threadpool.c: asynchronously create a set of idle threads upon first
8589         use of the threadpool. SetMinThreads will now start the appropriate
8590         number of idle threads if they are not already running. The default is
8591         1 threadpool thread per CPU. Increased the maximum number of threads
8592         per CPU to 10.
8594 2008-10-22  Martin Baulig  <martin@ximian.com>
8596         Revert r116521 from Zoltan, it breaks the debugger:
8598         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8599         over the virtual methods of a class using metadata if possible, avoiding the
8600         creation of MonoMethod's for non-virtual methods.
8601         
8602         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8603         get_virtual_methods () to iterate over the virtual methods of classes.
8605 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8607         * threads.c: when creating a threadpool thread, set its state to
8608         'background'.
8609         * threadpool.c: reset the background state of a threadpool thread
8610         after finishing each work item
8611         Bug #437888 fixed.
8613 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8615         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8616         
8617         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8618         generic instances which works by inflating the methods in the container
8619         class's vtable.
8621         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8622         variant which doesn't make a copy if no inflation was done.
8623         (mono_class_setup_fields): Use it.
8625         * metadata.c (mono_metadata_get_shared_type): New helper function to
8626         return a shared instance of a given MonoType.
8628         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8629         a copy of most non-generic types.
8631 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8633         * threadpool.c: remove one more GetSystemInfo () call.
8635 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8637         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8638         use the code in mono-proclib.h to get processor information.
8640 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8642         * appdomain.c: fixed the logic that determines whether assemblies in a
8643         directory are "shadow-copied" or not. Bug #433483 fixed.
8645 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8647         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8648         warning.
8650 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8652         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8653         returning a vtype.
8655         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8656         reflection.c: Use mono_field_get_name () for accessing a field's name.
8658         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8659         class.c
8661         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8662         field.
8664         * loader.c (find_method_in_class): Reenable the metadata optimization by
8665         not using it for generic instances.
8667         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8668         data/def_type fields from MonoClassField into a separate structure.
8669         (struct MonoClassField): Remove data/def_type fields.
8670         (struct _MonoClass): Add a 'field_def_values' array to store the default
8671         values/RVA for fields.
8673         * class.c reflection.c: Update after the changes.
8674         
8675         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8676         for accessing field->data.
8678         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8680         * loader.c (find_method_in_class): Revert the last change for now as
8681         it breaks Mono.C5 unit tests.
8683         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8684         'field_generic_types' and 'field_objects' which contain the information
8685         previously stored in MonoInflatedField.
8686         (MonoInflatedField): Delete.
8687         (struct _MonoClassField): Delete 'generic_info' field.
8689         * reflection.c: Store the information which was previously in 
8690         field->generic_info in MonoDynamicGenericClass instead.
8692         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8693         MonoClassField changes.
8695 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8697         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8698         store the value inside the data array of the MonoMethodWrapper.
8699         This saves memory, is faster and fixes the lifetime issues (methods
8700         were never removed from the hash previously). May also fix bug#436996.
8702 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8704         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8705         generic instances, compute the type from the generic definition instead of
8706         looking in field->generic_info.
8708         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8709         for inflated fields, the only user was get_fieldref_token () which no
8710         longer needs it.
8712         * class.c (mono_class_init): Revert the last change as it seems to cause
8713         crashes.
8715         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
8716         bytes on 64 bit platforms.
8718         * object.c (mono_class_create_runtime_vtable): Fix a warning.
8719         
8720         * object.c (mono_class_create_runtime_vtable): Don't initalize
8721         field->data/field->def_type here, it is done lazily by 
8722         mono_class_get_field_default_value ().
8724         * icall.c (ves_icall_get_enum_info): Call 
8725         mono_class_get_field_default_value () instead of directly accessing
8726         field->data and field->def_type.
8728         * object.c (get_default_field_value): Ditto.
8730         * class.c (mono_field_get_data): Ditto.
8731         
8732         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
8733         call for generic instances.
8735         * loader.c (find_method_in_class): If klass != from_class, then inflate
8736         the method with the context of from_class, since the caller assumes this.
8738 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
8740         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
8741         for accessing method->slot.
8743 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
8745         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
8747 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8749         * class.c (mono_method_get_vtable_index): Use
8750         mono_method_get_vtable_slot () for accessing method->slot.
8752         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
8753         accessing klass->methods.
8755         * class.c (mono_method_get_vtable_slot): New helper function.
8756         (mono_class_get_vtable_entry): Ditto.
8757         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
8758         accessing method->slot.
8760         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
8761         method to get_inflated_method ().
8763         * class.c (mono_class_get_inflated_method): New helper method to obtain
8764         a method of an inflated class without calling setup_methods ().
8765         (mono_class_get_cctor): Use get_inflated_method.
8767         * generic-sharing.c (mono_class_get_method_generic): Ditto.
8768         
8769         * marshal.c image.c: Lazily create all the marshal caches.
8771         * image.c (mono_image_init): Move initialization of runtime_invoke
8772         caches to marshal.c.
8774         * marshal.c (get_cache): New helper function to lazily initialize a 
8775         wrapper cache.
8776         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
8778         * debug-helpers.c (mono_method_full_name): Include generic arguments.
8780 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
8782         * loader.c: fixed check for interface type.
8784 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8786         * appdomain.c: check for NULL setup before it's referenced.
8789 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8791         * class.c: remove the unused old vtable setup code.
8793 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8795         * class.c: don't depend on interface order in
8796         setup_interface_offsets (bug #435777).
8797         * reflection.c: sort the InterfaceImpl table (patch from
8798         Jb Evain  <jbevain@novell.com>).
8800 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8802         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
8803         the low level assemblies lock.
8805 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
8807         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
8808         object.c, reflection.c, socket-io.c, threads.c: introduced
8809         mono_framework_version () to return the major framewrok version,
8810         changed the code that was using more complex patterns to use it.
8811         Return the correct value for PlatformID for OSX.
8813 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
8815         * icall-def.h, process.h, process.c: added an icall to get info about
8816         processes using mono-proclib.
8818 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
8820         * mono-perfcounters.c: use the mono-proclib functions to
8821         access process information.
8823 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8825         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
8826         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
8827         reflection.c: remove rawbuffer usage: mmap support is more sanely
8828         provided by utils/mono-mmap.
8830 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
8832         * gc.c: use posix semaphores when possible so that
8833         mono_gc_finalize_notify() is signal safe.
8835 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
8837         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
8838         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
8839         be #ifdef-ed out, the linker will remove the rest.
8841         * marshal.c: Implement DISABLE_COM.
8843         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
8845 2008-10-11  Miguel de Icaza  <miguel@novell.com>
8847         * locales.c (string_invariant_compare_char): Optimization: do not
8848         call g_unichar_type unless we actually need the information.
8850 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8852         * object.c, class-internals.h: Also create remoting trampolines
8853         for generic methods.  Pass the domain to the remoting trampoline
8854         creation function, too.
8856 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8858         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
8860 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8862         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
8863         Vector4ui.
8865 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8867         * assembly.c:
8868         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8870 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8872         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8873         for the least possible amount of time (extending the fix in r113458).
8875 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8877         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
8879 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8881         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
8882         as possible simd intrinsic types.
8883         Optimized the test to check for the common prefix first.
8885 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
8887         * class.c: back out part of a broken optimization committed on
8888         May 23th (bug #433908).
8890 2008-10-09  Mark Probst  <mark.probst@gmail.com>
8892         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
8893         Win32.  Should fix #432388 for most cases until we have the new
8894         profiler on Win32.
8896 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
8898         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
8899         instead of using inst->id so the hash is stable for AOT.
8901 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8903         * appdomain.c:
8904         * icall.c: create a .ini file for shadow-copied assemblies that
8905         contains the location of the original assembly. Use this to return the
8906         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
8907         Also fix the number of '/' for windows when returning the CodeBase.
8908         Fixes bug #430920.
8910 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8912         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
8914         Code is contributed under MIT/X11 license.
8916 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8918         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
8919           if if the class vtable needs initialized.
8921         Code is contributed under MIT/X11 license.
8923 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8925         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
8926           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
8927           STRING->BSTR, and CLASS->INTERFACE.
8929         Code is contributed under MIT/X11 license.
8931 2008-10-07  Marek Habersack  <mhabersack@novell.com>
8933         * sysmath.h: changed the declaration of the
8934         ves_icall_System_Math_Round2 icall by adding an extra
8935         away_from_zero parameter.
8937         * sysmath.c (ves_icall_System_Math_Round2): added support for
8938         away from zero rounding. The icall now takes an extra boolean
8939         parameter to signal that away from zero operation is requested.
8941 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8943         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
8944         the delegate klass so it can work with full-aot.
8945         (mono_marshal_get_delegate_end_invoke): Ditto.
8946         (mono_marshal_get_delegate_invoke): Ditto.
8948 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
8950         * gc.c, attach.h, attach.c: remove a bad pattern:
8951         add_finalizer_callback () is not implemented correctly, it can't
8952         without adding more overhead to the finalizer loop and it's not
8953         even needed, since we know exactly what we need to call, so there is
8954         no need to do so through an expensive function pointer.
8956 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
8958         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
8959         for the no-gc case.
8960         * attach.c (mono_attach_init): Remove the #ifdef.
8962 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
8964         * attach.c (mono_attach_init): Don't use
8965         mono_gc_add_finalizer_thread_callback when compiling without GC.
8966         Fixes #432306.
8967         
8968         Code is contributed under MIT/X11 license.
8970 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
8972         * class.c (mono_class_create_from_typedef): Remove the 
8973         #ifndef DISABLE_SIMD stuff.
8975 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
8977         * class-internals.h (MonoClass): Added simd_type bit field.
8979         * class.c (mono_class_create_from_typedef): Check if type is a simd
8980         intrinsic.
8982 2008-10-03  Mark Probst  <mark.probst@gmail.com>
8984         * object.c (mono_method_add_generic_virtual_invocation): Only add
8985         instantiations to the thunk whose count is at least as large as
8986         the threshold.
8988 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
8990         * icall.c: changed the Type of the exception thrown when trying to
8991         invoke a constructor on an abstract class. Part of the fix for bug
8992         #324185.
8994 2008-10-02  Mark Probst  <mark.probst@gmail.com>
8996         * class.c, class-internals.h (mono_method_get_vtable_index): New
8997         function which returns the index into the vtable and properly
8998         handles inflated virtual generic methods.
9000 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9002         * object.c, domain.c, object-internals.h, domain-internals.h:
9003         Generalize IMT thunk machinery to also handle thunks for virtual
9004         generic method invokes.  When a virtual generic method is invoked
9005         more than a number of times we insert it into the thunk so that it
9006         can be called without lookup in unmanaged code.
9008         * generic-sharing.c, class-internals.h: Fetching a
9009         MonoGenericInst* for a method from an (M)RGCTX.
9011 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9013         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9014         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9015         marshalling. Fixes #431304.
9017 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9019         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9020           handle when ref is specified without In or Out.
9022         Code is contributed under MIT/X11 license.
9024 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9026         * loader.c (mono_get_method_constrained): Don't expand method with
9027         the class's context, because it's already a method of that class.
9029 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9031         * attach.c : should be correct build fix.
9033 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9035         * attach.c: Fix the previous change.
9037 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9039         * attach.c : quick w32 build fix.
9041 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9043         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9044         crashes MonoDevelop: #430455.
9046 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9048         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9049         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9051         * domain.c: Remove initialization/cleanup of the removed fields.
9053 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9055         * class.c (mono_class_generic_sharing_enabled): Enable generic
9056         code sharing for PPC.
9058 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9060         * attach.c : Fixing the Windows builds.
9062         Code is contributed under MIT/X11 license.
9064 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9066         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9067         the default generic sharing mode to 'all'.
9069 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9071         * generic-sharing.c, class-internals.h: New function for checking
9072         whether a method needs a static RGCTX invoke wrapper.  A few
9073         funtions moved from mini/generic-sharing.c.
9075         * icall.c: New function used.
9077 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9079         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9080         Static RGCTX invoke wrapping applies to value type methods, too.
9082         * class.c (mono_class_setup_vtable_general): In generic-shared
9083         value types, wrap methods with a static RGCTX invoke wrapper.
9085 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9087         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9088         osx build.
9090 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9092         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9093         register a callback which is called when the finalizer thread is woken
9094         up.
9095         (finalizer_thread): Call the callback if it exists.
9097         * attach.h attach.c: New files, implementing the attach mechanism.
9099         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9100         
9101         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9102         by the previous change.
9104 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9106         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9107         loader.c, marshal.c, metadata-internals.h, metadata.c,
9108         method-builder.c, object.c, reflection.c: introduced specific functions
9109         to allocate from the domain and image mempools and cleaned up most of
9110         the code to use them (still missing a few in reflection.c).
9111         Keep the loader bytes counter updated.
9113 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9115         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9116         loader-related counters.
9118 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9120         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9121         added more MS-compatible counters.
9123 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9125         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9126         class->blittable. Fixes #428217.
9128 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9130         * reflection.c (mono_image_get_field_on_inst_token): Call 
9131         field_encode_signature () since that handles custom modifiers too.
9132         Fixes #424663.
9134 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9136         * reflection.c (add_custom_modifiers): New helper function to merge custom
9137         modifiers stored in objects to a MonoType.
9138         (fieldref_encode_signature): Encode custom modifiers.
9139         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9140         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9142 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9144         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9145         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9146         64-bit IL only images because imports are not resolved for IL only images.
9147         Special thanks to Bill Holmes for finding this bug and testing the patch.
9148         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9150         Contributed under MIT/X11 license.
9152 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9154         * mono-config.c (dllmap_start): Add support for the bits keyword
9155         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9157 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9159         * reflection.c (inflate_mono_method): When the class the method is
9160         to be inflated for is itself not inflated, just return the method.
9162 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9164         * mono-perfcounters.c: use more user friendly process instance names.
9166 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9168         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9169           handle "[in] ref" and "[in][out] ref" cases.
9171         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9172           to mono_mb_create_method.  This was causing problems calling native to
9173           managed passing Variants by value.
9175         Code is contributed under MIT/X11 license.
9177 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9179         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9180         before accessing the friend_assembly_names field.
9182         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9183         times.
9184         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9185         called lazily when it is needed.
9187         * metadata-internals.h (struct _MonoAssembly): Add 
9188         'friend_assembly_names_inited' flag.
9190 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9192         * mono-perfcounters-def.h: fix the types of a few counters.
9193         * mono-perfcounters.c: implemented the instance names getter
9194         and a few bugfixes.
9196 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9198         * culture-info-table.h : regenerated.
9200 2008-09-17  Robert Jordan  <robertj@gmx.net>
9202         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9203         context bound objects. Fixes #415577.
9205         Code is contributed under MIT/X11 license.
9207 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9209         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9210         implementation (bug #423582).
9212 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9214         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9215         is not set. Fixes #426309.
9217 2008-09-16  Jb Evain  <jbevain@novell.com>
9219         * class.c (mono_class_from_name): fix the exported type look up
9220         when the type is defined in a referenced assembly.
9222 2008-09-16  Jb Evain  <jbevain@novell.com>
9224         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9225         increment the next index counter on each iteration to make that work
9226         for more than one type forwarder. Unmanaged part to fix #422929.
9228 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9230         * object-internals.h: enum ComInterfaceType in
9231         MonoInterfaceTypeAttribute is guint32, not guint16.
9233 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9235         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9236         writing code.
9238 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9240         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9241         not gboolean.
9243 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9245         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9246         Endianness fixes for MonoSymbolFileOffsetTable.
9248 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9250         * process.c (complete_path) : Removing quotes from the 
9251           input path.  The glib file routines do not handle file paths
9252           that have quotes around them.
9254         Code is contributed under MIT/X11 license.
9256 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9258         * socket-io.h : Adding a comment to provide locations where 
9259           changes to MonoSocketAsyncResult need to be synced.
9261         Code is contributed under MIT/X11 license.
9263 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9265         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9266         parameters as well. Fixes #425001.
9268 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9270         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9271         windows build.
9273 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9275         * console-io.c: Add support for tracking the window size if it
9276         changes.
9278         The setup is very simple: the TtySetup function will now return a
9279         pointer to a location in memory that tracks the current console
9280         size.  The managed code checks its current value every time its
9281         queried against the last value set, and updates accordingly.
9283         With this setup we can work with multiple consoles, and we do not
9284         require to poke into managed code from a signal handler.
9286         Additionally, the environment for COLUMNS and LINES is now handled
9287         in unmanaged code.
9289         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9291 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9293         * marshal.c (mono_type_native_stack_size): Treat
9294         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9296 2008-09-04  Jb Evain  <jbevain@novell.com>
9298         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9299         to nullables.
9301 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9303         * verify.c (verify_type_compatibility_full): Revert change
9304         to allow converting a native int to unmanaged pointer be verifiable
9305         under non-strict mode.
9306         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9308         * verify.c: Added some TODOs.
9310 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9312         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9313           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9314           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9316         Code is contributed under MIT/X11 license.
9318 2008-09-02  Jb Evain  <jbevain@novell.com>
9320         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9322 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9324         reflection.c (typebuilder_setup_fields): Handle classes with
9325         explicit size.
9327 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9329         class.c (mono_class_setup_events): Add memory barrier due to
9330         double checked locking.
9331         
9332         class.c (mono_class_setup_properties): Same.
9334 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9336         * class.c (mono_class_is_assignable_from): Fix the build.
9337         
9338         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9339         before accessing klass->interface_bitmap. Fixes #421744.
9341 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9343         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9344         the runtime into no-exec mode, useful when running the AOT compiler.
9346         * appdomain.c gc.c object.c: Avoid executing managed code when running
9347         in no-exec mode.
9348         
9349         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9351         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9352         special case when the mono_assembly_loaded () returns NULL because the 
9353         search hook is not installed.
9355 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9357         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9358         crashes in bstr marshalling on linux.
9360 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9362         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9363         with more than one parameter.
9365 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9367         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9368         start/stop flow control as well when turning off ICANON (allows
9369         C-s and C-q to be read by Console.ReadKey).
9371 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9373         * class.c (mono_class_init): Move the initialization of nested classes
9374         into mono_class_get_nested_types (). Fixes #418433.
9376         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9377         flag.
9379         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9380         iterating tough the nested classes of a class.
9382 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9384         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9385         on arm.
9387 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9389         * console-io.c (sigcont_handler): Support signal chaining for
9390         SIGCONT.
9392         (console_set_signal_handlers): Use best practices with sigaction,
9393         clear the structure before using it. 
9395 2008-08-22  Robert Jordan  <robertj@gmx.net>
9397         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9398         Fix the Windows build.
9400 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9402         * class.c (mono_class_generic_sharing_enabled): Make the default
9403         sharing mode 'corlib'.
9405 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9407         * console-io.c (console_set_signal_handlers): Fix a warning.
9409         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9410         method normally, the JIT will take care of avoiding recursion.
9412 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9414         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9416         Code is contributed under MIT/X11 license.
9418 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9420         * console-io.c (sigcont_handler): We need to restore the entire
9421         termios state, not only the original settings, as things like echo
9422         can be controlled after this (Booish exposes this issue with its
9423         own ReadLine implementation).
9425         Additionally, we need to set the terminal back into keypad_xmit
9426         mode.
9427         
9428         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9429         string as a paramter as well.   Otherwise we get different
9430         keyboard sequences.
9432 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9434         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9435         delegates with byref out parameter passing. Fixes #351520.
9437         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9438         a generic context.
9439         (mono_type_get_desc): Add the type arguments for GENERICINST.
9440         (mono_method_full_name): Stringify the class name using mono_type_full_name
9441         so it picks up generic arguments.
9443 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9445         * console-io.c: Removed debug output.
9447 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9449         reflection.c (mono_reflection_create_runtime_class): Alloc
9450         the nested classes linked list using the dynamic image mempool.
9451         Fixes leak in corlib compilation.
9453 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9455         * console-io.c: Fix incredibly annoying behavior on the console
9456         after resuming execution after control-z.   This affected every
9457         console application.
9459 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9461         * mempool-internals.h: Header for mono private mempool functions. The first
9462         two function are for allocating glib linked lists using pools.
9464         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9466         * Makefile.am: Added mempool-internals.h.
9468 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9470         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9471         (mono_domain_free): Ditto.
9473         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9474         be used by the JIT to store its domain-specific information, instead of putting
9475         it directly into MonoDomain.
9477         * domain.c (mono_install_create_domain_hook): New helper function to install
9478         a hook which initializes domain->runtime_info.
9480         * domain.c (mono_install_free_domain_hook): Ditto.
9481         
9482 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9484         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9485         asserting if the ares parameter is null.
9487         * mono-perfcounters.c: Fix warnings.
9489         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9490         is not needed, don't check for interruptions either.
9491         (mono_marshal_get_delegate_end_invoke): Ditto.
9493 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9495         * mono-perfcounters.c (predef_readonly_counter): added support for
9496         reading the ASP.NET Requests Queued counter from another process.
9498 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9500         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9501         MonoImage to simplify the AOT code.
9503 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9505         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9506         marshalling. Fixes #416078.
9508 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9509         
9510         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9511         it is set, looking up the icall address is deferred to the JIT, since 
9512         in embedded scenarios, the icall might not be registered in the runtime
9513         doing the AOT compilation. Backported from the 2.0 branch.
9515 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9517         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9518         Fixes #415621.
9520 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9522         * Makefile.am: added support for cross-compilation.
9524 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9526         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9528 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9530         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9532 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9534         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9535         mono-perfcounters.c: performance counters implementation.
9537 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9539         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9540         to gpointer, letting the AOT code decide what to store in it.
9542 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9544         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9545           mono_class_setup_methods if the methods are not initialized.
9547         Code is contributed under MIT/X11 license.
9549 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9551         * verify.c: Remove some debug code I commited by accident.
9553         * verify.c (mono_method_is_valid_in_context): Change the return value
9554         to make possible to distinguish between invalid and unverifiable.
9556         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9557         methods.
9559 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9561         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9562         constraints. Fixes regression in gtest-253.
9564 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9566         * verify.c (mono_verifier_verify_class): Don't allow generic types
9567         with explicit layout.
9569         * verify.c (mono_method_verify): Check locals and argument types.
9571 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9573         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9574         wait if the thread is in StopRequested state.
9576         * class.c (mono_class_from_name): Refactor the module searching code into
9577         a separate function so it can be reused in the AOT case too.
9579 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9581         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9582         Check both the type and it's generic type definition for loader errors.
9583         
9584         * verify.c (mono_method_is_valid_in_context): Don't generate another
9585         error when a type errors occur, this leads to the wrong exception been
9586         thrown.
9588 2008-07-28  Dick Porter  <dick@ximian.com>
9590         * icall-def.h
9591         * process.c
9592         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9593         New internal calls to duplicate and close a process handle.
9595 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9597         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9599 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9601         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9603 2008-07-27  Robert Jordan  <robertj@gmx.net>
9605         * class.c (mono_class_init): Don't compute class.has_finalize for
9606         valuetypes. Fixes #412477.
9608 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9610         * verify.c: Implement constraint equivalence checking.
9611         This is required when a generic parameter is used as
9612         argument to a constrained one.
9614         Fixes #410637.
9616 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9618         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9620         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9622         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9623         synch with managed object layout.
9625 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9627         * verify.c (do_branch_op): Handle valuetypes and generic
9628         arguments properly.
9630         * verify.c (do_cmp_op): Same.
9632         Fixes #410383.
9634 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9636         * generic-sharing.c: Fix memory leaks.
9638         * class.c, class-internals.h: Make
9639         mono_class_inflate_generic_type_with_mempool() non-static.
9641 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9643         * pedump.c (dump_verify_info): Dump full class name.
9645 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9647         * generic-sharing.c: Removed some old code that didn't do anything.
9649 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9650         * profiler.c: Added runtime_initialized_event,
9651         mono_profiler_install_runtime_initialized and
9652         mono_profiler_runtime_initialized. This new hook tells the profiler
9653         when the runtime is sufficiently initialized to be able to call
9654         mono_thread_attach on the root appdomain.
9655         * profiler.h, profiler-private.h: Likewise.
9657 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9659         * verify.c (do_cast): Do boxing for generic arguments as well.
9661         * class.c (is_nesting_type): Drop generic instantiations before
9662         checking for nesting.
9664         * class.c (can_access_instantiation): Allow access to generic
9665         arguments.
9667 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9669         * verify.c (verify_class_for_overlapping_reference_fields):
9670         On some cases, the field size might be zero, guard against that.
9671         Fix the explicit layout check to work as expected.
9673 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9675         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9676         mono_thread_resume () during shutdown, since the thread we want to abort
9677         might be suspended.
9679 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9681         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9682         warning.
9684         * debug-mono-symfile.c: Fix a warning.
9686         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9688         * object.c (mono_class_vtable): Check if exception_type is set, and return
9689         NULL as defined by the function comments.
9691 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9693         * mempool.c: Use malloc for every single mempool allocation if the
9694         configure option is set.  This makes it easier to track mempool
9695         allocations with tools like Valgrind.
9697 2008-07-22  Jb Evain  <jbevain@novell.com>
9699         * reflection.c (create_dynamic_mono_image): emit the same
9700         metadata version that SL2 does when creating a SL2 image.
9702 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9704         * icall-def.h:
9705         * icall.c: New icall System.Enum:get_hashcode. This function
9706         avoids the overhead of boxing the enum to the underlying type.
9708 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9710         * reflection.c (mono_method_get_object): Don't let static RGCTX
9711         invoke wrappers get into MonoReflectionMethods.
9713 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
9715         * object-internals.h:
9716         * object.c: New mono_runtime_class_init_full function
9717         that makes throwing the exception optinal.
9719         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
9720         for the case where the exception object is supplied.
9722 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
9724         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
9725         old ld versions.
9727         Contributed under MIT/X11 license.
9729 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9731         * string-icalls.c (ves_icall_System_String_InternalSplit):
9732         Optimize array allocation by caching the MonoClass of the
9733         array type.
9735         * icall.c (ves_icall_Type_GetMethodsByName): Same.
9737         * reflection.c (mono_param_get_objects): Same.
9739 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9741         * icall-def.h:
9742         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
9743         It inflates the given type using the class context.
9745 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
9747         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
9748         the vtable if it already exists.
9750         * object-internals.h: Add mono_class_try_get_vtable as part of the
9751         internal API.
9753         * reflection.c (mono_type_get_object): Use the MonoObject from the
9754         vtable when possible. Reduces locking contention on reflection heavy
9755         code.
9757 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
9759         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
9760         g_bit_nth_msf () since that macro is not implemented in eglib.
9762 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9764         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
9765         on platforms which do not support it.
9767 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9769         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
9771 2008-07-11  Martin Baulig  <martin@ximian.com>
9773         * mono-debug-debugger.h
9774         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
9776         * mono-debug-debugger.c
9777         (_mono_debugger_interruption_request): New global volatile variable.
9778         (mono_debugger_check_interruption): New public function.
9780         * threads.c
9781         (mono_thread_current_check_pending_interrupt): Call
9782         mono_debugger_check_interruption().
9783         (mono_thread_interruption_checkpoint_request): Likewise.
9785 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9787         * verify.c: Add more type checks for loaded types. Verify the result
9788         handle from ldtoken.
9790 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9792         * loader.c (field_from_memberref): Don't crash if the field
9793         wasn't found.
9795 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9797         * verify.c: Verify if type and method instantiations
9798         don't have invalid VAR or MVAR arguments.
9800 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9802         * verify.c: Fix double free of function pointer list.
9804 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9806         * object.c (mono_string_to_utf8): Comment the new code as it
9807         breaks under eglib.
9809 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
9811         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
9813 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9815         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
9816           is not throw too many times.
9818         Code is contributed under MIT/X11 license.
9820 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9822         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
9823         debugging is turned off.
9825 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9827         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
9829 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9831         * class-internals.h, class.c: Added new generic sharing option:
9832         Share only stuff in System.Collections.Generic, which is now the
9833         default.
9835 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9837         * generic-sharing.c, class-internals.h: New function for getting a
9838         generic method in a generic class given the corresponding method
9839         for a different instantiation of the class.  Partly refactored
9840         from mini-trampolines.c.
9842         * class.c: Make sure generic methods have a class_inst if they are
9843         part of a generic class.
9845         * metadata.c (mono_type_stack_size_internal): Handle type
9846         variables.
9848 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9850         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
9851         Signifies whether information on the this/vtable/mrgctx variable
9852         is available.
9854 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9856         * object.c, object-internals.h, icall.c: New function
9857         mono_delegate_ctor_with_method(), which does the same as
9858         mono_delegate_ctor(), but takes an explicit method argument
9859         instead of taking the method from the jit info.
9861         * marshal.c: When creating a delegate with an inflated method take
9862         the "this" argument as the target class for the castclass.
9864 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9866         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9867         mono_jit_info_table_find() to perform very badly in some cases.
9869 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9871         * icall.c (type_from_typename): Handle 'string'.
9873         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
9874         wrappers into the wrapper_hash, since the key is not a MonoMethod.
9876 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9878         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
9880         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
9881         number of available managed allocator types.
9883         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
9884         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
9886 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9888         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
9889         which is a low level lock protecting just the 'jit_code_hash' hash table.
9891         * domain.c: Initialize+cleanup jit_code_hash_lock.
9892         
9893 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9895         * coree.c (mono_load_coree): Set coree_module_handle global variable only
9896         after initialization.
9898         * coree.h: Make MonoFixupExe internal.
9900         Contributed under MIT/X11 license.
9902 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9904         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
9905         because that is platform independent. Check NumberOfRvaAndSizes in PE32
9906         as well.
9907         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
9908         image being loaded is a CLI image and _CorValidateImage gets called.
9910         * coree.h: Add MonoLoadImage.
9912         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
9913         instead of LoadLibrary.
9915         Contributed under MIT/X11 license.
9917 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
9919         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
9920         for any primitive type.
9922 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9924         * object.c (mono_array_new_specific): Optimize this and the other allocation
9925         functions a bit.
9926         
9927         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
9928         domains too if mono_dont_free_domains is set.
9930         * domain-internals.h (mono_dont_free_domains): New internal option controlling
9931         whenever to free appdomain data after it has been unloaded.
9933         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
9934         
9935 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
9937         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
9938         (mono_method_get_equivalent_method): Fix a warning.
9940         * object.c (mono_message_init): Avoid looking up array types for each call.
9942 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9944         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
9945         call.
9947         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
9948         even more.
9950         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
9951         each iteration.
9953         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
9954         fields of an enum.
9956 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
9958         * object.c (mono_value_box): Fix boxing of nullables.
9960 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
9962         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
9963         mono_module_handle that is defined by the linker; no initialization required.
9964         * coree.h: Remove mono_module_handle, add __ImageBase, update
9965         mono_image_open_from_module_handle.
9966         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
9967         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
9968         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
9969         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
9970         to 4 GB away from image base address. IA64 version is not tested but was very
9971         easy to implement and should work if we ever need it.
9972         * domain.c (mono_init_internal): Avoid system error message boxes.
9973         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
9974         with has_entry_point. Handle do_mono_image_load fauilre correctly.
9975         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
9976         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
9977         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
9979         Contributed under MIT/X11 license.
9981 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9983         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
9984         as part of the private mono API.
9985         
9986         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
9987         Do proper argument checking for methods that belong to generic classes.
9988         Do proper type resolution for GMFH/2.
9989         Fixes #377324.
9990         
9991 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9993         * verify.c (do_switch): Fix a memory corruption bug with
9994         the jump index is out of bound.
9996 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9998         * verify.c: Disable debug code.
10000 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10002         * reflection.c (mono_image_get_methodbuilder_token): Use
10003         mono_image_get_methodspec_token_for_generic_method_definition
10004         instead of mono_image_get_memberref_token. We cache more memberef
10005         entries now.
10007 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10009         * verify.c: Inflate exception clause types.
10010         Fixes #402606.
10011         
10012 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10014         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10015         name.
10017         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10019         * reflection.c (mono_image_create_method_token): Same.
10021 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10023         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10024         It does the same as mono_image_get_methodref_token but works on
10025         MethodBuilder.
10027         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10028         and always generate a methodspec. This follows the old behavior and fixes
10029         the regressions in System.Core. 
10031 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10033         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10034         don't event mono_class_get () succeeds. Fixes #402182.
10036 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10038         * metadata-internals.h: Added MonoDynamicImage::methodspec
10039         hashtable to store methodspec tokens created for MethodBuilders.
10041         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10042         MethodBuilders as open instantiations if a methodspec was requested.
10044         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10046         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10048         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10050         Fixes bug #349190.
10052 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10054         * loader.c (method_from_methodspec): Avoid crashing if the
10055         method lookup fails.
10057 2008-06-20  Dick Porter  <dick@ximian.com>
10059         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10060         classes being in a different assembly.  Fixes bug 399184.
10062 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10064         * loader.c (mono_loader_init): Make this callable multiple times.
10065         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10066         the runtime is initialized. Fixes #401755.
10068 2008-06-19  Dick Porter  <dick@ximian.com>
10070         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10071         Fixes bug 349688.
10073 2008-06-19  Dick Porter  <dick@ximian.com>
10075         * socket-io.c:
10076         * icall-def.h: Implement Socket generic Send() and Receive()
10077         methods.  Fixes bug 395168.
10079 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10081         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10083         Contributed under MIT/X11 license.
10085 2008-06-18  Martin Baulig  <martin@ximian.com>
10087         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10088         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10089         set to 80.0.  The debugger <-> runtime interface is now frozen as
10090         well.   
10092         * mono-debug.c
10093         (mono_debug_debugger_version): Bump to 4.
10095 2008-06-18  Martin Baulig  <martin@ximian.com>
10097         * debug-mono-symfile.c
10098         (load_symfile): Don't check the minor version.
10100         * debug-mono-symfile.h: Bump the version number to 50.0.
10102 2008-06-18  Martin Baulig  <martin@ximian.com>
10104         * debug-mono-symfile.c
10105         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10106         minimum required version.
10108 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10110         * reflection.c (mono_custom_attrs_from_property): Fix support for
10111         retriveving cattrs of dynamic inflated generic types.
10113         * reflection.c (mono_custom_attrs_from_event): Same.
10115         * reflection.c (mono_custom_attrs_from_field): Same;
10117         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10119         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10120         Moved to metadata.c.
10122         * metadata.c: New functions to retrive the equivalent field, event
10123         of property from the generic type definition.
10125         * metadata-internals.h: Added new functions from metadata.c.
10127 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10129         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10130         to cached in a mempool is used.
10132         * metadata.c (free_generic_class): In some situations field generic_info type
10133         is not properly dup'ed and leads to double free'ing.
10135         Fixes #400643.
10137 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10139         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10140         this arguments (will be needed later for generic methods).
10141         Collect stats.
10143 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10145         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10146         Create a static RGCTX invoke wrapper for methods which require it.
10148 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10150         * object.c, class-internals.h: New function for checking whether
10151         an individual field is special static.
10153 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10155         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10156         linear search since the table is sorted.
10158         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10159         Fixes #324180.
10161 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10163         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10164         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10166         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10168         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10169         
10170         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10171         InterlockedCompareExchange to query and modify 
10172         thread->interruption_requested.
10174         * object-internals.h (struct _MonoThread): Change interruption_requested
10175         to a gint32 so it can be modified by atomic operations. Add 
10176         'critical_region_level' from the managed side, change small_id to a guint32,
10177         add new set of 'unused' fields.
10179         * appdomain.c: Bump corlib version.
10181 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10183         * class.c (mono_class_from_name): Search modules as well. Fixes
10184         #322332.
10186 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10188         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10189         templates.  Templates are generalized with an additional type_argc
10190         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10191         have type_argc>0.
10193         * domain-internals.h, domain.c: New hash table for looking up
10194         MRGCTXs.
10196         * metadata.c, metadata-internals.h: Rename hash and equal
10197         functions for MonoGenericInst's and make them public.
10199         * class-internals.h: New data structures for the MRGCTX.  Macros
10200         for distinguishing slots in the RGCTX and the MRGCTX.
10202 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10204         * object.c (mono_method_get_imt_slot): Put the same methods of
10205         different instantiations of the same generic interface in the same
10206         IMT slots, to make generic sharing simpler.
10208 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10210         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10212         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10213         This function works just like mono_metadata_field_info, but
10214         accept a mempool as argument to be used allocating memory.
10216         * marshal.c (mono_marshal_load_type_info): Use new function
10217         to load marshal data into image mempool.
10219 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10221         * class.c (mono_class_inflate_generic_type_with_mempool):
10222         This function allows to inflate a generic type using
10223         a mempool.
10225         * class.c (inflate_generic_type): Take a mempool as argument
10226         and use it to do type dup'ing.
10228         * class.c (mono_class_setup_fields): Field type for generic
10229         generic classes are allocated from the image mempool.
10231         * metadata.c (free_generic_class): Inflated field type is
10232         now allocated in the image mempool.
10234 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10236         * threads.c (thread_cleanup): Free MonoThread::name.
10238 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10240         * appdomain.c (ensure_directory_exists): avoid unnecessary
10241         mkdir(2) calls when the shadow directory already exists.
10242         (mono_make_shadow_copy): copy also satellite assemblies from the
10243         private bin directories.
10245 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10247         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10248         
10249         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10250         a page boundary. Fixes #396219.
10252 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10254         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10255         due to double-checked locking.
10257 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10259         * assembly.c (build_assembly_name): Release memory on failure.
10261         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10263 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10265         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10266         memory on failure.
10268 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10270         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10271         memory on failure.
10273 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10275         * loader.c (field_from_memberref): Check if field signature type is equal
10276         to the non-inflated type of the field. Fixes #398980.
10278 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10280         * assembly.c (mono_assembly_load_from_full): Call 
10281         mono_assembly_load_friends () outside the assemblies lock, since it can
10282         acquire the loader lock. Fixes #323696.
10284         * reflection.c (resolve_object): Inflate the inst with the context for
10285         FieldOnTypeBuilderInst. Fixes #399010.
10287 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10289         * reflection.c (mono_image_get_field_on_inst_token): Don't
10290         inflate the field to encode it's signature. If it's a
10291         VAR or MVAR it should stay that way in the signature.
10292         Fixes #399047.
10294 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10296         * reflection.c (resolve_object): Release memory of inflated types.
10298 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10300         * loader.c (mono_method_get_signature_full): Remove assert about
10301         loading a methodspec to a generic method. We have such methods, such as
10302         System.Threading.Interlocked::CompareExchange<T>.
10303         This assert was removed since it crashes the verifier when it checks
10304         methods calling CompareExchange<T>.
10306 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10308         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10309         of Type array and not MonoType.
10311 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10313         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10314         <lupus@ximian.com>
10316 2008-06-10  Martin Baulig  <martin@ximian.com>
10318         * debug-mono-symfile.h
10319         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10320         changes to the file format, but we were generating incorrect
10321         source file indices in the line number table due to a bug, which
10322         made backtraces report an incorrect source file.
10324 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10326         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10327         mini/debug-mini.c to here.
10329         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10331         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10332         use it to release structs returned by mono_debug_find_method.
10334 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10336         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10337         since it needs to set method->slot for all interface methods.
10339 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10341         * class-internals.h: Forgot to add.
10343 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10345         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10347         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10348         Lookup the custom attributes from property_hash.
10350         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10351         in property_hash. Allocate all data using the image mempool.
10353         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10354         for dynamic_custom_attrs to checks if the image is dynamic.
10356 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10358         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10359         assemblies array.
10360         
10361         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10362         runtime functions while holding the domain assemblies lock.
10364 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10366         * verify.c: Reapplied the last bit of the reverted changes.
10368 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10370         * verify.c: Reapplied more of the reverted changes.
10372 2008-06-09  Martin Baulig  <martin@ximian.com>
10374         * debug-mono-symfile.c (load_symfile): Check the major version
10375         first; if it's wrong, don't print the minor version in the error message.
10377 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10379         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10380         lock instead of the domain lock to avoid deadlocks, since the thread might
10381         already hold the loader lock.
10383         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10384         (mono_thread_attach): Ditto.
10386         * monitor.c: Use a TLS variable for holding the current thread id instead
10387         of calling pthread_self ().
10388         (mono_monitor_init_tls): New internal function to initialize the TLS
10389         variable.
10390         (mono_monitor_try_enter_internal): Put the owner == id check after the
10391         owner == 0 check.
10393         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10394         missed optimizations when using gcc-4.3.
10396 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10398         * reflection.c (mono_dynamic_image_free): Free the memory
10399         used by MonoGenericParam in MonoDynamicImage::gen_param.
10401         * reflection.c (mono_reflection_setup_generic_class): Allocate
10402         container from mempool.
10404         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10405         container from mempool.
10407 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10409         * threads.c (mono_set_pending_exception): New internal function to set the
10410         pending exception of the current thread.
10411         (mono_thread_get_and_clear_pending_exception): Check for 
10412         thread->pending_exception as well.
10414         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10416         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10417         it can trigger a collection.
10419 2008-06-06  Martin Baulig  <martin@ximian.com>
10421         Merged the `debugger-kahalo' branch.
10423         * mono-debug.h
10424         (MONO_DEBUGGER_VERSION): Bumped to 72.
10426         * debug-mono-symfile.h
10427         (MonoSymbolFileMethodIndexEntry): Removed.
10428         (MonoSymbolFileMethodEntry): New public typedef.
10429         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10430         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10431         `data_offset'.
10432         (MonoSymbolFileMethodEntry): Removed.
10433         (MonoSymbolFileLexicalBlockEntry): Removed.
10434         (MonoSymbolFileLineNumberEntry): Removed.
10435         (MonoDebugLexicalBlockEntry): Removed.
10436         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10437         removed `num_il_offsets' and `il_offsets'.
10438         (MonoSymbolFile): Replace `version' with `major_version' and
10439         `minor_version'.
10440         (MONO_SYMBOL_FILE_VERSION): Replace with
10441         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10442         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10444         * debug-mono-symfile.c
10445         (mono_debug_symfile_lookup_location): Add support for the new line
10446         number table format.
10448 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10450         * metadata.c (free_generic_class): Release the inflated
10451         MonoClass of dynamic generic classes if it's not a generic
10452         type definition.
10454 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10456         * verify.c: Reapplied more of the reverted changes.
10458 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10460         * reflection.c (lookup_custom_attr): Clean the cached flag or
10461         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10462         for SRE types.
10464 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10466         * verify.c: Reapplied a small part of the reverted changes.
10468 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10470         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10472         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10473         previously in managed code.
10474         (mono_monitor_exit): Ditto.
10475         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10477         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10478         the managed definition.
10480 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10482         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10484 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10486         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10487         
10488         * monitor.c: Add some micro optimizations.
10490         * icall.c (type_from_typename): Handle 'bool'.
10492 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10494         * verify.c: Implement constructor verification per P III 1.8.1.4.
10495         Fixes #396716.
10497 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10499         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10500         holding the assemblies lock here too.
10502 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10504         * verify.c: Kill stack_top function.
10506 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10508         * verify.c: Kill stack_get function.
10510 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10512         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10514 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10516         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10517         more reliable.
10519         * verify.c (mono_method_verify): Inflate params and locals to avoid
10520         mismatch when checking for compatibility.
10522 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10524         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10525         Length prefix should be size in bytes. Fix bug #339530.
10526         
10527         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10528         Length prefix should be size in bytes. Fix bug #339530.
10530         Code is contributed under MIT/X11 license.
10532 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10534         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10536         Contributed under MIT/X11 license.
10538 2008-06-05  Martin Baulig  <martin@ximian.com>
10540         * mono-debug-debugger.c
10541         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10543 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10545         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10546         while holding the assemblies lock to prevent deadlocks. Handle the case
10547         where the search hook returns NULL but the assembly was still loaded.
10548         Fixes #323696.
10550         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10551         modify domain state.
10553 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10555         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10556         * Makefile.am (pedump_LDADD): Post-process object files and
10557         add dtrace-generated object file, if necessary.
10559         Code is contributed under MIT/X11 license.
10561 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10563         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10565 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10567         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10569 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10571         * threads.c: Try to free everything from the delayed free table
10572         when shutting down threads, and set the variable to NULL after the
10573         table is freed so that calling
10574         mono_thread_hazardous_try_free_all() when shutting down the root
10575         domain doesn't crash.
10577 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10579         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10580         the caller if resulting type was inflated.
10582         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10583         was inflated.
10585         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10588 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10590         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10591         class library tests.
10593         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10594         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10595         #396989.
10597 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10599         * domain.c, domain-internals.h: The JIT infos are now freed by the
10600         JIT info table code.  They are freed immediately if there only a
10601         single JIT info table in circulation.  If there is more, the free
10602         is delayed via a queue.
10604         * threads.c, threads-types.h: New hazard pointer function for
10605         freeing all freeable delayed items in one sitting.
10607 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10609         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10611         * reflection.c (typebuilder_setup_properties): Same.
10613         * reflection.c (typebuilder_setup_events): Same.
10615 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10617         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10618         and use it for allocating memory.
10620         * reflection.c (mono_marshal_spec_from_builder): Same.
10622         * reflection.c: Change code to use new signatures.
10624         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10626 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10628         * decimal.c (rescale128): Put back one line which was accidently commented
10629         out.
10630         
10631         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10632         to cause crashes.
10634 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10636         * reflection.c (mono_reflection_generic_class_initialize): Name must
10637         be always malloc'ed so we can free it later on. Do this for field, property
10638         and event.
10640         * metadata.c (free_generic_class): Free field, property and event names.
10642 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10644         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10645         instead of g_memdup.
10647         * reflection.c (typebuilder_setup_fields): Same.
10649 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10651         * decimal.c (rescale128): Optimize this function a bit more.
10653 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10655         * metadata.c (free_generic_class): Release some memory from
10656         SRE generic classes.
10658 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10660         * reflection.c (mono_image_get_generic_field_token): No reference
10661         to name is kept, free it.
10663         * reflection.c (mono_reflection_generic_class_initialize): Free
10664         more memory of the inflated field.
10666 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10668         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10669         code.
10671 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10673         * reflection.c (mono_dynamic_image_free): Release memory used by
10674         MonoDynamicImage::array_methods elements.
10676         * reflection.c (assembly_add_win32_resources): Release memory after
10677         encoding.
10679 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10681         * decimal.c (log2_32): Use an optimized version for this function too.
10682         
10683         * decimal.c (log2_64): Fix this on 32 bit machines.
10685 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10687         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10689         * class.c (mono_metadata_signature_deep_dup): Same.
10691         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10692         a mempool.
10694         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10696         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10698         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10700         * class-internals.h: Update signatures to take a MonoMemPool.
10702 2008-06-02  Dick Porter  <dick@ximian.com>
10704         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10705         * icall-def.h: Add
10706         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10707         FormatMessage API to get the error text.  Fixes bug 321827.
10709 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10711         * decimal.c: Add some micro optimizations to make decimal operations faster.
10713 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
10715         * reflection.c (method_encode_clauses): Take a mempool
10716         as parameter and use it to allocate the clause array.
10718         * reflection.c (mono_image_get_field_on_inst_token): Free
10719         the inflated type after encoding it.
10721         * reflection.c (mono_dynamic_image_free): Free each element
10722         of MonoDynamicImage::gen_params.
10724         * reflection.c (reflection_methodbuilder_to_mono_method):
10725         Allocate the generic param array from the mempool.
10726         Allocate signature params from the mempool.
10728         * reflection.c (mono_reflection_generic_class_initialize):
10729         Free inflated fields after been used.
10731 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10733         * icall.c: Reapply the memory leak fixes as they no
10734         longer make mono crash.
10736 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10738         * reflection.c (mono_type_get_object): Don't store the suplied
10739         MonoType with type_hash. A caller which pass a type that
10740         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
10741         might end with a pointer to freed memory.
10742         The solution is to use byval_arg or this_arg from the associated
10743         MonoClass of the supplied type.
10745 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
10747         * icall.c: Revert the rest of the last change as it breaks the build too.
10749 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10751         * icall.c: Revert a leak fix as it's breaking the build.
10753 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10755         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
10757 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10759         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
10761 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10763         * icall.c: Fix some memory leaks.
10765 2008-05-29  Dick Porter  <dick@ximian.com>
10767         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
10768         async socket operations from the pending list when a socket
10769         closes.  Leaving it until the threadpool services the event
10770         exposes a race condition when a socket descriptor is reused.
10771         Fixes bug 377589.
10773 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10775         * object.c: Fix negative index check for array alocation.
10777 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10779         * icall.c, marshal.c: Delegate wrappers should skip visibility.
10780         This check is performed by the verifier for IL created delegates
10781         and by Delegate::CreateDelegate for programatically created ones.
10782         Fixes #372406.
10784 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10786         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
10787         Fix code to use mono_array_size_t instead of int.
10789         Based on patch by Luis F. Ortiz.
10790         Contributed under X11 license.
10791         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10793 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10795         * icall.c: Added ves_icall_System_Array_GetLongLength and
10796         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
10797         arrays.
10799         * icall.h: Export both new functions.
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-28  Martin Baulig  <martin@ximian.com>
10807         The debugger now requires exactly r103463.
10809         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
10810         This version is not supported by the debugger, wait for 72.
10812 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10814         * object.h: Changed array related functions to use
10815         mono_array_size_t instead of guint32. Forgot to commit this file.
10817         Patch by Luis F. Ortiz.
10818         Contributed under X11 license.
10819         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10822 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10824         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
10825         don't define it. Use the number literal instead.
10827 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10829         * icall.c: Changed array related functions to use
10830         mono_array_size_t instead of guint32.
10832         * icall.c (ves_icall_System_Array_GetLength): Check for length
10833         overflow under MONO_BIG_ARRAYS.
10835         Based on patch by Luis F. Ortiz.
10836         Contributed under X11 license.
10837         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10839 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10841         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
10843         Based on patch by Luis F. Ortiz.
10844         Contributed under X11 license.
10845         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10847 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10849         * object.c, object.h: Changed array related functions to use
10850         mono_array_size_t instead of guint32.
10852         Patch by Luis F. Ortiz.
10853         Contributed under X11 license.
10854         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10856 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10858         * object.h: Introduced mono_array_size_t typedef. This must be used
10859         in all places an array length is expected. This is 64bits wide if
10860         MONO_BIG_ARRAYS is enabled.
10862         Patch by Luis F. Ortiz.
10863         Contributed under X11 license.
10864         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10866 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10868         * security-manager.c class.c: Set the class exception info by calling
10869         mono_class_set_failure ().
10871         * class.c (mono_class_get_exception_data): New accessor function.
10872         (mono_class_set_failure): Store exception_data in the property hash.
10874         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
10875         the struct as a property.
10877         * loader.c (mono_get_method_full): Store the lookup result for method
10878         tokens in method_cache, the others in methodref_cache to decrease the memory
10879         usage of hash tables.
10881         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
10882         (mono_image_init): method_cache is lazy inited now.
10884         * metadata-internals.h (struct _MonoImage): Change method_cache to
10885         a MonoValueHashTable, add a separate methodref_cache.
10887 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
10889         * number-formatter.h: Fix tables to avoid arithemtic overflow in
10890           Double.ToString as exposed by Bug #383531.
10892 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
10894         * number-formatter.h: Make some tables static.
10896         * class.c (mono_method_set_generic_container): New accessor function.
10897         (mono_method_get_generic_container): Ditto.
10899         * class-internals.h (struct _MonoMethod): Remove rarely used 
10900         'generic_container' field, store it in the property hash instead. Add 
10901         'is_generic' boolean field instead.
10903         * image.c (mono_image_init): Initialize property_hash.
10904         (mono_image_close): Destroy property_hash.
10906         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
10907         hold rarely used fields of runtime structures belonging to this image.
10909         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
10910         to get/set method->generic_container.
10912         * loader.c (mono_get_method_from_token): Avoid loading the method header for
10913         generic methods.
10915 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
10917         * class.c (mono_class_inflate_generic_method_full): Don't increase
10918         mono_stats.inflated_method_count for methods found in the cache.
10920         * threads.c (mono_thread_request_interruption): Add a comment about 
10921         QueueUserAPC ().
10923 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
10925         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
10926         interface_offsets_packed table.
10927         
10928         * class.c (mono_class_init): Remove some dead code.
10930         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
10931         mono_class_setup_vtable () when CAS is active to detect security problems.
10933 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
10935         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
10937         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
10938         parameters as it's irrelevant for delegate checking.
10940 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
10942         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
10944         * class.c (mono_class_init): Control the creation of a generic vtable using
10945         a global which is true by default, but set to false by the runtime startup code.
10946         
10947         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
10948         Disabled for now since it breaks the embedding API.
10949         Move the setup of class->methods for arrays to mono_class_setup_methods ().
10950         (mono_class_setup_methods): Add a memory barrier.
10952         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
10953         when mono_class_init () doesn't compute the generic vtable.
10954         
10955 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
10956         * profiler.c: Added mono_profiler_install_statistical_call_chain,
10957         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
10958         to support call chains (backtrace) in the stat profiler.
10959         * profiler.c, profiler-private.h: Likewise.
10961 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10963         * generic-sharing.c: Init generic class when a method of it is
10964         requested via a runtime generic context.
10966 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
10968         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
10970         * reflection.c (mono_type_get_object): Add a FIXME.
10972         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
10974         * class.c (mono_class_get_method_by_index): New helper function, returning an
10975         entry in the class->methods array.
10977 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10979         * class.c (mono_class_init): Only do the array optimization for szarrays. 
10980         Avoid creating a generic vtable for generic instances as well.
10981         (mono_class_get_method_from_name_flags): Don't search in the metadata for
10982         generic instances.
10984 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
10986         * loader.c (mono_get_method_constrained): Inflate the signature
10987         with class context. Fix #325283.
10989 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10991         * object.c (mono_class_create_runtime_vtable): Add a comment.
10993         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
10994         where needed.
10995         (setup_interface_offsets): Handle the case when this is called twice for arrays.
10996         (mono_class_setup_vtable_general): Add an assert.
10997         (mono_class_init): Avoid creating a generic vtable for arrays.
10999         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11000         here, let mono_class_init () do that.
11002         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11003         interfaces in mscorlib.
11005         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11006         interfaces. Add some comments.
11007         (mono_class_init): Call mono_class_setup_methods () here since it is no
11008         longer called by mono_class_setup_vtable ().
11010         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11011         not set in class->vtable.
11012         (mono_class_create_runtime_vtable): Reenable the disabled code.
11014         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11015         now as it causes some test failures.
11017         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11018         if using the vtable trampoline. Also remove some strange code which put the
11019         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11020         stuff as it is no longer needed.
11022 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11024         * pedump.c: Give make --verify all option check code as well.
11025         Using --verify code won't check for metadata now.
11027 2008-05-19  Martin Baulig  <martin@ximian.com>
11029         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11031         * mono-debug.c
11032         (_mono_debug_using_mono_debugger): New global variable; it's set
11033         directly by the debugger, so mono_debug_using_mono_debugger() also
11034         works after attaching.
11036 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11038         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11039         as we do double checked locking on MonoClass::runtime_info and
11040         MonoClassRuntimeInfo::domain_vtables.
11042 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11044         * debug-helpers.c (print_field_value): Fix a warning.
11046 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11048         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11049         set in the AOT case.
11051 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11053         * class.c (mono_class_setup_vtable_general): Use memory barriers
11054         as we do double checked locking on MonoClass::vtable.
11056 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11058         * reflection.c (resolve_object): Inflate only if the generic context
11059         is not null. Fixes #389886.
11061 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11063         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11064         instead of g_free.
11066         Code is contributed under MIT/X11 license.
11068 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11070         * class.c: Revert unrelated change.
11072 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11074         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11075         a generic instantiation, use mono_class_from_mono_type instead of playing
11076         with MonoType directly.
11078 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11080         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11081         checks must ignore generic instantiations, so mono_class_has_parent is not
11082         suitable. Fixes #390128.
11084 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11086         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11087         it to avoid registering tokens during metadata generation. Fixes #390023.
11089 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11091         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11092         consistent.
11094         Contributed under MIT/X11 license.
11096 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11098         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11099         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11100         to fixup the EXE image.
11101         (mono_cleanup): Use mono_close_exe_image.
11102         (mono_close_exe_image): New function.
11103         * image.c: Include "marshal.h".
11104         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11105         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11106         counting when the image is loaded outside of mono_image_open_full. Set status
11107         based on GetLastError.
11108         * coree.c: Include required headers. Add init_from_coree.
11109         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11110         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11111         (_CorExeMain): Set init_from_coree.
11112         (CorExitProcess): Only call ExitProcess for now.
11113         (CorBindToRuntimeEx): New stub implementation.
11114         (CorBindToRuntime): New function.
11115         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11116         (MonoFixupExe): ILONLY executables require no fixups.
11117         (mono_set_act_ctx): New function to set activation context.
11118         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11119         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11120         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11121         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11122         as MONO_INTERNAL.
11123         * domain-internals.h: Add mono_close_exe_image.
11125         Contributed under MIT/X11 license.
11127 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11129         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11130         size for generic param and event tables. Fixes #388977.
11132 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11134         * loader.c (mono_method_signature): Use memory barriers because of the double
11135         checked locking pattern.
11137         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11138         aborting or aborted as well. Fixes #376391.
11139         
11140         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11141         existing runtime state in the Suspend handler during shutdown.
11143 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11145         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11147         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11148         which are starting up or shutting down.
11150         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11151         this function never returns if the runtime is already shutting down.
11153         * icall.c (ves_icall_System_Environment_Exit): Update after 
11154         mono_threads_set_shutting_down () signature change.
11155         
11156 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11158         * class.c: Added can_access_instantiation to verify if the instantiation
11159         is visible. Fix access check for nested types as they returned TRUE
11160         before doing type and generic instantiation visibility checks.
11162 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11164         * reflection.c (mono_reflection_create_generic_class): The created type
11165         must have a different container from its TypeBuilder. Otherwise they
11166         will end sharing generic arguments, which is wrong.
11168         Due to the sharing, making a generic instance of the created type using
11169         the TypeBuider generic arguments resulted in the generic type definition
11170         been returned, which is wrong as well.
11172         As a bonus the code was leaking the type_params array. This memory should
11173         be allocated from the image mempool.
11175         This fixes bug #354047.
11177 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11179         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11180         to here         as they are now used in assembly.c new code.
11181         Added a skipverification flag to MonoAssembly.
11182         New internal function mono_assembly_has_skip_verification.
11184         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11185         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11186         part of #387274.
11188 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11190         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11191         needed. Fixes #387034.
11193         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11195 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11197         * assembly.c (mono_assembly_load_reference): Prevent crash while
11198         disassembling Silverlight 2.0 executables while we still do not
11199         have GACed libraries.
11201 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11203         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11205 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11207         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11208         of the dynamic case. Fixes #387404.
11210 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11212         *verify.c (mono_verifier_is_class_full_trust): If under
11213         verify_all and the verifier mode was not set, only
11214         gac and corlib types are fulltrust. This makes --verify-all
11215         usable to detect unverifiable code, which is the expected
11216         use case.
11218 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11220         * verify.h: Ops, commited the header with debug
11221         enabled.
11223 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11225         * verify.c (merge_stack): Use the new value on unverifiable
11226         stack merges.
11228         * verify.c (verify_type_compatibility_full): Comparison
11229         of nullable types can't use mono_class_is_assignable_from.
11231         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11232         that makes all verification errors be reported.
11234         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11235         mono_method_verify.
11237 2008-05-05  Robert Jordan  <robertj@gmx.net>
11239         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11240         support for value types. See #386415.
11242         * object.c: comments.
11244         Code is contributed under MIT/X11 license.
11246 2008-05-05  Martin Baulig  <martin@ximian.com>
11248         * debug-mono-symfile.h
11249         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11250         for old pre-terrania symbol files.
11252 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11254         * mono-config.c: Add ppc64 architecture.
11256         Code is contributed under MIT/X11 license.
11258 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11260         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11261           PPC64 uses function descriptors as well.
11263         Code is contributed under MIT/X11 license.
11265 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11267         * object.c (compute_class_bitmap): Ignore literal static fields.
11269         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11270         var has an invalid format.
11271         (describe_ptr): Add some sanity checks for the vtable.
11272         (add_nursery_frag): Clear unused nursery fragments.
11273         (major_collection): Clear all remaining nursery fragments.
11275 2008-05-03  Robert Jordan  <robertj@gmx.net>
11277         * image.c, metadata-internals.h: add thunk_invoke_cache.
11279         * marshal.c, marshal.h: implement
11280         mono_marshal_get_thunk_invoke_wrapper ().
11282         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11284         Code is contributed under MIT/X11 license.
11286 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11288         * verify.c (do_leave): Empty the stack.
11290 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11292         * class.c (mono_class_is_assignable_from): Variance
11293         doesn't work between reference and value types. For example,
11294         given type C<T+>, C<int32> is not assignable to C<object>.
11295         Break the argument checking loop on first error. 
11297 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11299         * icall.c : base64_to_byte_array() needs some more strict
11300           check for sequence of '=' characters. Patch by Santa
11301           Marta (http://deee.g.hatena.ne.jp/santamarta).
11303           Contributed under MIT/X11 license.
11304           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11306 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11308         * domain.c: Disable LoadLibrary support to fix Win32 build.
11310         Code is contributed under MIT/X11 license.
11312 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11314         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11315         to help with cache behaviour.
11317 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11319         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11320         method. 
11322 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11324         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11326 2008-05-01  Dick Porter  <dick@ximian.com>
11328         * process.c (process_get_fileversion): Only pass 16 bits of
11329         language ID to VerLanguageName.  Fixes bug 381204.
11331 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11333         * verify.c (mono_method_verify): Fix the comparison
11334         operator for code bounds check.
11336 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11338         * verify.c (mono_method_verify): Check the bounds of
11339         all access of the code array.
11341 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11343         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11345 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11347         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11348         not valid.
11350 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11352         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11353         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11354         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11355         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11356         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11357         mono_runtime_load.
11358         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11359         runtime initialization from metadata.
11360         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11361         (mono_set_rootdir): Use mono_get_module_file_name.
11362         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11363         handles.
11364         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11365         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11366         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11367         MonoCLIImageInfo. Add support for module handles.
11368         (load_cli_header): Update mono_cli_rva_image_map signature.
11369         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11370         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11371         (mono_image_rva_map): Add support for module handles.
11372         (mono_image_ensure_section_idx): Add support for module handles.
11373         (mono_image_close): Add support for module handles.
11374         (do_load_header): Add support for module handles.
11375         (mono_image_open_from_module_handle): New function for internal use.
11376         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11377         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11378         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11379         handles.
11380         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11381         * image.h: Add mono_image_fixup_vtable.
11382         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11383         support.
11384         * coree.h: New file.
11385         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11386         unsupported native code.
11387         (mono_marshal_set_callconv_from_modopt): New function splitted from
11388         mono_marshal_get_managed_wrapper.
11389         (mono_marshal_get_managed_wrapper): Use
11390         mono_marshal_set_callconv_from_modopt.
11391         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11392         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11393         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11394         that results in a deadlock when the runtime is loaded in _CorDllMain.
11395         * Makefile.am: Add coree.c and coree.h.
11397         Contributed under MIT/X11 license.
11399 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11401         * generic-sharing.c: Search for type arguments in array element
11402         types as well.
11404 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11406         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11408         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11410         * object.c: Don't setup the RGCTX when the vtable is created,
11411         because we're setting it up lazily now.
11413 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11415         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11416         64 bit support.
11418 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11420         * verify.c (verify_class_for_overlapping_reference_fields): 
11421         If class is under fulltrust allow reference types to overllap
11422         if they have the same RVA.
11424 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11426         * pedump.c: Added new flag valid-only, that makes the verifier
11427         behaves just like --security=validil. It won't fail type load
11428         due to unverifiable restrictions.
11430 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11432         * class-internals.h (struct MonoMethod): Added a verification_success
11433         field to cache verifier executions. Reduced MonoMethod:slot size by
11434         one bit.
11436 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11438         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11439         instead of a 'vt' argument to save an indirection and to allow these to be used
11440         for valuetypes.
11441         (scan_vtype): New helper function to scan an area using a gc descriptor.
11442         (mono_gc_wbarrier_value_copy): Implement this.
11443         (handle_remset): Add support for REMSET_VTYPE.
11444         (find_in_remset_loc): Ditto.
11445         (mono_gc_base_init): Allow some debugging options to be controlled through the
11446         use of the MONO_GC_DEBUG env variable.
11447         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11448         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11450 2008-04-23  Martin Baulig  <martin@ximian.com>
11452         * domain.c (mono_domain_create): Move the call to
11453         mono_debug_domain_create() down, after allocating the domain id.
11455 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11457         verify.c (verify_class_for_overlapping_reference_fields): Skip
11458         static fields while verifying for overlapping fields as they
11459         don't matter at all.
11461 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11463         * domain-internals.h: added a declaration of
11464         mono_make_shadow_copy.
11466         * assembly.c (mono_assembly_open_full): shadow copying of
11467         assemblies moved to here, so that all the assemblies within the
11468         application domain's private binary directories can be
11469         processed. Fixes bug #380546
11471         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11472         mono_make_shadow_copy and made non-static. The decision whether
11473         to shadow-copy an assembly is made based on its location - it's
11474         copied if it's in one of the private application domain binary
11475         directories and its different to the target file in the shadow
11476         directory. Fixes bug #380546
11478 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11480         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11482         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11483         types.
11485         * reflection.c (mono_image_create_token): Handle 
11486         Method/ConstructorOnTypeBuilderInst.
11487         (resolve_object): Ditto.
11488         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11489         so it can be called from resolve_object. Also handle the case when the inflated
11490         class already has its methods setup.
11492 2008-04-21  Martin Baulig  <martin@ximian.com>
11494         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11496 2008-04-20  Geoff Norton  <gnorton@novell.com>
11498         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11499         pointer dereference.
11501 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11503         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11504         portability API to look up the assembly file. Fixes behavior in
11505         situations when the application has a bin/ directory, but the
11506         assembly search patch refers to Bin/ (and thus the requested file
11507         name is Bin/SomeLibrary.dll). Fixes bug #379888
11509 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11511         verify.c (mono_type_is_generic_argument): Extracted this check
11512         from a dozen places to here.
11514         verify.c: Fixed all issues related to boxing generic arguments
11515         and their constraints.
11517 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11519         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11521 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11523         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11524         isn't finished yet. Fixes #363447.
11526 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11528         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11529         Fixes #346419.
11531 2008-04-13  Jb Evain  <jbevain@novell.com>
11533         * domain.c: update the 2.1 profile versions.
11534         Merged from the Moonlight 2 branch.
11536 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11538         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11539         mscorlibs for the non-refonly case as well.
11541         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11542         in mono_assembly_load_from_full (). Fixes #378924.
11544 2008-04-11  Geoff Norton  <gnorton@novell.com>
11546         * icall.c: The global extern environ doesn't exist on Mac.  We
11547         need to call NSGetEnviron instead.
11549 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11551         verify.c: Add generic method constraint verification.
11553 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11555         class.c (mono_class_inflate_generic_method_full): Add a long
11556         explanation to the is_mb_open hack. Remove the FIXME.
11558 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11560         * verify.c (mono_method_verify): Mark all unknown opcodes
11561         as invalid. Mark jmp as unverifiable.
11563 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11565         * verify.c: Add code to do type constraint verification on class instances.
11567         * verify.c (mono_verifier_verify_class): Use the type constraint 
11568         verification code.
11570 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11572         * class.c (mono_class_get_field_default_value): Don't pass cindex
11573         as hint to mono_metadata_get_constant_index. The local is not initialized
11574         and should contain garbage most of the time. This could only work
11575         with a lot of luck.
11577 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11579         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11581 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11583         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11585         * class.c (mono_class_from_generic_parameter): Save the token of the
11586         generic param in MonoClass::sizes.generic_param_token.
11588         * reflection.c (mono_custom_attrs_from_class): If the class type is
11589         VAR or MVAR retrieve the attributes of the generic param.
11591 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11593         * class.c (mono_class_init): Do class verification if the verifier
11594         is enabled.
11596 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11598         * verify-internal.h: Added mono_verifier_verify_class.
11600         * verify.c: Added mono_verifier_verify_class. It checks for
11601         classes with explicit layout that have overlapping reference fields.
11603         * pedump.c: Init the verifier state prior to verification. Fixed
11604         command line arguments.
11606 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11608         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11610 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11612         * verify-internals.h: Fix a warning.
11614 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11616         * verify-internals.h: New header with the verifier configuration
11617         extracted from mini.c.
11619         * verify.c: Implemented the new functions exported by verify-internals.h.
11621 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11623         * verify.c: Add proper verification of ckfinite.
11625 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11627         * verify.c (do_conversion): Improved error message to something
11628         more meanfull.
11630         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11631         with primitive types.
11633 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11635         * verify.c: Added tail prefix checking. Marked icall
11636         as unverifible.
11638 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11640         * verify.c: Fix the detection of branches to the middle
11641         of an instruction.
11643 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11645         * verify.c: Implemented verification of volatile. and
11646         unaligned. prefix. Check if a type is valid after retrieving it.
11648 2008-04-01  Dick Porter  <dick@ximian.com>
11650         * process.c (process_get_fileversion): If there's no string block,
11651         set the file language to en_US.  Fixes the other new part of bug
11652         374600.
11654 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11656         * class.c: New functions mono_method_can_access_field_full and
11657         mono_method_can_access_method_full. They perform type visibility
11658         and type site check.
11660         * class-internal.h: Added exported functions.
11662         * verify.c: Use new functions to implement proper visibility checks.
11664 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11666         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11668 2008-03-28  Dick Porter  <dick@ximian.com>
11670         * process.c (process_get_fileversion): Use the first language ID
11671         we see, rather than insisting on an invariant language.  Fixes bug
11672         374600.
11674 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11676         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11677         the streams to fix reading of invalid memory later.
11679         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11680         to ease debugging.
11682 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11684         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11685         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11687 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11688         * threads.h: Added MonoThreadManageCallback type and
11689         mono_thread_set_manage_callback prototype
11690         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11691         (used to store the mono_thread_manage callback).
11692         * threads.c: Added mono_thread_set_manage_callback, and handle
11693         "MonoThread->manage_callback" in build_wait_tids.
11695 2008-03-26  Dick Porter  <dick@ximian.com>
11697         * process.c (process_get_fileversion): Set FileVersionInfo strings
11698         to Empty when the resource doesn't have the particular info.
11699         Fixes bug 355717.
11701 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11703         * verify.c (mono_method_verify): Proper prefix validation.
11705 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11707         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11708         itself in a separate argument instead of throwing them. Fixes #373448.
11710         * appdomain.c: Bump corlib version.
11712 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
11714         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
11716 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
11718         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
11719         version macros.
11721 2008-03-20  Mark Probst  <mark.probst@gmail.com>
11723         * generic-sharing.c, class-internals.h: Code for putting
11724         reflection types into the runtime generic context.
11726 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
11728         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
11729         Fixes #340662. 
11732 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
11734         * verify.c (VerifyContext): Added instruction prefix data to the struct.
11736         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
11738         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
11740         * verify.c (do_cast): Let the result value keep the boxed status.
11742         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
11744 2008-03-17  Jb Evain  <jbevain@novell.com>
11746         * reflection.c: when running on a 2.0 runtime, emit
11747         unconditionally the #~ header version as 2.0, and the
11748         CLI header version as 2.5, for symmetry's sake with csc.
11750 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11752         * class.c: Remove the unused cache_interface_offsets stuff.
11754         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
11755         profiler.c: Fix warnings.
11757 2008-03-16  Mark Probst  <mark.probst@gmail.com>
11759         * generic-sharing.c, class-internals.h: Support for putting
11760         methods into the runtime generic context.
11762 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11764         * class.c (mono_class_setup_fields): Ignore calls made to this function for
11765         classes which are generic instances of not-yet finished typebuilders. Fixes
11766         #351172.
11768         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
11770 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
11772         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
11774         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
11775         field, replace it with a hash table in MonoDynamicImage.
11777         * reflection.c (inflate_mono_method): Access the generic definition object from
11778         image->generic_def_objects instead of imethod->reflection_info.
11780         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
11782         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
11783         
11784         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
11785         function in reflection.c so it is easier to keep in sync with the dynamic image
11786         creation code.
11788         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
11789         mono_image_close ().
11791 2008-03-15  Mark Probst  <mark.probst@gmail.com>
11793         * class.c (mono_class_generic_sharing_enabled): Disable generic
11794         sharing for all architectures except AMD64 and x86 to fix build.
11796 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11798         * verify.c: Use the generic definition MonoGenericContext when available.
11799         Remove code for checking generics instance compatibility in favor of
11800         mono_class_is_assignable_from.
11802 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11804         * marshal.c, marshal.h, metadata-internals.h, image.c,
11805         wrapper-types.h: New wrapper for invoking a shared static method
11806         without having to pass the runtime generic context argument.
11808 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11810         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
11812 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11814         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
11815         
11816         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
11817         create a token from a FieldOnTypeBuilderInst.
11818         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
11819         (resolve_object): Ditto.
11821         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
11822         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
11824 2008-03-14  Martin Baulig  <martin@ximian.com>
11826         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
11828         * debug-mono-symfile.h
11829         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
11830         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
11832 2008-03-10  Martin Baulig  <martin@ximian.com>
11834         * debug-mono-symfile.h
11835         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
11836         `lexical_block_table_offset'.
11837         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
11838         `lexical_blocks'.
11839         (MonoSymbolFile): Added `version'.
11841         * mono-debug.h
11842         (MonoDebugLexicalBlockEntry): Removed.
11843         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
11844         `lexical_blocks'.
11846         * mono-debug.c (mono_debug_add_method): Don't compute lexical
11847         blocks here; the debugger now does this internally.
11849 2008-02-27  Martin Baulig  <martin@ximian.com>
11851         * object.c (mono_runtime_exec_main): Call
11852         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
11853         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
11855 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11857         * verify.c (verify_type_compatibility_full): Allow native int to be converted
11858         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
11860 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11862         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
11863         ldftn with a virtual method.
11865 2008-03-13  Geoff Norton  <gnorton@novell.com>
11867         * decimal.c:  Only include memory.h if the platform has it.
11869 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11871         * assembly.c, class.c, metadata-internals.h: make sure public key
11872         tokesns are compared in a case-insensitive way. Also, all
11873         the lookups in the GAC use a lowercase public key token
11874         (gaacutil already does the lowercasing on install). Fixes
11875         bug #369541.
11877 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
11879         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
11880         and return value.
11882 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
11884         * image.c: when someone loads a mscorlib from a file, return the
11885         currently loaded mscorlib (fixes bug #369253).
11887 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11889         * class.c: handle types with no parents by forcing them to have
11890         System.Object as a parent and marking them as broken (this currently
11891         allows the first part of bug #369173 to work as well, likely because
11892         we don't check for typeload exceptions everywhere yet).
11894 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
11896         * class.c: more complete check that types belong to corlib
11897         (fixes second part of bug #369173).
11899 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
11901         * generic-sharing.c:  Including glib.h for the MSVC builds to define
11902           "inline" to "__inline" before including mono-membar.h.
11903           
11904         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
11905           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
11906           MSVC builds.
11908         Contributed under MIT/X11 license.
11910 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11912         * verify.c (do_invoke_method): Remove return type validation.
11914         * verify.c (do_ret): Do return type validation at return site instead of
11915         call site.
11917 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11919         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
11921         * verify.c: Some todos cleaned and improved a few error messages.
11923 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
11925         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
11927 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11929         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
11930         system types correctly.
11932         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
11933         function.
11935 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11937         * assembly.c (build_assembly_name): Fix a warning.
11939 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
11941         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
11942         the called function takes an object type argument. Fixes storing or
11943         valuetypes across remoting as well as reducing memory usage.
11944         * image.c, metadata-internals.h: remove now unused ldfld_remote and
11945         stfld_remote wrapper caches.
11947 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11949         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
11950         is not found.
11952         * reflection.c (mono_image_register_token): New helper function to save
11953         a token->object mapping.        
11955         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
11956         managed code.
11958         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
11959         one dimension arrays. Fixes #367670.
11960         (mono_reflection_get_type_internal): Ditto.
11962 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
11964         * marshal.c: mono_load_remote_field_new() always returns object.
11965         so use the proper signature (fixes bug #366445).
11967 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11968         
11969         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
11970         add an 'inline_failure' flag instead.
11972 2008-03-04  Mark Probst  <mark.probst@gmail.com>
11974         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
11975         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
11976         contains the location of "this", used for exception handling.
11978 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11980         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
11981         their size on all platforms for perf reasons.
11983 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11985         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
11986         object-internal.h
11988         * object-internal.h: Same.
11990 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11992         * reflection.h: Fix the build I just broke.
11994 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11996         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
11997         Test if a token is valid, this remove explicit usage of 
11998         MonoDynamicImage::tokens from the verifier code.
12000         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12002         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12003         instead of direct access to MonoDynamicImage::tokens.
12005 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12007         * verify.c (token_bounds_check): Fix the build I just broke.
12009 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12011         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12013         * verify.c (verifier_load_method): Fixed the errors message.
12015         * verify.c (mono_method_verify): Fixed a debug message.
12017 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12019         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12020         mono-perfcounters.h, class-internals.h: support for predefined
12021         writable counters, query of categories and counters, bugfixes.
12023 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12025         * verify.c (do_refanytype): Verify the refanytype opcode.
12027         * verify.c (mono_method_verify): Use do_refanytype.
12029 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12031         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12033         * verify.c (mono_method_verify): Use do_mkrefany.
12035 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12037         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12038         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12039         implementation.
12041 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12043         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12044         the type load exception.
12046 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12048         * verify.c: Added a few FIXME for method signatures
12050         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12051         of mono_method_get_signature and get vararg call working. Removed unused
12052         checks for return value.
12054         * verify.c (do_refanyval): Verify the refanyval opcode.
12056         * verify.c (mono_method_verify): Implemented verification of arglist and
12057         use do_refanyval.
12059 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12061         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12062         vtypes to marshal.c.
12064         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12065         it works for AOT as well.
12067 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12069         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12070         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12071         the system time is adjusted.
12073 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12075         * icall.c, icall-def.h: use the new time functions (fixes the
12076         non-monotonic behaviour of TickCount).
12078 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12080         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12081         it breaks the build.
12082         
12083         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12084         cattr is not finished yet.
12086 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12088         * verify.c: Proper token validation for field, method and type.
12090 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12092         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12094         * loader.c (method_from_memberref): Generate type load error instead of method missing
12095         if the type is not found.
12097 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12099         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12100         some of the conversions caused the generation of a marshal directive exception.
12102 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12104         verify.c: Report which exception should be thrown by the JIT.
12105         Added a lot of FIXME notes.
12107 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12109         * generic-sharing.c: Runtime generic context slots are not
12110         instantiated on init anymore.  Instead, provide function to do the
12111         instantiating on demand.
12113         * class-internals.h: Added vtable to runtime generic context.
12114         Macros for encoding direct and indirect slot offsets in one
12115         guint32.
12117 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12119         * object.c, generic-sharing.c: Moved some generic sharing code
12120         from object.c to generic-sharing.c.
12122         * generic-sharing.c: Added support for extensible runtime generic
12123         context.
12125         * metadata-internals.h: Two new hash tables in MonoImage for
12126         extensible runtime generic context support.
12128         * domain.c: Unregister generic vtables upon domain unloading.
12130         * image.c: Destroy new hash tables upon image unloading.
12132         * metadata.c: Unregister generic subclasses upon image unloading.
12134         * class-internals.h: New data structure for runtime generic
12135         context template.  New fields in the runtime generic context for
12136         extensible part.
12138         * Makefile.am: Added generic-sharing.c.
12140 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12142         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12143         there is a pending loader exception, raise it.
12145         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12146         same.
12148         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12149         same.
12151         Fixes #363450.
12153 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12155         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12157         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12158         
12159         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12160         ref-only requests for compatibility with MS.
12162 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12164         * reflection.c (mono_custom_attrs_from_method): Don't silently
12165         return an empty list for generic method instances.
12166         (mono_custom_attrs_from_param): Likewise.
12168 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12169             Raja R Harinath  <harinath@hurrynot.org>
12171         Fix #354757
12172         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12173         * class.c (mono_class_inflate_generic_method_full): Initialize it
12174         when a fully-open method is instantiated.
12175         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12176         to new field.
12177         * reflection.c (inflate_mono_method): Don't create a temporary context.
12179 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12181         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12182         Compute correct value, to prepare for imethod->reflection_info going away.
12184 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12186         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12188 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12190         * verify.c: Implement skip visibility flag.
12192 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12194         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12195         which contains an extra field to tell the kind of exception that should be thrown.
12197         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12199 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12201         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12202         'method' is updated.
12204 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12206         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12207         explicit layout as well. Fixes #360375.
12209 2008-02-11  Geoff Norton  <gnorton@novell.com>
12211         * loader.c: Guard and dereference against inflated generic methods
12213 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12215         * class.c: Include Retargetable spec in assembly name.
12216         * assembly.c: Always include PublicKeyToken spec in assembly name
12217         (with value "null" if assembly is not signed), and include
12218         Retargetable spec.
12219         * icall-def.h: Added icall for Assembly.get_fullname.
12220         * icall.c: Added icall returning the fullname of an assembly.
12222 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12224         * class.c (mono_class_setup_vtable_general): Add a missing call to
12225         mono_class_setup_methods () which is needed in the AOT case.
12227 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12229         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12230         stack type of the given MonoType.
12232         * verify.c (verify_type_compatibility_full): Handle the void type.
12234         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12235         way stack merging works.
12237         * verify.c (store_local): Improved verification message.
12239         * verify.c (do_branch_op): If the merging is invalid, the method
12240         is unverifiable and not invalid. Improved error message.
12242         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12243         a reference type diferent than System.Object. Improved error
12244         message.
12246 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12248         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12250         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12251         type of an enum even if the argument is byref.
12253         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12254         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12256         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12258         *verify.c (verify_type_compatibility_full): Make enum types
12259         compatible with their base types.
12261         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12262         types are compatible for the special case of a boxed valuetype and
12263         System.Object.
12265         * verify.c (verify_stack_type_compatibility): The function
12266         is_compatible_boxed_valuetype was extracted from here.
12268         * verify.c (push_arg): Only set ctx->has_this_store if the method
12269         is not static.
12271         * verify.c (do_ldelem): Fixed a typo in an error message and added
12272         strict check for mixing int32 and native int as the array type
12273         and ldelem type.
12275         * verify.c (merge_stacks): Consider boxed valuetypes in the
12276         compatibility checks.
12278 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12279         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12281 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12282         *class.c: use_new_interface_vtable_code: renamed the env var to have
12283         a "MONO_" prefix, and fix the logic to enable it by default.
12285 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12286         *class.c:
12287         mono_class_setup_vtable_general: rewrote the way in which interface
12288         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12289         makes the code more maintainable.
12290         For now the old code is still there, and can be activated setting
12291         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12293 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12295         * verify.c: guarded some debug functions around and #ifdef.
12297         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12299 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12301         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12302         changes for now since they seem to break too many things.
12304 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12306         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12307         mono_marshal_find_nonzero_bit_offset): Added macro and function
12308         for finding the byte- and bit-offset of a bitfield within a
12309         struct.
12311 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12313         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12314         (mono_marshal_get_struct_to_ptr): Ditto.
12316         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12317         cctor_signature.
12319 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12321         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12322         between methods for non-corlib types.
12324 2008-02-02  Geoff Norton  <gnorton@novell.com>
12326         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12327         generic parameters as well. (Fixes #342536)
12329 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12331         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12333         * verify.c (do_invoke_method): Fix for calling with byref structs.
12335         * verify.c (do_cast): push a boxed value type based on the type token and not
12336         the type of stack.
12338 2008-01-31  William Holmes  <billholmes54@gmail.com>
12340         * process.c (process_module_string_read): Check the size returned form 
12341           VerQueryValue to avoid out of memory exception. 
12343 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12345         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12346         Handle properly modules which are not in the moduleref table. Fixes
12347         #356938.
12349 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12351         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12352         the dynamic case which is now in managed code.
12353         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12355         * marshal.c (mono_string_to_bstr): Fix a warning.
12356         (init_com_provider_ms): Ditto.
12358         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12360         * exception.c (mono_get_exception_out_of_memory): New helper function.
12362 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12364         * marshal.c: Add support for BSTR marshalling
12365         using other COM systems.
12367         Code is contributed under MIT/X11 license.
12369 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12371         * object.c (mono_runtime_invoke_array): reverted previous
12372         commit as it breaks the build.
12374 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12376         * object.c (mono_runtime_invoke_array): Verify arguments for
12377         invalid types. Fixes #348522.
12379 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12381         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12382         non-final virtual calls using call. 
12384         * verify.c (do_invoke): fixed some TODOs.
12386         * verify.c (push_arg): set has_this_store for "ldarga 0".
12388 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12390         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12391         which belong to an inflated class. Fixes #356531.
12393 2008-01-26  Robert Jordan  <robertj@gmx.net>
12395         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12396         which resort to FindFirstFile when a certain error condition
12397         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12398         Code is contributed under MIT/X11 license.
12400 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12402         * marshal.c (emit_marshal_string): Fix out string marshalling
12403         to use specified encoding. Fixes #323900.
12405         Code is contributed under MIT/X11 license.
12407 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12409         * class.c (mono_class_inflate_generic_method_full): Don't modify
12410         iresult->context after cache check.
12412 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12414         * class.c (mono_class_inflate_generic_method_full): Change the
12415         struct assignments to memcpy for better visibility and add some comments.
12417 2008-01-23  Dick Porter  <dick@ximian.com>
12419         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12420         procedure, and make it work on windows.
12422 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12424         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12425         a MonoReflectionTypeBuilder since it is always of that type.
12427         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12429         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12431         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12432         
12433         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12435         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12437         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12438         instantiations from the type cache.
12440 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12442         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12444         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12446 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12448         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12450         * verify.c (mono_method_verify): removed old TODO
12452 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12454         * verify.c (do_newobj): add visibility check.
12456 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12458         * verify.c (do_load_function_ptr): add visibility check.
12460 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12461         *class.c:
12462         mono_generic_class_get_class: hook profiler events.
12463         mono_field_get_offset: added to support heap-shot in the new profiler.
12464         *class.h: exported mono_field_get_offset.
12465         * reflection.c:
12466         mono_reflection_setup_internal_class: hook profiler events.
12468 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12470         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12471         argument here too and use it to avoid checking for pending exceptions if 
12472         possible.
12474 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12476         * assembly.c (build_assembly_name): add arg for passing the assembly
12477         flags. Do not consider a PublicKey with value "null" valid.
12478         (mono_assembly_name_parse_full): added boolean argument that will be
12479         set if the assembly name contains a PublicKeyToken spec. Added support
12480         for the Retargetable spec for which only Yes or No are allowed as valid
12481         value. Consider assembly name invalid if Retargetable spec is set, but
12482         either version, culture or public key (token) are not specified.
12483         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12484         with implementation in assembly.c.
12485         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12486         from MonoAssemblyName.
12487         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12488         introduced argument for mono_assembly_name_parse_full to know if the
12489         assembly name has a PublicKeyToken spec, and if it has instruct
12490         fill_reflection_assembly_name to use default value for keyToken (if
12491         PublicKeyToken is null).
12493 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12495         * verify.c (mono_method_verify): fixed ovf ops with
12496         float values. They are unverifiable now.
12498 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12500         * class.c (set_failure_from_loader_error): add BadImageException to the
12501         list of exceptions that can cause a type to fail to load.
12503         * class.c (mono_class_get_exception_for_failure): same.
12505 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12507         * verify.c (in_any_exception_block): added, check if offset
12508         is part of any exception handling clause.
12510         * verify.c (get_stack_type): added VAR and MVAR types.
12512         * verify.c (do_stobj): better error messages.
12514         * verify.c (do_cpobj): added, check cpobj.
12516         * verify.c (do_initobj): added, check initobj.
12518         * verify.c (do_sizeof): added, check sizeof.
12520         * verify.c (do_localloc): added, check localloc.
12522         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12524 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12526         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12527         save_lmf/restore_lmf opcodes.
12529         * threads.c (mono_threads_install_notify_pending_exc): New function to
12530         install a callback notifying the JIT there is a pending exception on a thread.
12531         (mono_thread_request_interruption): Call the new callback.
12532         (mono_thread_get_and_clear_pending_exception): New function to return the
12533         exception pending on a thread.
12535         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12536         to turn off checking for pending exceptions.
12537         (mono_marshal_get_native_wrapper): Ditto.
12539 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12541         * threads-types.h: Get rid of the unnecessary extern declarations.
12543 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12545         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12546         return field from parent class if not private.
12547         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12548         returns fields from parent class if they are not private.
12549         (method_nonpublic): added function to determine if a given method
12550         should be considered non-public. Returns false for private methods
12551         on parent class, and internal methods from parent on the 1.0 profile.
12552         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12553         use method_nonpublic function to determine whether method should be
12554         returned.
12555         (property_accessor_public): use newly introduced method_nonpublic
12556         function to determine whether accessor is non-public. 
12557         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12558         event from parent class if not private. Only return static event if
12559         Static flag is set, and only return static event from parent class if
12560         FlattenHierarchy flag is set.
12561         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12562         include non-private events from parent class.
12564 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12566         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12567         warning.
12569 2008-01-16  Wade Berrier <wberrier@novell.com>
12571         * security.c: Add assembly.h header to appease some warnings
12573 2008-01-16  Dick Porter  <dick@ximian.com>
12575         * process.c (process_module_string_read): Remove trailing null
12576         when saving string.
12578 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12580         * class-internals.h: A new data structure describing the layout of
12581         a runtime generic context (MonoRuntimeGenericContextTemplate).
12583         * metadata-internals.h: Added a hash table to MonoDomain that maps
12584         from open generic classes to their runtime generic context
12585         templates.
12587         * object.c: Building of the runtime generic context, including
12588         proper handling of generic type arguments of superclasses.
12589         Building of the runtime generic context according to the template.
12591 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12593         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12594         Fixes #350856.
12596         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12597         mono_portability_find_file (). Fixes #325466.
12598         (mono_image_get_public_key): Fix a warning.
12600 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12602         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12603         Fixes #353550.
12604         (mono_class_from_name_case): Ditto.
12606 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12608         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12609           common storage for the tables used in the System/NumberFormatter class.
12611 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12613         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12615 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12617         * verify.c (get_boxable_mono_type): check if the token is valid.
12619         * verify.c (set_stack_value): changed to add an error if an
12620         invalid type is set on stack. Changed all callers due to signature change.
12622         * verify.c (do_stobj): implement stobj validation.
12624 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12626         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12627         set container->is_method, it was set earlier.
12629         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12630         generic methods.
12632         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12633         is_method of the generic container to TRUE for methods.
12635 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12637         * metadata.c (type_in_image): Handle type parameters properly.
12639         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12640         memory ownership of this structure.
12642 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12644         * verify.c (get_boxable_mono_type): make typedref types been just
12645         unverifiable. check for void type.
12647         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12649         * verify.c (do_load_function_ptr): accept method spec tokens.
12651 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12653         * marshal.c (mono_class_native_size): Always set *align even if this is called
12654         recursively.
12656 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12658         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12659         out-of-date.
12661 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12663         * verify.c: removed some old unused tables. A huge bunch of small fixes
12664         to things found while testing the verifier with mono basic.
12666         * verify.c (dump_stack_value): dump null literal flag to.
12668         * verify.c (verify_type_compatibility_full): fix comparison
12669         for types that have a generic super type.
12671         * verify.c (verify_stack_type_compatibility): fix compatibility
12672         between null literals and reference types. fix compatibility between
12673         boxed valuetypes and object. fix corner case test for enums.
12675         * verify.c (do_cmp_op): proper verification of cgt.un in case
12676         of reference types.
12678         * verify.c (do_invoke_method): fix error message.
12680         * verify.c (do_store_indirect
12682         * verify.c (check_is_valid_type_for_field_ops): proper verification
12683         of managed pointers to valuetypes and boxed valuetypes. proper verification
12684         of null literals.
12686         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12687         allow token to be a reference type.
12689         * verify.c (do_cast): proper handling of boxes valuetypes.
12691         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12692         in object[].
12694         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12695         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12696         fixed the decoding of unbox_any
12698 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12700         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12702 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12704         * verify.c (do_newobj): do delegate verification.
12706         * verify.c (verify_delegate_compatibility): perform delegate
12707         verification.
12709         * verify.c (verify_ldftn_delegate): perform tests related to
12710         ldftn delegates.
12712         * verify.c (mono_delegate_signature_equal): perform the
12713         slightly diferent signature comparison required by delegates.
12715         * metadata.c (mono_metadata_type_equal_full): added and exported
12716         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
12717         allows signature only comparison.
12719         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
12720         as MONO_INTERNAL.
12722 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
12724         * verify.c: added a bunch of stack_slot_* functions to
12725         make access to stack slot type easier. This is required to
12726         allow optional flags, like null literal, boxed value and
12727         this pointer.
12728         All access paths to IlStackDesc::stype have been changed 
12729         to use these new funcions.
12730         Removed a bunch of unused functions and cleared all warnings.
12731         This patch introduces the usage of the this pointer and 
12732         boxed value flags.
12734 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
12736         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
12738 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
12740         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
12741         match managed version.
12743         * appdomain.c: Bump corlib version.
12744         
12745         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
12746         argument.
12748 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
12750         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
12751         Set public key token to zero-length byte array if assembly is not
12752         strongnamed.
12754 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12756         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
12757         writing a vtype array elem.
12759 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
12761         * assembly.c (build_assembly_name): return FALSE if length of token is
12762         not 16 (if not "null").
12763         (mono_assembly_name_parse_full): return FALSE if value of version,
12764         culture, token or key is 0.
12765         * icall.c (fill_reflection_assembly_name): add boolean arguments to
12766         specify whether public key and public key token must be set to default
12767         value (zero-length byte array) if not available. Set versioncompat to
12768         SameMachine. If public key is available or the default is set, then
12769         set PublicKey flag.
12770         (ves_icall_System_Reflection_Assembly_FillName): if no public key
12771         is available, use empty byte array as default value. On the 2.0
12772         profile, use default value for public key token if not set.
12773         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
12774         profile, use default value for public key if not set. On the 2.0
12775         profile, use default value for public key token if not set.
12776         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
12777         default values for public key and public key token.
12779 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12781         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
12782         field to keep it in synch with the managed object.
12784         * marshal.c (emit_marshal_object): Add support for byref marshalling of
12785         delegates. Fixes #351520.
12787         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
12788         contains defined memory.
12789         
12790         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
12792         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
12793         
12794         * sgen-gc.c (check_consistency): New helper function to do a consistency check
12795         of the GC data structures.
12797         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
12799         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
12800         
12801         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
12802         barrier.
12803         (mono_array_clone_in_domain): Ditto.
12804         (mono_array_clone_in_domain): Ditto.
12806         * threads.c (start_wrapper): Register the thread start argument as a GC root.
12807         (cache_culture): Use a write barrier.
12809         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
12810         (ves_icall_get_property_info): Ditto.
12812         * object.h (MONO_STRUCT_SETREF): New macro.
12814         * class-internals.h (MonoStats): Add some GC statistics.
12816         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
12818 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
12820         * exception.c (mono_exception_from_name_two_strings):
12821         Break from loop after method is found.
12823 2008-01-04  Dick Porter  <dick@ximian.com>
12825         * process.c (process_module_string_read): Rename variable to
12826         reflect correct usage, after fixing bug 345972.
12828 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
12830         * verify.c (mono_type_create_fnptr_from_mono_method): 
12831         created a MonoType function pointer instance to be used during
12832         verification. The verifier releases this memory at end.
12834         * verify.c (mono_method_is_constructor): extracted repeated
12835         checks for constructor into a single class.
12837         * verify.c (do_push_field): use new extracted method
12838         for constructor check.
12840         * verify.c (do_newobj): same.
12842         * verify.c (do_ldftn): renamed to do_load_function_ptr
12843         and make it verify ldvirtftn too.
12845         * verify.c (mono_method_verify: proper verification
12846         of ldvirtftn. release created MonoMethod instances.
12848 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12850         * verify.c (token_bounds_check): added.
12852         * verify.c (do_ldftn): added.
12854         * verify.c (mono_method_verify): proper verificartion of ldftn.
12856 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12858         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
12859         than the table row count. It's the resposibility of the caller to
12860         make the bounds check and raise the correct error.
12862         * metadata.c (mono_metadata_decode_row_col): Same.
12864         * loader.c (mono_get_method_from_token): perform bounds check
12865         on token for methoddef table.
12867 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12869         * icall.c
12870         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12871         assert into a negative result, the managed code already coped with
12872         that.
12874         Some folks on Windows reported this error. 
12876 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
12878         * appdomain.c: Bump corlib version.
12879         * icall.c:
12880         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
12881         CultureInfo.CreateCulture to create CultureInfo for name.
12882         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
12883         create CultureInfo for name. Fixes bug #347174.
12885 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12887         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
12888         flags.
12890         * verify.c (is_valid_branch_instruction): allow branching to the
12891         first instruction of the protected block.
12893         * verify.c (is_valid_cmp_branch_instruction): same.
12895         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
12896         avoid double initialization.
12898         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
12899         detect which cases the eval stack should just be copied.
12901         * verify.c (mono_method_verify): check if the eval stack
12902         is empty when entering a protected block.
12904 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12906         * verify.c: added is_clause_in_range, is_clause_inside_range,
12907         is_clause_nested and verify_clause_relationship. They perform
12908         the verifications stated in P1 12.4.2.7.
12910         * verify.c (mono_method_verify): remove some unused variables,
12911         add the new exception clause checks, add instruction border
12912         checks for protected block start/end, improved some error 
12913         messages and fixed a bug in the way invalid instruction access
12914         is detected.
12916 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
12918         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
12919         from GC 7.0 if available.
12921         * object.c: Remove an unused define.
12922         
12923         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
12925         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
12927         * null-gc.c (mono_gc_make_descr_for_array): Implement.
12929         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
12931         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
12932         to take the same arguments as the other make_descr functions.
12934         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
12936         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
12937         directly.
12939         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
12940         mini.c.
12942         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
12943         call to boehm-gc.c.
12945         * boehm-gc.c (mono_gc_register_root): Fix a warning.
12947         * null-gc.c (mono_gc_register_root): Fix a warning.
12949         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
12951         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
12952         (mono_gc_base_init): Call GC_init ().
12954         * null-gc.c: Define mono_gc_register_root () as a no-op.
12956         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
12958 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
12960         * verify.c: add prototype for merge_stacks at top
12962         * verify.c (do_switch): added.
12964         * verify.c (merge_stacks): on some cases the stack merging
12965         was not happening properly. Unequal stack sizes at merge
12966         points should be invalid.
12968         * verify.c (mono_method_verify): added more debug info on stack state.
12969         verify switch properly.
12971 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
12973         * method-builder.h: New file, moved the mono_mb_ declarations here from 
12974         marshal.h.
12976         * boehm-gc.c marshal.c: Include method-builder.h.
12978         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
12980         * marshal.c: Remove some code which is now in method-builder.c.
12982 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
12984         * method-builder.c: New file, extraction of the method builder functionality 
12985         from marshal.c.
12987         * marshal.c: Move the mb functions into method-builder.c.
12989         * marshal.h marshal.c: Export some mono_mb_... functions.
12991         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
12993         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
12994         the caller.
12996         * class.c (mono_class_get_full): Check the token type in the dynamic case.
12998         * loader.c (mono_field_from_token): Ditto.      
13000         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13001         type as well.
13002         
13003         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13004         Fixes #342565.
13006         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13007         a helper function for setting it.
13009         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13011         
13012         * assembly.c: Significally simplify code now that referenced assemblies are 
13013         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13015         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13016         #349952.
13018 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13020         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13021         instructions that were target of branches or are at protected block boundaries.
13023         * verify.c (in_same_block): handle filter clauses.
13025         * verify.c (is_valid_branch_instruction): added. checks the target of
13026         instructions br or brtrue/false.
13028         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13029         binary branch instructions such as beq and bge.
13031         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13032         and made it pin the instruction as been part of the exception block.
13034         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13035         of in_same_block.
13037         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13038         of in_same_block.
13040         * verify.c (do_ret): ret from a protected block is unverifiable and
13041         not invalid.
13043         * verify.c (do_static_branch): verify br and br.s instructions.
13045         * verify.c (merge_stacks): add extra param to support detection
13046         of branches in the middle of instructions.
13047         
13048         * verify.c (mono_method_verify): verify branches and exception blocks
13049         that target the middle of instructions. Proper verification of br and br.s.
13051 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13053         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13054         skip_visibility field.
13055         (reflection_methodbuilder_from_dynamic_method): Ditto.
13057         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13058         registrations. Fixes #348193.
13060         * threads.h: Move the internal mono_thread_get_pending_exception () to
13061         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13063 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13065         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13066         icall registration. Fixes #348193.
13068         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13069         for corlib classes into object. Fixes #349621.
13071 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13073         * icall.c (property_accessor_nonpublic): new function to determine
13074         whether an accessor allows a property to be considered non-public.
13075         Returns false for private accessor(s) from parent class, and internal
13076         accessor(s) from parent on 2.0 profile (and higher).
13077         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13078         to determine whether property should be included if NonPublic flag
13079         is set. Fixes bug #349078.
13081 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13083         * verify.c (init_stack_with_value): added.
13085         * verify.c (mono_method_verify): extracted common
13086         code for exception initialization into init_stack_with_value.
13088         * verify.c (mono_method_verify): initialize the exception
13089         for handler clauses as well.
13091         * verify.c (mono_method_verify): fix the exception clause
13092         ordering rules, it should use handler end offset and not
13093         start offset.
13095 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13097         * rawbuffer.c: remove useless warning.
13099 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13101         * threads.h, threads-types.h: move functions to the correct header
13102         (fixes bug#349952).
13104 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13106         * verify.c (mono_method_verify): proper verification
13107         of exception handling clauses ranges and fallthru in
13108         and out of protected blocks.
13110 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13112         * verify.c (mono_method_verify): fixed compilation issue.
13114 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13116         * verify.c (mono_method_verify): a printf slipped in, changed
13117         to use verifier debug macro.
13119 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13121         * verify.c (is_correct_leave): check for filter clauses.
13123         * verify.c (do_filter): added.
13125         * verify.c (mono_method_verify): property verification of leave.
13128 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13130         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13131         Win32 build, until we figure out how to do the proper thing on
13132         Win32.
13134 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13136         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13137         by the previous patch.
13138         
13139         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13140         the assembly resolve handler for refonly assemblies.
13142 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13144         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13145         Make sure only one thread is allowed to commence shutdown, and
13146         don't allow new threads to be started once shutdown is in
13147         progress.
13149 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13151         * verify.c (is_correct_endfilter): added.
13153         * verify.c (is_unverifiable_endfilter): added.
13155         * verify.c (do_endfilter): added.
13157         * verify.c (mono_method_verify): property verification of endfilter
13158         and fixed a corner case or endfinally.
13160 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13162         * verify.h: new flags to support fail fast of unverifiable code and
13163         do non-strict verification. Non-strict verification is required to
13164         have MS runtime compatibility. There are a huge amount of unverifiable
13165         code that it accepts as verifiable. The strict mode verifies the code
13166         as the specs says.
13167         Non-strict mode will be required in cases where code needs to be
13168         accepted as verifiable but fails under strict mode.
13170         * pedump.c: added support to fail fast and non-strict verification.
13172         * verify.c: added support for both fail fast and non-strict verification.
13174 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13176         * verify.c (is_correct_endfinally): added.
13178         * verify.c (mono_method_verify): property verification of endfinally.
13180 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13182         * verify.c (in_any_block): check for filter clauses.
13184         * verify.c (is_correct_rethrow): added.
13186         * verify.c (mono_method_verify): property verification of rethrow.
13188         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13190 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13192         * verify.c (do_throw): added.
13194         * verify.c (mono_method_verify): property verification of throw
13196 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13198         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13199         assemblies. Fixes #346425.
13201 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13203         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13204         FieldBuilders.
13206         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13208         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13209         prevent asserts when this is called with a token which might not be valid.
13211         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13212         lookup_dynamic_token_class with valid_token == FALSE.
13214         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13216         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13218         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13219         
13220 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13222         * gc.c: Don't delay threadpool thread finalization unless Mono is
13223         shutting down.
13225 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13227         * threads.c: turn an assert into a non-fatal warning.
13229 2007-12-09  Robert Jordan  <robertj@gmx.net>
13231         * icall.c (GetVirtualMethod): Add missing argument validation.
13233 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13235         * verify.c (do_cast): added.
13237         * verify.c (mono_method_verify): property verification of castclass and isinst.
13240 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13242         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13244         * verify.c (do_stelem): added.
13246         * verify.c (mono_method_verify): property verification of stelem.X.
13248 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13250         * class.c, class-internals.h: Introduce an environment variable
13251         (MONO_GENERIC_SHARING) through which the extent of generic code
13252         sharing can be controlled (share all classes, share only corlib
13253         classes, or share nothing).
13255         * object.c: Only create runtime generic context for classes for
13256         which sharing is enabled.
13258 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13260         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13262         * verify.c (mono_method_verify): property verification of ldelem.any.
13264 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13266         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13267         added ldelem.X opcodes.
13269         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13271         * verify.c: proper verification of ldelem.X 
13273 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13275         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13277 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13279         * verify.c (mono_method_verify): null literal requires special handling,
13280         the value pushed on stack need to be flagged as so.
13282         * verify.c (do_ldelema): Verify ldelema properly.
13284 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13286         * verify.c: Verify ldlen properly.
13288 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13290         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13291         to the target object's type. Fixes #346160.
13293 2007-12-05  Dick Porter  <dick@ximian.com>
13295         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13296         Solaris needs the same workaround as BSD-derived systems.  Fixes
13297         bug 323524, patch by Burkhard Linke
13298         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13300 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13302         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13303         handle to use when error dialog is shown; otherwise, update mask
13304         to show no error dialog when an error occurs.
13306 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13308         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13310         * class.c (mono_class_get_field_default_value): New helper function to initialize
13311         field->def_type and field->data.
13313 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13315         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13316         the general one.
13318         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13320         * marshal.c: Avoid depending on delegate->method_info being set.
13322         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13323         
13324         * object.c (mono_delegate_ctor): Set delegate->method.
13326         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13328         * appdomain.c: Bump corlib version.
13330 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13332         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13333         equality check if we're comparing canonicalized MonoGenericInsts.
13335 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13337         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13338         accessing class->methods.
13340 2007-11-22  Dick Porter  <dick@ximian.com>
13342         * threads.c: Ensure that the synch_cs is set before trying to use
13343         it.
13345 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13347         * profiler.c: r89126 broke the statistial profiler, unbreak.
13349 2007-11-22  Martin Baulig  <martin@ximian.com>
13351         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13353         * mono-debug.c
13354         (mono_debug_debugger_version): Bump to 3.
13355         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13356         -> mono_debugger_class_initialized().
13358         * mono-debug-debugger.c
13359         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13361         * class.c
13362         (mono_debugger_start_class_init_func): Removed.
13363         (mono_debugger_class_loaded_methods_func): Added.
13364         (mono_class_setup_methods): Call it here.
13366 2007-11-22  Martin Baulig  <martin@ximian.com>
13368         * mono-debug.c
13369         (mono_debug_add_delegate_trampoline): New public method.
13370         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13372         * mono-debug.h
13373         (MonoSymbolTable): Added `global_data_table'.
13374         (MonoDebuggerTypeKind): Removed.
13376 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13378         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13379         these methods.
13381         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13382         
13383 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13385         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13387 2007-11-20  Martin Baulig  <martin@ximian.com>
13389         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13391         * mono-debug-debugger.c
13392         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13393         (mono_debugger_remove_breakpoint): Likewise.
13394         (mono_debugger_check_breakpoints): Likewise.
13395         (mono_debugger_register_class_init_callback): New public method.
13396         (mono_debugger_remove_class_init_callback): Likewise.
13397         (mono_debugger_add_type): Likewise.
13399         * mono-debug-debugger.h
13400         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13402 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13404         * class.c: more interface implementations needed for the
13405         array enumerator (fixes bug #341112).
13407 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13409         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13410         fix ParamName of ArgumentNullExceptions.
13412 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13414         * reflection.c (mono_reflection_encode_sighelper): Generate the
13415         modopts and modreqs.   I have a useless test that crashes monodis,
13416         but that shows the code working.
13418 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13420         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13421         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13423 2007-11-15  Dick Porter  <dick@ximian.com>
13425         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13426         When joining a thread, it's the thread that's calling Join that
13427         gets WaitSleepJoin state not the target.  Fixes the standalone
13428         test case in bug 334740, and hopefully the whole bug too.
13430 2007-11-15  Dick Porter  <dick@ximian.com>
13432         * process.c: Read file version info from the files pointed at by
13433         process modules, not the current process.  Fixes bug 315969.
13435         Use windows typedef names in some places to fix warnings on the
13436         windows build.
13438 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13440         * image.c, metadata-internals.h: Added a generic_class_cache hash
13441         to MonoImage for looking up generic classes when sharing generics.
13443 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13445         * sgen-gc.c: warning cleanups.
13447 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13449         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13450         inherited properties.
13452 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13454         * object.c, class-internals.h: Added more information to the
13455         runtime generic context.
13457 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13459         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13460         instead of just the target method. Generalize the abstract method handling to
13461         handle any non-static method.
13463         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13464         mono_marshal_get_delegate_invoke () signature change.
13466 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13468         * class.c, class-internals.h: Made
13469         mono_type_get_basic_type_from_generic () public.  Fixed member
13470         access check for shared generics.
13472         * loader.c: Don't insert field into field cache if it's part of a
13473         non-inflated generic class.
13475         * domain.c, domain-internals.h: The generic sharing context is now
13476         part of the jit info data structure.  Added two accessor
13477         functions.
13479 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13481         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13482         the array Get/Set/Address methods, since the JIT inlines them.
13484         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13486         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13487         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13489         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13490         mono_marshal_get_delegate_invoke signature change.
13492         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13493         an additional argument. Add support for invoking abstract methods.
13495         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13497         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13499 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13501         * class.c: Do field layout for open generic classes as well.
13503 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13505         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13506         other objects, because the threadpool is still around.  Put them
13507         in a list instead and after finalizing all other objects in the
13508         root domain shut down the thread pool and then finalize the
13509         threads.  Fixes bug #337383.
13511         * threads.c, thread-types.h: New mono_thread_create_internal()
13512         function for marking a thread with the threadpool flag before it
13513         started.  Set synch_cs to NULL after freeing it.
13515         * threadpool.c: Mark threadpool threads before they start.
13517 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13519         * reflection.h, reflection.c: don't export random functions
13520         and lazy load dbnull and missing objects.
13522 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13524         * class.c: Initialize COM types if COM interfaces
13525         are present (not just COM classes).
13526         
13527         Code is contributed under MIT/X11 license.
13529 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13530         * reflection.c:
13531         create_dynamic_mono_image: hook module profiler events (dynamic case).
13532         mono_image_basic_init: hook assembly profiler events (dynamic case).
13534 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13535         * profiler.c:
13536         simple_appdomain_unload: completely terminate the profiler
13537         instead of only processing the statistical samples.
13538         simple_shutdown: make sure this is really called exactly once,
13539         even in multithreaded applications, and always listen to
13540         appdomain events.
13541         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13542         here, the "[un]load" functions will do it.
13543         Fixes bugs #333791 and #325261.
13545 2007-11-07  Geoff Norton  <gnorton@novell.com>
13547         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13548         rather than depend on __APPLE__.
13550 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13552         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13554 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13556         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13557         UTF16 MonoString. Fix the crash from bug #335488
13559 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13561         * marshal.c: Correct (for non-Win32 OS) length != size in 
13562         mono_string_from_bstr. Fix #339530.
13564 2007-11-06  Geoff Norton  <gnorton@novell.com>
13566         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13567         to succeed
13569 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13571         * process.c: Added run-time GetProcessId API detection for Windows.
13573 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13575         * reflection.c  (mono_param_get_objects): If a parameter has the
13576         attribute [System.Runtime.InteropServices.Optional] we should
13577         set the DefaultValue of the ParameterInfo to be
13578         System.Reflection.Missing instead of DBNull.
13580         See bug #339013.
13582         (mono_get_reflection_missing_object): New method,
13583         returns the System.Reflection.Missing.Value singleton instance.
13585 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13587         * culture-info-table.h : regenerated.
13589 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13591         * icall.c: Use GetEnvironmentStrings on windows
13592         so we are using the same environment block as 
13593         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13594         #333740.
13595         
13596         Code is contributed under MIT/X11 license.
13598 2007-10-31  Martin Baulig  <martin@ximian.com>
13600         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13602         * mono-debug-debugger.h
13603         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13605 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13607         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13608         classes.
13610 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13612         * culture-info-table.h : regenerated.
13614 2007-10-30  Robert Jordan  <robertj@gmx.net>
13616         * icall-def.h, icall.c:
13617         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13619         Code is contributed under MIT/X11 license.
13621 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13623         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13624         inflated class instead of inflating them again.
13625         
13626         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13627         dynamic case.
13629         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13630         Call setup_supertypes () after klass->parent is set.
13631         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13633         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13634         for inflated instances of not yet created dynamic generic classes.
13635         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13636         times from inflated_method.
13637         (methodbuilder_to_mono_method): Ditto.
13639 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13641         * gc.c: code cleanup and removed old untested option of not creating the
13642         finalizer thread.
13644 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13646         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13647         creating a jump trampoline for dynamic methods.
13649 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13651         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13652         generic TypeBuilders when called from another method of the same type (bug #335131).
13655 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13657         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13658         doesn't seem to work perfectly.
13659         
13660         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13661         called multiple times.
13662         (methodbuilder_to_mono_method): Ditto.
13663         (resolve_object): Inflate FieldBuilder's.
13665 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13667         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13668         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13669         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13671 2007-10-26  Dick Porter  <dick@ximian.com>
13673         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13674         Thread initialisation changes
13676 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13678         * verify.c: fix compatibility check between arrays and System.Array
13680 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13682         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13683         too. Fixes #336999.
13685 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13687         * object.c (mono_value_box): Use typed allocation here.
13689 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13691         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13692         trampoline instead of compiling the method right away.
13694         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13696 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13698         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13699         related fields for dynamic classes. Fixes #334493.
13701 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13703         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13704         
13705         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13707         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13708         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13710         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13712         * reflection.c (create_generic_typespec): Initialize klass->generic_container
13713         if needed.
13714         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
13716 2007-10-18  Jonathan Chambers <joncham@gmail.com>
13718         * marshal.c: Use correct key when removing item
13719         from ccw_hash.
13720         
13721         Code is contributed under MIT/X11 license.
13723 2007-10-17  William Holmes  <billholmes54@gmail.com>
13725         *marshal.c: Adding a case to marshal booleans to U1
13727         Code is contributed under MIT/X11 license.
13729 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
13731         * class.c (mono_class_from_name): Search the modules compromising dynamic
13732         assemblies. Fixes #331601.
13734 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
13736         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
13737         exception if the type name contains an assembly component. Fixes #334203.
13739         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
13740         modules inside dynamic assemblies. Fixes #334200.
13741         
13742         * reflection.c: Set image->public_key and image->public_key_length;
13744         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
13745         fields.
13747         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
13748         
13749 2007-10-16  Mark Probst  <mark.probst@gmail.com>
13751         * metadata.c: Implemented correct comparing of generic classes.
13752         An inflated generic class can be equal to a non-inflated one if it
13753         is inflated with generic type variables as type arguments.  Fixes
13754         bug #333798.
13756 2007-10-15  Dick Porter  <dick@ximian.com>
13758         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
13759         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
13760         81646.
13762         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
13763         instead of a monitor lock.  This means that monitor_try_enter and
13764         co can set the thread state safely.
13765         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
13766         thread_interrupt_requested, so interrupt actually works.
13768         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
13769         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
13770         state accessor function
13772 2007-10-15  Martin Baulig  <martin@ximian.com>
13774         * mono-debug.h
13775         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
13776         the debugger with the current runtime.
13778 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13780         * object.c, object-internals.h: added the ability to set a single
13781         trampoline for all the slots in a vtable.
13783 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13785         * marshal.c: deal with a possible race condition during multicast
13786         delegate invocation.
13788 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13790         * class.c: ensure value type methods don't have the synchronized
13791         flag set.
13793 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13795         * string-icalls.c, string-icalls.h: reverted unapproved patch that
13796         breaks the build.
13798 2007-10-11  Joel Reed  <joelwreed@comcast.com>
13800         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
13801         to take an options parameter so that empty entries can be removed during
13802         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
13804 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13806         * marshal.c: make sure we don't store the signature from a dynamic
13807         method into the runtime invoke cache (bug #327189).
13809 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13811         * marshal.c: make sure the wrapper methods are properly initialized.
13813 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13815         * metadata.c, metadata-internals.h: Generalized
13816         mono_type_stack_size() to mono_type_stack_size_internal() which
13817         takes an additional argument specifying whether it allows open
13818         types.
13820 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
13822         * verify.c (do_invoke_method): handle typedbyref params
13823         correctly and check for unverifiable return values.
13825         * verify.c (do_newobj): fix a warning.
13827 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13829         * verify.c: don't tread typedbyref as allways unverifable,
13830         so uses, like (ld/st)loc.0 are valid. verify for the cases
13831         that it matters, like boxing related operations.
13833 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13835         * verify.c: add verification of the newobj opcode. verification
13836         of delegate instantation still missing due ldftn and virldftn not
13837         pushing the function type on stack
13839 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13841         * class-internals.h: Runtime generic context data structure
13842         definition.
13844         * object.c: Initialization of runtime generic context at runtime
13845         vtable creation time.
13847 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
13848         * class.c (mono_class_create_from_typedef,
13849         mono_class_from_generic_parameter, mono_ptr_class_get,
13850         mono_fnptr_class_get, mono_bounded_array_class_get)
13851         * domain.c (mono_domain_create, mono_domain_free)
13852         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
13853         * image.c (do_mono_image_load, mono_image_close):
13854         Hooked up load-unload profiler events.
13856 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13858         * domain.c: track statistics about the actual amount of native code
13859         allocated.
13861 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13863         * class.c: the valuetype enumerators don't have the additional
13864         supertypes interfaces.
13866 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13868         * class.c: need more interfaces setup for the IEnumerator<T>
13869         object created for arrays (tests/ienumerator-interfaces.2.cs).
13871 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13873         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
13875 2007-10-05  Alp Toker  <alp@atoker.com>
13877         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13878         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13879         #315863.
13881 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13883         * verify.c (verify_type_compatibility_full): verification of
13884         compatibility improved, validates correctly non-strict checks between
13885         native int and I4 types different than (unsigned)int32.
13887         * verify.c (do_store_indirect): added, do all verification of
13888         ldind.X opcodes. 
13890         * verify.c (get_load_indirect_mono_type): renamed to
13891         get_indirect_op_mono_type, as it now returns the MonoType for 
13892         ldind.X and stind.X opcodes.
13894 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13896         * reflection.c: Fix the encoding of generic type definition for
13897         TypeBuilders.
13899         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
13900         mono_image_typedef_or_ref but allows to specify if typespec lookups should
13901         be made. Typespec check is done prior to typeref cache lookup.
13903         * reflection.c (mono_image_typedef_or_ref): now just delegate to
13904         mono_image_typedef_or_ref_full.
13906         * reflection.c (encode_generic_class): encode the generic class
13907         directly instead of calling encode_type.
13909         * reflection.c (encode_type): encode the generic type definition
13910         MonoClass as a generic instantiation.
13912         * reflection.c (create_typespec): cache typespec tokens in
13913         the assembly->typespec cache. Don't create typespec for a generic
13914         instance MonoClass. Create typespec for the generic type defintion.
13916         * reflection.c (create_generic_typespec): encode the generic
13917         class directly instead of calling encode_type.
13919         * reflection.c (mono_image_create_token): encode the generic
13920         type definition not using a typespec for MonoType instances.
13923 2007-10-04  Raja R Harinath  <rharinath@novell.com>
13925         Fix #328812
13926         * class.c (mono_image_init_name_cache): Don't return nested
13927         'protected internal' classes.
13928         (mono_class_from_name_case): Likewise.
13930 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
13932         * icall-def.h, icall.c : get_bundled_machine_config() is now the
13933           common function used by both DefaultConfig in System.dll and
13934           InternalConfigurationHost in System.Configuration.dll.
13936 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13938         * class.c: automatically add to vectors only a few essential explicit
13939         generic interfaces. The rest of the interfaces that arrays should
13940         provide are currently implicitly added (but still not lazily, see the
13941         design in the discussion of bug#325495 for the details of what is
13942         needed for that). Additionally, implicit interfaces are assigned the
13943         same vtable slot as the explicit interfaces (as they are compatible):
13944         this enables huge memory savings since we don't need to instantiate
13945         as many memthods and as large vtables anymore. Also, Since
13946         GetEnumerator<T> returns an instance of a type that is required to
13947         support a similarly large set of interfaces as arrays, we add
13948         implicit interfaces and interface offset sharing support to those
13949         types, too. This change adds all the required interfaces so that
13950         the anonarray.cs test case in the bug report works (we don't add
13951         all the interfaces to arrays of arrays 3-level deep and more because
13952         of the memory requirements explained in the bug and since they are much
13953         less common: the lazy-loading support will enabled them to work, too).
13955 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13957         * verify.c (merge_stacks): major clean up, all type compatibility
13958         checks are done by verify_type_compatibility. This fix my earlier lack
13959         of understanding of the CLR type system and merge_stacks no longer looks
13960         scary.
13962         * verify.c: fixed some bad spelling.
13964 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13966         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
13967         a given stack slock.
13968         
13969         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
13970         verify_type_compatibility_full. This removed a near indentical function and fixed
13971         handling of Int32 and IntPtr across all opcodes.
13973 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13975         * class.c: only vectors have the additional generic interfaces.
13977 2007-10-01  Jonathan Chambers <joncham@gmail.com>
13979         * mono-config.c: Use g_strcasecmp instead of
13980         strcasecmp like everywhere else to fix
13981         compilation with MSVC.
13982         
13983         Code is contributed under MIT/X11 license.
13985 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13987         * object.c, object-internals.h: refactored the IMT code to enable
13988         building a single slot at a time and lazily creating the IMT trampolines
13989         and thunks.
13991 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
13993         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
13995         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
13996         Fixes #328501.
13997         
13998 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14000         * loader.c (method_from_methodspec): Rearrange to avoid
14001         un-necessary exposition.  Don't assert out if the method's
14002         declaring type is a generic type definition.
14004 2007-09-28  Martin Baulig  <martin@ximian.com>
14006         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14008 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14010         * class-internals.h: optimize field layout of MonoClass to
14011         requires less cachelines at runtime and save a few bytes on 64 bit
14012         systems.
14014 2007-09-28  Jb Evain  <jbevain@novell.com>
14016         * reflection.c: when encoding type names in custom attributes,
14017         if the type is a closed generic type, its generic arguments
14018         have to be serialized as AssemblyQualifiedName, so that when
14019         they are deserialized, it's possible to re-create them properly.
14020         Fixes #329450.
14023 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14025         * object.c, class-internals.h: added delegate-creation counter.
14027 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14029         * class.c: cleanup of the code that synthetizes interfaces for
14030         arrays in 2.0: saves quit a bit of corlib mempool memory.
14031         Code to fix bug #325495 ifdeffed out for now until the issues
14032         with memory usage and O(n^2) behaviour are fixed.
14034 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14036         * marshal.c: when possible, do not duplicate the name of the methods
14037         in the method builder and in the generated MonoMethod.
14039 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14040         * verify.c: added support for type checking ldind_* opcodes.
14042 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14044         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14045         which is used to distinguish the fully open instantiation of a TypeBuilder
14046         with the rest. This temporary hack is required to restore the property that
14047         the fully open instantiation is the same type of the generic type definition.
14049         * class-internals.h (mono_generic_class_is_generic_type_definition):
14050         new function as part of the internal API.
14052         * class.c (inflate_generic_type): return NULL when the generic inst is
14053         fully open. The fully open generic type is now the same as the generic type
14054         definition for non TypeBuilder types.
14056         * class.c (mono_generic_class_get_class): removed assert since it is
14057         no longer valid, gklass->cached_class can point to the generic type definition.
14059         * class.c (mono_generic_class_is_generic_type_definition): new.
14061         * metadata.c (mono_generic_class_hash): added is_tb_open field
14062         to the hash calculation.
14064         * metadata.c (free_generic_class): if the generic class is associated
14065         with the generic type definition, its field will come from the mempool and
14066         must not be freed.
14068         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14069         new, this function identifies the corner case of a TypeBuilder fully open
14070         instantiation.
14072         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14073         for lookup. Set gclass->cached_class to be the container class in case of
14074         the fully open instantiation of non TypeBuilder types.
14076         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14077         to compare generic classes.
14079         * reflection.c (method_encode_methodspec): remove assert that
14080         no longer is valid.
14082         * reflection.c (mono_reflection_generic_class_initialize): add
14083         an aditional assert to ensure the proper type is used.
14085 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14087         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14088         to enjoy it.
14090 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14092         * verify.c (push_arg): Fixed support for ldarga
14093         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14094         MonoType used as first arg in case of instance calls.
14096 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14098         * verify.c: Support for verifying VAR and MVAR types, 
14100 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14102         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14103         accessors correctly.
14105 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14107         * threads.c: support OSX and other systems in
14108         mono_thread_get_stack_bounds (bug #328026).
14110 2007-09-25  Martin Baulig  <martin@ximian.com>
14112         * mono-debug.h
14113         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14115 2007-09-24  Martin Baulig  <martin@ximian.com>
14117         * mono-debug.h
14118         (MonoDebugClassEntry): Moved the definition of this struct into
14119         mono-debug.c to make it private.
14121         * mono-debug.c
14122         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14123         type table per symbol file, we don't need to store the symfile id
14124         any longer.
14126 2007-09-24  Martin Baulig  <martin@ximian.com>
14128         Create one type table per symbol file, since a `MonoClass *' gets
14129         invalid when its image is unloaded.
14131         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14132         (MonoDebugHandle): Added `type_table'.
14134 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14136         * mempool.c, mempool.h: added mono_mempool_new_size () API
14137         to be able to specify a smaller initial size for the pool.
14138         Adjusted the code to slowly increase pool size before using
14139         the previous default size.
14140         * image.c: use a small initial size for image mempools.
14142 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14144         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14145         Fixes ##320990.
14147         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14148         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14150 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14152         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14153         free. Fixes #327438.
14155 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14157         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14158         generic instantiations, etc.
14159         <MONO_TYPE_ARRAY>: Likewise.
14161 2007-09-21  Martin Baulig  <martin@ximian.com>
14163         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14164         these structs were never defined.
14165         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14167 2007-09-21  Martin Baulig  <martin@ximian.com>
14169         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14171 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14173         * image.c: removed the guid hash tables: we can get the same info
14174         without the additional memory usage hit (partially fixes also bug #327052).
14176 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14178         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14179         event to handle unloading methods. After the event is called, the
14180         corresponding MonoMethod* must be considered invalid.
14181         * loader.c (mono_free_method): call the new mono_profiler_method_free
14182         event.
14184 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14186         * domain-internals.h: New flag in MonoJitInfo which marks shared
14187         generic methods.  New hash table (shared_generics_hash) in
14188         MonoDomain to keep track of shared generic methods.  Prototypes
14189         for functions to register and lookup shared generic methods.
14191         * domain.c: Support for registering and looking up shared generic
14192         methods via a hash table (shared_generics_hash) in MonoDomain.
14194         * class-internals.h: New exception to signal failure of shared
14195         compilation of a generic method.  New counters for generics
14196         sharing in MonoStats.
14198 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14200         * image.c, metadata-internals.h: don't keep a file descriptor open
14201         for loaded assemblies (bug#325988).
14203 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14205         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14206         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14207         use the corresponding datatypes.
14208         (type_in_image): Update to changes.
14209         (CleanForImageUserData): Simplify.
14210         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14211         Avoid quadratic behaviour in handling the "stolen" list by
14212         separating the filter predicate out, and by prepending the stolen
14213         items rather than appending them.
14214         (steal_ginst_in_image): Likewise.
14215         (mono_metadata_clean_for_image): Update to changes.
14217 2007-09-19  Martin Baulig  <martin@ximian.com>
14219         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14221 2007-09-19  Martin Baulig  <martin@ximian.com>
14223         * mono-debug.c (mono_debug_cleanup): Don't call
14224         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14226 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14228         Fix crash on 'make run-test' in mcs/errors
14229         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14230         Avoid more potential allocations in mono_class_from_mono_type.
14231         (ginst_in_image): Update to changes.
14232         (gclass_in_image): Rearrange slightly.
14234 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14236         * class.c (mono_class_init): Move the code that sets up class->methods to 
14237         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14239         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14240         canonical instance of an inflated generic signature.
14241         (mono_type_create_from_typespec): Remove an invalid free.
14243         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14245 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14247         * domain-internals.h: added a declaration of the
14248         mono_assembly_load_full_nosearch internal function.
14250         * assembly.c (mono_assembly_load_with_partial_name): use
14251         mono_try_assembly_resolve return value properly.
14252         (mono_assembly_load_full_nosearch): copied the function body from
14253         mono_assembly_load_full, without the code to invoke assembly
14254         search hooks.
14255         (mono_assembly_load_full): calls the above new function and if the
14256         assembly is not resolved, invokes the search hooks.
14258         * appdomain.c (mono_runtime_init): restore the global postload
14259         assembly search handlers.
14261 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14263         * class.c (mono_class_init): Make sure class->methods and class->properties
14264         are never NULL in the generics case.
14266         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14268 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14270         * metadata.c (free_generic_class): Disable some code to fix the build.
14272         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14274         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14275         from the image mempool.
14277         * metadata.c (free_generic_class): Free more data from the inflated class.
14279         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14281         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14282         mempool.
14283         (mono_type_create_from_typespec): Ditto.
14285         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14286         MonoImage to the caller.
14287         (mono_init_internal): Save the opened image in a global variable.
14288         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14290         * reflection.c (resolve_object): Fix a leak.
14292         * metadata.c: Fix the freeing of data in the generics caches.
14293         
14294         * metadata.c (free_generic_inst): Comment this out to fix the build.
14295         (free_generic_class): Ditto.
14297         * metadata.c: Free cached generic methods, instantinations and classes when
14298         they are removed from the caches.
14299         (mono_metadata_free_type): Free the type itself.
14301         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14302         places.
14304 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14306         * boehm-gc.c: restrict managed allocs to __thread supporting
14307         architectures.
14309 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14311         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14312         (mono_generic_class_get_class): Fix a leak.
14314         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14315         mono_metadata_free_type ().
14316         (mono_metadata_inflate_generic_inst): Fix a leak.
14318 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14320         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14322         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14323         mempool.
14325         * mono-debug.c (mono_debug_close_image): Fix call to 
14326         g_hash_table_remove ().
14328 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14330         * icall-def.h: redirect all the string ctor to the managed
14331         CreateString () methods.
14332         * string-icalls.c, string-icalls.h: removed dead code for string
14333         ctors and icalls.
14335 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14337         * mono-debug.c: Fix memory leaks.
14339 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14341         * threads-types.h: Implement mono_hazard_pointer_set and 
14342         mono_hazard_pointer_clear macros using do/while(0) to fix
14343         compilation with MSVC.
14344         
14345         Code is contributed under MIT/X11 license.
14347 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14349         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14350         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14352 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14354         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14355         icalls.
14357 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14359         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14360         managed-code allocated as well.
14362 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14364         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14366 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14368         * boehm-gc.c: fixed the build after the AOT changes.
14370 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14372         * wrapper-types.h: Add an ALLOC wrapper type.
14374         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14375         reference managed allocator methods.
14377 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14379         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14380         of Type array and not MonoType, a fix suggested by Hari.
14381         
14382 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14384         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14385         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14386         
14387         Code is contributed under MIT/X11 license.
14389 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14391         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14393 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14395         * image.c (do_mono_image_open): if assembly file fails to open and
14396         MONO_IOMAP is in effect, try to find the path in a
14397         case-insensitive way.
14399         * appdomain.c (mono_runtime_init): do not install postload hooks -
14400         tests show that MS.NET doesn't use anything of that sort to
14401         trigger the AppDomain.AssemblyResolve event.
14402         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14403         made non-static.
14404         (mono_runtime_init): init portability helpers here.
14406         * assembly.c (mono_assembly_load_with_partial_name): if other   
14407         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14408         to resolve the assembly.
14410         * domain-internals.h: added mono_try_assembly_resolve and marked
14411         it as internal.
14413 2007-09-11  Jb Evain  <jbevain@novell.com>
14415         * object-internals.h (MonoReflectionDynamicMethod): add
14416         a `MonoReflectionType *owner` field. The owner is used
14417         * reflection.c:
14418         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14419         method as the class declaring the dynamic method.
14420         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14421         dynamic method to the declaring type of the methodbuilder.
14423 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14425         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14426         rules for calling methods via reflection.
14428 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14430         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14431         Inflate MonoType's.
14433 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14435         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14436         provide a managed method that does fast allocations without needing
14437         a managed->unmanaged transition. Boehm GC implementation currently
14438         enabled for ptrfree objects on sane architectures.
14440 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14442         * marshal.c, marshal.h: exported a couple of useful functions and
14443         added mono_mb_get_label () to easily handle backward branches.
14445 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14447         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14449 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14451         * loader.c (find_method): Fixed the regression introduced while
14452         fixing bug #81466.
14454 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14456         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14457         well.
14458         
14459         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14460         icall.c reflection.c: Pass a MonoGenericContext argument to 
14461         mono_lookup_dynamic_token ().
14463         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14464         #82744.
14465         
14466 2007-09-09  Robert Jordan  <robertj@gmx.net>
14468         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14469         for generic methods.
14471         * object.c (mono_object_get_virtual_method): Handle generic methods.
14472         Fixes bug #78882.
14474         Code is contributed under MIT/X11 license.
14476 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14478         * image.c: fix locking in mono_image_load_file_for_image ().
14480 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14482         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14483         used only as a cache: added an icall to fill it.
14485 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14487         * reflection.h: exposed mono_reflection_free_type_info
14488         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14489         since mono_reflection_bind_generic_parameters makes a copy of it.
14490         * reflection.c (free_type_info): subinfos should be freed.
14491         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14492         made non static.
14493         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14494         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14495         this fixes #82695 and #81726.
14496    
14498 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14500         * process.h, process.c:  added support for user profile/info in
14501           ProcessStartInfo. For now only Windows works.
14503 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14505         * metadata.c: consider the generic arguments when comparing
14506         signatures (bug #82614).
14508 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14510         * cil-coff.h, image.c: updated assembly loader to cope with the
14511         PE32+ 64 bit file format.
14513 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14515         * assembly.c, class.c, domain.c, loader.c: remove useless
14516         inclusion of cil-coff.h.
14518 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14520         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14521         if interface is marked with CoClassAttribute. 
14522    
14523         Code is contributed under MIT/X11 license.
14525 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14527         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14528         if it's seen twice in major collections.
14530 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14532         * sgen-gc.c: big objects are not copied to the gray area, but they
14533         need to be considered for scanning, too, if they are brought alive
14534         by an object ready for finalizations or a survived one.
14536 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14538         * sgen-gc.c: properly account the number of disappearing links when
14539         they are nullified.
14541 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14543         * sgen-gc.c: share the code to scan the registered roots between the
14544         different types of collections.
14546 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14548         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14550 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14552         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14553         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14555 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14557         * security-manager.c (mono_security_manager_get_methods):
14558         LinkDemandSecurityException now has 2 arguments instead of 3.
14560 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14562         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14563         platforms which need it.
14565 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14567         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14568         dtor.
14570 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14572         * threads.c: free the thread static data on thread exit.
14574 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14576         * class.c: walk the hierarchy to find the generic definition for
14577         a class (fixes runtime part of bug #82498).
14579 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14581         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14582         ...
14584         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14586 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14588         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14590 2007-08-24  Robert Jordan  <robertj@gmx.net>
14592         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14594 2007-08-24  Jb Evain  <jbevain@novell.com>
14596         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14597         for byref types.
14599 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14601         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14602         #82286.
14604 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14606         * assembly.c: Fix a warning.
14607         
14608 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14610         * appdomain.c: parse the <runtime> section looking for the probing
14611         element with the 'privatePath' attribute, which sets additional
14612         directories in which the runtime should look for assemblies.
14614 2007-08-23  Robert Jordan  <robertj@gmx.net>
14616         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14617         Fixes #82499.
14619 2007-08-23  Martin Baulig  <martin@ximian.com>
14621         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14622         _mono_debug_init_corlib() and remove it from the header file.
14624 2007-08-23  Martin Baulig  <martin@ximian.com>
14626         * mono-debug-debugger.c
14627         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14628         don't notify the debugger about it.
14630         * mono-debug-debugger.h
14631         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14633 2007-08-23  Robert Jordan  <robertj@gmx.net>
14635         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14636         Code is contributed under MIT/X11 license.
14638 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14640         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14642 2007-08-22  Martin Baulig  <martin@ximian.com>
14644         * mono-debug.c: Store debugging info on a per-domain basis and
14645         free it on domain unload.  Add support for unloading symbol files.
14647         * mono-debug.h
14648         (MonoDebugList): New typedef.
14649         (MonoSymbolTable):
14650         - add `data_tables and `type_table'.
14651         - replace 'symbol_files' and `num_symbol_files' with a
14652           `MonoDebugList *'.
14653         (mono_debug_data_table): Removed.
14654         (mono_debug_list_add): New public function.
14655         (mono_debug_list_remove): New public function.
14656         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14657         (mono_debug_init_2_memory): Renamed into
14658         mono_debug_open_image_from_memory().
14659         (mono_debug_close_image): New public function.
14660         (mono_debug_domain_create): Likewise.
14661         (mono_debug_domain_unload): Likewise.
14662         (MONO_DEBUGGER_VERSION): Bump to 60.
14664         * mono-debug-debugger.h
14665         (MonoDebuggerEvent):
14666         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14667         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14668         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14669         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14670           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14671         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14672           meaning.
14673         (mono_debugger_add_symbol_file): Removed.
14674         (mono_debugger_add_type): Removed.
14675         (mono_debugger_lookup_type): Removed.
14676         (mono_debugger_lookup_assembly): Removed.
14678         * domain.c
14679         (mono_domain_create): Call mono_debug_domain_create().
14680         (mono_init_internal): Call mono_debug_init_corlib().
14682         * assembly.c
14683         (mono_assembly_close): Call mono_debug_close_image().
14685 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14687         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14688         mmap call.
14690 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14692         * sgen-gc.c: ensure section->pin_queue_end is initialized
14693         correctly when non pinning objects in the section have been found.
14695 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14697         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14698         containing a list of directories separated by ':'. MSDN docs say
14699         the directories should be separated with ';'. Part of a bugfix for
14700         bug #81446
14702 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14704         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14705         it should MonoType and not MonoClass.
14707 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14709         * culture-info-table.h : regenerated.
14711 2007-08-20  William Holmes  <billholmes54@gmail.com>
14713         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
14714          to call ReplaceFile Kernel32 on windows or in io-layer.
14715         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
14716         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
14717          as an internal call.
14719         Code is contributed under MIT/X11 license.
14721 2007-08-20  Jb Evain  <jbevain@novell.com>
14723         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
14724         and MONO_EXCEPTION_FIELD_ACCESS.
14726         * debug-helpers.[c|h]: new mono_field_full_name function.
14728 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14730         * class.c: Removed class_security_level() and moved it to
14731         security-core-clr.c.
14733         * security-core-clr.c, security-core-clr.h: class_security_level()
14734         is now public and renamed to mono_security_core_clr_class_level().
14735         It also looks for security attributes in the classes a class is
14736         nested in.
14738 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14740         * security-core-clr.c, security-core-clr.h: CoreCLR security
14741         utility functions.
14743         * Makefile.am: Added security-core-clr.[ch].
14745         * security-manager.c, security-manager.h: Functions and enum for
14746         setting and getting the security mode.
14748         * class.c: CoreCLR security checks.
14750 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14752         * icall-def.h, process.c, process.h: implemented icall to get
14753         user/system processor times.
14755 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14757         * domain.c, threads.c, class-internals.h, domain-internals.h: New
14758         reader-lock-free jit_info_table.
14760 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
14762         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
14764         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
14766         * object-internals.h (MonoException): Add missing _data member.
14768 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14770         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
14771         checking that only methods with matching qname or fqname are picked
14772         from implemented interfaces.
14774 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14776         * verify.c (do_newarr):added, do type verification of
14777         newarr ops, push the right value on the eval stack.
14778         * verify.c (mono_method_verify): use do_newarr
14781 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14783         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
14784         factored the common code into get_boxable_mono_type, which
14785         is now using mono_type_get_full, this fixed byref related tests.
14787 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14789         * class.c: added mono_type_get_full, this function has the same
14790         behavior of mono_class_get_full but the returned MonoType has
14791         all metadata of the associated token in case of a typespec token.
14792         * class.c: added mono_type_retrieve_from_typespec, used by 
14793         mono_type_get_full to retrieve the token type.
14794         * class.c (mono_class_create_from_typespec): changed to use
14795         mono_type_retrieve_from_typespec.
14796         * class.c (mono_ldtoken): changed to use mono_type_get_full
14797         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
14798         * class-internals.h: exported mono_type_get_full for internal use.
14800 2007-08-16  Jb Evain  <jbevain@novell.com>
14802         * domain.c (supported_runtimes): add entry for
14803         the 'moonlight' runtime version.
14805 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14807         * verify.c (mono_method_verify): small typo sliped in.  
14809 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14811         * verify.c (do_unbox_value): added, do type verification of
14812         unboxing ops
14813         * verify.c (mono_method_verify): use do_unbox_value
14816 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14818         * verify.c (dump_stack_value): fixed typo, was printing string
14819         instead of object on stack.
14820         * verify.c (do_box_value): moved the byref check up as it leads
14821         to invalid code and should be done earlier.
14822         * verify.c: improved error messages for and ldobj
14824 2007-08-15  William Holmes  <billholmes54@gmail.com>
14826         * marshal.c (emit_marshal_custom): Omit the call to 
14827           marshal_native_to_managed when calling native to managed 
14828           and the argument is specified as an out argument.
14830         Code is contributed under MIT/X11 license.
14832 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14834         * verify.c: fixed the type checks for generics, function pointers and vectors.
14835         Added type verification for ldobj and ldtoken. The verifier
14836         would segfault if header or signature of a method contained references
14837         to non-existant types.
14839 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14841         * marshal.c (cominterop_get_ccw): Patch from
14842         Bill Holmes to no walk up interface hierarchy. 
14843         All parent methods should be present in the interface for COM.
14844    
14845         Code is contributed under MIT/X11 license.
14847 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14849         * marshal.c (emit_marshal_com_interface): Patch from
14850         Bill Holmes to handle COM Interfaces as return values
14851         for native->managed calls.
14852    
14853         Code is contributed under MIT/X11 license.
14855 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
14857         * marshal.c (cominterop_get_idispatch_for_object): Implement
14858         for runtime callable wrappers.
14859    
14860         Code is contributed under MIT/X11 license.
14862 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
14864         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14865         so 2.0 types are accessible
14868 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14870         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14871         once we load mscorlib.   Due to the order in which we initialize,
14872         the mono_assembly_load_full routine that loads mscorlib did not
14873         load friends.   We now load it once we load the
14874         mono_defaults.internals_visible_class class. 
14876         * assembly.c: Expose the mono_load_friend_assemblies method.
14878 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
14880         * verify.c: improved the handling of boxing, better
14881         type checking for unary ops and conversion. Fix bug
14882         regarding managed pointer compatibility checking
14884 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14886         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
14888         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
14890 2007-08-09  Raja R Harinath  <rharinath@novell.com>
14892         * reflection.c (dup_type): Remove.
14893         * class.c (dup_type): Remove.
14894         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
14895         instead of the dodgy 'dup_type'.
14896         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
14897         handle the case where 'dup_type' needed the second argument.
14899 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
14901         * domain.c: Fix a warning.
14903 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14905         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
14906         checking that methods with the same fqname are not overridden
14907         with a method from an ancestor.
14909 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
14911         * threads.c (free_thread_static_data_helper): Avoid a crash if
14912         thread->static_data is not yet set.
14914 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
14916         * marshal.c: Use correct image when emitting
14917         native wrapper for COM calls.
14918    
14919         Code is contributed under MIT/X11 license.
14921 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
14923         * icall-def.h, security.c, security.h :
14924           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
14926 2007-08-07  Martin Baulig  <martin@ximian.com>
14928         * mono-debug-debugger.h
14929         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
14931         * domain.c (mono_domain_free): Call
14932         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
14934 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
14936         * verify.c (check_underflow, check_overflow): error message now returns IL offset
14937         * verify.c (in_same_block): code should test if either offset is inside the clauses
14938         * verify.c (mono_method_verify): push the exception into the eval stack of exception
14939         and filter blocks
14941 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14943         * image.c (mono_image_close): Fix a leak.
14945         * object.c (mono_runtime_invoke_array): Avoid using alloca.
14947         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
14949 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14951         * domain.c, threads.c, threads-types.h: fix memory retention issue
14952         with thread static variables not being cleared on domain unload.
14953         Reuse thread static slots after domain unload.
14955 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14957         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
14958         nullable type.
14960         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
14961         now done in mono_runtime_invoke_array.
14963         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
14964         receiver is a nullable type.
14966         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
14967         generic parameter.
14969 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
14971         * marshal.c: Implement COM Objects as return type for 
14972         managed->unmanaged calls. Added Release calls for COM Object
14973         out/return values in managed->unmanaged calls.
14975         Code is contributed under MIT/X11 license.
14977 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14979         * threads.h, threads-type.h: move the hazard pointer declarations
14980         to the private header.
14982 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14984         * file-io.c, appdomain.c: memory leak fixes.
14986 2007-08-02  Dick Porter  <dick@ximian.com>
14988         * socket-io.c
14989         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
14990         SO_REUSEADDR setting into io-layer/sockets.c.
14992 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
14994         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
14995         from Object when called on a generic parameter. Fixes #82211.
14997 2007-08-01  Dick Porter  <dick@ximian.com>
14999         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15000         Fixes bug 79250 yet again.
15002 2007-07-30  Martin Baulig  <martin@ximian.com>
15004         Merged the `debugger-dublin' branch.
15006         * mono-debug.h
15007         (MonoDebugDataTable): New typedef.
15008         (MonoDebugMethodAddressList): New typedef.
15009         (MonoDebugWrapperData): Removed.
15010         (MonoDebugSymbolTable): Removed `current_data_table',
15011         `current_data_table_size', `current_data_table_offset'.
15012         (MonoDebugDataItemType): Moved into mono-debug.c.
15013         (MonoDebugMethodJitInfo): Remove `address'.
15014         (mono_debug_data_table): New global variable.
15015         (mono_debug_lookup_method_addresses): New public function.
15016         (mono_debug_find_method): Take a `MonoMethod *', not a
15017         `MonoDebugMethodInfo *'.
15019         * mono-debug.c: Drop support for the old symbol tables.
15021 2007-06-28  Martin Baulig  <martin@ximian.com>
15023         * mono-debug.c (mono_debug_debugger_version): New public variable.
15025 2007-07-31  William Holmes  <billholmes54@gmail.com>
15027         * metadata.c Changed mono_type_create_from_typespec to not insert
15028           the type into the hash map until after
15029           do_mono_metadata_parse_type has completed.
15030         Fixes Bug #82194
15031         Code is contributed under MIT/X11 license.
15033 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15035         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15036         generic parameter. Fixes #82211.
15038 2007-07-27  Jb Evain  <jbevain@novell.com>
15040         * pedump.c (dump_metadata, dump_metadata_header): dump
15041         versions contained in the metadata header.
15043 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15045         * threads.c: register small_id_table with the GC.
15047 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15049         * threads.c, threads.h, class-internals.h, object-internals.h:
15050         Hazard pointers, to be used by lock-free parallel algorithms.
15052 2007-07-26  Dick Porter  <dick@ximian.com>
15054         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15055         routine on non-windows platforms, as I've not managed to think of
15056         a non-kludgy way of doing this.  Finishes off bug 78739.
15058 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15060         * object.c: properly setup interface_bitmap in proxy vtables.
15062 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15064         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15065         to create unique shadow copy target directories, use the domain's
15066         serial number instead. Each domain gets a unique target directory
15067         that way.
15069         * domain.c (mono_domain_create): added code to increment domain
15070         shadow copy serial number and cache the value in the current
15071         domain structure.
15073         * domain-internals.h (struct _MonoDomain): added a new field -
15074         shadow_serial to hold the serial number used in generation of
15075         shadow-copy directories. This is to make sure that the directory
15076         name is unique for each and every domain created. We avoid a race
15077         condition with overriding assemblies already in use by other app
15078         domains.
15080 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15082         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15083         binding generic parameters.
15085 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15087         * metadata.c (do_mono_metadata_parse_generic_class): Use
15088         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15089         error.
15091 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15093         * loader.c, class-internals.h, reflection.c: removed the per-method
15094         generics hashtable: we use the global one through the call of
15095         mono_class_inflate_generic_method ().
15097 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15099         * class.c, metadata.c, class-internals.h: introduce yet another
15100         generics global cache for inflated methods (fixes 98% of the perf
15101         issue in bug #81806).
15103 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15105         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15106         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15107         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15108         return a MonoGenericInst containing (a copy) of those types.
15109         (mono_metadata_inflate_generic_inst): Update to changes.
15110         (mono_metadata_parse_generic_inst): Likewise.
15111         (mono_get_shared_generic_inst): Likewise.
15112         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15113         (mono_reflection_bind_generic_method_parameters): Likewise.
15114         * metadata-internals.h: Likewise.
15115         * icall.c (free_generic_context): Kill.
15116         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15118         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15119         mono_metadata_type_dup.
15120         * marshal.c (mono_mb_create_method): Likewise.
15122         * metadata.c (mono_metadata_type_dup): Rename from
15123         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15124         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15125         * marshal.c, metadata-internals.h: Update to changes.
15127 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15129         * class.c: fixed a small leak for array classes and removed warning.
15131 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15133         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15134         Return 0x8000000 for return parameters. Fixes #82161.
15136 2007-07-21  Marek Habersack  <grendello@gmail.com>
15138         * appdomain.c (get_shadow_assembly_location): append the current
15139         ticks value to the path. Avoids overwriting the same assemblies by
15140         several threads at the same time.
15142 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15143         and Raja R Harinath  <rharinath@novell.com>
15145         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15146         Simplify slightly.
15147         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15148         property for testing if a method is a generic method definition.
15150 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15152         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15154 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15156         * verify.c: used function from private branch, reverted to the one in class.h 
15158 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15160         * verify.c: a typo slipped in and the code wont compile
15162 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15164         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15165         disabled box instruction as it is doing the wrong thing
15166         improved stack dump messages, now it is easier to debug type related issues
15169 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15171         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15173 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15175         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15176         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15177         grouped with class and valuetype. This change will simply 
15178         the code as it should be handled just like unmanaged pointers.
15180 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15182         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15184 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15186         * verify.c: several stack merge issues fixed, reference comparisons now
15187         check the type size. strict type check now works correctly.
15188         added more uses of IS_MANAGED_POINTER macro.
15189         fixed issues pointed by running the test suite against .net.
15190         
15192 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15194         * class.c, loader.c, class-internals.h: Removed the
15195         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15196         defines.
15198         * icall.c: Better error checking in some internal reflection
15199         methods.
15201 2007-07-18  William Holmes  <billholmes54@gmail.com>
15203         * filewatcher.c : removed unused variable 'filename' in 
15204           ves_icall_System_IO_FSW_SupportsFSW
15206 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15208         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15209         obsolete, removed.
15211 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15213         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15214         
15215         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15217 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15219         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15220         Implement generics support.
15221         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15223         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15224         type_args and method_args arguments.
15225         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15226         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15227         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15229 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15231         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15232           It adds a rootimage parameter to mono_reflection_get_type_internal,
15233           adds new function mono_reflection_get_type_with_rootimage and use
15234           the rootimage to resolve the types instead of the current image
15236 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15238         * culture-info-table.h: Forgot to update after r78304.
15240 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15242         * class.c (mono_class_is_open_constructed_type)
15243         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15245 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15247         * class.c (mono_bounded_array_class_get):  method fails if used with
15248         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15249         avoiding calculating the size for such array as it cannot be instantiated.
15250         Fix bug #82015
15252 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15254         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15255         field.
15256         * metadata.c, reflection.c: Update to changes.
15258 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15260         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15261         mono_class_is_valid_enum, they are used to valide a enum when loading.
15262         * reflection.c: used new functions to throw TypeLoadException when and
15263         invalid enum is build with TypeBuilder. Fixes #82018
15264   
15265 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15267         * object.c: forgot commit of mono_class_setup_methods () to access
15268         iface->methods.
15269         * object-internals.h: added a few more handy fields to
15270         MonoIMTCheckItem.
15272 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15274         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15275         iface->methods.
15277 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15279         * class-internals.h, object-internals.h, object.c: IMT-based
15280         interface invocation core from Massimiliano Mantione
15281         (massi@ximian.com) with a reworked arch-specific interface,
15282         bsearch implementation and a few bugfixes and memory savings by me.
15284 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15286         * class.c (mono_class_create_from_typedef): mono would segfault if 
15287         an enum did not have a __value field. It now throws a TypeLoadException
15288         for such cases. Fix bug #82022
15290 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15292         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15294 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15296         * class.c (mono_class_init): If a class is already inited but has
15297         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15299 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15301         * class.c: Properly handle the case of an unimplemented interface
15302         method.  Fixes: 81673.
15304 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15306         * class-internals.h, object.c: cleanup patch from massi: use
15307         MonoVTable->interface_bitmap since the vtable interfaces offset array
15308         is going away.
15310 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15312         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15313         GetMDStreamVersion icall instead.
15315 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15317         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15318         not use mono_dl_build_path() with a full library name: makes
15319         fallbacks to libgaim and libfam work.
15321 2007-07-06  William Holmes  <billholmes54@gmail.com>
15323         * assembly.c: Added a continue statement in probe_for_partial_name when
15324          parse_assembly_directory_name fails.  Fixes : 82002
15326 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15328         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15329         and added a verification  for TYPEDBYREF.
15330         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15331         make native int interchangeable with int32 and some small cleanup and formating.
15332         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15333         handle byref of byref.
15334         * verify.c (push_local): handle byref of byref.
15335         * verify.c (do_binop): invalid mix of values is unverifiable
15336         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15337         added visibility checks
15338         * verify.c (field related method): added visibility checks
15339         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15341 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15343         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15344         string.
15346 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15348         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15350         * marshal.c (emit_marshal_string): When returning a string from managed code,
15351         allways make a copy even for unicode strings. Fixes #81990.
15353 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15355         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15356         of byref generic inst types (bug #81997).
15358 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15360         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15361         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15363 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15365         * marshal.c (emit_marshal_string): Add support for unicode strings in
15366         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15368 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15370         * verify.c: field load/store are now verified, missing only access checks now
15372 2007-06-28  Martin Baulig  <martin@ximian.com>
15374         * mono-debug.c (mono_debug_debugger_version): New public variable.
15376 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15378         * locales.c: When constructing DateTimeFormat or NumberFormat for
15379         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15380         MonoCultureInfo contructed from the current locale is always
15381         read-only and has UseUserOverride set to true. All MonoCultureInfo
15382         instances returned for GetCultures have both IsReadOnly and
15383         UseUserOverride set to true. Fixes part of bug #81930.
15385 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15387        * icall-def.h: Update System.__ComObject icalls
15388        * marshal.c: Avoid managed transition (and object creation)
15389        when looking up COM interface in RCW.
15390        * marshal.h: Ditto.
15391        
15392        Code is contributed under MIT/X11 license.
15394 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15396         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15397         to avoid crashes during assembly unloading.
15399 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15401         Fix MethodInfo.IsGenericMethodDefinition
15402         * reflection.c (mono_reflection_bind_generic_method_parameters):
15403         Rearrange code to ensure we always uses a generic method definition.
15404         * class.c (mono_class_inflate_generic_method_full): Set
15405         'generic_container' field only for generic method definitions.
15406         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15407         Use presense of 'generic_container' field as indication of being a
15408         generic method definition.
15410 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15412         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15414         * object-internals.h: Reflect changes in the layout of the managed Delegate
15415         class.
15416         
15417         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15418         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15419         runtime memory used by the dynamic method. Fixes #77146.
15421 2007-06-21  Dick Porter  <dick@ximian.com>
15423         * file-io.h: 
15424         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15425         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15426         81767.
15428 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15430         * reflection.c (method_encode_methodspec): Add a tripwire.
15431         * class.c (inflate_generic_type): The fully open generic type is
15432         not the same as the generic type definition.
15434 2007-06-21  Martin Baulig  <martin@ximian.com>
15436         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15438         * mono-debug-debugger.h
15439         (MonoDebuggerBreakpointInfo): Removed.
15440         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15441         (mono_debugger_remove_breakpoint): Likewise.
15442         (mono_debugger_breakpoint_callback): Likewise.
15443         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15445 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15447         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15448         generic type is not the same as the generic type definition.
15449         * class.c (mono_generic_class_get_class): Likewise.
15451 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15453         * icall.c: The second argument to 
15454         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15455         is a MonoType not a MonoClass.
15457 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15459         * verify.c: support for function pointers in the verifier
15461 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15463         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15465 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15467         * assembly.c: removed Mono.Data.SqliteClient from the list of
15468         forward-compatible assemblies as it breaks the ABI (bug #81899).
15470 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15472         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15473         lookup/update with the loader lock.
15474         * reflection.c (mono_class_bind_generic_parameters): No need to
15475         protect mono_metadata_lookup_* with the loader lock.
15476         * class.c (inflate_generic_type): Likewise.
15477         
15478         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15479         on a generic instantiated type.
15481 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15483         *verify.c: produce meanfull error messages on verification error
15484         *verify.c: fixed some cases of verification errors reported as validation errors
15485         *pedump.c: fixed the error name array, now it shows validation errors properly
15486         *verify.h: fixed the contant that should be used for verification errors
15488 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15490         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15491         for bug #77596, 81858 and 80743 (generics data structures on domain
15492         unload).
15494 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15496         Avoid allocating 'MonoGenericContext' on the heap.
15497         * class-internals (_MonoMethodInflated::context): Make field
15498         inline, not a pointer.
15499         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15500         stack.  Use the context embedded within the inflated method as the
15501         hash key, rather than 'new_context'.
15502         * class.c (inflate_generic_context): Simplify.  Return a struct
15503         rather than allocating on the heap.
15504         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15505         doesn't salt away a copy of the context -- simplifying the
15506         lifetime rules of a 'MonoGenericContext *'.
15507         (mono_method_get_context): Return pointer to embedded context.
15508         (setup_generic_array_ifaces): Allocate temporary context on stack.
15509         * reflection.c (inflate_mono_method): Likewise.
15510         (mono_reflection_bind_generic_method_parameters): Likewise.
15511         Use the context embedded within the inflated method as the hash key.
15513         Avoid a source of allocation of 'MonoGenericContext'.
15514         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15515         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15516         * class.c: Update to changes.
15517         (mono_generic_class_get_context): Simplify drastically.  Now just
15518         returns a pointer to the field.
15519         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15520         argument as a const pointer.
15521         (mono_metadata_generic_context_equal): Likewise.
15522         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15523         Update to changes.
15525 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15527         * verify.c improved the handling of brtrue/brfalse, factored out common code
15529 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15531         Kill MonoGenericMethod.
15532         * class-internals.h (MonoGenericContext::method_inst): Rename from
15533         'gmethod' and convert to a MonoGenericInst.
15534         (MonoGenericMethod): Remove.
15535         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15536         * loader.c (method_from_methodspec): Update to changes.  Use a
15537         MonoGenericContext as the key to the hashtable.
15538         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15539         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15540         (mono_metadata_generic_context_hash): Likewise from
15541         'mono_metadata_generic_method_hash'.  Change hash function.
15542         (mono_metadata_load_generic_params): Update to changes.
15543         (mono_get_shared_generic_method): Remove.
15544         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15545         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15546         (inflate_generic_context): Likewise.
15547         (mono_class_inflate_generic_method_full): Likewise.
15548         (setup_generic_array_ifaces): Likewise.
15549         (mono_class_create_from_typespec): Likewise.
15550         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15551         (method_encode_methodspec): Update callsite.
15552         (reflection_methodbuilder_to_mono_method): Update to changes.
15553         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15554         MonoGenericContext as the key to the hashtable.
15555         (inflate_mono_method): Update to changes.
15557         * class-internals.h (MonoGenericMethod::container): Remove.
15558         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15560 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15562         * profiler-private.h, profiler.c, profiler.h: added API to profile
15563         exception events.
15565 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15567         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15569 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15571         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15572         Fixed overflow and underflow not aborting the verification process.
15574 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15576         * class-internals.h (MonoStats): Added stats entries for dynamic
15577         code allocations.
15579 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15581         * loader.c (mono_free_method): Free header->locals and header->clauses.
15583         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15584         dynamic case.
15586         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15588         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15590 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15592         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15593         the tables.
15595 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15597         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15599 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15601         MonoGenericMethod on a diet
15602         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15603         here ...
15604         (_MonoGenericMethod::reflection_info): ... from here.
15605         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15606         Update to changes.
15607         * reflection.c (inflate_mono_method): Likewise.
15608         (mono_reflection_bind_generic_method_parameters): Likewise.
15610 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15612         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15613         *verify.c: factored long ldarg forms to share code with short forms
15615 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15617         *verify.c: fixed code formating factored some duplicate code
15618         into a new function
15620         *verify.h: fixed binary incompatibility introduced earlier
15622         *pedump.c: fixed formating
15624 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15626         Fix assertion when disassembling Mono.C5.dll
15627         * loader.c (method_from_methodspec): Avoid inflating a method
15628         twice with the same context.  If the methodref is inflated, use
15629         the declaring method instead.
15631         * class.c (mono_class_from_generic_parameter): Fix case similar to
15632         bug #81830 handled below, but for method containers.
15634 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15636         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15637         get_shared_generic_class.  Directly inflate the instance.
15638         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15639         (inflate_generic_class): Delete.
15640         (get_shared_generic_class): Delete.  Move setting of
15641         'cached_class' and 'cached_context' ...
15642         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15644         * metadata.c (mono_metadata_lookup_generic_class): Change
15645         signature to take the components of a MonoGenericClass rather than
15646         an allocated MonoGenericClass.  Change semantics to be intern-like.
15647         * reflection.c (mono_class_bind_generic_parameters): Update to
15648         changes.  Make locking region tighter.
15649         * class.c (inflate_generic_class): Update to changes.
15650         (get_shared_generic_class): Likewise.
15651         * metadata-internals.h: Likewise.
15653         * reflection.c (mono_class_bind_generic_parameters): Take and
15654         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15655         (mono_reflection_bind_generic_parameters): Use
15656         'mono_class_bind_generic_parameters' rather than duplicate the code.
15657         * class.c (mono_bounded_array_class_get): Update to changes.
15658         * object-internals.h: Likewise.
15660         * reflection.c (mono_class_bind_generic_parameters): Only support
15661         parameterizing generic type definitions.  Remove support for other
15662         open types.
15664 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15666         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15668         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15669         in the dynamic case.
15671 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15673         * threads.c: When cleaning up thread, reset the Background bit.
15674         Fixes bug #81720.
15676 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15678        * metadata.c: Move variable declarations to top of scope.
15679        * verify.c: Move variable declarations to top of scope.
15681        Code is contributed under MIT/X11 license.
15683 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15685         * reflection.c (mono_class_bind_generic_parameters): Replace
15686         open-coded loop with mono_metadata_inflate_generic_inst.
15688         * class.c (get_shared_generic_class): Don't call
15689         mono_get_shared_generic_inst.  Use the container's own
15690         'class_inst'.
15692         * metadata.c (mono_metadata_load_generic_params): Move
15693         initialization of 'context' field here from ...
15694         * class.c (mono_class_create_from_typedef): ... here, and ...
15695         * loader.c (mono_get_method_from_token): ... here.
15697         * class.c (get_shared_generic_class): Rename from
15698         mono_get_shared_generic_class and make static.
15699         (mono_get_shared_generic_inst): Move to metadata.c.
15700         * loader.c (mono_get_shared_generic_method): Likewise.
15701         * class-internals.h, metadata-internals.h: Update to changes.
15703         Fix #81830
15704         * class.c (mono_class_from_generic_parameter): Don't assume a
15705         generic container owner exists.  Generic containers from monodis
15706         don't have any.
15708 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15710         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15711         * verify.h: new typedefs to returns the non-verifiable status
15712         * verify.c: initial implementation of generics, stack merging and object compatibility check
15714 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15716         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15717         a MonoInternalHashTable again (fixed bug in internal hash table
15718         code).
15720 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15722         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15723         MonoInternalHashTable again (fixed bug in internal hash table
15724         code).
15726 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15728         * class.c, image.c, class-internals.h, domain.c,
15729         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
15730         changes.  Have to figure out what makes them break the SWF
15731         regression.
15733 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15735         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15736         a MonoInternalHashTable now.
15738 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15740         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15741         MonoInternalHashTable now.
15743 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15745         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
15746         invoke_impl code.
15748         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
15750         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
15751         dependent trampoline.
15753         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15755         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
15757 2007-05-29  Robert Jordan  <robertj@gmx.net>
15759         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
15761 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
15763         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
15765 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
15767        * marshal.c: Fix interface lookup loops for
15768        cominterop_get_com_slot_for_method and 
15769        cominterop_get_method_interface. Only need to lookup
15770        if type is a class, else use interface type method is on.
15772        Code is contributed under MIT/X11 license.
15774 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
15776         * reflection.c: HasSecurity can be present even if no specially 
15777         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
15778         SecurityAttribute). Fix CAS regression tests on buildbot.
15780 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15782        * appdomain.c: Add configure checks for header files.
15783        * image.c: Add configure checks for header files.
15784        * file-io.c: Add configure checks for header files.
15785        * debug-mono-symfile.c: Add configure checks for header files.
15786        * threadpool.c: Add configure checks for header files.
15787        * console-io.c: Add configure checks for header files.
15788        * profiler.c: Add configure checks for header files.
15789        * rawbuffer.c: Add configure checks for header files.
15790        * icall.c: Add configure checks for header files.
15791        * rand.c: Add configure checks for header files.
15792        * socket-io.c: Add configure checks for header files.
15794        Code is contributed under MIT/X11 license.
15796 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
15798         * reflection.c (mono_custom_attrs_from_builders): Remove the 
15799         assertion as it breaks the build.
15800         
15801         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
15803         * reflection.c (lookup_custom_attr): Make a copy here too.
15805         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
15806         dynamic images.
15808         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
15809         images.
15811         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
15812         info.
15814 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15816         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
15817         (load_cattr_value): Ditto.
15819 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
15821         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
15823 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
15825         * threads.c: In "start_wrapper", set apartment_state to MTA if
15826         apartment_state is Unknown and we're running on 2.0 profile or
15827         higher.
15828         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
15829         to main method, then set apartment_state to Unknown on 1.0 profile,
15830         and MTA on 2.0 profile.
15832 2007-05-16  Jb Evain  <jb@nurv.fr>
15834         * class-internals.h (MonoDefaults): Add an attribute_class and
15835           customattribute_data_class.
15836         * domain.c (mono_init_internal): Populate them.
15837         * reflection.c: Use them to remove duplicates. Make a vew
15838         MonoClass variables `static'.
15840 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15842         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
15843         step in implementing IMT, so that all isinst checks now can go
15844         through the bitmap.
15845         This was needed because vtables for TransparentProxy need to look
15846         like the vtable of the "target" class, so they need to point to
15847         its interface bitmap directly.
15849         * object.c: inside "mono_class_create_runtime_vtable" and
15850         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
15852 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15854         * object-internals.h
15855           culture-info.h : added territory field in MonoCulture and
15856           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
15857         * locales.c : fill territory field above too.
15858         * culture-info-table.h : regenerated.
15860 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15862         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
15863         Fixes #81599.
15865 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15867         * object.c: Always initialize apartment, even if 
15868         there is no custom attributes on entry point.
15869         
15870         Code is contributed under MIT/X11 license.
15872 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15874         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
15875         * metadata.c: If no encoding is set, check for unicode
15876         on class.
15877         
15878         Code is contributed under MIT/X11 license.
15880 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15882         * threads.c: Handle if mono_thread_current returns NULL 
15883         
15884         Code is contributed under MIT/X11 license.
15886 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15888         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
15889         in start_wrapper. Added mono_thread_init_apartment_state and
15890         mono_thread_cleanup_apartment_state.
15891         * object.c: Initialize thread apartment state on main thread
15892         by checking for STAThreadAttribute on entry point.
15893         * object-internals.h: Add apartment_state field to MonoThread.
15894         * threads-types.h: Add unmanaged definition of 
15895         System.Threading.ApartmentState, MonoThreadApartmentState.
15896         
15897         Code is contributed under MIT/X11 license.
15898         
15899 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
15901         * class.c: Fix windows build.
15902         * class-internals.h: Fix windows build.
15903         
15904         Code is contributed under MIT/X11 license.
15906 2007-05-08  Robert Jordan  <robertj@gmx.net>
15908         * process.c (CreateProcess_internal):
15909         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
15910         .CreateNoWindow was specified. Fixes #81496.
15912 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15914         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
15915         step in implementing IMT, replaced it with two compact arrays
15916         (interfaces_packed and interface_offsets_packed) and a bitmap that
15917         is used for isinst checks (interface_bitmap).
15919         * class.c: (compare_interface_ids): compare function to pass to
15920         bsearch when looking for an interface with a given id.
15921         (mono_class_interface_offset): reimplemented using bsearch on
15922         interfaces_packed, getting the offset from interface_offsets_packed.
15923         (print_implemented_interfaces): utility debugging function.
15924         (setup_interface_offsets): reworked to initialize interfaces_packed,
15925         interface_offsets_packed and interface_bitmap.
15927         * object.c: replaced all accesses to "MonoClass.interface_offsets"
15928         with uses of interfaces_packed and interface_offsets_packed.
15930 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15932         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
15933         mono_class_interface_offset prototype to wrap all accesses to
15934         "MonoClass.interface_offsets".
15936         * class.c: Implemented mono_class_interface_offset, and wrapped all
15937         accesses to "MonoClass.interface_offsets".
15939         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
15940         "MonoClass.interface_offsets".
15942 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15944         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
15945         GetMethodFromHandle overloads (bug #78637).
15947 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15949         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
15950         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
15952 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
15954         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
15955         #81498.
15957         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
15958         gracefully.
15959         (mono_custom_attrs_from_index): Ditto.
15961         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
15962         Fixes #81501.
15964 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
15966         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
15967         is now allocated from a mempool.
15969 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
15971         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
15972         caller holds threads_lock, leading to deadlocks. Fixes #81476.
15974 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
15976         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
15977         mono_loader_clear_error () too late. Fixes #81463.
15979 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
15981         * culture-info-table.h : regenerated.
15983 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
15985         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
15986         is missing.
15988 2007-04-25  Dick Porter  <dick@ximian.com>
15990         * Makefile.am: Put the mingw enforced-optimisation back into the
15991         PLATFORM_WIN32 section.
15993 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
15995         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
15996         patch.
15998         * image.c (mono_image_load_module): New API function to load a module reference.
16000         * image.c (load_modules): Load modules lazily. Fixes #80812.
16002         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16003         
16004         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16006         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16007         to mono_image_load_module_dynamic.
16009 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16011         * marshal.c: Fix calling convention for CCW on non-windows
16012         platforms. STDCALL on windows, CDECL everywhere else to work 
16013         with XPCOM and MainWin COM.
16014         
16015         Code is contributed under MIT/X11 license.
16017 2007-04-23  Martin Baulig  <martin@ximian.com>
16019         Fix #80969.
16021         * loader.c
16022         (method_from_memberref): Added `gboolean *used_context' argument.
16023         (mono_get_method_from_token): Likewise.
16024         (mono_get_method_full): Don't insert the method in the cache when
16025         `used_context' is true.
16027 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16029         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16031         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16032         create new MonoTypes for returned types.
16033         * class.c (mono_generic_class_get_class): Export mono-internal.
16034         * class-internals.h: Update to changes.
16036 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16038         * threadpool.c, threadpool.h, icall-def.h: patch from
16039         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16041 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16043         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16044         
16045         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16047         * threads.c (mono_thread_get_stack_bounds): New helper function.
16049         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16050         Correctly compute stack bounds when attaching. Fixes #81394.
16052 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16054         * reflection.c: fix handling of doubles in custom attributes
16055         for the arm-fpa format (bug #81368).
16057 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16059         * reflection.c (assembly_add_win32_resources): Mildly relax an
16060         bounds check to let the end pointer point just past the end of the
16061         allocated buffer.  (may fix #81384)
16063 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16065         * culture-info-table.h : regenerated.
16067 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16069         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16070         the thread is aborted early.
16072 2007-04-05  Dick Porter  <dick@ximian.com>
16074         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16075         FindFirstFile()/FindNextFile() to find entries.  This lets the
16076         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16077         81038.
16079         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16080         the parameters of
16081         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16083 2007-04-04  Martin Baulig  <martin@ximian.com>
16085         * debug-helpers.c
16086         (mono_method_desc_full_match): Add support for nested classes.
16088 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16090         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16092 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16094         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16095         waiting for too many threads.
16097 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16099         * environment.c: Fix return value check on uname so we can get the 
16100         executing version on Solaris operating systems.
16102 2007-03-28  Jb Evain  <jbevain@gmail.com>
16104         * class.c (mono_type_get_name_recurse): Complete the
16105         fix for the creation of assembly qualified names for
16106         pointer types. Fixes #81208.
16108 2007-03-27  Dick Porter  <dick@ximian.com>
16110         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16111         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16112         changed.
16114         * threads.c
16115         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16116         the value of ReleaseMutex().
16118 2007-03-27  Dick Porter  <dick@ximian.com>
16120         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16121         in little-endian order, not network endian, so must be converted
16122         to host endian here.  Fixes bug 80593.
16124 2007-03-22  Jb Evain  <jbevain@gmail.com>
16126         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16127         qualified names for pointer types. Fixes #81208.
16129 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16131         * marshal.c: Add support for PreserveSigAttribute. 
16132         
16133         Code is contributed under MIT/X11 license.
16135 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16137         * process.c: Fix endianness issues. Fixes #81126.
16139         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16140         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16142         * image.c (mono_image_lookup_resource): Make this work on big-endian
16143         machines.Change API contract so the caller needs to free the return value.
16144         
16145         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16146         API change.
16147         
16148 2007-03-14  Martin Baulig  <martin@ximian.com>
16150         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16151         mono_type_get_desc() as well.
16153 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16155         * icall.c:  Fix environ access in VS.  
16156         
16157 2007-03-13  Alp Toker  <alp@atoker.com>
16159         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16160         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16161         #63841.
16163 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16165         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16166         circular references among dynamic methods. Fixes #81091.
16168         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16170 2007-03-09  Martin Baulig  <martin@ximian.com>
16172         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16174 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16176         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16177         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16178         
16179         Code is contributed under MIT/X11 license.
16180         
16181 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16183         * loader.c: Reapply patch for bug #79424.
16185 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16187         * metadata.c (mono_type_to_unmanaged): Only convert object to
16188         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16190 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16192         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16193         (and incorrectly set) is_reference field from MonoGenericInst.
16195 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16197         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16198         a little earlier.
16200         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16202         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16204 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16206         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16207         FileOptions.1 value to mean "temporary", map that to
16208         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16210         Fixes 80688
16212 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16214         * appdomain.c: implement MS .Net style shadow copying. Copies of
16215         the assemblies are made in a subdirectory of the dynamic base
16216         directory, the assembly names are preserved.
16217         Copy .mdb and .config files along with the assemblies being shadowed.
16219 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16221         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16222         (emit_marshal_handleref): Ditto.
16224         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16225         on Visual C++. Fixes #80671.
16227 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16229         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16230         for clone operations.
16232 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16234         * marshal.c: Fix warnings.
16236 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16238         * loader.c: allow case-insensitive matching of the dll name
16239         in dllmap handling when prefixed with "i:".
16241 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16243         * threads.c: Fix #ifdef for dummy_apc function for VS.
16245 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16247         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16249 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16250         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16251         giving precedence to the methods with a fully qualified name
16252         (InterfaceName.MethodName) when building the interface sections
16253         of the vtable.
16255 2007-02-16  Dick Porter  <dick@ximian.com>
16257         * threadpool.c (append_job): Fix fast-path array handling, so it's
16258         less likely the array will grow exponentially when the load is
16259         heavy.
16261 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16263         * metadata-internals.h, loader.c: fix dllmap lookup order
16264         for non-function maps, too, and prepare for fallback code.
16266 2007-02-12  Robert Jordan  <robertj@gmx.net>
16268         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16269         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16270         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16271         GlobalFree. Fixes a part of bug #77075.
16273 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16275         * loader.c: implemented typedef parent in field memberref.
16277 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16279         * marshal.c: Fix warnings and remember to call Release on
16280         IUnknown of RCW.
16281         
16282         Code is contributed under MIT/X11 license.
16284 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16286         * class-internals.h: Add MonoHandleRef definition, and
16287         handleref_class to mono_defaults. 
16289         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16290         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16292         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16293         (do nothing on this stage)
16294         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16295         (emit_marshal_handleref): New method, used for argument handling
16296         of HandleRefs. 
16298 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16300         * class.c (mono_class_setup_parent): Lazily init com types.
16301         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16302         init com types.
16303         * object.c (mono_remote_class_vtable): Lazily init com types.
16304         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16305         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16306         * domain-internals.h: Expose mono_init_com_types.
16307         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16308         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16309         Add support for COM Callable Wrapper marshalling.
16310         * marshal.h: Add icall definitions.
16311         * gc.c: Handle freeing of CCWs in finalizer code.
16312         
16313         Code is contributed under MIT/X11 license.
16315 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16317         * reflection.c: changed all the signature encoding code to use
16318         a variable-sized buffer.
16320 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16322         * marshal.c: locking fixes: never take the loader lock
16323         or other runtime locks when holding the marshal lock
16324         (fixes bug#80664).
16326 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16328         * marshal.c: make the delegate function pointer mapping
16329         work for the moving GC.
16331 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16333         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16334         for bug #80618.
16336 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16338         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16339         gmodule.
16341 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16343         * threadpool.c: made the code moving-GC safe.
16345 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16347         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16348         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16349         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16350         warning cleanup.
16351         * reflection.c: warning cleanup, some threading and moving GC fixes.
16353 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16355         * class.c, loader.c: create the needed Set/Get/Address array methods
16356         as well as the .ctors in mono_class_init (), fixes bug #80567.
16358 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16360         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16361         we doesn't decrease its alignment. Should fix the sparc build.
16363 2007-01-24  Dick Porter  <dick@ximian.com>
16365         * socket-io.c
16366         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16367         Create the returned object if we need to ignore an unsupported
16368         socket option.  Fixes a segfault reported by Atsushi.
16370 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16372         * class.c, object.c: restrict GC-tracked fields to
16373         UIntPtr fields used inside corlib, so we provide better
16374         type info to the GC and also allow broken packing as in
16375         bug #80580.
16377 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16379         * sgen-gc.c: removed duplicated function.
16381 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16383         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16384         value that means that the value is not supported, but that we
16385         should not return a failure, but instead report this as a
16386         successful operation.
16388 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16390         Fix tests/bug79956.2.il
16391         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16392         (mono_generic_class_get_class): If the generic definition in an
16393         enum, copy over other fields related to it.
16395 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16397         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16398         genericinst enums (bug #79215).
16400 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16401         * class.c: Fix bug 80307.
16403 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16405         * image.c: if the file table is not present, try to load
16406         all the modules, since we don't have info about them
16407         having or not metadata (bug #80517).
16408         * assembly.c: allow mono_assembly_load_references () to
16409         work for netmodules.
16411 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16413         * image.c, metadata-internals.h, object.c: execute module
16414         cctors when running on the 2 runtime if present (bug #80487).
16416 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16418         * icall.c: optimized InitializeArray() on bigendian.
16420 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16422         * icall.c: fix for the broken ARM FPA double format.
16424 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16426         * icall.c: handle endian issues for r4 and r8 types, too, in
16427         the InitializeArray() icall.
16429 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16431         * loader.c (mono_loader_error_prepare_exception): Clear the error
16432         once we have extracted the information from it, do this before we
16433         call into the JIT's class loading mechanisms.
16435         * object.c (mono_class_create_runtime_vtable): Do not clear the
16436         loader error before calling mono_class_get_exception_for_failure
16437         as the loader error is needed inside
16438         mono_class_get_exception_for_failure to throw the error (thinko).
16440         Fixes #80521
16441         
16442 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16444         * reflection.c: align fields rva data so it's faster to load at
16445         runtime.
16447 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16449         Prepare to simplify GenericMethod handling.
16450         * class-internals.h (mono_method_get_context): New accessor function.
16451         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16452         rather than directly accessing '->context' field.
16454         * class-internals.h (_MonoGenericParam.method): Move ...
16455         (_MonoGenericContainer): ... here.  Add into union with klass field.
16456         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16457         Update to changes.
16459 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16461         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16462         the wrapper type enum and reduce relocations.
16464 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16466         * reflection.c (inflate_mono_method): Reuse method instantiation
16467         from the generic method, if available.
16469 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16471         * marshal.c (emit_marshal_variant): Fix conv_arg
16472         type in last commit, based on whether parameter is byref.
16473         
16474 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16476         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16477         marshalling.
16478         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16479         MONO_TYPE_OBJECT back for VARIANT support.
16481 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16483         * marshal.c, marshal.h, icall-def.h: Implement 
16484         Marshal.ReAllocCoTaskMem.
16486 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16488         * marshal.c: memory retention fixes: use the proper
16489         image cache for runtime_invoke method lookups.
16491 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16493         * mempool.c: added code to help debug mempool allocations.
16495 2007-01-11  Dick Porter  <dick@ximian.com>
16497         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16498         support (experimenting with faking it with IP_MTU_DISCOVER for
16499         systems that don't have IP_DONTFRAGMENT.)
16500         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16501         icall.
16503         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16505         * socket-io.h: Add new fields to MonoSocketAsyncResult
16506         corresponding to the new ones in Socket.cs.
16508 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16510         Fix IronPython regression mentioned in #80249
16511         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16512         'cached_context' field, since it may have been initialized as a
16513         side-effect of metadata parsing.
16515         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16516         (_MonoGenericClass.cached_class): Move here and rename from lone
16517         remaining field of ...
16518         (_MonoInflatedGenericClass): ... this.  Remove.
16519         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16520         to changes.
16522         Fix mcs/tests/test-128.cs regression.
16523         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16524         2007-01-10 change below.
16525         [MONO_TYPE_OBJECT]: Recurse into array case.
16527 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16529         * class-internals.h (mono_get_inflated_generic_class): Remove.
16530         * class.c (mono_get_inflated_generic_class): Remove.
16531         (mono_generic_class_get_class): Rename from
16532         mono_class_create_generic.
16533         (mono_class_from_mono_type) [GENERICINST]: Use it.
16534         * reflection.c, metadata.c: Update to changes.  Use
16535         'mono_class_from_mono_type'.
16537 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16539         * reflection.c: use passed type when encoding an array element
16540         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16542 2007-01-09  Robert Jordan  <robertj@gmx.net>
16544         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16545         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16546         Fixes bug #80392.
16548 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16550         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16552         * object.c (set_value): Avoid aliasing between type->data.klass
16553         and type->data.generic_class.
16555         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16557 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16559         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16560         between type->data.klass and type->data.generic_class.
16562 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16564         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16565         value in out parameters.
16567 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16569         Simplify invariant for MonoGenericClass::klass field.
16570         * class.c (mono_class_create_generic): Verify 'klass' is null.
16571         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16572         initialize 'klass' field.
16574 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16576         Ongoing work to avoid redundant data and simplify invariants.
16577         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16578         'generic_class', and change type to a GenericInst.
16579         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16580         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16582 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16584         * class.c : skip io-layer under PLATFORM_WIN32.
16586 2007-01-03  Tor Lillqvist  <tml@novell.com>
16588         Fix #80305: In a bundled executable, look in the bundled exe
16589         assembly to determine the runtime version. Add the possibility to
16590         bundle also the machine.config file.
16591         
16592         * assembly.c (mono_assembly_open_from_bundle): Make
16593         non-static. Allow being called even if we have no bundled
16594         assemblies, and return NULL right away in that case.
16596         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16597         here.
16599         * domain.c (app_config_parse): Take an assembly exe file name as
16600         parameter instead of a config file name. Check for a bundled
16601         config file for that assembly by calling
16602         mono_config_string_for_assembly_file() (see below) before looking
16603         for one in the file system.
16604         (get_runtimes_from_exe): Corrsponding change to call of
16605         app_config_parse().
16606         (get_runtimes_from_exe): Check for bundled assembly exe file first
16607         by calling mono_assembly_open_from_bundle(). If no bundled
16608         assembly exe file is found, call mono_image_open() as before to
16609         look it up in the file system.
16611         * mono-config.c: Add variable bundled_machinec_onfig.
16612         (mono_config_string_for_assembly_file): New function.
16613         (mono_config_for_assembly): Move code snippet that looks for a
16614         bundled assembly .config file into the above new function. Call
16615         it.
16616         (mono_register_machine_config, mono_get_machine_config): New
16617         functions to set and retrieve
16619         * assembly.h: Declare mono_register_machine_config().
16621         * mono-config.h: Declare mono_get_machine_config() and
16622         mono_config_string_for_assembly_file().
16624         * icall.c: No declaration of environ necessary on Win32. It is
16625         declared (as a macro expanding to a function call) in stdlib.h.
16626         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16627         New internal mono function. Returns the value of
16628         mono_get_machine_config() as a Mono string.
16630         * icall-def.h: Add get_bundled_machine_config().
16632 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16634         Remove redundant field
16635         * class-internals.h (_MonoGenericContext.container): Remove field.
16636         * loader.c (mono_method_get_signature_full): Don't parse a
16637         "container" for a signature parse when the signature is inflated
16638         immediately.
16639         (method_from_methodspec): Likewise, for a generic_inst.
16640         * class.c, metadata.c, reflection.c: Update to changes.
16642 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16644         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16645         'cached_context', and change semantics -- it starts off NULL, and
16646         is initialized on demand.
16647         * class.c (mono_generic_class_get_context): New accessor to
16648         replace 'context' field accesses.
16649         (mono_class_get_context): New helper.
16650         (*): Update to changes.
16651         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16653 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16655         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16656         before the memcpy.   Fixes Marshal2 regression.
16658 2007-01-02  Jb Evain  <jbevain@gmail.com>
16660         * blob.h: add a MONO_TYPE_ENUM definition
16661         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16662         fix the encoding of arrays of enums in custom attributes.
16664         Fixes #79666.
16666 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16668         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16669         string is null terminated, but only cut the string short if it
16670         overflows the buffer.   
16671         
16672         (mono_string_to_byvalstr): Also fix this routine.   The code here
16673         was not properly terminating a string (it was only terminated
16674         because of the previous catch-all memset). 
16676         I left the memset, because I do not know if applications expect
16677         the runtime to clear this region. 
16679         Fixes #79944.
16681         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16682         Clear the error before returning to unmanaged code to prevent the
16683         runtime from being confused later on (fixes  80420).
16684         (ves_icall_type_from_name): Always call mono_loader_clear_error
16685         after parsing a type that could have failed.
16686         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16688         * loader.c (mono_loader_clear_error): Fix indentation.
16690 2006-12-28  Martin Baulig  <martin@ximian.com>
16692         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16694 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16696         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16697         getting a token for an EnumBuilder.
16699 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16701         * reflection.c: be more careful in case resource generation
16702         fails to create the data array.
16704 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16706         * sgen-gc.c: write barrier for clone and fix unregister handles.
16708 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16710         * reflection.c: some fixes needed in the generics code for the moving GC.
16712 2006-12-22  Robert Jordan  <robertj@gmx.net>
16714         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
16715         account. Fixes bug #80299.
16717 2006-12-21  Raja R Harinath  <rharinath@novell.com>
16719         Fix WaitHandle usage in delegates.
16720         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
16721         * object.c (mono_wait_handle_new): Use the property set method to
16722         initialize the handle.
16723         (mono_wait_handle_get_handle): New.
16724         * threadpool.c (mono_async_invoke): Use it.
16725         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
16726         Likewise.
16727         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
16729 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
16731         * marshal.c (emit_marshal): Call emit_marshal_variant and
16732         emit_marshal_com_interface when applicable.
16733         (emit_marshal_variant, emit_marshal_com_interface): Add
16734         methods for this case and remove if's from emit_marshal_object.
16735         
16736 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
16738         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
16740 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
16742         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
16743         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
16744         and GlobalFree on Windows. Remove FIXME.
16746 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16748         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
16749         implementation for managed objects.
16751 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16753         * object.c: implemented code to be used for checking
16754         that no reference field overlaps with non-references.
16756 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16758         * threadpool.c: fix queue code to be compatible with the
16759         moving GC.
16761 2006-12-18  Miguel de Icaza  <miguel@novell.com>
16763         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
16764         in structures by throwing ArgumentNullException.
16766         (emit_marshal_safehandle): Also when they are null parameters.
16768         (emit_marshal_safehandle): Add support for ref
16769         SafeHandles parameters
16771 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16773         * profiler.c: updated to use the mono-dl API instead of
16774         gmodule.
16776 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16778         * profiler.c: updated to use the mono-dl dynamic loading
16779         API instead of gmodule.
16781 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16783         * profiler.c: use readlink, older versions of glib don't have
16784         g_file_read_link ().
16786 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16788         * profiler.c: try to detect the path to mono if libc fails to provide
16789         a useful name (bug #80286).
16791 2006-12-16  Raja R Harinath  <rharinath@novell.com>
16793         Fix #80242
16794         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
16795         instance, use the generic type definition instead.
16796         (ves_icall_Type_GetNestedTypes): Likewise.
16797         * class.c (mono_class_create_generic): Always set the
16798         nested_classes of a generic instance to NULL, even if the generic
16799         type definition has nested types.
16801 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
16803         * marshal.c (mono_string_from_bstr): Revert previous Windows change
16804         and fix on Linux.
16805         
16806 2006-12-15  Miguel de Icaza  <miguel@novell.com>
16808         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
16809         my arguments were in the wrong order.   I also fixed the Windows
16810         version which seems to have had the same issue.
16812         (mono_free_bstr): On Unix, this is g_free.
16813         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
16814         conversions (for the tests in corlib to pass).
16816 2006-12-14  Miguel de Icaza  <miguel@novell.com>
16818         * marshal.c (emit_ptr_to_object_conv): For now, ignore
16819         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
16820         exception if a ref SafeHandle in a struct has changed).
16821         
16822         (emit_struct_conv): Do not perform layout checks for classes
16823         derived from SafeHandle, as those are specially handled. 
16825         (emit_object_to_ptr_conv): Add support for
16826         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
16828         (emit_marshal_safehandle): Implement conversion of return values
16829         of safehandles (MARSHAL_ACTION_CONV_RESULT).
16830         
16831         * threads.c: WaitHandle now is compiled with two different handles
16832         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
16833         for 2.0.
16834         
16835         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
16836         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
16837         these routines to cope with both kinds of fields.
16839 2006-12-12  Miguel de Icaza  <miguel@novell.com>
16841         * metadata.c (mono_type_to_unmanaged): Handle the case where
16842         type->data.klass is a SafeHandle, and in that case, return the
16843         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
16844         MONO_MARSHAL_CONV_SAFEHANDLE. 
16846 2006-12-11  Miguel de Icaza  <miguel@novell.com>
16848         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
16849         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
16850         calling emit_marshal_object.
16852         (emit_marshal_safehandle): Implement marshalling of
16853         SafeHandle parameters (no ref support yet).
16855         (MarshalAction): Document the defines as I implement
16856         them for SafeHandle.
16858         (emit_marshal_object): indentation police.
16860         * class-internals.h: Define MonoSafeHandle.
16861         Add safehandle_class to MonoDefaults type.
16863         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
16864         list of classes to check for fields. 
16866         * domain.c (mono_init_internal): Add SafeHandle to the list of
16867         mono_defaults loaded.
16869 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16871         Fix #80253
16872         * reflection.c (mono_reflection_bind_generic_parameters): If the
16873         generic type definition is a type builder, ensure that it is fully
16874         initialized before instantiating it.  Kill some dead code.
16876 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16878         * object.c: clear the loader_error () before loading
16879         more metadata stuff (bug #80258).
16881 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
16883         * icall.c, icall-defs.h: type modifiers icalls for
16884         parameters and properties.
16886 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16888         * object.c, icall.c: fixed warnings.
16890 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16892         * marshal.c: fixed a couple of leaks and coding style in a few places.
16894 2006-12-08  Dick Porter  <dick@ximian.com>
16896         * process.c: Cope with NULL ProcessStartInfo arguments on windows
16897         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
16898         80173.
16900 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16902         * process.c: ProcessStartInfo may have only filename set and
16903         arguments can be NULL.
16905 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16907         * icall.c: fix leak found by Robert Jordan.
16909 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16911         * marshal.c, marshal.h: generate managed method to access an element
16912         of a multi-dimensional array.
16914 2006-11-30  Paolo Molaro (lupus@ximian.com)
16916         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
16918 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16920         * icall.c: back out GetFields () fix until the serialization code is
16921         fixed to not depend on the incorrect behaviour.
16923 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
16925         * profiler.c: provide defaults if none are set.
16927 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16929         * Makefile.am, attrdefs.h: new public header file with
16930         constants for attributes for use by embedders.
16932 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
16934         * icall.c: GetFields () fix for bug #80064.
16936 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
16938         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
16939         removed long unused icalls.
16941 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
16942   
16943         * marshal.c: 
16944                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
16945                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
16946                 can be generated without a delegate class.
16947                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
16948         
16949         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16951 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16953         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
16954         #80069.
16956 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16958         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
16959         icall-def.h: added icalls needed by System.GC.
16961 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
16963         * loader.c: ensure the class in catch clauses is handled
16964         correctly for generics methods (fixes bug#79980).
16966 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16968         * monitor.h, monitor.c: added mono_locks_dump () function
16969         to help debug deadlocks involving managed locks.
16971 2006-11-13  Dick Porter  <dick@ximian.com>
16973         * file-io.c (get_file_attributes): If the file is a symlink try
16974         and get the stat data for the target, but also add the
16975         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
16976         the specs for the windows symlink support, but will probably have
16977         to be reworked when I have test data from a vista machine.  Fixes
16978         bug 79887.
16980 2006-11-13  Dick Porter  <dick@ximian.com>
16982         * gc.c (mono_domain_finalize): 
16983         * marshal.c (mono_delegate_begin_invoke): 
16984         * threadpool.c (socket_io_init, mono_thread_pool_init)
16985         (mono_thread_pool_finish): 
16986         * monitor.c (mono_monitor_try_enter_internal): 
16987         * threads.c (mono_thread_resume, mono_thread_init)
16988         (mono_thread_suspend_all_other_threads)
16989         (mono_thread_execute_interruption): 
16990         * appdomain.c (mono_domain_unload): Check for NULL error returns
16991         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
16992         75733.
16994 2006-11-11  Miguel de Icaza  <miguel@novell.com>
16996         * process.c
16997         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
16998         Only close the handle if the value of the handle is not
16999         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17000         robust.
17002         Improvement for #75733, so that we do not run into this problem. 
17004         
17005         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17006         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17007         internal variables.  Fixes #79462 
17008         
17010 2006-11-09  Dick Porter  <dick@ximian.com>
17012         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17013         Use poll() not select().  Fixes bug 79397.
17015 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17017         Fix #79872
17018         * assembly.c (mono_assembly_load_from_full): Check that the given
17019         image has an assembly manifest.
17021 2006-11-09  Ankit Jain  <jankit@novell.com>
17023         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17024         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17025         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17027 2006-11-07  Dick Porter  <dick@ximian.com>
17029         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17030         Put the old resolver behaviour back for pre-2.0 profiles.
17032 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17034         * threadpool.c: precise GC and locking fixes.
17036 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17038         * class.c: don't load types that have an explicit unaligned
17039         managed reference. Provide better info in the TypeLoad exception.
17040         Part of the fix for bug #79744.
17041         * object.c: use the correct check for class type load issues.
17043 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17045         * class.c: enforce alignment of fields with managed references
17046         even when Pack=1 is forced by the user (bug #77788).
17048 2006-11-03  Dick Porter  <dick@ximian.com>
17050         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17051         If the address reverse lookup fails, return it as the hostname
17052         anyway.  Fixes bug 79721.
17054 2006-11-03  Dick Porter  <dick@ximian.com>
17056         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17057         Fix build on Windows.
17059 2006-11-02  Dick Porter  <dick@ximian.com>
17061         * icall-def.h: 
17062         * object-internals.h: 
17063         * exception.c (mono_get_exception_thread_interrupted): 
17064         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17065         Fixes bug 74525.
17067         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17068         Check for pending Thread.Interrupt.
17070 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17071         * loader.c: Fixed bug 79684.
17073 2006-10-27  Dick Porter  <dick@ximian.com>
17075         * file-io.c (get_file_attributes): Force symlinks to directories
17076         to be returned as a regular file.  Fixes bug 79733.
17077 2006-10-26  Dick Porter  <dick@ximian.com>
17079         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17080         CreateFile to open a directory then we need to set the
17081         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17083 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17085         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17086         friends.
17088 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17090         * sgengc.c: small cleanup of timer code.
17092 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17094         * sgen-gc.c: fix some warnings and start adding support for
17095         complete object removal on domain unload.
17097 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17099         * assembly.c: build_assembly_name should not consider a version
17100         number without build or revision number invalid. Fixes bug #79715.
17102 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17104         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17105         call kernel32 function OutputDebugString directly.
17106         
17107         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17108         
17109 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17111         * reflection.c: small cleanup, using a function to insert a MonoString
17112         in the string heap.
17114 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17116         * reflection.c: moving GC fixes.
17118 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17120         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17121         all the objects with finalizers belonging to an unloading appdomain.
17123 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17125         * sgen-gc.c: added ability to allocate even when the nursery is fully
17126         pinned and fixed a couple of bugs.
17128 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17130         * threads.h: Revert the last change for now.
17132         * threads.h (mono_thread_get_pending_exception): Rename this to
17133         mono_thread_get_undeniable_exception ().
17135 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17137         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17138         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17139         when fname does not refer to valid assembly. This result in a more
17140         meaningful error message.
17141         * exception.c: added mono_get_exception_bad_image_format2 which 
17142         constructs a BadImageFormatException using the ctor taking a custom
17143         message and the file name. Passing in a NULL msg results in a default
17144         message.
17145         * exception.h: define mono_get_exception_bad_image_format2 function.
17146         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17147         when file name pointed to an invalid IL image. Use 
17148         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17149         as this results in a more meaningful error message.
17151 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17153         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17154         #79465.
17156 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17158         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17159         consistency with the other _size functions.
17160         (mono_type_stack_size): Ditto.
17162         * class.c object.c icall.c: Fix warnings caused by the above change.
17164         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17166         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17168         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17170 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17172         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17173         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17174         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17175         threadpool.h, threads-types.h: mark more internal functions.
17177 2006-10-11  Dick Porter  <dick@ximian.com>
17179         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17180         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17181         reproduce the bug even before applying the fix.)
17183 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17185         * reflection.c: allow retrieving attributes for arguments in generic
17186         methods (bug #79241).
17188 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17190         * debug-mono-symfile.c: properly check fopen () result (found by
17191         coverity).
17193 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17195         * reflection.c: make error message clearer and fixed two
17196         issuelets found by Coverity.
17198 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17200         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17202 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17204         * object-internals.h, gc-internal.h, profiler-private.h:
17205         mark internal functions.
17207 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17209         * reflection.c: put data in the text section.
17210         * icall.c: recognize more types in type_from_typename ().
17211         * process.c, marshal.c: added some GC FIXMEs.
17213 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17215         * loader.c: check for NULL before initializing.
17217 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17219         * gc.c (finalizer_thread): Use a non-alertable wait here.
17221         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17222         until the correct solution is found.
17224 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17226         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17227         modules with no metadata. Fixes #79596.
17229         * image.c (load_metadata_ptrs): Put back the error message when
17230         the #- heap is encountered since the support is not complete yet.
17232 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17234         * gc.c: do not allow the user to SuppressFinalize () a
17235         delegate because it would leak the trampoline if present.
17237 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17239         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17240         PropertyPtr table.
17242 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17244         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17246         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17248         * row-indexes.h: Add definitions for *Ptr tables.
17250         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17252         * metadata.c (mono_metadata_translate_token_index): New helper function to
17253         translate table indexes used in uncompressed metadata.
17254         (mono_metadata_decode_table_row): Ditto.
17255         (mono_metadata_decode_table_row_col): Ditto.
17257         * metadata.c: Add table schema for *Ptr tables.
17259         * class.c loader.c: Use the new helper function to access the affected metadata
17260         tables.
17261         
17262         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17263         #38532.
17264         
17265 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17267         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17268         sequences which can be unbounded in size. Fixes #79583.
17270 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17272         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17273         static initialization.
17275         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17277         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17279         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17281         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17282         ctor fails, i.e. throw the same exception on subsequent accesses.
17283         
17284 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17286         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17287         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17288         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17289         Handle marshalling of interfaces and VARIANTs contained in structs.
17290         
17291         Code is contributed under MIT/X11 license.
17292         
17293 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17295         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17296         
17297         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17298         mempool.
17300 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17302         * console-io.c: ignore previous SIGINT handler.
17304 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17306         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17307         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17308         #79460, #79461, #79485.
17310         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17312         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17313         #79217.
17315 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17317         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17318         could be generated from it.
17320 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17322         * rand.c: fix read loop to correctly handle EINTR.
17324 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17326         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17327         internal calls are defined to keep methods closer to the declaring
17328         type and allow a significant reduction in runtime relocations and
17329         memory usage.
17331 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17333         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17334         exception message to have FileNotFoundException use the default
17335         assembly load error message. Fixes bug #79426.
17336         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17338 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17340         * threadpool.c: (start_thread_or_queue) use the root domain when
17341         creating the thread instead of the async object one.
17343 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17345         * class.c, object.c, class-internals.h, reflection.c:
17346         for arrays, store element_size inside MonoClass (speedup
17347         for array object creation).
17349 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17351         * icall.c: fixed CodeBase to use the file name and not the module
17352         name (bug #79365).
17354 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17356         * mono-debug.c, mono-debug.h: export find_method as
17357         mono_debug_find_method ().
17359 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17361         * debug-helpers.c, class-internals.h: added a few functions useful
17362         when debugging under gdb.
17364 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17366         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17367         characters that need special handling.
17369 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17371         * mono-config.c: make the os/cpu specification more flexible,
17372         allowing lists and negation.
17374 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17376         * marshal.c: COM Interop fixes. Handle case where method->klass.
17377         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17378         calling convention on non-windows platforms. This is for
17379         compatibility with XPCOM and MainWin COM.
17380         
17381         Code is contributed under MIT/X11 license.
17382         
17384 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17386         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17387         correctly. Fixes #79217.
17389         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17391 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17393         * mono-config.c: allow both an os and cpu attribute for dllmap
17394         and dllentry elemnets to enable a single config file to be used
17395         for multiple architectures.
17397 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17399         * loader.c: MonoLoaderError was cleared too soon on load failure.
17400         Fixes bug #79424.
17402 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17404         * icall.c: use the defining class vtable when accessing a
17405         static field, not a pobblibly derived class.
17407 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17409         * icall.c string-icalls.c: Remove references to unicode.h.
17411         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17413         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17415         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17416         indicating the image where custom marshaller types should be looked up.
17417         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17418         custom marshallers, instead of corlib. Fixes #79425.
17420 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17422         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17424 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17426         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17427         Implement Environment.ProcessorCount.
17428         
17429         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17430         Implement Environment.ProcessorCount.
17431         
17432         * icall.c: 
17433         Add Environment.ProcessorCount icall.
17434         
17435         Patch by Jason McFall.
17437 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17439         * assembly.c: don't append .exe/.dll when the filename already contains
17440         one of those extensions.
17442 2006-09-12  Martin Baulig  <martin@ximian.com>
17444         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17445         to array interfaces.
17447 2006-09-11  Martin Baulig  <martin@ximian.com>
17449         * reflection.c (mono_image_build_metadata): Create the
17450         MethodImpl's after emitting all types and methods, so we don't
17451         need another fixup pass for them.
17453 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17455         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17456         change.
17458 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17460         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17461         unload.
17463 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17465         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17466         args is not set. Fixes #78926.
17468 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17470         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17472         * image.c (load_class_names): Move this to class.c, and rename it to 
17473         'mono_image_init_name_cache'.
17474         (load_modules): Fix a warning.
17476         * class.c icall.c image.c: Initialize image->name_cache lazily.
17478         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17479         on its name using information in the AOT file.
17481         * class.c (mono_class_from_name): Use the new hook function.
17483 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17485         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17486         correctly.
17488         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17489         Fixes #79289.
17490         
17491 2006-09-06  Martin Baulig  <martin@ximian.com>
17493         * icall.c (mono_lookup_internal_call): Small fix.
17495 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17497         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17498         double g_free.
17500 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17502         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17503         when --debug is specified.
17505 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17507         * class.c (setup_generic_array_ifaces): Fix a warning.
17509 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17511         * Temporarily remove the patch to assemly.c that checks the
17512         assembly versions as it breaks our gacutil.
17514 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17516         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17518         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17519         a net 1.0 runtime.
17521         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17522         created using the default ctor. Fixes #79152.
17523         (mono_string_builder_to_utf16): Ditto.
17525 2006-09-01  Martin Baulig  <martin@ximian.com>
17527         Fix handling of the generic array interfaces.
17529         * class-internals.h
17530         (MonoDefaults): Removed `generic_array_class' and added
17531         `generic_ilist' class.
17533         * class.c
17534         (mono_bounded_array_class_get): Add the new generic array interfaces.
17535         (setup_generic_array_ifaces): New static method; create vtable
17536         entries for each method in the generic array interfaces.
17538         * metadata.c
17539         (select_container): Allow "parent-less" generic methods.
17541         * marshal.c
17542         (mono_marshal_get_generic_array_helper): New public method.
17544         * icall.c
17545         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17546         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17547         moved the interncall into System.Array.
17549 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17551         A few more cases of avoiding work on types with ->byref set.
17552         Has the real fix for #79238
17553         * icall.c (is_generic_parameter): New helper.
17554         (ves_icall_Type_GetGenericParameterPosition): Use it.
17555         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17556         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17557         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17558         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17559         reference types.
17560         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17561         reference types.
17562         (ves_icall_Type_get_IsGenericInstance): Likewise.
17563         (ves_icall_Type_get_IsGenericType): Likewise.
17565 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17567         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17568         class if possible.
17570         * mempool.h (mono_mempool_get_allocated): New helper function.
17572         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17573         change.
17575         * mempool.c: Fix warnings and the calculation of stats.
17577         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17579         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17581         * loader.c (mono_get_method_from_token): Update method_count stat.
17583         * class-internals.h (MonoStats): Add some stats.
17585 2006-08-31 Robert Jordan  <robertj@gmx.net>
17587         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17588         with managed variants.
17589         All code is contributed under the MIT/X11 license.
17590         
17591 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17593         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17594         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17596         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17598         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17599         with cycles in classes.
17601         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17603         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17604         missing a [MarshalAs] directive. Fixes #79203.
17606         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17607         klass->marshal_info. Fixes #79217.
17609 2006-08-30  Martin Baulig  <martin@ximian.com>
17611         Committing a patch from Joachim Ante <joe@otee.dk>:
17612         Add support for binary data symbol stores.
17614         * debug-mono-symfile.c
17615         (mono_debug_open_mono_symbol_file): Renamed into
17616         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17617         arguments.
17619         * mono-debug.c
17620         (mono_debug_open_image): Added `raw_contents' and `size' args.
17621         (mono_debug_init_2_memory): New public function.
17623 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17625         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17627 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17629         * appdomain.c: implement support for ShadowCopyFiles.
17631 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17633         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17634         when value is NULL (and should remove CID #51).
17636 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17638         * image.c: moved 2 functions to ../utils.
17640 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17642         * gc.c: cope with the target object of a GC handle being NULL
17643         (bug #78877).
17645 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17647         * class.c: recursively check parent's explicit implementations
17648         of interface methods (fixes bug #79125).
17650 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17652         * filewatcher.c: Avoid warnings when building, do not redefine
17653         constants that are defined.
17655         Remove warnings.
17657 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17659         * image.c: don't fail when the link points to an absolute path.
17661 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17663         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17664         Fix CID #3.
17666 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17668         * image.c (full_path): A new method used to obtain the actual path
17669         of an assembly even in the presence of symbolic links.  
17671         This is necessary for the case where we are running a binary that
17672         has been GACed, but we are using the "published" path name
17673         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17674         file in the GAC.
17676         This was the source of the failure for the `xsp' command with the
17677         recent AppDomain changes, as far as the runtime was concerned,
17678         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17679         $prefix/mono/gac/blah/version/blah.exe.
17681         (do_mono_image_open): use full path
17683 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17685         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17687 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17689         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17690         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17692 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17694         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17695         small structures. Fixes #78990.
17697 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17699         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17701         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17703 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17705         * appdomain.c:
17706         * marshal.c: don't load all the assemblies from a domain into newly
17707         created ones. The new domains might have different rules and load
17708         assemblies from different locations. Fixes bug #76757.
17710         Patch by Lluis. Conflicts resolved by Brian Crowell.
17712 2006-08-16  Alp Toker  <alp@atoker.com>
17714         * socket-io.c: First half of the fix for #79084.
17715         Set sa_size to the length of the content, not that of the struct.
17716         Don't add NULL suffix to the content, this should be done in
17717         managed code if needed.
17719 2006-08-14  Raja R Harinath  <rharinath@novell.com>
17721         Fix part of #79012
17722         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
17723         mono_metadata_parse_type returns NULL.
17725 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
17727         * normalization-tables.h : new file for string normalization data.
17728         * locales.c, locales.h, icall.c :
17729           added load_normalization_resource() for string normalization,
17730           and icall as well.
17731         * Makefile.am : added normalization-tables.h to the sources.
17733 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
17735         * marshal.c: Add more helper functions to reduce code duplication and use them
17736         everywhere.
17738 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
17740         * marshal.c: Fix non-x86 stdcall warnings.
17741         
17742         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
17743         them everywhere.
17745 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
17747         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
17748         type check on multi-dimensional arrays. Fixes #79000.
17750 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17752         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
17753         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
17754         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
17755         * class-internals.h: add is_com_object to class structure.
17756         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
17757         null checks to COM object marshalling. Fix .ctor call on RCW.
17758         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
17759         
17760         All code is contributed under the MIT/X11 license.
17762 2006-08-09  Dick Porter  <dick@ximian.com>
17764         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
17765         racing mono_monitor_allocator_lock() somewhere, so don't delete
17766         the critical section for now.  Found by running and exiting
17767         monodevelop.
17769 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
17771         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
17772         (ves_icall_System_ComObject_FindInterface): Ditto.
17773         (ves_icall_System_ComObject_CacheInterface): Ditto.
17775         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
17776         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
17778 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17780         * threadpool.c: treat pipes from process asynchronous reads as sockets
17781         when reading from them, so we get select/poll or epoll to wait for
17782         data.
17784 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
17786         * loader.c: Fix a typo (CID #233) in the null check.
17788 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
17790         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
17791         Hopefully fixes #78949.
17792         
17793         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
17794         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
17795         bytes. Fixes #78972.
17797 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17799         * filewatcher.c: we need to set errno here.
17801 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17803         * filewatcher.c: let Win32Exception get the error value.
17805 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17807         * filewatcher.c: translate errno into win32 errors for Win32Exception
17808         to know what happened.
17810 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17812         * threadpool.c: Fix more warnings.
17814         * assembly.c (search_loaded): Fix warnings.
17816         * threadpool.c (mono_thread_pool_finish): Fix warnings.
17817         (mono_async_invoke): Ditto.
17819 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
17821         * object.c (mono_remote_class_vtable): Need to create proxy vtable
17822         entries for __ComObject type in addition to ComImport types.
17823         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
17824         about hash table.
17825         
17826         All code is contributed under the MIT/X11 license.
17828 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17830         * image.c: avoid tentative loading of modulerefs that contain
17831         no metadata (P/Invoke library names).
17833 2006-07-28  Dick Porter  <dick@ximian.com>
17835         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
17836         mono_loader_lock() somewhere, so don't delete the critical section
17837         for now.  Found by running and exiting monodevelop.
17839 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17841         * filewatcher.c: define the inotify syscalls when we're building on
17842         linux and have sys/syscall.h. The build system might not have support
17843         for inotify but the target system might have it.
17845 2006-07-26  Miguel de Icaza  <miguel@novell.com>
17847         * domain.c: Documentation updates.
17849         * loader.c (mono_free_method): Do not release the method
17850         information if we are being profiled, as profilers will use this
17851         information at shut down to present some data to the user.
17853         This is needed so that the profiler does not crash, as the
17854         profiler tends to keep MonoMethods around, and they might become
17855         invalid if we free these.
17857         (mono_get_method_constrained): Return the original CIL stream
17858         method as well, so verification can be performed against it.
17860 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17862         * filewatcher.[ch]: support for inotify file system watcher.
17863         * icall.c: add new internal calls for the inotify file system watcher.
17865 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17867         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17868         #78888.
17870 2006-07-20  Dick Porter  <dick@ximian.com>
17872         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17873         warning.
17875 2006-07-20  Dick Porter  <dick@ximian.com>
17877         * threads.c (start_wrapper): Do the thread cleanup while we still
17878         hold a reference to its object.  Fixes bug 78123.
17880 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
17882         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
17883         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
17884           "managed-to-managed".
17885         * icall.c: Redirect string constructors that take sbyte* to
17886           ves_icall_System_String_ctor_RedirectToCreateString.
17887         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
17888           to CreateString () methods with matching signature.
17889         * reflection.c: Use original security informations for
17890           MONO_WRAPPER_MANAGED_TO_MANAGED.
17891         * security-manager.c: Use original security informations for
17892           MONO_WRAPPER_MANAGED_TO_MANAGED.
17893         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
17894           that is a placeholder and only its address should be used.
17895         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
17896           that is a placeholder and only its address should be used.
17898 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
17900         Begin implementing COM Interop.
17901         * appdomain.c: Increment corlib version.
17902         * class.c: Set ComImport classes' parent to __ComObject.
17903         * loader.c: Mark cominterop methods as such.
17904         * domain.c: Add __ComObject class to MonoDefaults structure.
17905         * image.c: Add 2 hashtables to the image for COM Interop related methods
17906         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
17907         using the mempool allocator
17908         
17909         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
17910         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
17911         declaration for mono_metadata_type_dup_mp.
17912         
17913         * debug-helpers.c: Added strings for two additional wrapper types
17914         * object.c: Create proxy objects for ComImport classes
17915         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
17916         and added __ComObject class to MonoDefaults structure.
17917         
17918         * object-internals.h: Finish MonoRealProxy definition, and add definition of
17919         MonoComInteropProxy and MonoComObject.
17920         
17921         * marshal.c: Added support for COM Interop
17922         (signature_cominterop): Converts managed signature to corresponding
17923         unmanaged COM signature.
17924         (cominterop_get_function_pointer): gets unmanaged function pointer via
17925         COM object vtable
17926         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
17927         (cominterop_get_method_interface): returns interface type that method is defined on
17928         (mono_mb_emit_cominterop_call): emits native call to function pointer
17929         gotten from vtable
17930         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
17931         that matches signature of unmanaged function.
17932         (cominterop_get_native_wrapper): wrapper around adjusted method call.
17933         (cominterop_get_invoke): forwards call from proxy to __ComObject
17934         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
17935         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
17936         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
17937         
17938         * marshal.h: Added Marshal icall declarations.
17939         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
17940         so we can access them in finalizer
17941         
17942 2006-07-14  Dick Porter  <dick@ximian.com>
17944         * object.c (mono_type_initialization_cleanup): Fix a race
17945         condition by temporarily commenting out the critical section
17946         deletion.
17948 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
17950         * reflection.c (create_custom_attr): Fix some warnings.
17951         (create_custom_attr_data): Ditto.
17952         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
17953         types. Fixes #78855.
17955 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
17957         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
17959         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
17961 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
17963         * reflection.c (resolve_object): Add support for DynamicMethod.
17965         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
17966         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
17968 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
17970         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
17971         don't leak GPtrArray's pdata has we have no use (nor free) for it.
17973 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
17975         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
17976         Fixes #77888.
17978 2006-06-30  Raja R Harinath  <rharinath@novell.com>
17980         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
17981         slightly: remove a shadow local variable.
17983 2006-06-29  Raja R Harinath  <rharinath@novell.com>
17985         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
17986         definition that introduces the virtual function slot.
17987         Also fix Coverity #105.
17989 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
17991         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
17992         for dynamic assemblies. Fixes #78724.
17994 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
17996         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
17997         Fixes #78722.
17999 2006-06-21  Martin Baulig  <martin@ximian.com>
18001         * reflection.c
18002         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18003         fixes #76484.
18005 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18007         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18009 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18011         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18012         nor TYPEREFs.
18013         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18014         Inflate result if necessary.
18015         (mono_class_get_full): Remove old version.  Rename from
18016         'mono_class_get' and add 'context' argument.  Pass it to
18017         ..._create_from_typespec.
18018         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18019         (mono_ldtoken): Revert change below.
18021 2006-06-20  Martin Baulig  <martin@ximian.com>
18023         * class.c (mono_ldtoken): Don't pass the generic context to
18024         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18026 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18028         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18029         and later freeing it. Fixes #78638.
18031 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18033         * icall.c (mono_class_get_throw): Revert over-zealous error
18034         throwing, the caller for mono_class_get_throw will cope with
18035         errors when classes are not properly initialized already.
18037         The code still copes with loader exceptions though.
18039         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18040         
18041 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18043         Fixes the `make run1' version of RuntimeAbort (to be commited,
18044         source is in Bugzilla).
18045         
18046         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18047         FALSE on class loading failure instead of returning true.
18049         * class.c (mono_class_create_from_typedef): It is possible for
18050         mono_metadata_interfaces_from_typedef_full to fail if a class is
18051         not found, cope with this.
18052         
18054 2006-06-14  Dick Porter  <dick@ximian.com>
18056         * socket-io.c: 
18057         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18058         4.1.1
18060 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18062         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18064 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18066         * icall.c: Another fix for building mono in Visual Studio.
18068 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18070         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18071         
18072 2006-06-09  Martin Baulig  <martin@ximian.com>
18074         * debug-mono-symfile.c: Put this back and really fix it this
18075         time. Sorry for all the trouble.
18077 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18079         * icall.c (mono_class_get_throw): Fix a warning.
18080         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18081         ReflectionTypeLoadException if needed. Fixes #78606.
18083         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18084         (mono_class_init): Ditto.
18086         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18087         ref_only exceptions.
18088         (mono_loader_clear_error): Make this work even if there is no error.
18090 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18092         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18093         Marshal.GetComSlotForMethodInfo using internal call.
18095 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18097         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18098         a function for signalling it.
18100         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18101         a referenced assembly is not found.
18103         * loader.c (mono_loader_error_prepare_exception): Add support for 
18104         LOADER_ERROR_ASSEMBLY. Fix formatting.
18106 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18108         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18109         for VARIANT marshalling on windows and increment corlib version
18110         since Variant struct was added.
18112 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18114         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18115         stack trace line information:
18117         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18118         (Martin) when looking up B which is between A and C, return A not C.
18120         Bug is #78573.
18122         Thanks to Alexander Olk for tracking this down.
18124 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18126         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18127         
18128         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18129         avoid clobbering its value.
18130         (mono_string_to_lpstr): Fix a warning on windows.
18132 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18134         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18136         * reflection.c loader.c: Removed references to 'dummy' flag.
18138         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18140         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18141         it gets GC tracking.
18143         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18144         GC tracking.
18145         
18146         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18148         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18150         * appdomain.c: Bump corlib version.
18152 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18154         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18155         CEE_STIND_REF when working with object references.
18157 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18159         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18160         Fixes #78539.
18162 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18164         * loader.c (method_from_memberref): Fix argument value for
18165         mono_loader_set_error_method_load (I was passing the MonoClass
18166         instead of the class name char *).
18168 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18170         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18171         CEE_STIND_REF when working with object references.
18173 2006-05-30  Martin Baulig  <martin@ximian.com>
18175         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18176         mono_method_full_name() change and replace the ':' with a '.'
18177         here.
18179 2006-05-30  Martin Baulig  <martin@ximian.com>
18181         * debug-mono-symfile.c
18182         (mono_debug_symfile_lookup_location): Fix the algorithm:
18183         when looking up B which is between A and C, return A not C.
18185 2006-05-29  Martin Baulig  <martin@ximian.com>
18187         * mono-debug.h
18188         (MonoDebugMethodInfo): Make the typedef public.
18189         (MonoDebugSourceLocation): New public struct.
18191         * mono-debug.c
18192         (mono_debug_source_location_from_address): Removed.
18193         (mono_debug_source_location_from_il_offset): Removed.
18194         (mono_debug_il_offset_from_address): Removed.
18195         (mono_debug_address_from_il_offset): Removed.
18196         (mono_debug_lookup_method): New public function.
18197         (mono_debug_lookup_source_location): New public function; replaces
18198         the old mono_debug_source_location_from_*() functions; see the
18199         inline documentation.
18200         (mono_debug_free_source_location): New public function.
18201         (mono_debug_print_stack_frame): New public function; see the
18202         inline documentation.
18204         * debug-mono-symfile.c
18205         (mono_debug_find_source_location): Renamed into
18206         mono_debug_symfile_lookup_location(); only take a
18207         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18208         documentation.
18209         (mono_debug_find_method): Renamed into
18210         mono_debug_symfile_lookup_method().
18212 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18214         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18215         returned by mono_image_open_full ().
18217         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18218         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18219         #78517.
18221         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18222         #78518.
18224 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18226         * class.c (mono_class_from_typeref): handle missing images
18227         earlier, deals with bug #78418.   Refactor code; 
18229         Fix a warning introduced in my previous commit (some stale code
18230         from before I revisited my patch).
18232         * class.c (mono_class_create_from_typedef): On failure, remove the
18233         class from the MonoImage->class_cache as the class is not
18234         initialized;   Fixes the leak pointed out by Paolo.
18236 2006-05-25  Dick Porter  <dick@ximian.com>
18238         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18239         DeleteCriticalSections until I figure out which one may still be
18240         sometimes locked when mono_thread_cleanup is called.
18242 2006-05-24  Dick Porter  <dick@ximian.com>
18244         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18245         of mono_thread_manage and back into its own function, so it can be
18246         called after the finalizer thread has finished.
18248         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18250 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18252         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18253         Fixes #78495.
18255         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18256         with non-blittable elements.
18257         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18259 2006-05-24  Martin Baulig  <martin@ximian.com>
18261         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18262         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18264         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18265         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18266         `mono_debugger_event_handler' to NULL.
18268 2006-05-24  Martin Baulig  <martin@ximian.com>
18270         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18272 2006-05-24  Martin Baulig  <martin@ximian.com>
18274         * mono-debug-debugger.h
18275         (mono_debugger_create_notification_function): Added
18276         `MonoCodeManager *' argument.
18278 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18280         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18282 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18284         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18285         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18286         implementation.
18288 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18290         * icall.c: precise GC support: objects can't be stored in unmanaged
18291         memory anymore, even if they are kept alive by other references: since
18292         they can move the GC needs to be able to always find them.
18294 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18296         * object.c: precise GC support for static fields. Support
18297         for moving GCs: write barriers and pinned allocation for interned
18298         strings.
18300 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18302         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18303         structure.
18305 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18307         * class.c, gc.c: sgen and precise GC updates.
18309 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18311         * marshal.h, marshal.c: added write barrier wrapper and precise type
18312         fixes.
18314 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18316         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18317         support.
18319 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18321         * reflection.c: precise and sgen GC updates.
18323 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18325         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18327 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18329         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18331 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18333         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18334         MONO_TYPE_OBJECT. Fixes #78462.
18336 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18338         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18339         and blittable types.
18341 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18343         * class.c (mono_class_get_exception_for_failure): Implement parts
18344         of a TODO: if the loader error is set (instead of the class
18345         error), we return a Loader exception that can be properly thrown
18346         elsewhere.
18348         This was exposed by some Winforms 2.0 code that I tried to run
18349         (Atsushi pointed me to it).
18351 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18353         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18354         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18355         
18356         * marshal.c (emit_marshal_vtype): Add limited support for 
18357         UnmanagedType.LPStruct. Fixes #78427.
18359         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18360         Applied a patch from kangaroo to fix #77523.
18362 2006-05-17  Martin Baulig  <martin@ximian.com>
18364         * threads.c
18365         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18366         (debugger_thread_created): Removed.
18367         (debugger_thread_exited): Removed.
18369 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18371         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18373         * object-internals.h (MonoReflectionResource): Sync with managed version.
18375 2006-05-12  Wade Berrier <wberrier@novell.com>
18377         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18379 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18381         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18382         functions try to allocate from the image mempool.
18384 2006-05-12  Dick Porter  <dick@ximian.com>
18386         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18388 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18390         * object.c: The FieldGetter and FieldSetter methods require the full
18391         name of the class, not only the name. Fixes bug #78277.
18393 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18395         * loader.c (method_from_memberref): Do not pass the NULL klass to
18396         mono_loader_set_error_() methods.  Pass the non-NULL value
18397         (class). 
18399 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18401         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18402         (mono_assembly_close): Null out assembly->image->references after freeing it.
18404         * image.c (mono_image_close): Free image->references.
18405         
18406         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18408 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18410         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18411         before checking if it's NULL (g_assert).
18413 2006-05-10  Martin Baulig  <martin@ximian.com>
18415         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18416         I thought I already killed that two months ago, but now it somehow reappeared.
18418 2006-05-10  Martin Baulig  <martin@ximian.com>
18420         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18422 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18424         * reflection.c: Allocate memory for dynamically created methods in the image
18425         mempools.
18427 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18429         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18430         don't use the ad pointer before checking if it's NULL (g_assert).
18432 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18434         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18435         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18437         * marshal.c: Allocate all signatures from mempools.
18439         * marshal.c: Allocate some more signatures from mempools.
18441 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18443         * object.c (mono_load_remote_field): The code used to provide a
18444         temporary variable for returning results if the user did not
18445         provide a result pointer.  But our temporary variable was allocted
18446         on the satck.
18448         Fix calling code to always pass a result area.   Coverity ID 103.
18450 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18452         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18453         value, not the old. Fixes #78312.
18454         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18456         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18457         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18458         per-image cache.
18460         * assembly.c (mono_assembly_close): Free image->references.
18462         * assembly.c (mono_assembly_names_equal): Fix a warning.
18463         (mono_assemblies_cleanup): Cleanup more global data.
18465         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18467         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18468         ptr_cache and image->modules.
18470         * image.c (mono_image_init): Allocate array_cache lazily.
18471         
18472 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18474         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18475         behavior was changed recently and has bad side effects.
18477 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18479         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18480         
18481         * assembly.c (mono_assembly_close): Remove a debug printf.
18483         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18485         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18486         to also allow for temporary references between mono_image_open ()/close ().
18488         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18490 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18492         * marshal.c: Fix support for dynamic methods.
18494         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18496         * marshal.c (mono_marshal_cleanup): New cleanup function.
18498         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18499         image mempools.
18501         * class.c (mono_class_init): Fix leaking class->nested_classes.
18503         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18505         * image.c (mono_image_init): Initialize the new cashes.
18507         * image.c (mono_image_close): Destroy the new cashes.
18509         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18511         * mempool.c (mono_mempool_strdup): New helper function.
18513         * class-internals.h: Add prototype for mono_loader_unlock ().
18515         * domain.c (mono_jit_info_table_find): Fix a warning.
18516         (mono_debugger_check_runtime_version): Ditto.
18518         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18519         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18520         functions to these modules.
18522         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18523         metadata modules.
18524         
18525         * marshal.c (mono_free_bstr): Fix a warning.
18527         * assembly.c (mono_assembly_open_full): Fix another small leak.
18529         * object.c: Fix some unload leaks in the remoting code.
18531         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18532         function.
18534         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18536         * reflection.c: Fix some unload leaks in dynamic assemblies.
18538 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18540         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18541         * marshal.h: Add BSTR support on Win32
18542         * icall.c: Add BSTR icalls
18543         * metadata.h: Add BSTR enums
18545 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18547         Work to catch the crash from #76795 and turn it into an
18548         exception.   As I stubbed out pieces of the VisualBasic support,
18549         I found a number of places where the code was failing and I added
18550         checks to those places. 
18551         
18552         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18553         function return a status code.  If we fail to parse the signature
18554         from mono_metadata_parse_generic_inst, return FALSE.
18556         * loader.c (mono_get_method_from_token): If we fail to load the
18557         method (mono_class_get) return NULL.   
18559         * (method_from_memberref): Return NULL if we are unable to parse
18560         the method signature
18562         (mono_loader_error_prepare_exception): Since we now use the
18563         loader_error flag internally to stop processing, and obtaining
18564         exceptions that might be thrown will walk this code path the
18565         proper way of going from a MonoLoaderError into a
18566         MonoException was convoluted.   This new routine encapsulates the
18567         process of turning the error into an exception and *clearing* the
18568         error afterwards.
18569         
18570 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18572         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18573         with missing assemblies), and to cope with:
18575                 * Missing fieldref from a non-existing assembly.
18576                 * Missing methodref from a non-existing assembly.
18578         The first batch of work to address *some* of the issues from 76661.
18579         
18580         * object.c (mono_class_create_runtime_vtable): If we fail to
18581         initialize the class raise the exception here. 
18583         * metadata.c (mono_class_get_overrides_full): If any methods fail
18584         to load return the failure to the caller.
18586         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18587         flagging assemblies that failed to load.   
18589         Do not crash if we are unable to load the assembly.
18591         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18592         assemblies. 
18594         * loader.c (mono_loader_set_error_type_load): Change the
18595         convention to always pass unallocated strings, so we make our own
18596         copies (I know our own code had duplicated strings before, but
18597         this keeps the normal conventions).
18598         (method_from_memberref): Call mono_loader_set_error_method_load
18599         for all possible failures of loading the class. 
18600         Remove assert, turn into a loader error.
18602         (mono_loader_error_to_exception): Move this routine from mini
18603         (mini_loader_error_to_exception) there was no need to have that in
18604         mini. 
18606         * class.c (mono_class_from_typeref): If we were not able to load
18607         the assembly with mono_assembly_load_reference, call the
18608         mono_loader_set_error_type_load to register the problem.
18610         (mono_class_setup_fields): If we fail to load the type from
18611         mono_metadata_parse_type_full, call mono_class_set_failure and
18612         break from the loop.
18614         If class->exception_type is set, we do not layout the fields as
18615         that might crash the runtime, and instead return (from breaking
18616         from the previous loop).
18618         (mono_class_setup_vtable): This now returns a boolean indicating
18619         whether the table was properly setup.   The decision is driven by
18620         mono_class_get_overrides_full which might run into non-existing
18621         methods. 
18622         
18623         (mono_class_init): Returns TRUE on success or FALSE if there was a
18624         problem in loading the type (incorrect assemblies, missing
18625         assemblies, methods, etc).
18627         When we call mono_class_setup_fields we also check for a potential
18628         error inside this call (either a class exception or a general
18629         loader exception).
18631         (mono_class_create_from_typedef): If the parent fails to load
18632         (calling mono_class_get_full) return NULL.
18633         
18634         ** Important **
18636         calls to mono_metadata_parse_type_full should be checked
18637         everywhere and set the mono_class_set_failure
18638         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18640         The current patch checks the places where my manually constructed
18641         tests show the errors are showing up, but we should do it
18642         everywhere. 
18644         ** Important2 **
18646         mono_class_init return values should be tested everywhere, like
18647         the previous case this is something that we should audit
18648         everywhere and not only on the cases exposed by the tests I
18649         created. 
18651 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18653         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18654         boolean parameter and instead pass the information on `options'
18655         parameter (FileOptions).
18657         * icall.c: Register the new signature for MonoIO.Open.
18659         * debug-helpers.c (dis_one): Trying to understand how coverity
18660         works.  Fix Run 5, item 78.
18662 2006-04-26  Dick Porter  <dick@ximian.com>
18664         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18665         dereference.
18667 2006-04-25  Martin Baulig  <martin@ximian.com>
18669         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18671         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18672         debugger_thread_created().
18673         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18674         special way.
18675         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18676         (mono_debugger_finalize_threads): New function; undo the effects
18677         of mono_debugger_init_threads().
18678         (mono_debugger_create_all_threads): Removed.
18680 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18682         * image.c (mono_image_close): Tidy up trace messages.
18684         * assembly.c (mono_assembly_close): Ditto.
18686         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18687         no longer references an already freed assembly. Fixes #78168.
18689 2006-04-21  Dick Porter  <dick@ximian.com>
18691         * threads.c (mono_thread_detach): Fix reference counting when
18692         detaching threads.
18694 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18696         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18697         #78155.
18699 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18701         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18702         (mono_type_to_stind): Ditto.
18704         * marshal.c: Use the new helper functions to simplify code.
18706         * image.c (mono_image_close): Add some code for help debug assembly unloading
18707         problems.
18709         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18710         image mempool.
18712         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
18713         assembly was already loaded in another appdomain. Fixes #78083.
18715 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
18717         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
18718         referenced assemblies.
18719         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
18721         * domain.c (mono_domain_free): Add a trace message.
18723         * appdomain.c (add_assemblies_to_domain): Ditto.        
18725         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
18726         field.  
18728 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18730         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
18732 2006-04-12  Martin Baulig  <martin@ximian.com>
18734         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
18735         `USE_INCLUDED_LIBGC'.   
18737 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18739         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
18740         the patch contains ../ and a small directory name later. Hopefully fixes
18741         #78035.
18743 2006-04-10  Martin Baulig  <martin@ximian.com>
18745         Clean up the debugger's thread-handling code.
18747         The debugger's thread-handling code has been moved from
18748         ../mini/debug-debugger.c to threads.c.  We now iterate directly
18749         over the `threads' hash, keep track of exiting threads and also
18750         use proper locking.
18752         We can now debug XSP and XSP based applications with the debugger.
18754         * object-internals.h (MonoThread): Added `gpointer end_stack'.
18756         * threads.h
18757         (MonoThreadCallbacks): Removed; this was only used by the debugger.
18758         (mono_install_thread_callbacks): Likewise.      
18760         * threads.c (mono_thread_callbacks): Removed.
18761         (debugger_thread_created, debugger_thread_exited): New static functions.
18762         (start_wrapper): Call debugger_thread_created().
18763         (thread_cleanup): Call debugger_thread_exited().
18764         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
18765         (mono_debugger_init_threads): New public function.
18766         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
18767         iterate directly over the `threads' hash and also use proper locking.
18769         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
18771         * mono-debug-debugger.h
18772         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
18774 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
18776         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
18777         argument type=array. Fixes #78057.
18779 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
18781         * culture-info-table.h : regenerated. Fixed bug #69652.
18783 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
18785         * loader.c metadata.c: Reapply a variant r59116.
18786         
18787         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
18789         * class.c (mono_class_setup_interface_offsets): New internal function.
18791         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
18792         interfaces too. Fixes #77398.
18794         * reflection.c (encode_cattr_value): Add support for 
18795         parameter type=object, argument type=array.
18796         (load_cattr_value): Ditto. Fixes #77916.
18798         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
18799         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
18801         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
18802         a byval char array and CharSet is Ansi.
18804         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
18806 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
18808         * metadata.c: Add some locking comments.
18809         
18810         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
18811         mempool.
18812         (mono_metadata_free_method_signature): Don't free the signature itself.
18814         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
18816         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
18817         reference the same MonoImage.
18818         (mono_assembly_load_from_full): Add an assert.
18820 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
18822         * image.c (mono_image_close): Don't put the image we are about to free into the
18823         loaded_images_guid_hash.
18825         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
18826         to reduce code duplication.
18828         * marshal.c: Register the native functions called by this module as icalls, to
18829         somewhat centralize the creation of MonoMethodSignature's.
18831         * loader.c (mono_method_signature): Add a cache for method signatures.
18833         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
18834         the parameter attributes of a method.
18835         (mono_metadata_parse_method_signature_full): Refactored the computation of
18836         parameter attributes into a separate function. Also avoid one allocation in
18837         most cases.
18839         * assembly.c (mono_assembly_close): Ditto.
18841         * image.c (mono_image_close): Log trace messages with INFO level.
18843         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
18845         * image.c reflection.c: Correct reference counting of image modules.
18846         
18847         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
18848         of this function from the image mempool.
18849         
18850         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
18851         to allow more cached types to be used.
18853         * mono-debug.c (mono_debug_add_method): Appled patch from
18854         David S. Miller  <davem@sunset.davemloft.net>: Access 
18855         minfo->lexical_blocks[] entry elements using read32().
18857 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
18859         * loader.c (mono_free_method): No longer free the method header for non-dynamic
18860         methods as it is allocated from the mempool.
18862         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
18863         image mempool.
18865         * metadata-internals.h: Add comments describing the reference counting scheme
18866         used for MonoImage and MonoAssembly.
18868         * image.c assembly.c reflection.c: Rework reference counting of images and 
18869         assemblies so they are freed when the runtime is shut down. Free some 
18870         additional memory structures when an image is unloaded.
18871         
18872 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18874         * class.c loader.c reflection.c: Allocate more data structures in
18875         the image mempool.
18877 2006-03-31  Miguel de Icaza  <miguel@novell.com>
18879         * icall.c
18880         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
18881         build on pre glib 2.4 systems.
18883 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
18885         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
18887         * icall.c: Fix some warnings.
18889 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
18891         * culture-info-table.h : regenerated.
18893 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
18895         * threads.c, object-internals.h, verify.c: changed the culture caching
18896         code to use a normal MonoArray for storage so the GC can keep track of
18897         them easily. Fixed bits of the cache logic, too and simplified the
18898         code.
18900 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
18902         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
18903         thread for non-Boehm GCs.
18905 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18907         * domain.c, object.c, domain-internals.h: reduce the amount of memory
18908         needed to keep track of the data for static fields.
18910 2006-03-29  Raja R Harinath  <rharinath@novell.com>
18912         Fix #75172
18913         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
18914         for interface classes.  Use 'num_methods' instead.
18915         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
18916         before using '->vtable_size' field.
18918 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
18920         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
18921         doesn't contain managed pointers, so use a normal hashtable.
18923 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
18925         * reflection.c, class-internals.h, domain.c: fixed handling of types
18926         used as values for objects in custom attributes (bug #77915):
18928 2006-03-24  Martin Baulig  <martin@ximian.com>
18930         * class.c (mono_class_setup_fields): Added support for generic
18931         instances; fixes #77580.
18933 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18935         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
18937 2006-03-24  Dick Porter  <dick@ximian.com>
18939         * file-io.c (get_file_attributes): More stat macro breakage.
18940         Fixes bug 77759.
18942 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
18944         * profiler.c: added the file=filename option in the default profiler
18945         to output the profile data to filename.
18947 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18949         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
18950         bug #77877.
18952 2006-03-22  Martin Baulig  <martin@ximian.com>
18954         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
18955         allocated `MonoClassField *' in `fb->handle'.
18957 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18959         * class.c, image.c, metadata-internals.h: implemented new mechanism to
18960         allocate interface ID to save memory and allow better ID reuse on
18961         appdomain unload. setup_generic_vtable () removal from Martin.
18963 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18965         * object.h, appdomain.c, domain.c, exception.c, icall.c,
18966         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
18967         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
18968         write barriers for reference stores with managed objects accessed with
18969         C structures in the runtime and in embedding programs.
18971 2006-03-20  Raja R Harinath  <rharinath@novell.com>
18973         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
18974         'interface_id' and 'max_interface_id' fields of MonoClasses
18975         representing open generic types.
18977 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
18979         * object.h, object.c, icall.c: added functions to deal with
18980         storing valuetypes that contain references in managed objects.
18981         * reflection.c, string-icalls.c, threads.c, marshal.c: small
18982         fixes and comments around uses of mono_array_addr ().
18984 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
18986         * object.h, icall.c, monitor.c: object.GetHashCode ()
18987         implementation that supports the moving garbage collector.
18989 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
18991         * icall.c, threads-types.h, threads.c: implemented finalizer for
18992         LocalDataStoreSlot.
18994 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
18996         * metadata.c (mono_type_size): Add a fixme.
18997         (mono_type_stack_size): Ditto.
18999         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19000         'type_forwarders' field.
19002         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19003         attribute from net 2.0.
19005         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19006         from class.c.
19008         * class.c (mono_class_setup_fields): Fix a warning.
19009         
19010         * class.c (mono_class_from_name): Add support for assemblyref entries
19011         in the EXPORTEDTYPE table.
19013         * reflection.c: Add support for handling type forwarders under net 2.0.
19015         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19016         
19017 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19019         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19020         overwriting entries in ModuleBuild->types, also clean up the code
19021         a little. Fixes #77774.
19023 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19025         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19026         load friend assembly info when present.
19028 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19030         Fix crasher on gtest-158.cs.
19031         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19032         the return value if the MonoClass we want is yet in an
19033         inconsistent state.
19034         * class.c (mono_class_create_from_typedef): Add an comment
19035         explaining an order dependency between mono_class_setup_parent and
19036         mono_class_setup_mono_type.
19038 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19040         * class.c: documentation updates and events bug fix.
19042 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19044         * class.c: some cleanup, locking fixes.
19046 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19048         * class.c: fix the generics code to setup nested
19049         type info to the instantiated type (bug #77770).
19051 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19053         * marshal.c: fixed a few type correctness issues.
19055 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19057         * loader.c: the Set/Get/Addrtess array methods should be public.
19059 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19061         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19062         
19063         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19064         info->wrapper.
19066 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19068         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19070         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19072         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19073         (mono_mempool_alloc0): Ditto.
19075 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19077         * socket-io.c:
19078         (create_object_from_sockaddr): it was allocating 4 extra bytes
19079         for the AF_UNIX data. Fixes bug #77747.
19081 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19083         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19085 2006-03-09  Dick Porter  <dick@ximian.com>
19087         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19088         Fixes bug 76966 again.
19090 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19092         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19093         names from r57532
19094         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19096 2006-03-07  Martin Baulig  <martin@ximian.com>
19098         * object.c
19099         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19101 2006-03-07  Martin Baulig  <martin@ximian.com>
19103         * class.c
19104         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19105         regression introduced in r56970; see gtest-252.cs.
19107         * loader.c (mono_get_method_constrained): Correctly handle generic
19108         methods; see gtest-253.cs.
19110 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19112         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19114 2006-03-04  Martin Baulig  <martin@ximian.com>
19116         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19117         compute the parent type at runtime, just like we're already doing
19118         it for interfaces.
19120         * reflection.c
19121         (mono_reflection_bind_generic_parameters): Don't compute the
19122         parent type anymore.
19124         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19126 2006-03-04  Martin Baulig  <martin@ximian.com>
19128         * mono-debug-debugger.h
19129         (mono_debugger_create_notification_function): Allocate memory at
19130         runtime and return a pointer to it.
19132 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19134         * assembly.c: Fix windows build.
19135         
19136         * assembly.c: Fix build.
19138         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19140         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19141         
19142 2006-03-03  Dick Porter  <dick@ximian.com>
19144         * process.c
19145         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19146         Check parameters before dereferencing them.  Fixes Aaron's part of
19147         bug 77393.
19149 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19151         Fix performance regression.
19152         * loader.c (find_method_in_class): Add 'from_class' argument.
19153         Rename 'klass' argument to 'in_class'.  The signature is compared
19154         against the method in 'in_class', and the corresponding method is
19155         returned from 'from_class'.
19156         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19157         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19158         type definition and generic instantiation in parallel.
19159         (mono_get_method_constrained): Update to changes.
19161 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19163         * threads.c: make sure the domain is correct, too when doing
19164         mono_thread_attach ().
19166 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19168         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19169         windows. Fixes #77683.
19171 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19173         * object.h, *: introduced specific way to set elements of an array
19174         of references to be used as write barrier. Still need to audit the
19175         uses of mono_array_addr.
19177 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19179         * object-internals.h: New field to cache the assmebly name, patch
19180         from Tambet Ingo (tambet@ximian.com)
19182 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19184         * decimal.h, class-internals.h, metadata-internals.h,
19185         file-io.h: mark a few function declarations as internal, to
19186         reduce the number of PLT entries.
19188 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19190         * file-io.c: fix typo in warning message.
19192 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19194         * loader.c: on unix, lookup the "*A" version of a function
19195         if charset is auto as a second option before failing.
19197 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19199         * class.h (mono_class_inflate_generic_method): Revert to two
19200         argument version.
19201         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19202         (mono_class_inflate_generic_method_full): Add.
19203         * class.c (mono_class_inflate_generic_method_full): Rename from
19204         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19205         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19206         * loader.c, reflection.c: Update to changes.
19208 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19210         * icall.c: const fixes and small improvements.
19212 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19214         * threadpool.c: for asynchronous connect(), enable the same workaround
19215         for BSD 6 as for the Mac. Fixes bug #77637.
19217 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19219         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19220         formatted classes. Fixes #77524.
19222 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19224         * class.c (inflate_generic_type): Add a couple more
19225         micro-optimizations.
19226         (inflate_generic_context): Don't use the 'gmethod' from
19227         'inflate_with'.
19228         (mono_class_inflate_generic_method): If the method has generic
19229         parameters, but the passed-in context doesn't have a 'gmethod',
19230         create one.  Use the possibly simplified generic instantiation
19231         from the declaring class instead of the one passed in.
19233 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19235         Make generic method signature and method header handling lazy.
19236         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19237         (inflate_generic_header): Likewise.
19238         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19239         parameter to avoid inflating types.
19240         (mono_get_inflated_method): Empty out.
19241         * class.h (mono_class_inflate_generic_method): Update to changes.
19242         * loader.c (mono_get_method_from_token): Don't parse signature for
19243         generic methods, nor methods of generic classes.
19244         (mono_method_signature): Rename from 'mono_method_signature'.
19245         Inflate signature on demand.
19246         (mono_method_get_header): Inflate method header on demand.
19247         * reflection.c: Update to changes.
19249 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19251         * metadata.c (mono_metadata_inflate_generic_inst): If the
19252         instantiation is closed, don't bother expanding it in the new
19253         context.
19254         * class.c (inflate_generic_class): If the generic instantiation
19255         doesn't change after inflation, return the argument itself.
19256         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19257         Add bounds checks.
19258         (inflate_generic_context): If neither the generic class nor the
19259         generic method instantiations change, return the original context.
19260         * reflection.c (mono_method_get_object): Do
19261         'mono_get_inflated_method' before accessing the ->klass field.
19262         (inflate_mono_method): Don't create a MonoGenericMethod unless
19263         necessary.
19264         (inflate_method): Don't pass a constructed type as the declaring
19265         type of a methodbuilder.
19267 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19269         * object.c: fix memory overwrite.
19271 2006-02-22  Dick Porter  <dick@ximian.com>
19273         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19274         it doesn't work any more.
19275         (mono_threads_request_thread_dump): Fix unused variable warnings.
19277 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19279         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19280         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19281         the public header file.
19283 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19285         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19287 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19289         * class-internals.h, object.c: reduce the size of MonoVTable
19290         and store the interface_offsets array at negative offsets.
19292 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19294         * metadata.c: tweak table descriptors data structures to reduce
19295         size and runtime relocations.
19297 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19299         * marshal.c: fix some types and opcodes to be type-safe
19300         in marshaling wrappers.
19302 2006-02-21  Ankit Jain  <jankit@novell.com>
19304         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19306 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19308         * metadata.c (get_constraints): Relax debugging checks for monodis.
19310 2006-02-21  Ankit Jain  <jankit@novell.com>
19312         * metadata.c (mono_metadata_load_generic_params): Move the code
19313         checking for ambiguous generic params from here to mono/dis/get.c
19314         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19316 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19318         Fix assertion triggered when compiling nemerle.
19319         * class.c (mono_get_shared_generic_inst): Rename from
19320         get_shared_inst and make non-static.
19321         * loader.c (mono_get_shared_generic_method): New.  Used to create
19322         the MonoGenericContext-equivalent of a MonoGenericContainer.
19323         (mono_get_method_from_token): Initialize the 'context' field of
19324         the created MonoGenericContainer.
19325         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19326         * metadata.c (get_constraints): Add sanity check.
19327         * class-internals.h: Add new internal methods.
19329         * reflection.c (verify_safe_for_managed_space): New sanity check.
19330         Currently checks that owner-less generic parameters aren't allowed
19331         in managed space.
19332         (mono_type_get_object): Use it.
19333         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19334         that are now in mono_type_get_object.
19335         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19337 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19339         * metadata.c (mono_type_create_from_typespec): Rename from
19340         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19341         argument and caching of types in the generic container.
19342         (unwrap_arrays, find_generic_param): Remove.
19343         * metadata-internals.h: Update.
19344         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19346 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19348         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19350         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19351         return values. Fixes #77581.
19353         * class.c (mono_fnptr_class_get): Switch name and name_space.
19355         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19356         classes and add support for [In, Out] attributes.
19357         (mono_marshal_free_asany): Ditto. Fixes #77524.
19359 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19361         * class.c (mono_class_from_generic_parameter): Make more robust to
19362         incomplete MonoGenericContainers from monodis.
19364 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19366         * class-internals.h: added some more exception types.
19367         * class.c, metadata.c: added a few checks to handle missing
19368         types.
19370 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19372         Use owner-less generic-params some more.
19373         * class.c (my_mono_class_from_generic_parameter): Remove.
19374         (mono_class_from_generic_parameter): Handle null image,
19375         param->name and param->owner.
19376         (mono_class_from_mono_type): Update.
19377         (mono_class_create_from_typespec): Remove 'container' parameter.
19378         If that parameter is non-null, the result is always inflated by
19379         'mono_class_get_full' anyway.
19380         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19381         parameter.
19382         (mono_class_get_full): Update.
19384         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19385         instance is not open, don't bother inflating.
19386         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19387         parse metadata for inflated classes.
19388         (_mono_class_get): Change GenericContext* parameter to
19389         GenericContainer*.
19390         (mono_class_create_from_typespec): Likewise.  Simplify, and
19391         implement trivially.  All the cases are handled in
19392         mono_class_from_mono_type.  Don't inflate returned class.
19393         (mono_class_get_full): Delegate GENERICINST optimization to
19394         inflate_generic_type.
19395         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19397 2006-02-16  Dick Porter  <dick@ximian.com>
19399         * socket-io.c (create_object_from_sockaddr): Fix typo.
19400         (create_sockaddr_from_object): Check array lengths before
19401         potentially accessing items off the end.
19402         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19403         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19404         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19405         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19406         length checks to avoid wraparound overflows.
19407         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19408         contents of the array of sockets
19409         (hostent_to_IPHostEntry2)
19410         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19411         Check return value of inet_ntop ().
19412         (addrinfo_to_IPHostEntry): Fix typo
19414 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19416         Type metadata parsing doesn't use generic-instantiation information.
19417         * metadata.c (mono_metadata_parse_array_full): Change
19418         MonoGenericContext* parameter to MonoGenericContainer*.
19419         (mono_metadata_parse_type_full): Likewise.
19420         (mono_type_create_from_typespec_full): Likewise.
19421         (mono_metadata_parse_mh_full): Likewise.
19422         (mono_metadata_parse_generic_inst): Likewise.
19423         (do_mono_metadata_parse_generic_class): Likewise.
19424         (do_mono_metadata_parse_type): Likewise.
19425         * metadata-internals.h: Update to changes.
19426         * class.c (mono_class_find_enum_basetype): Likewise.
19427         (mono_class_setup_fields): Likewise.
19428         (mono_class_create_from_typespec): Likewise.
19429         * loader.c (method_from_methodspec): Likewise.
19430         (mono_get_method_from_token): Likewise.
19431         (mono_method_get_header): Likewise.
19433 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19435         * marshal.c: handle additional GENERICINST case (patch from
19436         Thong Nguyen <tum@veridicus.com>).
19437         Fix a few cases where LDIND_I/STIND_I was used for references.
19439 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19441         * reflection.c (mono_reflection_get_token): Remove unused variable.
19443 2006-02-16  Martin Baulig  <martin@ximian.com>
19445         * reflection.c (mono_reflection_get_token): Add support for fields
19446         in instantiated generic types.
19448         * icall.c
19449         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19451 2006-02-15  Martin Baulig  <martin@ximian.com>
19453         * icall.c
19454         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19455         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19456         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19457         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19459 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19461         * class.c, metadata.c, metadata.h, object.c, icall.c,
19462         marshal.c: changed mono_type_get_underlying_type () to do
19463         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19464         Fixed handling of instantiated generic valuetypes (bug #75479).
19466 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19468         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19469         Delegate to mono_metadata_decode_value, and work on the returned value.
19471         * icall.c (ves_icall_MonoType_GetGenericArguments):
19472         Add consistency check here too.
19473         
19474 2006-02-15  Ankit Jain  <jankit@novell.com>
19476         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19477         char/short etc.
19479 2006-02-15  Ankit Jain  <jankit@novell.com>
19481         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19482         signed values, used only for representing lower bounds of arrays.
19483         (mono_metadata_parse_array_full): Use new
19484         mono_metadata_decode_signed_value to decode lower bounds.
19486 2006-02-14  Martin Baulig  <martin@ximian.com>
19488         * reflection.c
19489         (mono_reflection_get_token): Support "MonoGenericMethod" and
19490         "MonoGenericCMethod" and allow generic instances / methods.
19492 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19494         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19495         to obtain the terminal size using an ioctl.
19497         * object.c (mono_nullable_init): Revert this as nullable reference
19498         types are not valid.
19499         (mono_nullable_box): Ditto.
19501 2006-02-09  Dick Porter  <dick@ximian.com>
19503         * threads.c (mono_thread_detach): Drop a reference to the thread
19504         we're detaching.
19506 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19508         * object.c (mono_nullable_init): Handle nullable reference types.
19509         (mono_nullable_box): Ditto. Fixes #77446.
19511 2006-02-07  Martin Baulig  <martin@ximian.com>
19513         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19515 2006-02-07  Ankit Jain  <jankit@novell.com>
19517         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19518         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19519         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19520         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19521         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19522         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19524 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19526         * class.c (mono_class_create_generic): Set type_token as well.
19528         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19529         compatible with MS.
19531 2006-02-02  Martin Baulig  <martin@ximian.com>
19533         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19534         has never been used so far.
19536 2006-02-02  Martin Baulig  <martin@ximian.com>
19538         * mono-debug-debugger.h: Changed comment at the top of this file;
19539         the header is not installed, but it's safe to #include it from
19540         within the JIT.
19542         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19543         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19545 2006-02-02  Martin Baulig  <martin@ximian.com>
19547         * mono-debug.h
19548         (MonoSymbolTable): Removed the `metadata_info' field.
19550         * mono-debug.c
19551         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19553         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19554         (mono_debugger_add_builtin_types): Removed.
19555         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19556         (mono_debugger_create_notification_function): We now operate on a
19557         pre-allocated area; take a `gpointer' and return `void'.
19559         * mono-debug-debugger.c
19560         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19561         (mono_debugger_add_builtin_types): Removed.
19563 2006-02-02  Martin Baulig  <martin@ximian.com>
19565         * threads.c (mono_debugger_create_all_threads): New public method.
19567 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19569         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19570         breaks on several platforms.
19572 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19574         * assembly.c: the VS.NET build doesn't supply default values for
19575         MONO_ASSEMBLIES and MONO_CFG_DIR.
19577 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19579         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19580         helper function.
19582         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19584         * loader.c (method_from_memberref): Fix a warning.
19586         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19588         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19589         with explicit layout. Fixes #77433.
19591 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19593         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19594         max_interface_id is initialized before using it. Fixes #77398.
19595         (ves_icall_Type_GetInterfaces): Ditto.
19597 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19599         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19600         allocate memory for parameter attributes when parsing memberref
19601         signatures.
19602         * loader.c (mono_loader_set_error_method_load): Don't warn.
19603         (method_from_memberref): Ensure MissingMethodException gets thrown
19604         if method is not found.  Make warning more informative.
19606 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19608         Fix #77397
19609         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19610         return true if is byref.
19611         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19612         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19613         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19615 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19617         Fix tests/find-method.2.il
19618         * loader.c (find_method, find_method_in_class): Remove is_inflated
19619         argument.  Revert 2006-01-18 change.
19620         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19621         is generic, search for method in its generic definition.
19622         * class.c (mono_class_setup_vtable_general): Print generic
19623         arguments of generic types in debugging printf.
19625 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19627         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19629         * threads.c (mono_threads_request_thread_dump): New helper function.
19631 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19633         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19635 2006-01-25  Ankit Jain  <jankit@novell.com>
19637         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19638         move definition to ..
19639         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19640         
19641 2006-01-25  Ankit Jain  <jankit@novell.com>
19642             Raja R Harinath  <rharinath@novell.com>
19644         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19645         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19646         as necessary.
19648 2006-01-25  Martin Baulig  <martin@ximian.com>
19650         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19651         `MonoDebuggerThread' into debug-debugger.c.
19653 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19655         * profiler.c: fix printing of data.
19657 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19659         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19660           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19662 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19664         * object.c: fix deadlock related to string interning.
19666 2006-01-23  Martin Baulig  <martin@ximian.com>
19668         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19670         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19672 2006-01-23  Martin Baulig  <martin@ximian.com>
19674         * mono-debug.h: Moved the prototypes of some functions which are
19675         used by the JIT here from mono-debug-debugger.h.
19677 2006-01-21  Martin Baulig  <martin@ximian.com>
19679         * Makefile.am: Don't install mono-debug-debugger.h.
19681 2006-01-21  Martin Baulig  <martin@ximian.com>
19683         * mono-debug-debugger.h: Enforce the private status of this header
19684         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19685         Moved some stuff from mono-debugger-jit-wrapper.h here.
19687 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19689         * class.c (mono_class_from_typeref): Add a sanity test to help
19690         catch lack of assembly load/search hooks.
19692 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19694         * marshal.c (emit_struct_conv): Relax the fields with same offset
19695         check even more. Fixes #77230.
19697 2006-01-18  Martin Baulig  <martin@ximian.com>
19699         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19700         argument; if false, we compare the uninstantiated signatures.
19701         (method_from_memberref): Compare the uninstantiated signatures;
19702         fixes #76417.
19704 2006-01-18  Robert Jordan  <robertj@gmx.net>
19706         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19707         Clear the weak link. Fixes bug #77170.
19709         * gc.c (mono_gchandle_free):
19710         Reflect *-gc.c changes (tiny optimization).
19712 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
19714         * metadata.c (mono_metadata_signature_dup): Applied patch from
19715         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
19716         Fixes #77288.
19718 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
19720         * marshal.c (emit_struct_conv): Allow fields with the same offset when
19721         marshalling from native to managed code. Fixes #77230.
19723 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19725         * threadpool.c: fix problem (Mac only) when more than one asynchronous
19726         connect. Fixes bug #77020.
19728 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
19730         * class.c: fixed id assignement for nested interfaces (bug #77275).
19731         Added also better info for --print-vtable debugging.
19733 2006-01-12  Martin Baulig  <martin@ximian.com>
19735         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
19736         interfaces on-the-fly; fixes #76625.
19738         * class-internals.h
19739         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
19740         don't need that anymore.
19742 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19744         * socket-io.c
19745         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19746         To avoid initing the nested_classes when not needed I turned the
19747         PeerCredData as a toplevel internal class, as it has to be shared
19748         anyways. 
19750         Fixes the CASA issue.
19752 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
19754         * domain.c: Accessors for MonoJitInfo
19756         * profiler-private.h: Add jitinfo to the end jit hook
19758         * profiler.[ch]: Define new hooks, called after jitting which give
19759         the MonoJitInfo that was compiled
19761 2006-01-10  Martin Baulig  <martin@ximian.com>
19763         * class.c (mono_class_setup_events): Add support for generic
19764         classes; fixes #76440.
19766 2006-01-06  Raja R Harinath  <rharinath@novell.com>
19768         Fix #77160.
19769         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
19770         on passed-in method.
19772 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19774         * object.c (mono_runtime_invoke_array): Add Nullable support.
19776         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
19778 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
19780         * file-io.c: Don't consider sockets as directory and avoid an endless
19781         loop. Fix bug #76966.
19783 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19785         * object.c (mono_nullable_init): New helper function.
19786         (mono_nullable_box): Ditto.
19788         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
19790         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
19792         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
19793         
19794 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
19796         * class.c (mono_class_is_assignable_from): Make T assignable to 
19797         Nullable<T>.
19799 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
19801         * appdomain.c: Bump corlib version to 46.
19802         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
19803         serialization purpose) and changed ves_icall_System_Reflection_
19804         Assembly_get_code_base signature to accept a boolean (to escape, or 
19805         not, the assembly code base).
19807 2005-12-23  Dick Porter  <dick@ximian.com>
19809         * icall.c: 
19810         * threads-types.h: 
19811         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
19812         CreateEvent icall now returns "created" boolean parameter.
19814 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
19816         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
19817         #76967.
19819         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
19820         when attr_klass is an interface. Fixes #77045.
19822 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
19824         * marshal.c (emit_struct_conv): Fix previous patch.
19825         
19826         * marshal.c (emit_struct_conv): Add a check for fields with the same
19827         offset.
19829 2005-12-20  Raja R Harinath  <rharinath@novell.com>
19831         Fix regression in Mono.C5.
19832         * class.c (mono_class_create_generic): If 'klass' is an interface
19833         set up the interface offsets.
19834         (mono_class_is_assignable_from): Don't throw away generic arguments.
19836 2005-12-19  Raja R Harinath  <rharinath@novell.com>
19838         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
19839         type parameters.
19841 2005-12-15  Raja R Harinath  <rharinath@novell.com>
19843         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
19844         dead store.
19845         (do_mono_metadata_parse_generic_class): Don't pass the current
19846         generic context when parsing the type being instantiated: it
19847         cannot use it, anyway.
19849         * loader.c (method_from_memberref): Don't inflate a signature if
19850         it doesn't contain any type parameters.
19852 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
19854         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
19856 2005-12-14  Martin Baulig  <martin@ximian.com>
19858         * class.c
19859         (mono_type_get_name_recurse): Don't return null for type
19860         parameters and open generic classes.
19861         (mono_class_setup_methods): Don't exclude generic instances.
19862         (mono_get_unique_iid): Use different IDs for different
19863         instantiations of the same generic type.
19864         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19865         open generic instances; create a normal vtable for closed generic
19866         instances.
19867         (mono_class_setup_vtable_general): We're now also called for
19868         closed generic instances.
19870         * reflection.c
19871         (mono_reflection_bind_generic_parameters): Correctly use
19872         mono_metadata_lookup_generic_inst() everywhere.
19874 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
19876         * object.c (mono_class_create_runtime_vtable): Call 
19877         mono_class_setup_vtable ().
19879         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
19880         function.
19881         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
19882         #76959.
19884         * loader.c (mono_loader_set_error_type_load): Print the type load
19885         warnings to the console so they are more visible to the user.
19886         (mono_loader_set_error_method_load): Ditto.
19888         * reflection.c (ensure_runtime_vtable): Revert the last change as it
19889         is still broken.
19890         
19891         * reflection.c (ensure_runtime_vtable): Fix build.
19893         * reflection.c (ensure_runtime_vtable): Disable an optimization which
19894         doesn't work in all cases.
19896 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
19898         * object.c (mono_array_new_full): Treat a single dimensional array
19899         with 0 lower bounds as an szarray. Fixes #76973.
19901         * reflection.c (custom_attr_visible): Really fix this.
19903 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
19905         * reflection.c (custom_attr_visible): Allow nested public attributes
19906         as well.
19908         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
19909         interface check.
19911 2005-12-12  Raja R Harinath  <harinath@gmail.com>
19913         * class.c (set_generic_param_owner): Delete.
19914         (mono_class_create_from_typedef): Don't set ->owner field of
19915         generic parameters to "param containers" of enclosing classes.
19916         * reflection.c (mono_reflection_initialize_generic_parameter):
19917         Likewise.
19919 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
19921         * reflection.c (custom_attr_visible): Fix build.
19923 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
19925         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
19926         private attributes.
19927         
19928         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
19929         handling of null parameter defaults.
19931 2005-12-09  Raja R Harinath  <rharinath@novell.com>
19933         * class.c (mono_class_from_generic_parameter): Don't set
19934         klass->generic_container.
19935         (my_mono_class_from_generic_parameter): Likewise.
19937 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
19939         * reflection.c (load_public_key): Fix a warning.
19940         (method_encode_code): Fix unaligned accesses.
19942 2005-12-07  Martin Baulig  <martin@ximian.com>
19944         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
19946         * reflection.c
19947         (write_generic_param_entry): Encode our custom attrs.
19949         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
19951 2005-12-07  Martin Baulig  <martin@ximian.com>
19953         * reflection.c (encode_new_constraint): Removed; we don't use the
19954         `NewConstraintAttribute' anymore.
19956 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
19958         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
19959         not fire a TypeResolve event when Assembly.GetType () is called.
19961 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
19963         Beginning of support for nullable types in the runtime. Parts of
19964         this patch are from Martin.
19966         * appdomain.c (MONO_CORLIB_VERSION): Bump
19968         * domain.c (mono_init_internal): get the nullable type
19970         * class.c (mono_class_is_nullable): New method
19971         (mono_class_get_nullable_param): New mehod
19972         (mono_class_create_generic): In types T? set cast_class to T
19974         * class-internals.h (MonoDefaults): new nullable default class
19975         (mono_class_get_nullable_param, mono_class_get_nullable_param):
19976         new methods.
19978 2005-12-05  Raja R Harinath  <rharinath@novell.com>
19980         * metadata.c (select_container): New.  Refactor code to select the
19981         appropriate GenericContainer given the type of generic parameter
19982         we are looking for.
19983         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
19984         not a MonoGenericContext.  Use select_container.  Update parameters.
19985         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
19986         and MONO_TYPE_MVAR.
19987         (unwrap_arrays): Remove duplicate tests.
19988         (find_generic_param): Rename from 'has_same_context'.  Now walks a
19989         generic instantiated class to find any arguments that are generic
19990         parameters.
19991         (mono_type_create_from_typespec_full): Use find_generic_param to
19992         avoid evicting some generic instantiations from the typespec
19993         cache.
19995 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
19997         * reflection.c: fixed writing of doubles on ARM FPA.
19999 2005-12-02  Robert Jordan  <robertj@gmx.net>
20001         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20003 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20005         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20006         least on SUSE 10 they are not the same (on debian, they are just the
20007         same thing).
20009 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20011         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20012         DeclaringType for VARs and MVARs.
20013         * class.c (set_generic_param_owner): Fix initialization of owner
20014         fields.
20016 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20018         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20020 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20022         * threadpool.c: workaround for a bug that shows up on the Mac:
20023         select()+connect() on a blocking socket is not like it should
20024         be, so we proceed to connect() in that case, wasting the I/O
20025         threadpool thread until connect succeedes. Fixes bug #75436.
20027 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20029         * threadpool.c: fix typo when setting file descriptor states.
20031 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20033         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20034         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20035         create a temporary signature container.
20036         (mono_metadata_parse_generic_param): Update to changes.
20037         (mono_type_create_from_typespec_full): Update to changes.
20038         * loader.c (method_from_memberref): Don't use a
20039         MonoGenericContainer while parsing a memberref signature.
20040         (method_from_methodspec): Remove dead-store of the 'container'
20041         variable.  It's overwritten before use.
20043         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20044         checks tighter.
20045         (mono_metadata_parse_generic_param): Likewise.
20046         * loader.c (find_method_in_class): Does not need a
20047         MonoGenericContainer.  Use 'mono_method_signature' rather than
20048         'mono_method_signature_full'.
20049         (find_method, mono_get_method_constrained, method_from_memberref):
20050         Update to changes.
20052         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20053         owner-less generic-parameters are never evicted from the typespec
20054         cache.
20056         * loader.c (method_from_memberref): Don't use the current context
20057         when parsing signatures.
20058         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20060         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20061         side-effects in g_assert.
20062         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20063         that we don't potentially lose information.
20065 2005-11-26  Dick Porter  <dick@ximian.com>
20067         * icall.c:
20068         * threads.c: icalls to implement basic (ie, not named)
20069         System.Threading.Semaphore.
20071 2005-11-24  Dick Porter  <dick@ximian.com>
20073         * process.c
20074         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20075         Use GetProcessId() if it's available.
20077 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20079         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20081 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20082             Ankit Jain  <jankit@novell.com>
20084         * loader.c (mono_get_method_from_token): Initialize 'method' field
20085         of all generic parameters before parsing the signature.  Remove
20086         code that "fixed"-up MVAR references.
20088 2005-11-23  Ankit Jain  <jankit@novell.com>
20090         * metadata.c (mono_metadata_has_generic_params):
20091         (mono_metadata_load_generic_param_constraints):
20092         (mono_metadata_load_generic_params): Move duplicate code ...
20093         (mono_metadata_get_generic_param_row): ... here. Returns the
20094         first row-id in GenericParam table for a given owner (token).
20095         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20096         prototype.
20098 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20099             Ankit Jain  <jankit@novell.com>
20101         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20102         comparing VARs too.
20103         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20104         type->data.generic_param only if the type is an MVAR.
20105         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20106         leak owner-less VARs and MVARs into managed space.
20108 2005-11-21  Martin Baulig  <martin@ximian.com>
20110         * class-internals.h
20111         (MonoMethod): Moved the `generic_container' here from
20112         `MonoMethodNormal' since we now also need it for
20113         `MonoMethodPInvoke';
20114         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20115         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20116         an union containing both `MonoMethodNormal' and
20117         `MonoMethodPInvoke'.
20119         * loader.c
20120         (mono_get_method_from_token): Allow implementing generic methods
20121         as interncalls.
20123         * threads.c
20124         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20125         icall.
20127 2005-11-17  Dick Porter  <dick@ximian.com>
20129         * icall.c: 
20130         * process.h: 
20131         * process.c: Split the Process Start_internal icall into
20132         ShellExecuteEx_internal and CreateProcess_internal, which are
20133         called depending on whether UseShellExecute is true.  Fixes bug
20134         76670.
20136         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20138 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20140         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20141         'msize' parameters, use the information in 'mspec' instead.
20142         (emit_object_to_ptr_conv): Ditto.
20144         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20145         fields out of order. Fixes #76733.
20147 2005-11-17  Ankit Jain  <jankit@novell.com>
20149         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20151 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20153         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20154           bug #76575.
20156 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20158         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20159         for types with non-auto layout. Fixes #76717.
20161 2005-11-16  Ankit Jain  <jankit@novell.com>
20163         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20164         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20165         if generic_context is null.
20166           (mono_metadata_generic_param_equal): param->owner can be null.
20167           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20168         null.
20170 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20172         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20173         the correct value.
20175 2005-11-15  Martin Baulig  <martin@ximian.com>
20177         * object.c (set_value): Use mono_class_from_mono_type() instead of
20178         the hack for generic instances; fixes #76136.
20180 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20182         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20183         fields.
20185         * image.c (load_metadata_ptrs): Initialize the new fields.
20187         * reflection.c (create_dynamic_mono_image): Ditto.
20189         * reflection.c (build_compressed_metadata): Use the new fields.
20191         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20192         icall.
20194         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20195         icall.
20196         
20197 2005-11-15  Ankit Jain  <jankit@novell.com>
20198             Raja R Harinath  <harinath@gmail.com>
20200         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20201         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20202         new per-generic_container cache if the cached MonoType's context matches
20203         the current context.
20204           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20205         to the expected context.
20206           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20208 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20210         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20211         we changed the signature of an icall.
20212         * icall.c: Modify to mono_double_ParseImpl return true/false 
20213         depending on the success, instead of throwing the exception. This will
20214         help us in Double.TryParse methods.
20215         
20216 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20218         * marshal.c (emit_marshal_object): Throw an exception when
20219         marshalling 'object' instead of crashing. Fixes #76696.
20221 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20223         * class-internals.h: Add prototype for mono_type_get_full_name ().
20225 2005-11-11  Dick Porter  <dick@ximian.com>
20227         * threads.c (mono_thread_manage): Make sure the main thread has
20228         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20230 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20232         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20233         console about the missing type.
20234         (mono_loader_set_error_method_load): Ditto.
20236 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20238         * mono-config.c (mono_get_config_dir): Set the system defaults if
20239         none is specified.
20241         * assembly.c (mono_set_dirs): New API entry point to set the
20242         assembly and the config directory in one call
20244 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20246         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20247         the ftnptr was created from a delegate in a domain other than the
20248         current domain. Fixes #75377.
20250         * exception.h exception.c: Add mono_get_exception_not_supported ().
20252 2005-11-08  Martin Baulig  <martin@ximian.com>
20254         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20256 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20258         * security-manager.h: Added definitions to deal with strongname key 
20259         pairs bigger (and smaller) than 1024 bits.
20260         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20261         adjust wrt the public key length being used.
20263 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20265         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20266           Windows build (r51396-51397).
20268 2005-11-03  Martin Baulig  <martin@ximian.com>
20270         * class.c (mono_class_setup_vtable_general): Also add generic
20271         methods to the vtable; fixes #76581.
20273 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20275         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20276         sure that we lookup GetString method from the System.Text.Encoding
20277         class, not the derived class or we get an empty method.
20279         Fixed class #76612.
20281 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20283         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20284         if it has been previously set (embedders). 
20286         Make mono_set_rootdir available also on Unix.
20288 005-10-24  Robert Jordan  <robertj@gmx.net>
20290         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20292 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20294         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20295         only calls which are made to native code use this flag.
20297         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20299 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20301         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20302         Add support for FieldBuilders.
20304 2005-10-29  Martin Baulig  <martin@ximian.com>
20306         * mono-debug.c
20307         (mono_debug_using_mono_debugger): New public method; returns
20308         whether we're running inside the debugger.
20310 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20312         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20313         for Method/Constructor/FieldBuilders.
20315 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20317         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20318         and fields as well.
20320 2005-10-26  Martin Baulig  <martin@ximian.com>
20322         * mono-debug-debugger.c
20323         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20325 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20327         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20328         integer to isspace.
20330 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20332         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20333         when passing valuetypes byref. Fixes #76502.
20335 2005-10-19  Jackson Harper  <jackson@ximian.com>
20337         * profiler.c: Don't put a . in front of types that are not in a
20338         namespace.
20340 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20342         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20344 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20346         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20347         #76436.
20348         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20350 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20352         * assembly.c metadata-internals.h icall.c: Define an additional
20353         parameter for mono_assembly_name_parse_full, so we can avoid creating
20354         S.R.AssemblyName.Version when no version info wasn't passed.
20355         
20356 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20358         * class.c (mono_type_get_full_name): Reimplement method that was
20359         removed. 
20361         * image.c: Some docs
20363 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20365         * profiler.c (output_newobj_profile): Fix printing of Total memory
20366         on x86.
20368 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20370         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20372 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20374         * threads.c: remove debug output.
20376 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20378         * threads.c (mono_thread_manage): Fix crashes if more than 64
20379         threads need to be aborted. Hopefully fixes #75899.
20381         * assembly.c (mono_stringify_assembly_name): New helper function.
20383         * class.c: Use mono_stringify_assembly_name instead of the similar
20384         static function.
20386         * assembly.h assembly.c: Add support for calling a postload search 
20387         hook if an assembly cannot be loaded.
20389         * appdomain.c: Register new search hooks which call the AssemblyResolve
20390         events in AppDomain. Fixes #75231
20392 2005-10-07  Martin Baulig  <martin@ximian.com>
20394         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20395         methods without debug info.
20397 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20399         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20400         wrappers.
20402 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20404         * file-io.c: now that we return symlinks, use lstat and, when the file
20405         is a symbolic link, stat, to get the file attributes. Also avoid the
20406         conversion to/from utf16/external.
20408 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20410         * class.c (mono_class_layout_fields): Compute klass->has_references
20411         correctly if an embedded valuetype is not yet initialized. Fixes
20412         #76331.
20414 2005-10-04  Martin Baulig  <martin@ximian.com>
20416         * metadata.c
20417         (mono_metadata_load_generic_param_constraints): New public
20418         function; splitted the constraints loading out from
20419         mono_metadata_load_generic_params().
20421         * class.c (mono_class_create_from_typedef): Call
20422         mono_metadata_load_generic_param_constraints() after setting up
20423         the type and creating our parent; fixes #75329.
20425 2005-10-04  Martin Baulig  <martin@ximian.com>
20427         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20428         non-dynamic parent classes.
20430 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20432         * file-io.c : win32 build fix (ETXTBSY seems not found).
20434 2005-10-04  Martin Baulig  <martin@ximian.com>
20436         * reflection.c
20437         (mono_image_get_methodspec_token): Make the cache actually work;
20438         fixes #75974.
20440 2005-10-04  Martin Baulig  <martin@ximian.com>
20442         * class.c (mono_class_name_from_token): Removed the unneccessary
20443         `MonoGenericContext *' argument.
20445 2005-10-04  Martin Baulig  <martin@ximian.com>
20447         * loader.c
20448         (method_from_methodspec): Make the caching work again; fixes the
20449         performance regression from #76262.
20451 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20453         * file-io.c:
20454         * file-io.h:
20455         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20456         GetFileSystemEntries that performs the same work but without going
20457         into io-layer, locking, etc.
20459 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20461         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20462         ThreadState_Stopped as well. Fixes #76047.
20464 2005-09-29  Martin Baulig  <martin@ximian.com>
20466         * class.c
20467         (inflate_generic_context): If the new context has a `gmethod', set
20468         its `container' that that gmethod's `container'.
20470         * metadata.c
20471         (mono_metadata_parse_generic_param): Simplify things;
20472         `generic_container = generic_context->container;' is just fine.
20474         * loader.c (method_from_methodspec): Code cleanups.
20476 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20478         * decimal.c: fix warning (and let gcc generate correct
20479         code on ARM with optimizations).
20481 2005-09-28  Martin Baulig  <martin@ximian.com>
20483         * loader.c
20484         (method_from_memberref): Added `MonoGenericContext *class_context'
20485         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20486         (method_from_methodspec): If we're a memberref, use the enclosing
20487         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20489 2005-09-28  Martin Baulig  <martin@ximian.com>
20491         * object.c (mono_runtime_invoke_array): Added support for
20492         MONO_TYPE_GENERICINST; fixes #75917.
20494 2005-09-27  Martin Baulig  <martin@ximian.com>
20496         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20497         `k->byval_arg.type' to determine the actual type.
20499         * loader.c (method_from_methodspec): Removed some hacks.
20501 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20503         * class-internals.h (mono_field_is_deleted): Do the test for
20504         rtspecialname before we check the actual name of the field. This
20505         prevents us from dereferencing a pointer into the string table,
20506         saving us from accessing a few pages
20508         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20509         macros. This will allow a deadlock debugger to easily be plugged
20510         in.
20512 2005-09-27  Martin Baulig  <martin@ximian.com>
20514         * loader.c (method_from_methodspec): Create a "signature"
20515         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20517 2005-09-27  Martin Baulig  <martin@ximian.com>
20519         * class.c
20520         (inflate_generic_class): Correctly set the new context's
20521         container.
20523         * loader.c
20524         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20525         instead of a `MonoGenericContext *'.
20526         (mono_method_signature_full): Take a `MonoGenericContainer *'
20527         instead of a `MonoGenericContext *'.
20529         * metadata.c
20530         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20531         instead of a `MonoGenericContext *'.
20532         (mono_metadata_parse_method_signature_full): Likewise.
20534 2005-09-26  Martin Baulig  <martin@ximian.com>
20536         * class.c
20537         (mono_class_from_generic_parameter): Set `klass->generic_container'
20538         (mono_class_from_generic_parameter): Likewise.
20539         (mono_bounded_array_class_get): We inherit the generic container
20540         from the element class.
20542         * loader.c
20543         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20544         argument rather than computing it here.
20545         (method_from_memberref): Correctly set the generic context before
20546         parsing the signature.  Fixes #75681.
20548 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20550         * object.c (mono_class_has_special_static_fields): Fix warnings.
20552 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20554         * assembly.c: Add parse_public_key function, to
20555         par the public keys. Also added mono_assembly_name_parse_full,
20556         to define it the parsed key should be freed or not.
20557         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20558         to parse a long format assembly name.
20559         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20560         private, since calling it to preserve the key requires
20561         freeing it manually.
20562         
20563 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20565         * locales.c : removed HAVE_ICU part.
20567 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20569         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20570         field_is_special_static if the klass has no special static fields.
20572         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20573         (MonoCachedClassInfo): Likewise.
20575         * object.c (mono_class_has_special_static_fields): New helper function.
20577 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20579         * class.c (mono_class_create_from_typedef): Don't call 
20580         interfaces_from_typedef_full for enums.
20581         (mono_class_create_from_typedef): Compute the base types of enums directly
20582         without calling mono_class_setup_fields ().
20583         (mono_class_find_enum_basetype): New helper function.
20585         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20586         one place inside the string heap.
20587         
20588 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20590         * class.c: locking fixes, code cleanups, some docs added.
20591         Allocate some data structures in the image mempool.
20593 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20595         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20596         the example code.
20597         
20598 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20600         * class-internals.h, class.c, reflection.c: reduce memory taken by
20601         MonoClass.
20603 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20605         * metadata.c, metadata.h, loader.h: documentation updates, code and
20606         API cleanups.
20608 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20610         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20611         the example code.
20613         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20614         page faults caused by the runtime while reading metadata.
20616 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20618         * socket-io.c: the field names were changed 3 months ago and no one
20619         realized until bug #76077 got filed!
20621 2005-09-20  Martin Baulig  <martin@ximian.com>
20623         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20625 2005-09-20  Martin Baulig  <martin@ximian.com>
20627         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20628         write the rank into the class entry.
20630 2005-09-20  Martin Baulig  <martin@ximian.com>
20632         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20634 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20636         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20638         * icall.c (custom_attrs_defined_internal): New icall.
20640         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20641         function.
20642         (mono_custom_attrs_construct_by_type): New helper function.
20644 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20646         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20647         terminate the resulting string. Fixes #76123.
20649 2005-09-16  Martin Baulig  <martin@ximian.com>
20651         * mono-debug.c
20652         (mono_debug_add_method): Ignore inflated methods for the moment.
20654 2005-09-14  Martin Baulig  <martin@ximian.com>
20656         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20658 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20660         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20661         return a success/failure indication.
20662         (mono_metadata_interfaces_from_typedef_full): Ditto.
20663         (get_constraints): Ditto.
20665 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20667         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20668         
20669         * marshal.c (emit_marshal_array): Add support for returning string
20670         arrays from delegates. Fixes #76063.
20672         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20674 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20676         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20677         icall.
20679 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20681         * reflection.c icall.c: Fix after mono_get_exception_type_load
20682         signature change.
20684         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20685         (mono_assembly_load_reference): Use the new helper.
20687         * class-internals.h (MonoLoaderError): New structure containing 
20688         information about type loading errors.
20690         * class-internals.h loader.c: Add APIs to store per-thread loader
20691         error information.
20693         * loader.c class.c: Set the loader error if needed.
20695         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20697 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20699         * decimal.c: fixed to handle the broken ARM fp format.
20701 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20703         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20704         broken.
20706 2005-09-06  Martin Baulig  <martin@ximian.com>
20708         * domain.c (supported_runtimes): Added v2.0.50727.
20710 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20712         * culture-info.h: reduce the size of some structures.
20714 2005-09-05  Martin Baulig  <martin@ximian.com>
20716         Reflect latest API changes in the August CTP.
20718         * icall.c
20719         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
20720         ("MonoType.HasGenericArguments"): Removed.
20721         ("MonoMethod.BindGenericParameters"): Renamed to
20722         "MakeGenericMethod".
20723         ("MethodBuilder.BindGenericParameters"): Renamed to
20724         "MakeGenericMethod".    
20726 2005-09-05  Martin Baulig  <martin@ximian.com>
20728         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
20730 2005-09-05  Martin Baulig  <martin@ximian.com>
20732         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20734         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
20735         generic_container is non-NULL.
20737 2005-09-05  Martin Baulig  <martin@ximian.com>
20739         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20741         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
20743 2005-08-29  Michal Moskal  <malekith@nemerle.org>
20745         * reflection.c (encode_locals,
20746         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
20747         for large generic types.
20749 2005-09-05  Martin Baulig  <martin@ximian.com>
20751         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20753         * class.c (mono_dup_array_type): New public method.
20754         (mono_metadata_signature_deep_dup): New public method.
20755         (dup_type): Correctly duplicate array and function types.
20757 2005-09-05  Martin Baulig  <martin@ximian.com>
20759         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20761         * reflection.c (get_default_param_value_blobs): Handle generic types
20762         and generic methods.
20764 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
20766         * class.c: Fixed error reporting (method/class were inversed) for 
20767         inheritance demands.
20768         * security-manager.c|h: Added the AppDomain when calling the managed
20769         System.Security.SecurityManager.InheritanceDemand method.
20771 2005-09-01  Raja R Harinath  <rharinath@novell.com>
20773         * reflection.c (encode_marshal_blob): 'marshaltype' and
20774         'marshaltyperef' are alternate sources for the custom marshaler
20775         name.
20777 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
20779         * class.c: fix creation of array classes with rank == 1
20780         (patch by Ankit Jain <jankit@novell.com>).
20782 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
20784         * object.c: fix check for creating the bound data for arrays vs
20785         szarrays.
20787 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20789         * object.c: configuration file name is now based on the executable name,
20790         not the image name. Fixes bug #75931.
20792 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
20794         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
20795         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
20797 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
20799         * rand.c: Use wincrypt.h instead of WinCrypt.h.
20801 2005-08-24  Ankit Jain  <jankit@novell.com>
20802             Raja R Harinath  <rharinath@novell.com>
20804         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
20805           called by it recursively.
20806           (mono_class_init): Remove special case in pending_init handling, since it's
20807           superseded by the fix to mono_class_from_typeref.
20809 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
20811         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
20812         BROKEN_THREAD_START stuff.
20814 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
20816         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
20817         trampoline.
20819         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
20820         
20821         * object.c (mono_delegate_ctor): Replace the original function address with
20822         a delegate trampoline.
20824 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
20826         * icall.c: add boolean argument to base64_to_byte_array and 
20827         InternalFromBase64String to control whether a whitespace-only string
20828         is allowed (or should casue a FormatException to be thrown). We need
20829         this as the behavior has changed between MS.NET 1.x and 2.0, and we
20830         to match the MS behaviour in both profiles.
20831         * appdomain.c: Bump corlib version.
20833 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20835         This patch implements a big portion of publisher policy
20836         support, used to bind assembly versions and redirect
20837         one assembly from version A to version B.
20839         * assembly.c:
20840         New GSList loaded_assembly_bindings, for storing the cached
20841         assembly bindings.
20842         (assembly_binding_maps_name): New static function for checking if a 
20843         assembly binding information maps an assembly name.
20844         (mono_assembly_binding_info_free): New function for freeing
20845         assembly binding information resources.
20846         (get_publisher_policy_info): New static function for retrieving 
20847         assembly binding information from a MonoImage.
20848         (compare_versions): New static function for comparing an assembly
20849         binding information data and the version of an assembly name.
20850         (check_policy_versions): New static function for checking if an
20851         assembly binding info mapping an assembly name is valid for it.
20852         (mono_assembly_load_publisher_policy): New static function for
20853         loading the 'policy.major.minor.MyAssembly' image for an assembly
20854         with an assembly name 'aname'.
20855         (mono_assembly_bind_version): New static function for updating
20856         assembly redirection.
20857         (mono_assembly_apply_binding): New static function for applying
20858         assembly binding.
20859         (search_binding_loaded): New static function for searching 
20860         loaded assembly binding infos in the cache domain.
20861         (mono_assembly_load_full): Don't apply assembly binding for
20862         reflection only assemblies.
20864         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20865         which contains information about assembly binding. Also
20866         declare signature for mono_config_parse_publisher_policy ()
20867         function, used to retrieve pub policy info.
20868         
20869         * mono-config.c:
20870         (publisher_policy_start): New static function used to parse publisher 
20871         policy config files.
20872         (publisher_policy_parser): New static MonoParseHandler containing 
20873         the functions used when parsing config files.
20874         (mono_config_parse_publisher_policy): New function for parsing
20875         publisher policy files.
20876         
20877 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
20879         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
20881         * marshal.c (mono_delegate_free_ftnptr): Ditto.
20883         * object.c (mono_get_addr_from_ftnptr): New helper function.
20885         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
20887         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20889 2005-08-19  Dick Porter  <dick@ximian.com>
20891         * threads.c, threads.h, appdomain.c, appdomain.h,
20892         profiler-private.h, monitor.c, object.c, object-internals.h,
20893         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
20894         store the thread ID, so it can hold a 64 bit value if needed.
20896 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
20898         * reflection.c (mono_reflection_create_dynamic_method): Store the
20899         handle class into the method references as well so ldtoken works in
20900         dynamic methods.
20902         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
20903         types.
20905 2005-08-19  Ankit Jain <jankit@novell.com>
20907         Fix #75847.
20908         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
20909           here rather than using the method signature of a arbitrary function
20910           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
20911           two arguments.
20912           Hack done with Harinath.
20914 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20916         * threadpool.c: disable printing stack traces when we get a exception
20917         in a threadpool thread. I need to do more testing to figure out which
20918         cases actually print this. Fixes bug #75828.
20920 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20922         * icall.c: there might be ignored whitespace after the last '='. This
20923         fixes length computation and bug #75840.
20925 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
20927         * assembly.c (mono_assembly_load_full): Consider .exe extension as
20928         well. Fixes #75809.
20930         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
20931         #75784.
20932         
20933         * reflection.c (create_custom_attr_data): Ditto.
20935 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
20937         * locales.c, culture-info.h : removed RegionLCIDMap.
20938         * culture-info-tables.h : regenerated.
20940 2005-08-16  Martin Baulig  <martin@ximian.com>
20942         * class.c (mono_type_get_name_recurse): Small fix.
20944 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
20946         * locales.c : indentation fixie.
20948 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
20950         * object-internals.h,
20951           locales.h,
20952           locales.c,
20953           culture-info.h,
20954           icall.c : added RegionInfo table support.
20955         * culture-info-table.h : regenerated for region support.
20957 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
20959         * reflection.c (resolve_object): handle all kinds of MonoMethod
20960         including generic ones
20962 2005-08-12  Ankit Jain <jankit@novell.com>
20964         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
20965           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
20967 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
20969         * process.c: Don't close a thread handle when it's NULL. This is a
20970         workaround for bug #75733.
20972 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
20974         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
20976 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
20978         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
20980 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20982         * threadpool.c: if a work item in the thread pool has a callback that
20983         catches a exception, don't propagate it after invoking the callback.
20984         Fixes bug #75336.
20986 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
20988         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
20990         * class-internals.h (MonoCachedClassInfo): Add some new fields.
20992         * class.c (mono_class_init): Load field info lazily in the AOT case.    
20994         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
20996 2005-08-03  Ankit Jain  <jankit@novell.com>
20998         Fix #75683.
20999         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21000           PInvoke calling convention is 0.
21002 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21004         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21005         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21007 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21009         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21010         to handle threads not started by the GC (patch by Michael Meeks
21011         <michael.meeks@novell.com>).
21013 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21015         * reflection.c: Make buffer used in emitting types larger for some
21016         big generic types (patch by Michal Moskal).
21018 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21020         * mono-debug.c: Fix some (not all) alignment problems.
21022 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21024         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21025         Invoke mono_image_load_from_data_full passing the refonly
21026         parameter.
21028         * assembly.c
21029         (mono_assembly_open_from_bundle): Add the refonly argument, 
21030         in order to pass it to other methods it calls to.
21031         (do_mono_assembly_open): Add the refonly argument, in order 
21032         to pass it to other methods it calls to.
21033         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21034         the refonly parameter to it.
21036         * image.c: Add loaded_images_refonly_hash and
21037         loaded_images_refonly_guid_hash to cache the reflection
21038         only loaded images.
21039         (mono_images_init): Initialize the hash tables used for
21040         caching the reflection only images.
21041         (load_modules): Invoke mono_image_open_full passing the refonly
21042         parameter to load the modules the correct way.
21043         (build_guid_table): Add the refonly argument, to re-build the 
21044         correct hash table.
21045         (do_mono_image_open): Added the refonly argument, in order to
21046         define it for the loaded image.
21047         (mono_image_loaded_full): New function, which receives an
21048         additional parameter to look for the image in the refonly or
21049         non-refonly section.
21050         (mono_image_loaded): Updated, using mono_image_loaded_full.
21051         (mono_image_loaded_by_guid_full): The same case that happens
21052         with mono_image_loaded_full.
21053         (mono_image_loaded_by_guid): Likewise.
21054         (register_image): Use the ref_only variable inside MonoImage
21055         to decide in which hash table store the current image.
21056         (mono_image_open_from_data_full): Rename
21057         mono_image_open_from_data to mono_image_open_from_data_full,
21058         adding the refonly argument, to define the ref_only variable 
21059         inside MonoImage.
21060         (mono_image_open_from_data): Return 
21061         mono_image_open_from_data_full.
21062         (mono_image_open_full): Rename mono_image_open to
21063         mono_image_open_full, receiving the new refonly argument,
21064         to pass it to inner methods.
21065         (mono_pe_file_open): Update this function, to open
21066         a MonoImage as a non-refonly image.
21067         (mono_image_close): Use the refonly variable inside
21068         MonoImage to remove the image from the correct caches.
21070         * image.h: Add the signatures of mono_image_open_full,
21071         mono_image_open_from_data_full, mono_image_loaded_full,
21072         mono_image_loaded_by_guid_full.
21074         * metadata-internals.h: Add the ref_only field to 
21075         MonoImage.
21076         
21077 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21079         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21080         Fix the last behavior, which used to load the assemblies and
21081         extract MonoReflectionAssemblyName information, instead of
21082         extract it from the metadata tables. Needed for Reflection
21083         Only assemblies.
21084         
21085 2005-07-29  Martin Baulig  <martin@ximian.com>
21087         * mono-debug-debugger.c
21088         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21089         not initialized.
21091         * mono-debug.c
21092         (mono_debug_address_from_il_offset): Check whether we have
21093         debugging support before attempting to take the lock.
21094         (mono_debug_source_location_from_address): Likewise.
21095         (mono_debug_source_location_from_il_offset): Likewise.
21096         (mono_debug_il_offset_from_address): Likewise.
21097         (mono_debug_address_from_il_offset): Likewise.
21099 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21101         * class.c (mono_class_from_name_case): Add support for dynamic images.
21102         Fixes #75650.
21104         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21105         for #75479.
21107 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21108         
21109         * reflection.c (mono_method_get_object): Fix warning.
21111 2005-07-28  Martin Baulig  <martin@ximian.com>
21113         * mono-debug.c
21114         (mono_debug_add_wrapper): Also write the wrapper type.
21116 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21118         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21119         
21120         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21121         data indicates the class has none.
21123 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21125         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21126         loader lock with the debugger lock. Prevents deadlocks for beagle.
21128         Beagle can now run on an smp box for a weekend without any
21129         issues. Woohoo!
21131 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21133         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21134         in a module. Fixes #75629.
21136 2005-07-26  Martin Baulig  <martin@ximian.com>
21138         * mono-debug.c (mono_debug_add_wrapper): New static method.
21139         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21140         interncall or a wrapper.
21142         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21143         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21144         (MONO_DEBUGGER_VERSION): Bump to 51.
21146         * mono-debug-debugger.c
21147         (mono_debugger_add_type): Removed this empty function.
21148         (mono_debugger_add_method): Likewise.
21150 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21152         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21153         before accessing method->slot.
21155 2005-07-21  Jb Evain  <jbevain@gmail.com>
21157         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21158         Fixes #75010.
21160 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21162         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21163         #75587.
21165 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21167         * image.h image.c: Add mono_image_get_guid () API function.
21169 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21171         There were issues when multiple threads tried to load
21172         assemblies. A deadlock was created between assemblies_mutex and
21173         mono_domain_assemblies_lock. This fixes the issue by making the
21174         assembly ref counting be lock free. See bug 75586.
21175         
21176         * image.c (mono_image_close): The add ref function here was using
21177         Interlocked operations while the unref was using a mutex and a
21178         --. I don't think this was ever a bug that would be exposed in a
21179         non-pendantic way (ie, by an embedder doing a ref on one thread
21180         and an unref on another), but for the sake of correctness, this is
21181         now Interlocked.
21183         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21184         (mono_assembly_load_reference): Call mono_assembly_addref rather
21185         than touching the refcount ourselves.
21186         (mono_assembly_close): Use InterlockedDecrement to unref the
21187         assembly. Don't acquire the lock unless it is actually needed.
21189 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21191         * class.c (mono_class_layout_fields): Fix calculation of has_references
21192         for generic types.
21194 2005-07-12  Martin Baulig  <martin@ximian.com>
21196         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21198         * metadata.c
21199         (mono_type_hash): Provide better hashing for generic instances.
21200         (mono_generic_inst_hash): Improve hashing.
21201         (mono_generic_class_hash): Likewise.
21203         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21204         generic instances.
21206 2005-07-12  Martin Baulig  <martin@ximian.com>
21208         * reflection.c (mono_reflection_create_runtime_class): Remove the
21209         hack for generic type definitions and non-`Run' assemblies.
21210         (mono_reflection_bind_generic_parameters): Also use
21211         `klass->wastypebuilder' to check for TypeBuilders.
21213 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21215         * class.c (mono_class_layout_fields): Fix calculation of has_references
21216         for generic types.
21218         * class.c (inflate_generic_class): Fix a leak.
21219         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21220         for generic types.
21222 2005-07-11  Martin Baulig  <martin@ximian.com>
21224         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21225         on error.
21227 2005-07-11  Martin Baulig  <martin@ximian.com>
21229         * loader.c (find_method): Also lookup in
21230         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21232 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21234         * appdomain.c (mono_domain_unload): Don't free the error message
21235         before passing it to mono_get_exception_...
21237         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21238         
21239 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21241         * threads.c: try to better guess an available RT signal (bug #75387).
21243 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21245         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21246         and CACHE_OBJECT.
21248 2005-07-07  Martin Baulig  <martin@ximian.com>
21250         * class.c (mono_type_get_name_full): Return NULL for
21251         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21252         fixes #75408.
21254 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21256         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21257         exit the appdomain as well being aborted.
21259         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21260         change back to the root domain after calling managed code. This enables
21261         appdomains using threadpools to be unloaded.
21263 2005-07-07  Martin Baulig  <martin@ximian.com>
21265         * class-internals.h
21266         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21267         into `MonoDynamicGenericClass' since we only need it for dynamic
21268         types.
21270         * reflection.c (mono_class_bind_generic_parameters): We don't need
21271         to compute the `parent' here.
21273 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21275         * culture-info-table.h : regenerated.
21277 2005-07-06  Martin Baulig  <martin@ximian.com>
21279         * icall.c
21280         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21282         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21284 2005-07-06  Martin Baulig  <martin@ximian.com>
21286         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21287         we're doing a signature-only comparision; fixes #74945.
21289 2005-07-06  Martin Baulig  <martin@ximian.com>
21291         * class-internals.h (MonoGenericClass): Moved some things out into
21292         a new `MonoInflatedGenericClass' type.  
21293         (MonoInflatedGenericClass): New type; the `klass' of a
21294         `MonoGenericClass' is now computed lazyly in
21295         mono_get_inflated_generic_class().      
21297         * class.c (mono_get_inflated_generic_class): New public function.
21298         (mono_class_inflate_generic_method): Removed the unused
21299         `MonoClass *' argument.
21300         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21301         all the methods.
21302         (mono_class_create_generic): Make this static and merge it with
21303         mono_class_create_generic_2(); we're now called automatically from
21304         mono_get_inflated_generic_class().
21306         * loader.c (mono_method_signature): Call
21307         mono_get_inflated_method() here.
21309 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21311         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21312         type of fields with RVA.
21314         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21315         for this pseudo class.
21316         (my_mono_class_from_generic_parameter): Likewise.
21317         (mono_class_init): Allow interfaces to have cctors.
21319 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21321         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21322         lazily for AOT methods.
21324 2005-07-05  Martin Baulig  <martin@ximian.com>
21326         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21327         returns FALSE for a successful match, not TRUE.
21329 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21331         * loader.c (mono_method_get_index): Optimize this a bit.
21333 2005-07-04  Martin Baulig  <martin@ximian.com>
21335         * class.c
21336         (class_compute_field_layout): Move the check for generic type
21337         definitions into mono_class_layout_fields().  Fixes #74684.
21338         (mono_class_from_generic_parameter): Correctly compute
21339         `klass->parent'; fixes #75457.
21341         * reflection.c (register_assembly, register_module): Make sure
21342         `domain->rejobject_hash' is already created.
21344 2005-07-02  Martin Baulig  <martin@ximian.com>
21346         * class-internals.h
21347         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21348         `MonoDynamicGenericClass'.      
21350 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21352         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21353         returned by a field getter is null, since null is a valid value.
21355 2005-07-01  Martin Baulig  <martin@ximian.com>
21357         * reflection.c (mono_reflection_generic_class_initialize): Update
21358         the `dgclass->fields [i].parent' to the correct class.
21359         (mono_image_get_fieldref_token): Use the declaring type, not the
21360         reflected type.
21362 2005-07-01  Martin Baulig  <martin@ximian.com>
21364         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21366 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21368         * threads.c (thread_cleanup): assert that thread != NULL
21369         (wait_for_tids_or_state_change): We were using the wrong variable
21370         when accessing wait->threads. `i' was always out of the bounds of
21371         the array.
21373 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21375         * loader.c: map user32 and kernel32 to libMonoSupportW
21377 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21379         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21381 2005-06-28  Martin Baulig  <martin@ximian.com>
21383         * loader.c (method_from_methodspec): Fix #75334.
21385 2005-06-28  Martin Baulig  <martin@ximian.com>
21387         Fix #74953 - Arrays now implement the generic IList<T> interface
21388         on the 2.0 platform.
21390         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21392         * reflection.c (mono_class_bind_generic_parameters): New public
21393         function; similar to mono_reflection_bind_generic_parameters(),
21394         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21396         * domain.c (mono_init_internal): Try to initialize.
21397         `mono_defaults.generic_array_class' here; this'll only succeed if
21398         we're using the 2.0 corlib.
21400         * icall.c
21401         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21402         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21403         (mono_lookup_internal_call): Added support for nested classes.
21405         * loader.c
21406         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21407         we're an interncall and have generic arguments.
21409         * class.c
21410         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21411         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21412         instance of System.Array.InternalArray<T> for arrays, so they
21413         implement the generic IList<T> interface.
21415 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21417         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21418         (chastamar@yahoo.com). Fixes #75374.    
21420 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21422         * culture-info-table.h: regenerated.
21424 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21426         * icall.c: handle spaces correctly for base64 strings.
21428 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21430         * *.c: Kill some warnings.
21432 2005-06-23  Duncan Mak  <duncan@novell.com>
21434         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21435         that this builds on Solaris 10 (x86).
21437 2005-06-23  Martin Baulig  <martin@ximian.com>
21439         * class.c
21440         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21441         generic type definitions.
21443 2005-06-23  Martin Baulig  <martin@ximian.com>
21445         Fix #75331.
21447         * metadata.c (mono_class_get_overrides): Renamed to
21448         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21449         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21450         pass it to mono_get_method_full().
21452 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21454         * reflection.c (mono_reflection_create_runtime_class): take the
21455         mono_domain_lock in this method. Prevents deadlocks
21457 2005-06-22  Martin Baulig  <martin@ximian.com>
21459         * loader.c (method_from_methodspec): Fix #75330.
21461 2005-06-22  Martin Baulig  <martin@ximian.com>
21463         * reflection.c (type_get_qualified_name): Use
21464         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21465         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21466         argument; use it if we don't have an assembly name.
21468 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21470         * object.c: In mono_message_init, set "copy out" flag for in
21471         parameters with the [Out] flag.
21473 2005-06-21  Martin Baulig  <martin@ximian.com>
21475         * class.c
21476         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21477         and MONO_TYPE_PTR.
21479 2005-06-21  Martin Baulig  <martin@ximian.com>
21481         * class.c (mono_class_init): Don't initialize `class->fields' for
21482         generic instances since they're initialized again in
21483         compute_field_layout(). 
21484         (compute_field_layout): Set the field's `generic_info' here; fix
21485         #75320. 
21487 2005-06-21  Martin Baulig  <martin@ximian.com>
21489         * class-internals.h
21490         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21492         * metadata.c (mono_metadata_generic_method_equal): Also
21493         distinguish the `generic_class'; fixes #75334.
21495 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21497         * domain.c:
21498         * appdomain.c:
21499         * domain-internals.h:
21500         * reflection.c: 'domain_assemblies' field is now protected by its own
21501         lock. Don't call into managed code to run the AssemblyLoad event if we
21502         now there are no registered delegates for it.
21504 2005-06-20  Martin Baulig  <martin@ximian.com>
21506         * class.c (mono_class_is_assignable_from): Use a custom version of
21507         mono_class_has_parent() to make things work for generic instances;
21508         fix #75300.
21510 2005-06-20  Martin Baulig  <martin@ximian.com>
21512         * loader.c (method_from_methodspec): Apply a patch from
21513         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21515 2005-06-20  Martin Baulig  <martin@ximian.com>
21517         * class.c (mono_class_init): Reverted Zoltan's last change; it
21518         breaks generics.
21520 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21522         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21524 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21526         * socket-io.c: fix the index in the socket array for writable/error
21527         sockets. Fixes bug #75306.
21529 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21531         * class.c (mono_class_init): Allow interfaces to have static ctors.
21533 2005-06-17  Martin Baulig  <martin@ximian.com>
21535         * loader.c (method_from_methodspec): Use `context->container' when
21536         parsing the `gmethod->inst'.
21538 2005-06-17  Martin Baulig  <martin@ximian.com>
21540         * class.c (mono_type_get_name_recurse): Don't add the assembly
21541         name for type arguments.
21543 2005-06-15  Martin Baulig  <martin@ximian.com>
21545         * reflection.c (mono_image_get_inflated_method_token): Encode
21546         correct klass; fixes #75260.
21548 2005-06-13 Michal Moskal <malekith@nemerle.org>
21550         * icall.c: Make GetCorrespondingMethod/Constructor take
21551         MonoReflectionMethod method not MonoMethod. Removed
21552         MonoType.GetCorrespondingField, and make
21553         MonoGenericType.GetCorrespondingField take name not
21554         MonoClassField.
21556 2005-06-13  Michal Moskal <malekith@nemerle.org>
21558         * reflection.c (field_encode_signature, encode_locals):
21559          Make sizes of buffers for types larger (for big generic types).
21560          (create_generic_typespec,
21561          mono_reflection_sighelper_get_signature_local,
21562          mono_reflection_sighelper_get_signature_field):
21563          Add asserts for too small buffers.
21565 2005-06-15  Martin Baulig  <martin@ximian.com>
21567         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21568         if our parent is not a dynamic type.
21570 2005-06-15  Martin Baulig  <martin@ximian.com>
21572         * class-internals.h (MonoTypeNameFormat): New enum.
21574         * class.c
21575         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21576         (mono_type_get_full_name): Removed.
21577         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21578         argument instead of the boolean's.
21580         * icall.c (ves_icall_System_MonoType_getFullName):
21581         Added `gboolean assembly_qualified'.    
21583         * reflection.h
21584         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21586         * reflection.c (mono_reflection_parse_type): Parse the new type
21587         name format.
21589 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21591         * icall.c: no need to convert from utf16 to utf8 and then back again
21592         after the call to GetLogicalDrives.
21594 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21596         * icall.c: frombase64. Fix problems exposed by new tests.
21598 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21600         * icall.c: added internal calls for converting char [] and strings in
21601         base64 into byte [].
21603 2005-06-10  Martin Baulig  <martin@ximian.com>
21605         * class.c (mono_class_create_generic_2): Read the nested classes
21606         from the metadata rather than from `gklass->nested_classes' since
21607         `gklass' might not be initialized yet.
21609 2005-06-09  Duncan Mak  <duncan@novell.com>
21611         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21612         all public headers. Fixes #74919.
21614 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21616         * domain.c: The key for proxy_vtable_hash is now a pointer
21617         array. Added new GHashFunc and GCompareFunc functions for this.
21619         * class.h: The list of interfaces in MonoRemoteClass is known in
21620         advance and can't grow (we create a new MonoRemoteClass if needed),
21621         so now the interface array can be allocated together with
21622         MonoRemoteClass.
21623         
21624         * object.c: Added a new method create_remote_class_key.
21625         Fixed mono_remote_class so it does not depend on
21626         mono_upgrade_remote_class.
21627         Removed extend_interface_array.
21628         Added new method clone_remote_class(), which makes a copy of a remote
21629         class and adds a new interface or class to it.
21630         mono_upgrade_remote_class() now creates a new remote class (or gets
21631         it from the cache) if an vtable upgrade is needed. In this way
21632         we make sure that other objects sharing the same remote class
21633         don't get the new vtable with unwanted interfaces.
21634         
21635         * object-internals.h:
21636         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21637         
21638         * marshal.c: Track changes in mono_upgrade_remote_class().
21640 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21641         * icall.c: Add runtime methods for obtaining members of inflated
21642         class, which were created from supplied non-inflated members. It
21643         is used in internal Get{Method,Constructor,Field} methods in
21644         System.Type
21646 2005-06-09  Martin Baulig  <martin@ximian.com>
21648         * reflection.c
21649         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21651 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21652         * reflection.c (mono_image_basic_init): Define
21653         Version in MonoDynamicAssembly. 
21654         
21655 2005-06-08  Martin Baulig  <martin@ximian.com>
21657         Fix #75136.
21659         * loader.c
21660         (mono_method_signature_full): New public method; takes a
21661         `MonoGenericContext *'.
21662         (find_method): Use mono_method_signature_full() and pass the
21663         klass'es context to it.
21665         * class.c (mono_class_is_inflated_method): Use
21666         mono_method_signature_full() and pass the context to it.
21668 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21670         * object.c: add proper locking in mono_remote_class_vtable(),
21671         fixes possible memory corruption.
21673 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21675         * marshal.c (mono_remoting_marshal_init): set
21676         initialized after initialization.
21678 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21680         * locales.c : hush.
21682 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21684         * object.c (extend_interface_array): fix really silly
21685         memory corrupting / comparison bug.
21687 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21689         * reflection.c: Functions added to support the creation
21690         of CustomAttributeData, which includes Attribute data
21691         used by ReflectionOnly methods.
21693         * reflection.h:  mono_reflection_get_custom_attrs_data and
21694          mono_custom_attrs_data_construct added (functions exposed).
21696          * icall.c: Added mono_reflection_get_custom_attrs_data
21697          as icall.
21698         
21699 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21701         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21702         lupus's request.
21704 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21706         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21708         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21709         dynamic DllImportAttribute.
21711         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21712         dynamic DllImportAttribute.
21714         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
21715         Fixes #75162.
21717 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21719         * threads.c: avoid segfault when an unstarted thread is aborted.
21721 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
21723         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
21724         Returns the name and version of the runtime for reporting.
21726 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21728         * appdomain.c: bump corlib version.
21729         * object-internals.h: new field in MonoReflectionAssembly.
21731 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21733         * object-internals.h: Carlos forgot to add this field.
21735 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21737         * icall.c: Added create_version to create instances
21738         of Version of MonoReflectionAssemblyName. This change helps
21739         the AssemblyName tests to keep running fine.
21740         
21741 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
21742   
21743         * object.c (mono_method_return_message_restore): A somehow less
21744         intrusive fix for #75138.
21746 2005-06-03  Raja R Harinath  <rharinath@novell.com>
21748         * object.c (mono_method_return_message_restore): Fix computation
21749         of expected number of out args.
21751 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21753         * reflection.c (mono_image_get_method_info): Fix the case when the
21754         charset is empty.
21756 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
21758         * object.c: Added missing null check in
21759           mono_method_return_message_restore.
21761 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21763         * reflection.c (mono_image_get_method_info): Handle the case when
21764         dllentry is empty.
21766 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
21768         * object.c: When creating the vtable for a proxy, take into account
21769         all inherited interfaces, not only the ones registered in
21770         iclass->interfaces. This fixs bug #74996.
21771         Also, in mono_method_return_message_restore, verify that the array
21772         of out args has the expected lengh.
21774 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21776         * socket-io.c: update the timeout in Poll when the call is interrupte.
21778 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21780         * socket-io.c: support abort/suspend in Select_internal after last
21781         change.
21783 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21785         * threadpool.c: remove warning.
21787 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21789         * icall.c:
21790         * socket-io.[ch]: Select_internal uses poll() now when available, thus
21791         removing the 1024 limit from select(). Runtime part of the fix for
21792         bug #71203.
21794 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21796         * socket-io.c: when resolving the addresses for the same
21797         host returned by gethostname(), get the local IPs from the interface
21798         list. Loopback addresses are discarded if the are interfaces up with
21799         non-loopback ones. Fixes bug #63265.
21801 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
21803         * appdomain.c, verify.c, object-internals.h, reflection.c:
21804         bumped corlib number to 36, and added new extra_flags field
21805         to ReflectionMethodBuilder and friends.  Fixes #75060.
21807 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
21809         * gc.c: register a new weak link only if the object is non-null
21810         (fixes bug#75047).
21812 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21814         * culture-info.h : short time pattern too.
21816 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21818         * culture-info.h : expand long time pattern string length.
21820 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21822         * culture-info-table.h : update (more French date format; #72788).
21824 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
21826         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
21827         the method is static. Fixes #75029.
21829 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
21831         * reflection.c: Update the table_idx field of method builders after
21832         saving the module, since it can change. This is a workaround for
21833         bug #74914. 
21835 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21837         * culture-info-table.h : update (additional French date format).
21839 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
21841         * icall.c (ves_icall_type_Equals): Revert last change.
21842         
21843         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
21845         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
21847 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
21849         * class-internals.h: Added executioncontext_class field to 
21850         MonoDefaults structure.
21851         * domain.c: Cache System.Threading.ExecutionContext class in 
21852         mono_defaults.
21853         * object.c: Capture the ExecutionContext for asynchroneous calls in
21854          mono_async_result_new.
21855         * object-internals.h: Added execution_context and original_context 
21856         fields to MonoAsyncResult. Added execution_context to MonoThread.
21857         * security-manager.c|.h: Added mono_get_context_capture_method to 
21858         return the capture method (if required by the security manager or by
21859         the framework version used).
21860         * threadpool.c: Apply capture (if present) ExecutionContext in 
21861         mono_async_invoke and revert to original context after it completes.
21863 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21865         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21867 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21869         * culture-info-table.h : zh-CHT related workaround.
21871 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21873         * marshal.c (emit_marshal_custom): Add some error checking and call the
21874         methods in the ICustomMarshaler interface. Fixes #74875.
21875         
21876         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
21877         native->managed wrappers.
21879 2005-05-12  Martin Baulig  <martin@ximian.com>
21881         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
21882         here and use the loader lock.
21884         * mono-debug.c: Properly lock when the debugger is not attached.
21885         (mono_debug_init): Release the initial lock if we're not running
21886         in the debugger.
21888 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21890         * marshal.c (emit_marshal_custom): Pass through NULL values without
21891         calling the custom marshalling routines.
21893         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
21894         conversion in structures. Fixes #74882.
21896 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
21898         * culture-info-table.h : zh-* cultures were missing.
21900 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
21902         * threads.c: Added a new event background_change_event which is signaled
21903         when a thread changes its background mode.
21904         Moved here several checks previously done in managed code. The checks
21905         require the thread lock, and using the thread lock in managed code
21906         can result in deadlocks.
21907         Merged Start_internal and Thread_internal into a single method. Now 
21908         Thread_internal does all work of creating and starting a thread.
21909         Added icalls for setting and getting the state of the object. Moved from
21910         managed code to avoid locking there.
21911         Added wait_for_tids_or_state_change() which is called instad of
21912         wait_for_tids when waiting for non-backround threads to end. This method
21913         will return if one of the threads ends or the background_change_event
21914         is signaled.
21915         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
21916         the background mode. This method signals the background_change_event
21917         event.
21918         * icall.c:
21919         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
21920         removed Start_internal.
21921         
21922 2005-05-11  Martin Baulig  <martin@ximian.com>
21924         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
21925         to order of some fields to get proper alignment on 64-bit machines.
21927 2005-05-11  Martin Baulig  <martin@ximian.com>
21929         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
21930         changes as they're broken and completely fuck up the debugger.
21932         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
21934 2005-05-10  Martin Baulig  <martin@ximian.com>
21936         * reflection.c (mono_reflection_generic_class_initialize): Don't
21937         call mono_class_setup_parent() here.
21939 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21941         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
21942         send/receive timeout use an integer in milliseconds. We were using a
21943         struct timeval.
21945 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21947         * locales.c:
21948         (internal_get_cultures): reserve the first slot of the array for the
21949         InvariantCulture, which will be filled in managed code.
21951 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
21953         * reflection.c (mono_image_fill_module_table): Initialize the
21954         GENERATION field as well.
21956 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21958         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
21959         Monitor.Enter on the object.
21961 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
21963         * threads.c: Enable the wait for running threads when exiting.
21964         * icall.c: Suspend all threads before exiting.
21966 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
21968         * assembly.c (mono_assembly_load_reference): Fix warning.
21970 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21972         * threadpool.c: changed the default number of threads per cpu. From now
21973         on, the default will be 20 + (5 * number of cpus) instead of 50.
21975 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
21977         * loader.c (mono_method_get_signature_full): Add locking here.
21979 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
21981         * appdomain.c: Moved methods for parsing and freeing assembly
21982         names to assembly.c.
21983         * assembly.c, domain-internals.h: Created public methods for parsing
21984         assembly names. Fixed mono_assembly_load_with_partial_name:
21985         it now finds the best match, taking into account the version,
21986         token and culture specified in the partial name. Also return
21987         the latest version if no version information is specified.
21989 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
21991         * threadpool.c: replace check for SocketAsyncCall class.
21993 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21995         * threadpool-internals.h:
21996         * Makefile.am: added threadpool-internals.h
21998         * threadpool.c: call mono_unhandled_exception on exceptions not handled
21999         that happen in threadpool threads (tested on MS).
22000         (mono_thread_pool_remove_socket): new function that dispatch any pending
22001         AIO call on a socket that is closing. By now only epoll really needs it,
22002         as select/poll wake up when the socket closes.
22005         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22007 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22009         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22011 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22013         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22015 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22017         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22018         has an abort request, convert it into a suspend request.
22020 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22022         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22023         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22024         is not supported yet.
22026 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22028         * image.c: register assemblies loaded from data (bundles) in the loaded
22029         assemblies hash. Fixes bug #74772.
22031 2005-04-29  Martin Baulig  <martin@ximian.com>
22033         * class.c (mono_type_get_name_recurse): Update to the new naming
22034         schema from the latest .NET 2.x beta2.
22035         (mono_class_setup_vtable_general): If we're a generic instance,
22036         copy the vtable from our generic type definition and inflate all
22037         the methods in it.
22039         * loader.c (find_method): Update to the new naming schema from the
22040         latest .NET 2.x beta2.
22042 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22044         * class.c (mono_class_init): Add a mono_loader_unlock to the
22045         #74734 fix.
22047 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22049         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22050         suspend_all_other_threads () call for the time being, since it can hang.
22052         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22053         the background threads to exit, since it can also hang.
22055         * class.c (mono_class_init): Applied patch from Ankit Jain 
22056         (radical@gmail.com). Avoid pending init errors when a field refers
22057         to a nested class using a typeref. Fixes #74734.
22059         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22060         this for dynamic modules.
22062 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22064         * threads.c: don't wait for threads that are in the process of aborting
22065         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22066         and waiting for background threads to finish. This makes xsp and
22067         mod-mono-server exit without random length delays and/or hangs.
22069 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22071         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22073 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22075         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22076         dynamic types to prevent infinite loops. Fixes #74727.
22078         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22079         ..._is_assignable_to.
22081 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22083         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22085 2005-04-25  Martin Baulig  <martin@ximian.com>
22087         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22089         * domain.c
22090         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22092         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22094         * reflection.c (build_compressed_metadata): Set metadata header
22095         version to 2.0.
22097 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22099         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22100         number into an integral and a decimal part. Fixes #70473.
22102         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22104 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22106         * culture-info-table.h : reflected the latest locale-builder output.
22108 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22110         * threadpool.c: check for SuspendRequested too when deciding if
22111         mono_thread_interruption_checkpoint should be called.
22113 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22115         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22116         * threads.c: remove interruption_mutex and use Interlocked instead. When
22117         suspending all the threads, wait for all the suspended events at once.
22118         If we're shutting down and get an APC that is going to be queued,
22119         call mono_thread_execute_interruption immediately, as the thread might
22120         be sleeping on a pthread condition or mutex.
22122         * icall.c: call mono_runtime_set_shutting_down before suspending the
22123         threads.
22125         Fixes bug #74693. And now xsp is happier when exiting.
22127 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22129         * loader.c (mono_stack_walk): Fix #74690.
22131 2005-04-22  Martin Baulig  <martin@ximian.com>
22133         * mono-debug.h (MonoDebugMethodJitInfo): Added
22134         `MonoDebugMethodJitInfo *jit'.
22136         * mono-debug.c (mono_debug_read_method): Cache the
22137         MonoDebugMethodJitInfo in `address->jit'.
22138         (mono_debug_free_method_jit_info): New public method.
22140 2005-04-22  Martin Baulig  <martin@ximian.com>
22142         * class.c (mono_class_is_assignable_from): Disallow
22143         type parameter -> interface.
22145 2005-04-21  Dick Porter  <dick@ximian.com>
22147         * threads.c (mono_thread_create): Turn an assertion into an error.
22149 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22151         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22152         
22153         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22154         Fix some gcc 4.0 warnings.
22156 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22158         * file-io.c: fix alt dir separator char on unix systems
22159         and cleanup (fixes bug #71214).
22161 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22163         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22164         a call to a remote domain, since the method may be an
22165         interface method in the client domain. This fixes bug #74192.
22167 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22169         * threadpool.c: recv/send are now performed before going back to managed
22170         code to save one transition.
22172 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22174         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22176         * metadata/threadpool.c: removed hack to workaround the bug above.
22178         Fixes bug #74618.
22180 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22182         * reflection.c reflection.h: Fix handling of parameter defaults in
22183         dynamic methods. Also fixes handling of parameter attributes.
22184         Fixes #74609.
22186         * mono-debug.c (mono_debug_close_image): Fix warning.
22188 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22190         * socket-io.h: replaced old unused field with new 'blocking'.
22191         * threadpool.c: restore socket blocking state on windows(tm).
22193 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22195         * icall.c: don't return the codebase in the AssemblyName[] returned by
22196         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22197         * object-internals.h: Removed FIXME (fields were presents) and fixed
22198         versioncompat declaration.
22200 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22202         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22203         not closed, so don't cleanup when it happens.
22205 2005-04-13  Chris Toshok  <toshok@ximian.com>
22207         * mono-debug-debugger.h: change prototype for
22208         mono_debugger_lookup_type.
22210         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22211         this function, although it should probably be named
22212         mono_debugger_init_type.
22214 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22216         * threadpool.c: fix non-AIO case.
22218 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22220         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22221         the built-in profiler to measure just JIT compilation times.
22223 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22225         * threadpool.c: the epollfd might be closed by another thread at
22226         any time, so ignore EBADF at treat it as a "we're closing" sign.
22228 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22230         * threadpool.c: release the semaphores with a count equals to the number
22231         of working threads in both IO and regular pools. Fixed typo that messed
22232         up the count of IO pool threads. Don't initialize the pipe handles if
22233         we're using epoll.
22235 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22237         * threadpool.c: some systems don't like a NULL when deleting the socket
22238         from epoll.
22240 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22242         * threadpool.c: fix semaphore allocation.
22244 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22246         * threadpool.c: added epoll() based implementation for asynchronous IO
22247         that is used instead of the default poll() when available.
22248         It can be disabled by setting MONO_DISABLE_AIO.
22250 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22252         * threadpool.c: windows needs 'closesocket' and instead of returning
22253         0 when the stream is closed while in select, it returns -1. Fixes bug
22254         #74573.
22256 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22258         * class.c (class_compute_field_layout): Fix the regression caused by
22259         the previous try.
22261 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22263         * threadpool.c: separate pool for socket async. IO.
22264         * threadpool.h: mono_max_worker_threads is not a global any more.
22266 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22268         * class.c (class_compute_field_layout): Fix #74549.
22270 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22272         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22273         use 2 connected sockets instead.
22275 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22277         * mono-config.c: Add new entry point for mkbundle
22278         mono_config_parse_memory. 
22280 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22282         * threadpool.c: removed another unused function.
22284 2005-04-08  Ankit Jain  <radical@corewars.org>
22286         * reflection.c (get_default_param_value_blobs): Add 'types'
22287         parameter to get the types encoded in the constant table.
22288         (mono_param_get_objects): Use the type from the constant table,
22289         not the type of the parameter, when creating default values.
22290         Handle null default values correctly.
22292 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22294         * file-io.c:
22295         * file-io.h:
22296         * threadpool.c:
22297         * threadpool.h:
22298         * icall.c:
22299         * socket-io.c: removed dead code for async IO.
22301 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22303         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22305         * threadpool.c: intercept socket async. calls and pass them to a thread
22306         that is polling and dispatching the job items to the threadpool as
22307         socket become ready. Fixes bugs #71217, #71933.
22309         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22310         between char and short/ushort arrays.
22312         * socket-io.c: remove dead code.
22314 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22316         * locales.c,
22317           icall.c : removed InternalToUpper_Comp() and
22318           InternalToLower_Comp().
22320 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22322         * char-conversions.h : The tables were incorrectly generated. Should
22323           be generated against invariant culture.
22325 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22327         * object.c (mono_runtime_invoke_array): Fix return value when 
22328         passing pre-created valuetype objects to ctors.
22330         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22331         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22332         Fixes #74338.
22334 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22336         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22337         only used with --security and hides the wrong corlib version error.
22339 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22341         * class.c: Changed mono_class_name_from_token so that types
22342         outside of a namespace don't have an initial period.  Improved
22343         the g_warning message used in _mono_class_get when loading
22344         fails.
22345         * assembly.c: In mono_assembly_load_reference, when an assembly
22346         can't be found, "No such file or directory" is misleading and
22347         unhelpful because a few paths were checked for the presence of
22348         the assembly.  When that happens (ENOENT), display a nicer
22349         message indicating the directories that were searched.  In all
22350         cases, the warning is made easier to read for non-hackers.
22352 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22354         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22355         project/solution.
22356         * appdomain.h|domain.c: Removed inline from functions.
22357         * appdomain.c: Reduced warnings when compiling on windows.
22358         * icall.c: Fixed output_debug declaration to gunichar2*.
22359         * mono-config.c: Reduced warnings when compiling on windows.
22360         * rand.c: Added missing "windows.h". Added missing return value.
22361         * rawbuffer.c: Added missing winsock2.h for windows.
22362         * sysmath.h: Added mono-compiler.h header to allow/ease 
22363         compilation with non-GCC compilers.
22364         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22365         Removed cast warnings.
22367         Adapted from the work of J Lothian (for VC6).
22369 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22371         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22372         from default_path.
22374 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22376         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22377         the 2.0 profile.
22379 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22381         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22382         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22383         stuff, and it would probably use $(prefix)/share rather than
22384         $(prefix)/lib.
22386 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22388         * console-io.c: added 2 includes that might be missing.
22390 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22392         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22393         profile.
22395         * reflection.c (create_custom_attr): Allocate the params array using
22396         alloca so it gets GC tracking.
22398 2005-03-23  Chris Toshok  <toshok@ximian.com>
22400         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22401         out some spew.
22403 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22405         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22406         changes to pick up any changes in prefix, etc.
22408 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22410         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22411         
22412         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22413         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22415 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22417         * class-internals.h object-internals.h class.c reflection.c: Extend the
22418         mono_lookup_dynamic_token () function to return the class of the
22419         token as well. 
22421         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22422         well. Fixes #73848.
22424 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22426         * security-manager.c: Skip inheritance checks for intra-corlib
22427         class inheritance and method overrides. This skips a lot of checks
22428         and (anyway) permissions cannot work until corlib is loaded.
22430 2005-03-23  Martin Baulig  <martin@ximian.com>
22432         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22433         MONO_TYPE_GENERICINST.  
22435 2005-03-23  Martin Baulig  <martin@ximian.com>
22437         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22439 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22441         * class.c: added locking comments to some functions.
22442         Cache the interface offsets arrays (saves about 20 KB
22443         of runtime memory in a typical app).
22444         Reduce the time overhead in mono_class_setup_supertypes ().
22446 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22448         * icall.c: speedup and fix leaks in GetMethodsByName and
22449         GetPropertiesByName.
22451 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22453         * reflection.c: some locking fixes.
22455 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22457         * metadata.c: added missing break in case statement.
22459 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22461         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22462         typedbyref return values. Fixes #73941.
22464 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22466         * security-manager.c|h: Added demandunmanaged method and 
22467         suppressunmanagedcodesecurity class to MonoSecurityManager.
22468         Renamed aptc class to allowpartiallytrustedcallers.
22470 2005-03-17  Martin Baulig  <martin@ximian.com>
22472         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22474 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22476         * file-io.c: disabled file async. IO using aio_*. It uses the
22477         threadpool now. Workaround for bug #73718.
22479 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22481         * assembly.h, mono-config.c: added code to deal with bundled configs
22482         for bundled assemblies.
22484 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22486         * *.c, private.h: cleanup, removing old private.h header file.
22488 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22490         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22491         and throw_on_unmappable_char attributes.
22493 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22495         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22496         _ProcessName_internal.
22498 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22500         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22501         #73631.
22503         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22504         are no longer used.
22506 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22508         * object.c (compute_class_bitmap): Add support for generics. Fixes
22509         #73527.
22511 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22513         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22515 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22517         * filewatcher.c: commented out the code for windows watcher, as we don't
22518         use it (we use the managed implementation instead).
22520 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22522         * object-internals.h (MonoThread): Remove 'unused1' field.
22524         * appdomain.c: Bump corlib version.
22526         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22528         * reflection.c (mono_reflection_create_runtime_class): Remove the
22529         AssemblyBuilder.Save optimization since it causes too many problems.
22531 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22533         * exception.c|h: Added mono_get_exception_reflection_type_load to
22534         create a ReflectionTypeLoadException object.
22535         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22536         to return NULL is a InheritanceDemand fails during reflection. Updated
22537         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22538         ReflectionTypeLoadException if an InheritanceDemand fails during 
22539         reflection. Added icall mapping for GetLinkDemandSecurity.
22540         * security-manager.c|h: Added ves_icall_System_Security_
22541         SecurityManager_GetLinkDemandSecurity internal call to return the
22542         class and methods permissions set for a LinkDemand. Removed unused
22543         fields in MonoSecurityManager.
22545 2005-03-10  Martin Baulig  <martin@ximian.com>
22547         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22548         it's a generic instance.
22550 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22552         * reflection.c (mono_get_object_from_blob): Applied patch from
22553         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22555         * class.c (mono_class_is_assignable_from): Another try at fixing 
22556         #73469 without breaking anything.
22558 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22560         * class.c: (mono_class_is_assignable_from): Revert the last changes
22561         since they don't work with generics.
22562         
22563         * class.c (mono_class_is_assignable_from): Fix build bustage.
22565         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22566         the managed IsAssignableFrom method. Fixes #73469.
22568         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22569         function.
22571 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22573         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22574         memory when the remoting callback does not sets the out arguments.
22575         Fixes #73007.
22577         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22578         by mistake.
22580         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22582         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22584         * appdomain.c: Bump corlib version.
22586 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22588         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22589         function.
22591         * threads.c (mono_thread_attach): Detect threads which are not started
22592         by the GC pthread wrappers.
22594 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22596         * icall.c: Added new icall for RNG.
22597         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22598         single handle on Linux to access /dev/urandom and fix #73183.
22600 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22602         * object.c: setting the new vtable in a transparent proxy object must
22603         not change the GC descriptor.
22605 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22607         * object.c: fixed compilation without GCJ support.
22608         * reflection.c: for runtime-created types ensure klass->has_references
22609         is correct (bug #73215).
22611 2005-03-02  Martin Baulig  <martin@ximian.com>
22613         * class.c (mono_class_is_assignable_from): Make this work if
22614         `oklass' is a generic instance; fixes #72831.
22616 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22618         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22619         with hasthis set.
22620         
22621         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22623         * marshal.c: Reorganize native->managed marshalling code to also use
22624         the emit_marshal_... functions.
22626 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22628         * object.c: typed allocs have issues with bitmap sizes > 30,
22629         so check for max_set >= 30.
22631 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22633         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22634         managed code. Fixes #73012.
22636         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22638         * metadata.c reflection.c: Load/Emit elem_mult as well.
22639         
22640         * metadata.h (MonoMarshalSpec): Add comment.
22642         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22644         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22645         num_elem to -1 if not given.
22647         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22649         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22650         given values.
22652 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22654         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22656 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22658         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22660         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22662 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22664         * object.c: generalized the reference bitmap creation
22665         and added hooks for the new GC.
22666         * class-internals.c: removed the gc_bitmap field from MonoClass.
22668 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22670         * domain.c: help the compiler to produce better code
22671         in mono_jit_info_table_find ().
22673 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22675         * object.c: make all allocations look typed.
22677 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22679         * socket-io.c: load Mono.Posix if it's not loaded already
22680         (fixes bug#73033).
22682 2005-02-24  Martin Baulig  <martin@ximian.com>
22684         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22685         * reflection.c (dup_type): Likewise.
22687 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22689         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22690         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22692 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22694         * domain.c, threads.c, object-internals.h: make the critical thread
22695         local vars use the fast access mode (even when we're compiled in
22696         a lib). Provide accessors to be used by the jit during codegen.
22698 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22700         * appdomain.c: Changed hook functios behavior to include
22701         support for the reflection only assemblies. Some icalls were changed
22702         to support the mentioned assemblies too. Signatures of static methods
22703         try_assembly_resolve and real_load now have an additional parameter:
22704         refonly.
22706         * assembly.c: General changes to mono_assembly_ methods to support
22707         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22708         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22709         suffix, to support an additional gbool parameter to specify whether
22710         the assembli is reflection only or not. Created some new hook functions 
22711         to add support for reflection only assemblies. Signatures of static 
22712         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
22713         have now an additional parameter: refonly.
22715         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
22716         indicating whether the assembly is reflection only or not.
22718         * exception.c: Add mono_get_exception_invalid_operation.
22720         * icall.c: Throw an InvalidOperationException when trying to invoke
22721         a property/method/event, or trying to set/get the value of a field.
22722         Also add an icall to retrieve the ref_only flag to the
22723         MonoReflectionAssembly.
22725 2005-02-23  Chris Toshok  <toshok@ximian.com>
22727         Part of fix for #72827.
22728         * mono-debug.c (mono_debug_add_method): add lexical block data to
22729         the info we write.  Kind of a hack at the moment - we copy the
22730         lexical block info from the MonoDebugMethodInfo to the
22731         MonoDebugMethodJitInfo here, before writing it.
22732         (mono_debug_read_method): read the lexical block info.
22734         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
22736         * debug-mono-symfile.h: add lexical block support.
22738         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
22739         support.
22741 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22743         * loader.c (mono_lookup_pinvoke_call): Fix warning.
22745         * object.c (mono_runtime_free_method): Call mono_free_method () and
22746         put the TODOs there.
22748         * loader.c (mono_free_method): Free up most memory allocated for 
22749         dynamic methods.
22751 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22753         * reflection.c: properly flag a Type argument to a
22754         named custom attr value (bug #72248).
22756 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22758         * reflection.c: reduce code duplication in named custom
22759         attribute encoding.
22761 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
22763         * reflection.c: properly encode custom attrs of type object
22764         (bug #72649).
22766 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22768         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
22770 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
22772         * socket-io.c: load System.dll if it's not loaded already
22773         (bug #72850 and #70477).
22775 2005-02-21  Martin Baulig  <martin@ximian.com>
22777         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22778         generic instances.
22780 2005-02-21  Martin Baulig  <martin@ximian.com>
22782         * reflection.c (mono_image_build_metadata): We also need to
22783         "fixup" the MethodImpl table after we computed the final method
22784         indices.  Call fixup_methodimpl() to do that.
22785         (fixup_methodimpl): New private method.
22787 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22789         * assembly.c: special case mscorlib.dll (bug#72536),
22790         patch from Carlos Alberto Cortez.
22792 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
22794         * threads-types.h threads.c: Fix build bustage.
22796         * threads.c: Use a union for long<->double conversions.
22798         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
22799         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
22801         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
22802         containing the checkpoint call with NOT_TAKEN.
22803         
22804         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
22805         checkpoint before pushing the arguments, so they won't have to be
22806         spilled to stack.
22808 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22810         * domain.c, assembly.c, domain-internals.h: make some data
22811         const and relocation-free.
22813 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
22815         * object.c, appdomain.c, class-internals.h: introduce the
22816         MonoClassRuntimeInfo structure to hold the info needed to
22817         use a class at runtime. Made mono_class_vtable() lock-free
22818         for all the appdomains.
22820 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
22822         * metadata-internals.h, image.c: introduce a per-image mempool to
22823         be used for memory that has the same lifetime as the image.
22825 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
22827         * domain.c: In mono_init_internal(), instead of selecting the first
22828         runtime version supported by an executable, get a list of all
22829         supported versions and select the one for which an mscorlib exists
22830         (since even if the runtime supports a given version, it doesn't mean
22831         that the framework for that version is installed).
22832         Modified get_runtimes_from_exe to support this behavior.
22833         In supported_runtimes, added information about additional system
22834         assembly versions.
22835         
22836         * assembly.c: Added support for more than one system assembly version
22837         per runtime version. Updated the assembly list.
22838         In mono_assembly_remap_version, removed the initial version check,
22839         since we don't know to which version we need to compare until we
22840         get the version set on which the assembly is based.
22841         Moved the code for loading corlib into the new method
22842         mono_assembly_load_corlib(), so it can be used by the initialization
22843         code.
22844         
22845         * domain-internals.h: Updated data structures and added declaration
22846         for mono_assembly_load_corlib.
22848 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22850         * reflection.c (resolve_object): Fix the creation of the signature in 
22851         the SignatureHelper case.
22853         * assembly.c (mono_assembly_remap_version): Fix binary search.
22854         
22855 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
22857         * class.c: Added inheritance check when a method is overloaded (from a
22858         virtual method or when implementing an interface) and when a class is
22859         inherited. Added functions to set a failure for a class and to 
22860         retreive the exception from a failure.
22861         * class-internals.h: Added fields to MonoClass to keep the exception
22862         information status for inheritance (or other exceptions) to be thrown
22863         later (i.e. not at load time).
22864         * object.c: Throw the inheritance SecurityException when a type is to 
22865         be created with either class or method inheritance violations.
22866         * reflection.c|h: Fix when getting declsec from a class. Removed 
22867         unrequired code for class. Improved sanity in parameter naming.
22868         * security-manager.c|h: Added functions to check for class and method
22869         inheritance.
22871 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22873         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
22874         and has_finalize in dynamic types as well.
22876 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
22878         * culture-info-table.h : fixed currency format for en-GB (and so on).
22880 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
22882         * gc.c: ensure the GC handles never have 0 as a value.
22884 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22886         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
22887         a pointer to a struct to unmanaged code. Fixes #72625.
22889 2005-02-16  Martin Baulig  <martin@ximian.com>
22891         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
22893 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22895         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
22897 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22899         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
22901         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
22902         UnmanagedFunctionPointerAttribute, use it for determining calling convention
22903         etc. Fixes #71471.
22905         * reflection.c (mono_custom_attrs_get_attr): New helper function.
22907         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
22909 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
22911         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
22912         changes to make the current context a field in MonoThread.
22914 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22916         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
22917         the last change.
22918         
22919         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
22920         extracted from mono_marshal_get_native_wrapper.
22922         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
22923         to create wrappers around native functions.
22925         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
22926         delegates for arbitrary function pointers. Fixes #71472.
22928 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22930         * threads.c: cleaned up the code a little.
22932 2005-02-15  Martin Baulig  <martin@ximian.com>
22934         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
22935         the data table.
22937         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
22938         allocate larger chunks if needed.
22940 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22942         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
22943         in by mistake.
22945 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
22947         * domain.c: keep the domains in an array and ensure the domain ids
22948         are kept small, so they can be used as indexes to domain-specific data
22949         with a small memory overhead.
22951 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22953         * icall.c: Handle byref types in Type icalls. Fixes #72544.
22955 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
22957         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
22959 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
22961         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
22963         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
22964         values.
22966         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
22967         
22968 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
22970         * domain-internals.h: add the hashtable here.
22972         * class-internals.h: Remove `info' from MonoMethod
22974         * domain.c: Add a new hashtable, jit_trampoline_hash
22976 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22978         * object.c: don't set the value of static fields
22979         (fixes bug#72494).
22981 2005-02-11  Martin Baulig  <martin@ximian.com>
22983         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
22984         (mono_debug_add_method): Silently ignore the method if it's too big.
22985         (mono_debug_add_type): Likewise.
22987 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
22989         * threads.c, appdomain.c: remove #ifdefs from the code.
22991 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
22993         * metadata-internals.h: Added flags to MonoAssembly to cache the most
22994         common security informations. This allows us to stay in unmanaged code
22995         when doing LinkDemand and it's special cases (except for the first 
22996         time for initialization). The flags a very much used with --security.
22997         * reflection.c|h: Added code to get declarative security attributes 
22998         for LinkDemand and InheritanceDemand. This required to refactor the
22999         existing code for Demand.
23000         * security-manager.c|h: Added new method fields for the special cases
23001         of LinkDemand.
23003 2005-02-10  Martin Baulig  <martin@ximian.com>
23005         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23006         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23008 2005-02-10  Martin Baulig  <martin@ximian.com>
23010         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23011         debugging code; this is almost a complete rewrite.
23013         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23015 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23017         * domain.c, object.h: expose mono_string_equal () and 
23018         mono_string_hash ().
23019         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23020         it's implemented in managed code.
23022 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23024         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23025         lo leak objects between appdomains.
23027 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23029         * assembly.c: old compilers compilation fix from 
23030         robertj@gmx.net (Robert Jordan).
23032 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23034         * class-internals.h: Little reminder for the future.
23036         * debug-helpers.c: Fix up wrapper_type_names
23038 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23040         * image.c, metadata-internals.h: when loading an image from a file,
23041         mmap all of it and use the same codepaths as when using a
23042         in-memory image: the code is simpler and we use less memory
23043         (both writable and readonly).
23045 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23047         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23048         API to alloc runtime data structures that need to be tracked by the
23049         GC and contain pointers.
23050         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23051         make the code more readable and eventually use a different GC.
23053 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23055         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23056         for out arguments.
23057         
23058 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23060         * object.c: In release_type_locks(), don't release the cctor lock
23061         if it has already been released. This fixes a crash in the
23062         thread5 test.
23064 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23066         * gc.c, marshal.c, icall.c: register a delegate for finalization
23067         only when the native function pointer has been allocated for it.
23069 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23071         * object.c: cleaned up some code, allocate objects that are
23072         pointer free with the atomic malloc variant. Allocate memory
23073         for static data from the mempool if it's pointer-free.
23074         Allocate the bounds array at the end of the array data, when needed.
23075         * object-internals.h, object.h: move a private function in a private
23076         header.
23077         * class.c: handle missing case in tracking references in fields.
23079 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23081         * class.c, class-internals.h: keep track if a type has
23082         reference fields in either the instance or static fields.
23084 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23086         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23087         and renamed to MonoRuntimeInfo. Added fields to store the expected
23088         framework assembly version. Changed mono_get_framework_version and
23089         mono_get_runtime_version for a single mono_get_runtime_info method.
23090         
23091         * assembly.c: Added method to remap system assembly versions to the
23092         current executing runtime version. Removed old mapping code.
23093         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23094         
23095         * icall.c, reflection.c: Track api changes.
23097 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23099         * loader.c (method_from_memberref): Improve error reporting,
23100         produce the class name instead of the typeref/typedef index. 
23102 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23104         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23106 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23108         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23109         stdcall and charset name mangling.  Reorganize the code and add
23110         some tracing stuff.
23112 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23114         * monodiet.c: More iters!
23116         * marshal.c: Iter usage.
23118         * icall.c: Iter usage.
23120         * object.c: Use iters.
23122         * debug-helpers.c: More iters
23124 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23126         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23127         under win32.
23129 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23131         * mono-debug-debugger.c: use iters
23133         * class.c, class-internals.h: mono_class_setup_events is static
23134         now
23136         * All callers: use iters
23138 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23140         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23141         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23143 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23145         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23147         * marshal.h: Add prototypes for ldfld/stfld_remote.
23149         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23150         this is called during startup.
23151         
23152 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23154         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23155         MonoThreadsSync struct private in monitor.c. Changed the way
23156         MonoThreadsSync is allocated so it's faster and there is no
23157         need to keep track of it with a finalizer and it uses less memory.
23158         This also finally allows us to allocate mono objects as ptrfree when
23159         there are no reference fields.
23161 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23163         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23164         disappearing link to the GC interface and use them to simplify
23165         the gchandles code.
23167 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23169         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23170         stfld_remote which call mono_load/store_field_new. This allows methods
23171         calling ldfld/stfld wrappers to be AOTed.
23173         * console-io.c: Include sys/filio.h under solaris.
23174         
23175         * console-io.c: Include curses.h if needed correctly.
23177 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23178         
23179         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23180         method->klass as well.
23182         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23184         * class.c (mono_class_init): Switch on lazy initialization of 
23185         methods.
23187         * class.c (mono_class_get_finalizer): Handle the case when the 
23188         finalizer is inherited.
23190 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23192         * console-io.c: <curses.h> is needed by term.h on solaris.
23194 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23196         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23197         mono_class_setup_properties where possible. Remove this ftn from
23198         the header file, and make it static.
23200 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23202         * loader.c: Add missing setup_... call.
23204         * class.c: Add missing setup_... calls.
23206         * class.c (mono_class_init): Switch on lazy initialization of 
23207         the generic vtable.
23208         
23209         * class.c (mono_class_init): Fix generics broken by the recent changes.
23211         * monodiet.c (handle_type): Add missing setup_... calls.
23213         * class.c: Back out garbage in previous patch.
23214         
23215         * class.c: Add missing setup_... calls.
23217         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23218         mono_class_setup_methods () if possible.
23220         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23222         * class-internals.h (MonoCachedClassInfo): New structure.
23224         * class.c: Initialize properties and events fields of MonoClass lazily.
23226         * class.c: Add infrastructure for lazily initializing the methods and
23227         vtable fields of MonoClass. Not yet used.
23229         * class.c (mono_class_get_finalizer): New helper function.
23231         * class.c: Add infrastructure for loading some class related data from
23232         an AOT file.
23234         * object.c: Add infrastructure for initializing the vtable from data
23235         in the AOT file.
23237         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23239         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23240         appropriate initialization function before accessing parts of the
23241         MonoClass structure.
23243         * marshal.c: Fix warnings.
23244         
23245         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23247         * mono-debug-debugger.c (get_exception_message): Use 
23248         mono_class_get_method_from_name_flags ().
23250 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23252         * reflection.c, appdomain.c: Replace a few manual searches that
23253         Zoltan missed. (Paolo approved this part of my initial patch).
23255 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23257         * profiler.c: disable recording statistical events at report time.
23259 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23261         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23262         to byteswap arrays of enum values, too (bug #72080).
23264 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23266         * appdomain.c (set_domain_search_path): Allow this to be called if
23267         domain->setup is not yet set.
23269         * loader.c (mono_method_get_index): New helper function.
23271         * loader.c reflection.c: Use mono_method_get_index ().
23273         * class.c (mono_class_get_method_from_name_flags): New helper method.
23275         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23276         this.
23278         * class.c (mono_class_get_cctor): New helper method.
23280         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23281         mono_class_get_method () to look up methods.
23283 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23285         * console-io.c: Fix the build, this should work on Windows.
23287 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23289         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23290         be set to null to keep things valid
23292 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23294         * icall.c: added Console 2.0 icalls.
23295         * Makefile.am: added console-io.[ch]
23296         * console-io.[ch]: internal calls for Console 2.0 API.
23298 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23300         * class.c: make sure we consider all the interfaces
23301         when calculating max_interface_id (bug found by
23302         Jeroen Frijters running ikvm).
23304 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23306         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23307         valuetype fields to null.
23309         * object.c (set_value): Ditto. Fixes #71669.    
23311 2005-01-31  Martin Baulig  <martin@ximian.com>
23313         * metadata.c (mono_metadata_has_generic_params): New public
23314         function; checks whether something is a generic method.
23316 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23318         * appdomain.c: fix infinite recursion when adding assemblies.
23320 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23322         * object.c: Fix small typo to return all items for Environment.
23323         GetCommandLineArgs.
23325 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23327         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23328         reflection.c: more domain and assembly-unload related fixes
23329         and memory leaks plugs.
23331 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23333         * 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.
23335 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23337         * loader.c (mono_method_signature): Make this method lazy
23338         (mono_get_method_from_token): Don't computate the signature here.
23340         Doing this saves quite a bit of memory. I got 90 kb on starting up
23341         monodoc. It should also save some disk reads on startup.
23343         * *: MonoMethod->signature might be NULL now. You *MUST* use
23344         mono_method_signature.
23346 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23348         * object.c (mono_runtime_get_main_args): Return an array from the
23349         current domain here. Fixes #71938.
23351 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23353         * monitor.c: formatting changes to comply with the
23354         mono coding style and remove #ifdefs from the code.
23356 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23358         * metadata.c, private.h: remove some unneeded data
23359         and use a more compact representation for table schemas.
23361 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23363         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23364         to get a better distribution in hash tables.
23365         * *.c: use mono_aligned_addr_hash() where appropriate.
23366         * assembly.c: make var static.
23368 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23370         * domain-internals.h: Put MonoJitInfo on a diet.
23372         * domain.c: Fix a warning.
23374 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23376         * gc.c: rework the gc handles code to reuse handles
23377         when freed.
23379 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23381         * domain.c: fixed long standing bug in mono_string_equal() which
23382         was brought to light with the ldstr changes.
23384 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23386         * reflection.c: Remove warning by adding missing include for marshal.h
23388 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23390         * domain.c, object.c: change the ldstr_table to hold
23391         MonoString* as keys: makes the runtime isinterned lookup
23392         faster and simplifies memory management.
23394 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23396         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23397         possible to add imperative security checks before calling the icall.
23398         * reflection.c: Return security attributes on the original MonoMethod
23399         (and not the wrapped one). This fix permissions on icalls.
23401 2005-01-25  Dick Porter  <dick@ximian.com>
23403         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23404         the check for mktime() support actually test the mktime() return
23405         value.  "Fixes" bug 71682, though the output is still different to
23406         MS.
23408 2005-01-25  Martin Baulig  <martin@ximian.com>
23410         * class.c (mono_class_is_assignable_from): Make this work for
23411         generic instances.
23413 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23415         * marshal.c (mono_string_utf8_to_builder)
23416         (mono_string_builder_to_utf16): We might not have ownership of the
23417         string. In thise case, we need to create a new buffer.
23419         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23420         be null, in which case, use the default capacity.
23422 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23424         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23425         GC events to the profiler.
23427 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23429         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23430         if you don't want the GC to run.
23432 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23434         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23435         start providing a GC API and keeping different implementations in
23436         their own file.
23437         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23439 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23441         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23442         mmap rather than allocating a huge buffer.
23443         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23444         above.
23446 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23448         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23449         and CheckExecutionRights.
23450         * reflection.c|h: Keep the index of the declarative security to be 
23451         used, instead of the pointer, when AOT compiler is used. Also add 
23452         class initialization when requesting demands.
23453         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23454         CheckExecutionRights. Both properties are now FALSE by default, and
23455         unmodifiable, unless the --security option is used.
23457 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23459         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23460         reflection.c: properly refcount images and assemblies, many leaks fixed.
23462 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23464         * threadpool.c: increase the timeout for threads in the thread pool to
23465         10s.  Fixes bug #67159.
23467 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23469         * class-internals.h: Sun's compiler insists on explicit
23470         signed on bit fields to handle then correctly.
23472 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23474         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23475         Make the size of the array fit only the number of invalid path
23476         chars that we have.
23478         * class.c (_mono_class_get): Improve the error reporting when a
23479         class referenced is not found, to assist debugging. 
23481 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23483         * threads.c: fix off-by-one error.
23484         * domain.c: free data allocated in the domain.
23486 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23488         * reflection.c (mono_method_body_get_object): Fill out exception info
23489         as well.
23491         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23492         structure.
23493         
23494 2005-01-19  Martin Baulig  <martin@ximian.com>
23496         * loader.c (mono_get_method_constrained): Make this work again.
23498 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23500         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23501         guint16 to match the managed side.
23503         * reflection.c (mono_reflection_body_get_object): Fill out local
23504         variables array.
23506         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23507         as well.
23509         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23510         'local_var_sig_token'.
23512 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23514         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23515         System.Drawing.
23517         * reflection.c (mono_method_body_get_object): Handle abstract and
23518         runtime methods.
23520 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23522         * marshal.c, loader.c, class-internals.h, reflection.c:
23523         store the emthod data for a wrapper in an array instead of a list.
23525 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23527         * marshal.c: change the code to allocate memory more
23528         conservatively for method wrappers.
23530 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23532         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23533         fields from MonoClass to the marshal info structure where they belong.
23535 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23537         * class.c, object.c, class-internals.h, marshal.c: rearrange
23538         some fields and tweak some types to lower memory usage.
23540 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23542         * threads.c (signal_thread_state_change): Handle the case when the
23543         target thread is the current thread.
23545         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23547         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23548         emit_ptr_to_object_conv. 
23550         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23551         marshalling. Fixes #71352.
23553 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23555         * metadata.h, blob.h: move table enum to blob.h so it can be included
23556         in any header.
23557         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23558         cut the size of MonoImage/MonoDynamicImage.
23560 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23562         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23564 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23566         * reflection.c, reflection.h, icall.c: add a function to check
23567         if an attribute type is defined for a metadata object.
23569 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23571         * object-internals.h: Added some needed fields from StringBuilder class.
23572         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23574 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23576         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23577         threads before shutting down the runtime.
23579         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23581 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23583         * object-internal.h, threads.c: implement stacksize and 
23584         parameterized thread start functionality (requires
23585         matching corlib). Marked broken code for later removal.
23587 2005-01-12  Martin Baulig  <martin@ximian.com>
23589         * class-internals.h (MonoGenericClass): Moved the `initialized'
23590         flag to MonoDynamicGenericClass, removed `init_pending'.
23591         (MonoGenericInst): Added `is_reference' flag.
23593 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23595         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23596         inside the MSDOS header. Fixes #71201.
23598         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23599         gc thread.
23600         (mono_domain_finalize): Ditto.
23602 2005-01-12  Martin Baulig  <martin@ximian.com>
23604         * class.c (mono_get_shared_generic_class): Use the cache for
23605         non-dynamic generic classes.
23607         * class-internals.h (mono_class_create_generic_2): Removed
23608         function prototype, this function is now static inside class.c.
23610         * class.c (mono_class_create_generic_2): Made this static, only
23611         call it from mono_class_init() and mono_class_setup_parent().
23612         (collect_implemented_interfaces_aux): Call mono_class_init() on
23613         the interfaces we collect.
23614         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23616 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23618         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23619         it a real thread handle.
23621         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23622         MonoJitExceptionInfo, since each catch clause needs its own variable.
23623         
23624 2005-01-11  Dick Porter  <dick@ximian.com>
23626         * image.c (mono_pe_file_open): New variant on mono_image_open()
23627         that does not set up the CLI metadata; used for FileVersionInfo so
23628         it can get the data for windows binaries too.
23629         
23630         * process.c (process_read_string_block): Don't read off the end of
23631         the StringTable block.
23633         These both fix bug 70766.
23635 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23637         * gc.c: set some fields to NULL at GC cleanup time.
23638         * threads.c: if we quit the main thread, call exit ().
23640 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23642         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23644 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23646         * threads.h, threads.c, object.c: added accessor and settor for
23647         main_thread. Handle it specially when exiting from it: wait
23648         for other foreground threads to exit.
23650 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23652         * process.c, verify.c: remove some bloat.
23654 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23656         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23657         the calling convention to cdecl under win32.
23659 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23661         * object.c (mono_object_get_size): New function to get the size of
23662         an object instance.
23664         * profiler.c (simple_allocation): Use above.
23666 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23668         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23669         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23670         get an appdomain by it's id and we can't assume the root's id is 0).
23671         * domain-internals.h: Change the function prototype to match.
23672         * icall.c: Change the icall table for AppDomain.
23674 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23676         * locales.c (string_invariant_compare_char): Only compute
23677         GUnicodeTypes in the case where we need them.  Test for ordinality
23678         first and return if so.
23680         From the commit:
23682                 /*
23683                  * FIXME: here we must use the information from c1type and c2type
23684                  * to find out the proper collation, even on the InvariantCulture, the
23685                  * sorting is not done by computing the unicode values, but their
23686                  * actual sort order.
23687                  */
23689 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23691         * loader.c: for P/Invoke methods, allow the "Internal" shared
23692         library name to refer to the calling process symbol namespace.
23694 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23696         * Makefile.am: Add the security manager to the build.
23697         * security-manager.c|h: New. Initialization of the security manager.
23699 2005-01-07  Dick Porter  <dick@ximian.com>
23701         * threads.c: 
23702         * monitor.c: Update thread state during Monitor and WaitHandle
23703         waits.  Fixes bug 71031.
23705 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23707         * reflection.c (property_encode_signature): Correctly handle when the
23708         property has no methods.
23710 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23712         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
23713         
23714         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
23715         fields from mb, not rmb. Fixes #71017.
23717         * marshal.c (emit_ptr_to_str_conv): Add support for 
23718         ByValTStr -> string conversion. Fixes #71015.
23720         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
23722         * mempool.c (mono_mempool_contains_addr): New helper function.
23724 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23726         * metadata.c (mono_metadata_compute_size): Fix size calculation of
23727         HasSematics encoded fields.
23728         
23729         * metadata.c (mono_type_to_unmanaged): Improve error message for 
23730         invalid string marshalling.
23732         * metadata.c: Fix warnings.
23733         
23734 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23736         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
23737         profiler support.
23739 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23741         * domain.c object.c domain-internals.h: Revert part of r38077 since the
23742         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
23743         tests.
23745 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
23747         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
23748         so methods containing these can be AOTed.
23750 2005-01-03  Martin Baulig  <martin@ximian.com>
23752         * loader.c (find_method): Removed the hack for generic instances.
23753         (method_from_memberref): If our parent is a generic instance, pass
23754         its generic type definition to find_method() and then inflate the
23755         method.
23756         (mono_get_method_constrained): Pass the generic type definition to
23757         find_method() and inflate the method later.
23759         * class-internals.h (MonoStats): Added `generic_class_count'.
23761         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
23762         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
23764         * reflection.c (mono_custom_attrs_from_params): Don't ignore
23765         generic type definitions.
23767 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
23769         * loader.c icall.c: Fix warnings.
23771 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
23773         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
23774         blittable types. Fixes #70864.
23776 2004-12-29  Martin Baulig  <martin@ximian.com>
23778         * icall.c
23779         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
23781         * reflection.c (mono_method_get_object): Create a
23782         "System.Reflection.MonoGenericMethod" for inflated methods; don't
23783         call mono_get_inflated_method().
23785         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
23787 2004-12-27  Martin Baulig  <martin@ximian.com>
23789         * class-internals.h (MonoMethod): Added `is_inflated' flag.
23790         (MonoMethodInflated): Added `inflated' field.
23792         * class.c (mono_class_inflate_generic_method): Don't really
23793         inflate the method here; just set the `is_inflated' flag in the
23794         MonoMethod.
23795         (mono_class_get_inflated_method): Actually inflate the method here
23796         if it's not already inflated; we use the MonoMethodInflated's new
23797         `inflated' field as a cache.
23799 2004-12-26  Martin Baulig  <martin@ximian.com>
23801         * class.c
23802         (inflate_generic_class): Moved some code out of inflate_generic_type().
23803         (mono_class_inflate_generic_method): If we're already inflated,
23804         inflate the context and use the declaring method; ie. make sure
23805         the declaring method of an inflated method is always the generic
23806         method definition.
23807         (mono_class_create_from_typedef): Create
23808         `class->generic_container->context->gclass'.
23810 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
23812         * metadata-internals.h, marshal.c, reflection.c: More
23813         MonoGHashTable->GHashTable.
23815         * domain-internals.h, class.c: Change MonoGHashTable's into
23816         GHashTables for some cases where no gc stuff is used
23818         All users: update apis
23820 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
23822         * metadata.c (builtin_types): Make this `const'. Makes this get
23823         put into the shareable section.
23824         (mono_metadata_init): Casts to make gcc happy.
23826 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
23828         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
23830 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
23832         * icall.c: Added an internal call to retrieve the position and length
23833         of assembly-level declarative security attributes (RequestMinimum, 
23834         RequestOptional and RequestRefuse). This is used by the Assembly class
23835         to re-create the corresponding permission sets.
23837 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
23839         * marshal.c: fix the stelemref wrapper to be type correct
23840         (and faster).
23842 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
23844         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
23845         to do key & 0x7fffffff. Hashtable already does this. It just
23846         results in longer code.
23848 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
23850         * appdomain.c: Bump corlib version.
23851         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
23852         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
23853         * reflection.c|h: Add functions to get declarative security infos
23854         (blob position and length) for assemblies, classes and methods.
23856 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
23858         * reflection.c: sort the constant table (bug #70693).
23860 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
23862         * object-internals.h, threads.c, domain.c: add accessors for
23863         the MonoThread and MonoDomain tls keys.
23865 2004-12-18  Martin Baulig  <martin@ximian.com>
23867         * class.c (inflate_generic_type): If we're inflating a generic
23868         instance, set `ngclass->context->container = context->container';
23869         ie. the container we inflated into.
23871         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23872         inflate_generic_type() changes.
23874 2004-12-17  Martin Baulig  <martin@ximian.com>
23876         * class-internals.h
23877         (MonoGenericClass): Replaced `MonoType *generic_type' with
23878         `MonoClass *generic_class'.  Removed `dynamic_info'; if
23879         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
23880         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
23882 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
23884         * exception.c (mono_exception_from_token): New helper function.
23886 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
23888         * assembly.c (mono_assembly_load_with_partial_name): Call 
23889         mono_assembly_loaded before invoking the preload hooks. Fixes
23890         #70564.
23892         * object-internals.h (MonoThread): Change culture_info and 
23893         ui_culture_info into an array.
23895         * threads.c: Cache culture info objects from more than one appdomain.
23897         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
23898         current UI culture.
23900 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
23902         * threads.h threads.c appdomain.c: Clear the culture_info field of
23903         all threads during unloading if they point to an object in the dying
23904         appdomain.
23906 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
23908         * culture-info.h (TextInfoEntry): New struct
23909         * object-internals.h: sync with managed
23910         * locales.c: fill the `text_info_data' field
23911         * culture-info-tables.h: update
23913 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23915         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
23916         collector.
23918 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
23920         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
23921         (ves_icall_ModuleBuilder_getMethodToken): Ditto
23923 2004-12-12  Martin Baulig  <martin@ximian.com>
23925         * mono-debug-debugger.c (write_type): If we're an enum and the
23926         builtin types have already been initialized, call mono_class_init().
23928 2004-12-11  Martin Baulig  <martin@ximian.com>
23930         * metadata.c (mono_metadata_load_generic_params): Added
23931         `MonoGenericContainer *parent_container' argument; automatically
23932         compute `container->is_method'; pass the correct owner to
23933         get_constraints().      
23935         * reflection.c (compare_genericparam): Sort the GenericParam table
23936         according to increasing owners. 
23938 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
23940         * profiler.c: allow disabling the default profiler.
23942 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
23944         * decimal.c, icall.c: allow disabling System.Decimal support.
23946 2004-12-09  Marek Safar <marek.safar@seznam.cz>
23948         * reflection.c: Add support for null attribute arguments.
23950 2004-12-09  Martin Baulig  <martin@ximian.com>
23952         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
23953         names to get rid of compiler warnings.
23955 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23957         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
23958         mono_marshal_load_type_info (). Fixes #69625.
23959         (mono_marshal_get_ptr_to_struct): Likewise.
23961 2004-12-08  Martin Baulig  <martin@ximian.com>
23963         * mono-debug.h: Bumped version number to 47.
23965         * mono-debug-debugger.c
23966         (mono_debugger_event_handler, mono_debugger_event): Take two
23967         guint64 arguments insteed of a gpointer and a guint32.  
23969 2004-12-08  Martin Baulig  <martin@ximian.com>
23971         * debug-mono-symfile.h
23972         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
23973         `address' to `native_offset'.
23975 2004-12-08  Martin Baulig  <martin@ximian.com>
23977         * class.c (mono_class_create_from_typespec): Only inflate if we
23978         either have `context->gclass' or `context->gmethod'.
23980 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23982         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
23984         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
23986         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
23988         * reflection.c (mono_assembly_get_object): Remove the workaround put
23989         in for the release.
23990         
23991         * appdomain.c: Use the corlib_internal field from MonoAssembly.
23993         * appdomain.c: Bump corlib version.
23995         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
23996         be visible in other appdomains.
23998 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24000         * threads.c: Interlocked inc and dec for longs were messed up,
24001         use a KISS based impl for this. Fixes 70234
24003 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24005         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24007 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24009         * icall.c: fix to follow policy not to allow struct
24010         arguments in icalls.
24012 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24014         * process.c: make the patch that handles spaces in file paths work
24015         on mono/windows too.
24017 2004-12-06  Martin Baulig  <martin@ximian.com>
24019         * class.c (mono_class_create_generic): Call
24020         mono_class_setup_supertypes() if we're dynamic.
24021         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24023 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24025         * object-internals.h: Add new fields to MonoThread.
24027         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24029         * icall.c threads-types.h threads.c: Add new icalls.
24031         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24033         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24034         managed side.
24036         * appdomain.c: Bump corlib version.
24038         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24039         internal assemblies. Fixes #69181.
24041 2004-12-05  Martin Baulig  <martin@ximian.com>
24043         * class.c (mono_class_inflate_generic_signature): Make this a
24044         no-op if `context' is NULL or we don't have any type parameters;
24045         also copy `sentinelpos'.        
24047 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24049         * image.c: Add unbox_wrapper_cache.
24051         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24053         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24054         function generator.
24055         
24056         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24057         Fixes #70173.
24059         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24060         
24061 2004-12-04  Martin Baulig  <martin@ximian.com>
24063         * loader.c (mono_method_get_signature_full): New public function;
24064         like mono_method_get_signature(), but with an additional
24065         `MonoGenericContext *' argument.
24067         * class.c (mono_class_inflate_generic_signature): Formerly known
24068         as inflate_generic_signature(); make this public.
24070 2004-12-04  Martin Baulig  <martin@ximian.com>
24072         * metadata.c
24073         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24074         instead of a `MonoGenericContainer *'.  
24075         (mono_metadata_parse_array_full): Likewise.
24076         (mono_metadata_parse_signature_full): Likewise.
24077         (mono_metadata_parse_method_signature_full): Likewise.
24078         (mono_metadata_parse_generic_inst): Likewise.
24079         (mono_metadata_parse_generic_param): Likewise.
24080         (mono_metadata_parse_mh_full): Likewise.
24081         (mono_type_create_from_typespec_full): Likewise.
24083 2004-12-03  Martin Baulig  <martin@ximian.com>
24085         * class-internals.h (MonoGenericContainer): Replaced the
24086         `MonoGenericContext * pointer with a `MonoGenericContext'
24087         structure and made it the first element.
24089 2004-12-03  Martin Baulig  <martin@ximian.com>
24091         * class.c
24092         (inflate_generic_type): Set the `context->container' when creating
24093         a new MonoGenericContext.
24094         (mono_class_inflate_generic_method): Likewise.
24095         (mono_class_create_from_typespec): Just use `context->container'
24096         to get the container.
24098         * loader.c (method_from_methodspec): Set `context->parent' from
24099         `context->container' - and if that's a method container, use its
24100         parent.  Also set the `context->container' when creating a new
24101         MonoGenericContext.
24102         (mono_get_method_from_token): Use just `context->container' to get
24103         the container.
24105         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24106         `gclass->context->container'.
24108         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24109         the `context->container' when creating a new MonoGenericContext.
24111 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24113         * reflection.c (compare_genericparam): Sort params with identical
24114         owner by their number. Fixes gen-111 on sparc.
24116 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24118         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24119         around the domain changes.
24121         * appdomain.c (mono_domain_unload): Handle the case when the thread
24122         calling Unload is itself being aborted during unloading. Fixes #70022.
24124         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24126         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24127         checkpoint_func as an icall so it gets a wrapper.
24128         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24129         in the cross-appdomain wrappers too.
24131         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24133         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24135         * reflection.c: Fix some memory leaks.
24136         
24137 2004-12-02  Martin Baulig  <martin@ximian.com>
24139         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24141         * metadata.c (generic_class_cache): New static hashtable.
24142         (mono_metadata_lookup_generic_class): New public method.
24144 2004-12-02  Martin Baulig  <martin@ximian.com>
24146         * class.c (mono_class_create_from_typedef): Call
24147         mono_class_setup_parent() and mono_class_create_mono_type() before
24148         parsing the interfaces.
24150 2004-12-02  Martin Baulig  <martin@ximian.com>
24152         * metadata.c (generic_inst_cache): New static hashtable.
24153         (mono_metadata_lookup_generic_inst): New public function.
24154         (mono_metadata_inflate_generic_inst): New public function.
24155         (mono_metadata_parse_generic_inst): New public function.
24156         (do_mono_metadata_parse_generic_class): Use the new
24157         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24158         since this'll also use the cache.
24160         * reflection.c (mono_reflection_bind_generic_method_parameters):
24161         Use mono_metadata_lookup_generic_inst() to use the new cache.
24163         * class.c (inflate_mono_type): Use
24164         mono_metadata_inflate_generic_inst() to inflate a generic
24165         instance; this'll also use the new cache.
24167         * loader.c (method_from_methodspec): Use
24168         mono_metadata_parse_generic_inst() and
24169         mono_metadata_inflate_generic_inst() rather than parsing it
24170         manually, so we can use the new cache.
24172 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24174         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24175         the wait times out.
24177 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24179         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24180         iter->args based on whether parameters are passed in registers (i.e.
24181         MONO_ARCH_REGPARMS is defined)
24183 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24185         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24186         the exception message. Fixes #70070.
24187         (method_from_methodspec): Fix warnings.
24189 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24191         * process.c: (complete_path) return the path quoted
24193 2004-12-01  Martin Baulig  <martin@ximian.com>
24195         * class-internals.h (MonoGenericInst): New structure.
24196         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24197         `is_open' with `MonoGenericInst *inst'.
24198         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24199         `is_open' with `MonoGenericInst *inst'.
24201 2004-11-30  Martin Baulig  <martin@ximian.com>
24203         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24205         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24206         to `generic_class_cache'.
24208         * metadata.c
24209         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24210         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24211         (mono_generic_inst_is_valuetype): Renamed to
24212         mono_generic_class_is_valuetype().
24214         * class-internals.h
24215         (MonoGenericInst): Renamed to MonoGenericClass.
24216         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24217         (MonoClass): Renamed `generic_inst' to `generic_class'.
24218         (MonoGenericContext): Renamed `ginst' to `gclass'.
24220         * object-internals.h
24221         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24223         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24224         mono_reflection_generic_class_initialize().
24226         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24227         now known as "System.Reflection.MonoGenericClass".
24228         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24230 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24232         * class-internals.h: Added a flag field to MonoClass to cache the
24233         declarative security attributes actions associated with the class.
24234         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24235         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24236         applicable to the JITted method.
24237         * reflection.c|h: Added functions to extract (as flags) which security
24238         actions are available (declaratively) for a method, class or assembly.
24239         * metadata.c|h: Added functions to search the declarative security
24240         table in the metadata.
24241         
24242 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24244         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24245         EXPORTEDTYPES are already in the class name cache, so there is no
24246         need to add extra code here to look at them. Just removes a bit of
24247         cruft.
24249         (ves_icall_System_Environment_get_TickCount): No need for #if
24250         WINDOWS. We already have the code in io-layer.
24252 2004-11-28  Martin Baulig  <martin@ximian.com>
24254         * loader.c
24255         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24256         Fixes gen-112.cs.
24258 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24260         * assembly.c (do_mono_assembly_open): Instead of having a
24261         conditional WITH_BUNDLE, incorporate support for bundles here, by
24262         having a global `bundles' variable holding a pointer to the actual
24263         bundles. 
24265         (mono_register_bundled_assemblies): New API call used by the
24266         bundle code. 
24268         See mkbundle.1 for details.
24269         
24270 2004-11-27  Martin Baulig  <martin@ximian.com>
24272         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24273         the vtable for generic methods.
24275 2004-11-26  Martin Baulig  <martin@ximian.com>
24277         * metadata.c
24278         (mono_metadata_generic_method_hash): New public function.
24279         (mono_metadata_generic_method_equal): Likewise.
24281         * class-internals.h
24282         (MonoGenericContainer): Added `GHashTable *method_hash'.
24284         * reflection.c (ReflectionMethodBuilder): Added
24285         `MonoGenericContainer *generic_container'.
24286         (reflection_methodbuilder_to_mono_method): Don't create a new
24287         MonoGenericContainer each time we're called.
24288         (mono_reflection_bind_generic_method_parameters): Use
24289         `container->method_hash' to cache the results so we don't create a
24290         different method if we're called several times with the same
24291         arguments.
24293         * loader.c (method_from_methodspec): Use the new
24294         `container->method_hash' here, too.
24296 2004-11-26  Martin Baulig  <martin@ximian.com>
24298         * class.c (inflate_generic_signature): Correctly compute
24299         `res->has_type_parameters'.
24300         (mono_class_vtable): Use the `has_type_parameters' flag to
24301         determine whether we're a generic method.
24303         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24305 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24307         * object.c (mono_runtime_run_main): Fix a small memory leak.
24309 2004-11-25  Martin Baulig  <martin@ximian.com>
24311         * class.c (set_generic_param_owner): Fixed the loop.
24313 2004-11-25  Martin Baulig  <martin@ximian.com>
24315         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24316         generic methods.
24318 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24320         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24321         names. Fixes #69787.
24323 2004-11-24  Martin Baulig  <martin@ximian.com>
24325         * class.c (mono_class_create_generic_2): If we don't have a
24326         `ginst->parent', inflate `gklass->parent' to get our parent.
24328 2004-11-24  Martin Baulig  <martin@ximian.com>
24330         * reflection.c (compare_genericparam): Correctly sort the
24331         GenericParam table; fixes #69779.
24333 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24335         * reflection.c: When writing a PE file, don't create a huge
24336         buffer in memory. Just write the arrays we have to the file.
24337         This reduces memory usage.
24339         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24340         globally.
24342 2004-11-17  Martin Baulig  <martin@ximian.com>
24344         * class.c (mono_class_init): Don't setup `class->parent' for
24345         dynamic instances; moved this to mono_class_generic_2().
24346         (mono_class_create_generic): Also set `klass->inited' for dynamic
24347         generic instances.
24348         (mono_class_create_generic_2): Don't do anything for dynamic
24349         generic instances.  Set `klass->parent' here and also call
24350         mono_class_setup_parent() here. 
24352         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24353         `MonoType *parent' argument; set `ginst->parent' before calling
24354         mono_class_create_generic_2(), so we set the correct parent.
24356 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24358         * reflection.c: allow getting attributes from ModuleBuilder
24359         (used by ikvm).
24361 2004-11-17  Martin Baulig  <martin@ximian.com>
24363         * class.c (mono_class_create_from_typedef): If a type parameter is
24364         inherited from an outer class, set its owner to that class.
24366 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24368         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24369           for (int*) written size. This fixes bug #69592.
24371 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24373         * icall.c: Added IsAuthenticodePresnet internal call.
24374         * image.c|h: New function that check a MonoImage for an Authenticode
24375         signature in the certificate PE data directory.
24376         * security.c|h: New internal call to ask the runtime if an 
24377         Authenticode signature seems referenced in the PE header.
24379 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24381         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24383         * reflection.c (mono_image_create_pefile): Free the assembly streams
24384         after writing out the assembly file.
24386         * object.c (mono_runtime_run_main): Fix small memory leak.
24388         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24389         property access modifiers. Fixes #69389.
24391 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24393         * domain.c, object.c, object-internals.h, domain-internals.h,
24394         object.h, marshal.c: keep dynamic code info per domain.
24396 2004-11-15  Martin Baulig  <martin@ximian.com>
24398         * class.c (mono_type_get_name_recurse): Put type arguments in
24399         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24400         see bug #68387.
24402 2004-11-15  Martin Baulig  <martin@ximian.com>
24404         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24405         (mono_class_setup_vtable): When computing `the_cname' for a
24406         generic instance, don't include the namespace since we'd otherwise
24407         add it twice.
24409 2004-11-15  Martin Baulig  <martin@ximian.com>
24411         * class.c (mono_class_create_generic): Changed return type to void.
24412         (mono_class_create_generic_2): New public function; setup
24413         `class->method', `class->field' and `class->interfaces' here
24414         instead of in mono_class_init().
24416         * class.h (mono_class_create_generic): Moved to class-internals.h.
24418 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24420         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24421         rather than writing to memory, write to this file. Right now,
24422         we are just writting into a buffer, and copying that. However
24423         we can avoid the buffer later.
24425         (mono_dynamic_stream_reset): new function
24427         * icall.c, object-internals.h: update for the above.
24429 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24431         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24432         have been using gc'd memory. First it is slower, unlikely
24433         the comment in the source code said, secondly, it increases
24434         our footprint to do it in the gc.
24436         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24437         the method so that it does not have to copy to managed code.
24439 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24441         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24443 2004-11-12  Martin Baulig  <martin@localhost>
24445         * reflection.c (mono_image_create_token): Allow generic method
24446         definitions here, since they may appear in an `.override'; see
24447         gen-98/gen-99 for an example.
24449 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24451         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24452         #69365.
24454         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24455         descriptive.
24457 2004-11-11  Martin Baulig  <martin@ximian.com>
24459         * class.c (mono_class_setup_vtable): In an explicit interface
24460         implementation, the method name now includes the arity.
24462 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24464         * object.c (mono_array_full_copy): Fix warning.
24466 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24468         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24469         mono_class_get_method_from_name() instead.
24470         
24471         * class-internals.h: Added two new types of wrappers. 
24472         Added MonoRemotingTarget enum. Added new trampoline function type, which
24473         takes an additional MonoRemotingTarget value as parameter, so it is
24474         possible to request a trampoline for a specific target.
24475         
24476         * class.c: Added new mono_class_get_method_from_name() method.
24477         
24478         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24479         general remoting sinks and one specific for cross domain calls.
24480         
24481         * debug-helpers.c: Added new wrapper names.
24482         
24483         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24484         of a remote class.
24485         
24486         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24487         
24488         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24489         with several other methods (mono_marshal_get_xappdomain_dispatch,
24490         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24491         and others) can generate a fast remoting wrapper for cross domain calls.
24492         More information can be found in docs/remoting.
24493         Other changes: Removed mono_find_method_by_name, and used
24494         mono_class_get_method_from_name instead.
24495         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24496         is stored in the remoting invoke hashtable.
24497         
24498         * marshal.h: published the new method for getting the xdomain wrapper,
24499         and also added a method for getting the adequate wrapper for a given
24500         method and target.
24501         
24502         * object-internals.h, object.c: Added a couple of methods for capying and
24503         cloning arrays.
24504         Modified mono_install_remoting_trampoline, which takes the new remoting
24505         trampoline that has a remoting target as parameter.
24506         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24507         will return the most suitable vtable for the target.
24508         Added mono_remote_class_vtable, which returns the vtable of a remote class
24509         (which can be the normal remoting vtable or the xdomain vtable).
24510         
24511         * threads.c: the xdomain invoke and dispatch wrappers must also be
24512         protected against interruptions.
24514 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24516         * icall.c: use memmove in BlockCopyInternal when the source and
24517         destination arrays are the same.
24519 2004-11-09  Martin Baulig  <martin@ximian.com>
24521         * class-internals.h (MonoGenericContainer): Removed `method' and
24522         `signature', replaced them with `is_method' and `is_signature'
24523         flags.  Added `context'.
24525         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24526         instead of a `MonoGenericContainer *'.
24528         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24529         for dynamic type parameters.
24530         (mono_metadata_load_generic_params): Setup `container->context'.
24532         * reflection.c (mono_reflection_setup_generic_class): Setup
24533         `tb->generic_container->context'.
24534         (do_mono_reflection_bind_generic_parameters): Use
24535         mono_class_inflate_generic_type() to correctly inflate types,
24536         rather than using our own hack just for MONO_TYPE_VAR.
24538 2004-11-09  Martin Baulig  <martin@ximian.com>
24540         * class.c (mono_class_inflate_generic_method): Small fix; don't
24541         crash here.
24543         * icall.c
24544         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24545         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24546         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24547         (ves_icall_Type_BindGenericParameters): Likewise.
24548         (ves_icall_Type_get_IsGenericInstance): Likewise.
24549         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24550         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24551         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24552         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24554 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24556         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24557         assembly versions and public key tokens. Fixes #69113.
24559 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24561         * metadata.c: fix bug introduced with the type cache changes
24562         on 2004-11-06.
24564 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24566         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24567         the MonoClass pointer instead of the token in exception clauses.
24568         * reflection.c: updates for the above and make the code not depend
24569         on the structure of MonoExceptionClause.
24571 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24573         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24574         Add support for dynamic assemblies. Fixes #69114.
24576         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24578 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24580         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24581         since most only those methods use it. the code member of
24582         MonoMethodPInvoke was dead, so that can be removed too. Also,
24583         remove inline_count (again, not used), and move slot so that it
24584         can share bits with some other flags. This saves 8 bytes in the
24585         structure and gives us about 50 kb back for mcs helloworld.cs
24587         * *.[ch]: Do naming changes for the above.
24589         * loader.c (mono_method_get_header): Lazily init the header
24590         on first access.
24591         (mono_get_method_from_token): don't init the header here
24592         (mono_free_method): the header may never be allocated
24594         Overall, this saves 150 kb of unmanaged allocations
24595         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24596         memory at runtime.
24597         
24598         * loader.c, loader.h (mono_method_get_header): new accessor.
24600         * *.[ch]: use the above method. Prepares us to lazily load
24601         the header.
24603         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24604         three warnings, which are actual bugs (see 69206).
24606         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24607         unused. Saves a cool 4 bytes / method.
24609 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24611         * metadata.c (builtin_types): Add types for System.Object here.
24612         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24613         for a class or valuetype from klass->this_arg or klass->byval_arg.
24615         On mcs for a hello world, this gets us down from 21836 MonoType's
24616         to 14560.
24618         (mono_metadata_free_type): Account for the above change.
24620 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24622         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24623         exception instead of asserting if name is null.
24624         (ves_icall_System_AppDomain_GetData): Ditto.
24626 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24628         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24629         EnumBuilder.
24631         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24632         Return NULL when the domain does not have entry_assembly set.
24634         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24635         Add a 'resource_modules' argument.
24636         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24638         * reflection.c (mono_reflection_create_runtime_class): Move setting
24639         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24640         for enums too.
24642         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24643         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24644         Throw an ArgumentNullException if 'ptr' is null.
24646         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24647         assemblies here. Fixes #69020.
24649 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24651         * reflection.c (build_compressed_metadata): Fix the previous patch for
24652         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24653         the stack.
24655 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24657         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24658         the cultures is false. Fixes #69090.
24660         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24661         detected by valgrind.
24662         
24663         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24664         TypeResolve multiple times for the same type. Fixes #65577.
24666 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24668         * marshal.c: Avoid using ldftn to call managed functions. It is
24669         much slower than just a call.
24671         * reflection.c (mono_module_get_object): free the basename we
24672         allocate here from glib.
24673         
24674         * reflection.c (ensure_runtime_vtable): make sure to free
24675         overrides.  Also, we were allocating an array of MonoMethod not an
24676         array of MonoMethod*.
24678         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24680         * image.c (mono_image_close): free image->guid here.
24682 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24684         * reflection.c: Fix some spec conformance issues with the PE file
24685         structures so mcs compiled apps run on the Net 2.0 beta.
24687 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24689         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24690         Implement this. Fixes #67264.
24692         * debug-helpers.h debug-helpers.c marshal.c: Move 
24693         mono_find_method_by_name to debug-helpers.c.
24695 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24697         * object.c (mono_release_type_locks): type_initialization_hash is
24698         a GHashTable.
24700         * reflection.c object.c object-internals.h: Fix warnings.
24702         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24703         without accessors. Fixes #61561.
24705         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24706         application base from the root domain if not set. Fixes #65641.
24707         (mono_runtime_init): Fix warning.
24709 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24711         * appdomain.c: call mono_thread_pool_init.
24712         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
24713         of worker threads based on the number of CPUs and the environment
24714         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
24715         for non-windows (windows) systems.
24717 2004-10-27  Chris Toshok  <toshok@ximian.com>
24719         * mono-debug-debugger.c (write_class): don't call mono_class_init
24720         here, as even with the check for (!klass->init_pending), we get
24721         into a situation where we're hitting cycles in class
24722         initialization.  Fixes #68816.
24724 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
24726         * image.c: Avoid overwriting values in the loaded_images_hash when an
24727         assembly is loaded multiple times. Fixes #61152.
24729         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
24730         so multiple satellite assemblies for the same name can be loaded.
24731         Fixes #68259.
24733         * mono_domain_assembly_preload: Actually return the loaded assembly, 
24734         not NULL.
24736         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
24737         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
24739         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
24740         pending finalizers are not invoked after the appdomain has been 
24741         unloaded. Fixes #67862.
24743 2004-10-22  Martin Baulig  <martin@ximian.com>
24745         * mono-debug-debugger.c
24746         (mono_debugger_runtime_invoke): Don't box valuetypes.
24748 2004-10-22  Chris Toshok  <toshok@ximian.com>
24750         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
24751         don't hide private methods.
24753 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
24755         * icall.c: Allows the runtime to "share" (when known) the public key
24756         token of an assembly. This avoid the need to recalculate the token 
24757         (from the public key) in managed code.
24759 2004-10-21  Chris Toshok  <toshok@ximian.com>
24761         * debug-helpers.c (append_class_name): argh, revert last patch.
24762         
24763 2004-10-21  Chris Toshok  <toshok@ximian.com>
24765         * debug-helpers.c (append_class_name): use '+' as the delimiter,
24766         not '/', so that it matches what the debugger uses to look up
24767         methods.
24769 2004-10-21  Martin Baulig  <martin@ximian.com>
24771         * mono-debug-debugger.c (mono_debugger_throw_exception): New
24772         public method; this is called each time an exception is thrown and
24773         allows the debugger to use exception catch points.
24775 2004-10-21  Martin Baulig  <martin@ximian.com>
24777         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
24778         the stack pointer and the exception object in some struct and pass
24779         that to the debugger.
24781 2004-10-21  Chris Toshok  <toshok@ximian.com>
24783         * mono-debug-debugger.c (do_write_class): add instance/static
24784         event support.  We don't expose "raise" or "other" yet.
24785         (event_is_static): new method.
24787 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
24789         * mono-debug-debugger.c
24790         (mono_debugger_handle_exception): Remove
24791         bogus return value for fussy compilers.
24793 2004-10-20  Martin Baulig  <martin@ximian.com>
24795         * mono-debug-debugger.c
24796         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
24797         (mono_debugger_handled_exception): Likewise.
24799 2004-10-20  Martin Baulig  <martin@ximian.com>
24801         * mono-debug-debugger.h (MonoDebuggerEvent): Added
24802         MONO_DEBUGGER_EVENT_EXCEPTION.
24804         * mono-debug-debugger.c (mono_debugger_handle_exception): New
24805         public function to send the debugger a notification for an
24806         exception and inform it about a catch/finally clause.
24808 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
24810         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
24811         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
24812         fix 2.95 build. 
24814         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
24816 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
24818         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
24819         marshalled as [In,Out]. Fixes #58325.
24821 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
24823         * reflection.c (mono_method_body_get_object): Implement some fields.
24825 2004-10-12  Martin Baulig  <martin@ximian.com>
24827         * reflection.c (mono_reflection_bind_generic_parameters): Small
24828         fix, correctly retrieve our parent from a generic instance.
24830 2004-10-12  Martin Baulig  <martin@ximian.com>
24832         * metadata.c (mono_metadata_generic_param_equal): We always have
24833         an owner.
24835         * class.c
24836         (mono_class_from_generic_parameter): We need to have an owner.
24837         (my_mono_class_from_generic_parameter): Likewise.
24839         * reflection.c (mono_reflection_setup_generic_class): Renamed to
24840         mono_reflection_create_generic_class() and added a new
24841         mono_reflection_setup_generic_class().  
24842         (mono_reflection_initialize_generic_param): If we're a nested
24843         generic type and inherited from the containing class, set our
24844         owner to the outer class.
24846 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
24848         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
24850         * reflection.c (mono_method_body_get_object): New function to create
24851         a MethodBody object.
24853         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
24855 2004-10-11  Martin Baulig  <martin@ximian.com>
24857         * metadata.c (_mono_metadata_type_equal): Renamed to
24858         do_mono_metadata_type_equal() and made static.
24860 2004-10-11  Martin Baulig  <martin@ximian.com>
24862         * appdomain.c: Bump corlib version number to 28.
24864 2004-10-10  Martin Baulig  <martin@ximian.com>
24866         * class-internals.h
24867         (MonoGenericInst): Added `MonoGenericContainer *container'.
24868         (MonoGenericMethod): Likewise.
24869         (MonoGenericContext): Likewise.
24870         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24872         * metadata.c
24873         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
24874         (do_mono_metadata_parse_generic_inst): Likewise.
24875         (mono_metadata_parse_type_full): New public method.  This is the actual
24876         mono_metadata_parse_type() implementation - with an additional
24877         `MonoGenericContainer *' argument.
24878         (mono_metadata_parse_array_full): Likewise.
24879         (mono_metadata_parse_signature_full): Likewise.
24880         (mono_metadata_parse_method_signature_full): Likewise.
24881         (mono_metadata_parse_mh_full): Likewise.
24882         (mono_type_create_from_typespec): Likewise.
24883         (mono_metadata_interfaces_from_typedef_full): New public method;
24884         this is similar to the other _full() methods, but we take a
24885         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
24886         (mono_metadata_parse_generic_param): Take an additional
24887         `MonoGenericContainer *' argument and lookup the MonoGenericParam
24888         from that container.
24889         (mono_metadata_generic_param_equal): New static method to compare
24890         two type parameters.
24891         (_mono_metadata_type_equal): New static method; takes an
24892         additional `gboolean signature_only' argument - if true, we don't
24893         compare the owners of generic parameters.
24894         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
24895         with a TRUE argument - do a signature-only comparision.
24897         * loader.c: Use the new _full() methods and pass the
24898         MonoGenericContainer to them.
24900         * object-internals.h (MonoReflectionTypeBuilder): Added
24901         `MonoGenericContainer *generic_container' field.
24902         (MonoReflectionMethodBuilder): Likewise.
24904 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
24906         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
24907         case initial images of dynamic assemblies.
24909         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
24911         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
24913         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
24914         length of event->other array.
24915         (typebuilder_setup_events): Ditto.
24917         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
24918         'assembly_by_name' and add an 'assemblies' list.
24920         * assembly.h assembly.c: Add a new search hook for determining whenever
24921         an assembly is already loaded. Use this instead of searching in the
24922         loaded_assemblies list.
24924         * domain.c appdomain.c: Implement the new search hook so loaded 
24925         assemblies are now scoped by appdomain. Fixes #67727.
24927 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
24929         * threads.c (mono_thread_attach): Initialize synch_lock field so
24930         mono_thread_detach works again.
24932         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
24933         'lib' too. Fixes #63130.
24935 2004-10-06  Jackson Harper  <jackson@ximian.com>
24937         * culture-info-tables.h: regenerated.
24939 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
24941         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
24942         implemented by other interfaces in the result. Fixes #65764.
24943         
24944         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24945         Handle unloadable modules without crashing.
24947         * image.c (load_modules): Revert the previous patch since modules must
24948         have a fixed index inside the array.
24949         
24950         * image.c (load_modules): Don't include native modules in the modules
24951         array.
24953 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
24955         * reflection.h: Add param_defaults field.
24957         * reflection.c: Add support for parameter defaults in dynamic methods.
24958         Fixes #64595.
24960         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
24961         an empty string when a type has no namespace. Fixes #64230.
24963 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
24965         * tabledefs.h: Added "internal" security actions to support non-CAS
24966         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
24967         Note: they do not seems to be used anymore in 2.0 (new metadata format)
24969 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
24971         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
24972         constructor of abstract class. Fixes #61689.
24974 2004-10-04  Martin Baulig  <martin@ximian.com>
24976         * class-internals.h (MonoGenericContainer): New type.
24977         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
24978         `MonoGenericContainer *generic_container'.
24979         (MonoClass): Replaced `gen_params' and `num_gen_params' with
24980         `MonoGenericContainer *generic_container'.
24982         * metadata.c (mono_metadata_load_generic_params): Return a
24983         `MonoGenericContainer *' instead of a `MonoGenericParam *';
24984         removed the `num' argument.
24986 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
24988         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
24989         for dynamic images.
24991         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
24992         machine fields.
24994         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
24996         * reflection.c: Save pe_kind and machine values into the generated
24997         image file.
24999         * appdomain.c: Bump corlib version number.
25001         * object-internals.h: Reorganize layout of LocalBuilder.
25003         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25004         New helper function.
25006         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25007         created MonoType for dynamic types. Fixes #66180.
25009 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25011         * threadpool.c: the ares hashtable needs a critical section around it.
25012         this prevents some nasty segfaults
25014 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25016         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25017         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25018         bug 67324).
25019         
25020 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25022         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25023         
25024 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25026         * image.c: Always canonicalize image file names, to avoid loading
25027         the same assembly twice when referenced using a relative path.
25029 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25031         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25033         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25035         * marshal.c: Fix warnings.
25037 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25039         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25040         attempting to marshal the delegate_trampoline as the method_addr.
25041         This patch has a static hashtable of marshalled delegates so that 
25042         we can map delegate_trampoline addresses back to delegates.  This
25043         allows a delegate passed to managed code to be passed back into native
25044         code.  Fixes #67039
25046 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25048         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25050         * reflection.c (method_encode_code): Align method headers properly.
25051         Fixes #66025.
25053 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25055         * marshal.c: In the runtime invoke wrapper, reset the abort
25056         exception if it is cached. This avoids the automatic rethrowal of 
25057         the exception after the catch of the wrapper. Also check for pending
25058         interruptions before calling the managed method. This is done using
25059         the new method emit_thread_force_interrupt_checkpoint, since the
25060         normal checkpoint method is ignored when running the invoke wrapper.
25061         * object.c: If the abort exception is rethrown, set the abort_exc
25062         field of the thread, so it will be rethrown aftere every catch.
25063         * threadpool.c: Only run an interruption checkpoint if what has been
25064         requested is a stop of the thread (aborts will be ignored).
25065         * threads.c: By default, a thread will now never be interrumped while
25066         running the runtime invoke wrapper (this ensures that runtime_invoke
25067         will always return to the caller if an exception pointer is provided).
25068         There is a new special method mono_thread_force_interruption_checkpoint()
25069         to force an interruption checkpoint even if running a protected
25070         wrapper, which is used by the same runtime invoke wrapper to do a check
25071         at a safe point.
25073 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25075         * object.c, object-internals.h: Implemented mono_release_type_locks,
25076         which releases the cctor locks held by a thread.
25077         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25078         by a thread. Added mono_thread_exit() method to be used to safely stop
25079         a thread.
25081 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25083         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25084         Move null check before dereference.  Avoid indexing beyond the end
25085         of the 'modules' array.
25087 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25089         * metadata-internals.h (MonoImage): Add module_count field.
25090         * image.c (load_modules): Set image->module_count.
25091         (mono_image_load_file_for_image): Use image->module_count.
25092         * reflection.c (mono_image_load_module): Append to image->modules array 
25093         of dynamic assembly.
25094         (mono_module_get_object): Fix loop to actually increment index.
25095         Use image->module_count.
25096         * assembly.c (mono_assembly_load_references): Use image->module_count.
25097         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25098         Likewise.
25100 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25102         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25103         Avoid assert on generic types.
25105 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25107         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25109         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25111         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25112         function to convert a MarshalSpec structure to its managed counterpart.
25114         * reflection.c: Fix warnings.
25115         
25116         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25117         field.
25119         * icall.c (mono_create_icall_signature): Fix build.
25121 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25123         * icall.c: Add MakePointType icall.
25125         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25126         warnings.
25128 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25130         * threadpool.c: reuse allocated slots in the queue.
25132 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25134         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25136         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25138         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25139         previous change.
25141         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25142         ThrowOnUnmappableChar.
25144         * icall.c (ves_icall_Type_GetPacking): New icall.
25146 2004-09-24  Martin Baulig  <martin@ximian.com>
25148         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25150 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25152         * appdomain.c:
25153         (mono_domain_set): allow setting a domain that is being unloaded.
25154         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25155         being unloaded.
25157 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25159         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25160         the GetCustomAttributes icall.
25162 2004-09-23  Martin Baulig  <martin@ximian.com>
25164         * object-internals.h (MonoReflectionGenericParam): Replaced
25165         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25166         with `guint32 attrs'.
25168 2004-09-23  Martin Baulig  <martin@ximian.com>
25170         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25172 2004-09-23  Martin Baulig  <martin@ximian.com>
25174         * object-internals.h (GenericParameterAttributes): New enum.
25176 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25178         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25179         
25180         * class.c (init_events): Fill out event->other field.
25182         * class.c: Fix warnings.
25184         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25186 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25188         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25189         walk which doesn't supply the IL offset.
25191 2004-09-22  Martin Baulig  <martin@ximian.com>
25193         * reflection.c (mono_reflection_setup_internal_class): If we're
25194         System.ValueType, System.Object or System.Enum, set
25195         `klass->instance_size' and create the vtable.
25196         (mono_reflection_create_internal_class): If we're an enum type,
25197         get the base class from our current corlib.
25199 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25201         * reflection.h (MonoResolveTokenError): New type.
25203         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25204         icall.
25206         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25208 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25210         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25211         Support also calling constructors, but only for already allocated objects.
25213 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25215         * reflection.c (type_get_qualified_name): If the klass is null
25216         return the typename to avoid a NullRefEx.
25217         (encode_cattr_value): Get the qualified name of the boxed type,
25218         not the underlying enumtype.  Fixes #62984.
25220 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25222         * marshal.c: Fix problems with previous checkin.
25224 2004-09-21    <vargaz@freemail.hu>
25226         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25227         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25229         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25231 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25233         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25234         should only return a type for pointers, arrays, and passbyref types.
25235         Fixes bug #63841.
25237 2004-09-21  Martin Baulig  <martin@ximian.com>
25239         * domain.c (mono_debugger_check_runtime_version): New public
25240         function.
25242         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25244 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25246         * reflection.c: Added missing sort to the declarative security 
25247         attributes table. MS implementation stops seeing the attributes if the
25248         token number regress in the table (as shown by ildasm and permview).
25250 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25252         * object-internals.h (MonoReflectionModule): Add 'token' field.
25253         
25254         * reflection.c (mono_reflection_get_token): Add support for Module
25255         and Assembly.
25256         (mono_module_get_object): Set 'token' field.
25257         (mono_module_file_get_object): Set 'token' field.
25259         * icall.c: Add new Assembly and Module icalls.
25261         * appdomain.c: Bump corlib version.
25263 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25265         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25266         tokens of metadata objects.
25268         * reflection.h reflection.c (mono_reflection_get_token): New function
25269         to obtain the token of a metadata object.
25271         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25273 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25275         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25276         
25277         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25279 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25281         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25282         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25283         AssemblyBuilder to access the permissions set in the class lib.
25284         * reflection.c: Added security attributes encoding step in 
25285         mono_image_build_metadata.
25286         * tabledefs.h: Added new security actions defined in 2.0:
25287         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25289 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25291         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25292         macro parameter.
25294 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25296         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25297           finalized. There where random SIGSEVs at program termination, when
25298           an object being finalized was trying to do a string comparison and
25299           the current culture was already finalized.
25301 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25303         * threads.c: call thread_cleanup before finishing the thread if we get
25304         there.
25306 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25308         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25309         assemblies from the parent. Fixes #65665.
25311 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25313         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25314         modifiers.
25316 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25318         * reflection.h: add prototype for mono_get_dbnull_object
25319         * reflection.c: add prototypes for get_default_param_value_blobs 
25320         and mono_get_object_from_blob for fussier compilers
25322 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25324         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25325         false deadlock checks in class initialization.
25327 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25329         * image.c (mono_image_addref): Fix comment.
25331         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25332         possible.
25334 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25336         * reflection.c (mono_param_get_objects): Modified to return
25337         ParameterInfo.DefaultValue object.
25339         (get_default_param_value_blobs):
25340         (mono_get_object_from_blob):
25341         (mono_get_dbnull_object): New helper routines. 
25343         * object.c (mono_get_constant_value_from_blob): New helper routine
25344         carved out from get_default_field_value ()
25346         * object-internals.h (mono_get_constant_value_from_blob): Added
25347         function declaration.
25349 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25351         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25352         referenced assemblies. Fixes #62135.
25354         * exception.h exception.c (mono_get_exception_file_not_found2): New
25355         helper function.
25357 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25359         * class.h class.c: Add mono_type_get_underlying_type ().
25361 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25363         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25364         Fix GetTypes() to support dynamically created assemblies.
25366 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25368         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25369         
25370         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25371         previous patch.
25373         * reflection.h reflection.c loader.c: Allow dynamic construction of
25374         pinvoke methods. Fixes #65571.
25375         
25376         * reflection.c (mono_reflection_get_type): Revert previous change since
25377         it causes regressions.
25379 2004-09-08  Martin Baulig  <martin@ximian.com>
25381         * class.c (class_compute_field_layout): Don't call
25382         mono_class_layout_fields() for open generic instances.
25384 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25385         * threads.c appdomain.c: fix typo in GC macro
25387 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25389         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25390         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25392 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25394         * image.c (mono_image_close): Applied patch from 
25395         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25396         assembly is loaded multiple times from data.
25397         
25398         * image.c (mono_image_open): Fix warning.
25400 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25402         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25403         once. Fixes #58334.
25404         
25405         * reflection.c (mono_reflection_create_runtime_class): Initialize
25406         klass->nested_classes. Fixes #61224.
25408 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25410         * threads.c: sched_yield() on exit, to allow threads to quit.
25412 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25414         * object.c (mono_unhandled_exception): Remove leftover debug code.
25416 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25418         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25420 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25422         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25423         
25424         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25426 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25428         * marshal.c (emit_marshal_array): Null terminate string arrays.
25429         
25430         * marshal.c (raise_auto_layout_exception): Fix warning.
25432         * reflection.c (mono_param_get_objects): Initialize the default value
25433         with DBNull.Value, not null. Fixes #62123.
25435 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25437         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25438         throw an exception with a cute explanation.
25440 2004-09-06  Dick Porter  <dick@ximian.com>
25442         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25443         Close the new process's thread handle, as we don't use it.  The
25444         handle stays around forever otherwise.
25446 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25448         * object.c (arith_overflow): Fix warning.
25450         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25451         calling conventions in method refs. Fixes #65352.
25453         * reflection.c: Fix warnings.
25455 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25457         * icall.c: Add a new icall for Array.Clear
25459 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25461         * object.c: When allocating an array, we have to throw
25462         an overflow exception if any of the lengths are < 0.
25464 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25466         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25467         properly. Also move implementation of string array marshalling to 
25468         managed code. Fixes #42316.
25470 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25472         * assembly.c: provide more information when loading an assembly fails.
25474 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25476         * filewatcher.c: don't expect the development fam package to be
25477         installed.
25479 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25481         * marshal.c: Make a copy of the signature cookie since it will be
25482         freed by the caller.
25483         
25484         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25486         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25488         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25489         marshal specs.
25491         * marshal.c: More refactoring.
25492         
25493         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25494         smaller functions.
25496 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25498         * object.c: In mono_message_invoke, fill the output parameter array after
25499           calling the managed method (it was done before the call). This fixes
25500           bug #59299.
25502 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25504         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25505         as well.
25507 2004-09-02  Martin Baulig  <martin@ximian.com>
25509         * class.c (mono_class_instance_size): Don't allow generic type
25510         definitions or open generic instances.
25511         (mono_class_array_element_size): If we're a value type, call
25512         mono_class_instance_size() on the original class.
25514         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25515         handle generic instances.
25517         * mono-debug-debugger.c (write_type): Handle generic instances
25518         like classes.
25520 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25522         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25523         the allocation request fails. Fixes #65089.
25525         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25526         
25527         * object.c (mono_runtime_free_method): New function to free a dynamic
25528         method.
25530         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25531         delegate trampoline.
25533         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25534         with hasthis as dynamic,
25536         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25538         * domain.c (mono_jit_info_table_remove): New function to remove an
25539         entry from the jit info table.
25541         * class-internals.h (MonoMethod): Add 'dynamic' field.
25543         * loader.c: Fix warnings.
25545 2004-09-01  Martin Baulig  <martin@ximian.com>
25547         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25548         instead of mono_debugger_lock() because the latter one is a no-op
25549         unless running in the debugger.
25551 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25553         * class.c (class_compute_field_layout): Classes with auto-layout or
25554         reference fields are not blittable.
25555         
25556 2004-09-01  Dick Porter  <dick@ximian.com>
25558         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25559         mono_image_get_filename() to get the assembly location.
25561         * icall.c:
25562         * metadata.h: Fix compile warnings
25564 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25566         * class.c (class_compute_field_layout): System.Object is blittable.
25568         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25569         as in/out. Fixes #59909.
25571 2004-09-01  Martin Baulig  <martin@ximian.com>
25573         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25574         mono_metadata_generic_inst_is_valuetype() if we're a generic
25575         instance to check whether our underlying type is a reference type.
25577 2004-09-01  Martin Baulig  <martin@ximian.com>
25579         * metadata.c (mono_type_size): If we're a generic instance, call
25580         mono_class_value_size() for value types.
25582 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25584         * marshal.c: Implement more custom marshalling functionality. Fixes
25585         #64915.
25587 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25589         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25591 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25593         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25595         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25597         * icall.c: Fix some warnings.
25599         * threads.c (abort_appdomain_thread): Fix unref errors.
25600         (mono_thread_current): Fix THREAD_DEBUG define.
25602 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25604         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25606         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25608 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25610         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25611         string arrays.
25613 2004-08-28  Martin Baulig  <martin@ximian.com>
25615         * metadata.c
25616         (mono_metadata_generic_inst_is_valuetype): New public function.
25618         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25619         mono_metadata_generic_inst_is_valuetype() if we're a generic
25620         instance to check whether our underlying type is a valuetype.
25622 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25624         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25625         #63768.
25627 2004-08-25  Martin Baulig  <martin@ximian.com>
25629         * loader.c (mono_get_method_from_token): Abstract methods can also
25630         be generic and thus have type parameters.
25632         * metadata-internals.h
25633         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25635         * reflection.c (mono_image_get_generic_param_info): Don't create a
25636         metadata row, just add an entry to the `gen_params' array.
25637         (build_compressed_metadata): Sort the `gen_params' array and then
25638         actually create the metadata.
25640 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25642         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25644 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25646         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25648 2004-08-24  Martin Baulig  <martin@ximian.com>
25650         * class.cs (mono_class_is_subclass_of): Like an interface, a
25651         generic instance also derives from System.Object.
25653 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25655         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25656         custom modifiers to be in any order. Fixes #61990.
25658 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25660         * object.c: Register mono_object_new_fast icall.
25661         
25662         * object.c (mono_class_get_allocation_ftn): Return to calling
25663         mono_object_new_fast, since it seems faster to compute the object 
25664         size in unmanaged code than passing it as a parameter.
25666         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25668         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25669         this function with Boehm as the oom handler, so we don't have to check
25670         the result of GC_malloc.
25672         * object.c: Remove checks for oom.
25674         * object.h object.c (mono_class_get_allocation_ftn): New function to
25675         return the icall which can be used to allocate an instance of a given
25676         class. 
25678         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25680         * class-internals.h: Add 'enabled' field.
25682 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25684         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25686 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25687         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25688         value 0x0010.
25690 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25692         * appdomain.c: use the Tls function for appdomain too,
25693         at Zoltan's request. Actually return in mono_context_get
25695         * appdomain.c, profiler.c, threads.c: use __thread
25697 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25699         * appdomain.c threads.c: Call GC_CreateThread on windows.
25701         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25702         multiple libraries since this don't work on windows.
25704 2004-08-18  Martin Baulig  <martin@ximian.com>
25706         * class-internals.h
25707         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25708         MonoMethodHeader.
25710         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25711         MonoMethodNormal since we also need it for abstract and interface
25712         methods.
25714         * reflection.c
25715         (build_compressed_metadata): Sort the GenericParam table.
25716         (mono_image_create_token): Added `gboolean create_methodspec'
25717         argument; this is false when generating a MethodImpl token.
25718         (reflection_methodbuilder_to_mono_method): Abstract and interface
25719         methods may also have generic parameters.
25721 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
25723         * appdomain.c: thread local alloc
25725 2004-08-17  Martin Baulig  <martin@ximian.com>
25727         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
25729         * icall.c
25730         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
25731         argument.
25733         * class.c (mono_type_get_full_name): New public function.
25734         (mono_type_get_name): Don't include the type arguments.
25736 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
25738         * Makefile.am: Build static versions of libmetadata and libmonoruntime
25739         for inclusion into the mono executable.
25741 2004-08-16  Martin Baulig  <martin@ximian.com>
25743         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
25744         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
25746 2004-08-14  Martin Baulig  <martin@ximian.com>
25748         * class.c (dup_type): Also copy the `byref' field.
25750 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
25752         * reflection.c (create_dynamic_mono_image): Revert the last change 
25753         since it breaks bootstrap.
25755 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
25757         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
25759         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
25760         not free them with g_free.
25762 2004-08-11  Martin Baulig  <martin@ximian.com>
25764         * reflection.c (mono_reflection_setup_internal_class): Also call
25765         mono_class_setup_mono_type() if we already have a `tb->type.type'.
25767 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
25769         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
25770         called during default (first) AppDomain creation. Keep track of
25771         Evidence when loading assemblies.
25773 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25775         * opcodes.c, opcodes.h: reduce runtime relocations.
25777 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
25779         * culture-info.h, locales.c: fixes and chages to sue the new
25780         optimized format of the locale data.
25781         * culture-info-tables.h: regenerated.
25783 2004-08-06  Geoff Norton <gnorton@customerdna.com>
25784         
25785         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
25787 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
25789         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
25790         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
25791         * domain-internals.h: icall declaration.
25792         * icall.c: icall registration.
25793         * object-internals.h: New fields in MonoAssembly for CAS.
25795 2004-08-05  Duncan Mak  <duncan@ximian.com>
25797         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
25798         CEE_LDELEM_ANY.
25800 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25802         * reflection.c: fix to deal with object[] arrays in custom ctors
25803         (bug #62550).
25805 2004-08-05  Martin Baulig  <martin@ximian.com>
25807         * class.c (mono_class_array_element_size): Added support for
25808         generic instances and correctly handle "recursive" types.
25810 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
25812         * assembly.c: Fix warnings.
25814 2004-08-04  Martin Baulig  <martin@ximian.com>
25816         * class.c
25817         (mono_type_get_name_recurse): Added `gboolean include_arity'
25818         argument specifying whether or not we should include the generic
25819         arity in the type name.
25820         (_mono_type_get_name): New static function.
25821         (mono_class_setup_vtable): If we're a generic instance, don't
25822         include the generic arity in the names of explicit method
25823         implementations.        
25825 2004-08-03  Martin Baulig  <martin@ximian.com>
25827         * class.c (mono_type_get_name_recurse): Enclose the generic type
25828         arguments in `<', '>'.
25830 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25832         * gc.c: make GC warning messages use the trace API, they are just
25833         noise to most of the users.
25835 2004-08-03  Martin Baulig  <martin@ximian.com>
25837         * debug-mono-symfile.c (read_string): Correctly read the string.
25839 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
25841         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
25842         
25843         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
25844         icalls.
25845         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
25847 2004-07-30  Martin Baulig  <martin@ximian.com>
25849         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
25850         Reflect latest symbol writer changes.   
25852 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25854         * object.c: always create an object if null is passed
25855         to Invoke() where a valuetype is expected.
25857 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
25859         * marshal.c (mono_marshal_init): make managed
25860         signatures match native ones better for 64bits.
25862 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25864         * appdomain.c: hack to build correctly the private bin path on windows.
25865         Fixes bug #61991.
25867 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25869         * assembly.c: Load mscorlib from the correct framework directory
25870           (mono/<version>/mscorlib.dll).
25871         * appdomain.h: Added prototypes for new functions.
25872         * internals.h: Added some prototypes.
25873         * domain.c: When initializing the runtime, get from the executable and
25874           the configuration files the runtime version that the app supports.
25875           Added support methods for reading app.exe.config. Added list of versions
25876           supported by the JIT. Added two new methods: mono_init_from_assembly,
25877           which initializes the runtime and determines the required version from
25878           the provided exe file, and mono_init_version, which initializes
25879           the runtime using the provided version.
25880         * icall.c: Get machine.config from version-specific directory.
25881         * reflection.c: When generating an image, embed the version number
25882           of the current runtime.
25884 2004-07-28  Dick Porter  <dick@ximian.com>
25886         * socket-io.c
25887         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
25888         returned sockaddr size before creating the remote address object.
25889         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
25890         61608.
25892 2004-07-28  Dick Porter  <dick@ximian.com>
25894         * locales.c (string_invariant_compare_char): Fix invariant char
25895         compares between upper and lower cases.  Fixes bug 61458.
25897 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
25898         
25899         * marshal.c: actually cache stelem.ref wrappers.
25900         
25901 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
25903         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
25904         sections and remove the mono_cli_rva_map () function.
25906 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25908         * debug-mono-symfile.c: fix one more endianess issue, from a patch
25909         by Geoff Norton (<gnorton@customerdna.com>).
25911 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25913         * class.c: fix class loads for pointer types (typeof(int) !=
25914         typeof(int*)).
25916 2004-07-27  Martin Baulig  <martin@ximian.com>
25918         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
25919         reading the debugging information from an external ".mdb" file.
25921 2004-07-24  Martin Baulig  <martin@ximian.com>
25923         * reflection.c (mono_image_get_type_info): Only write a class
25924         layout entry if we actually have a size or a packing size.
25926 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25928         * reflection.c (type_get_fully_qualified_name): 
25929         insert cast to get type checking of ?: with non-gcc compilers
25931 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25933         * rand.c: use g_getenv for both lookups of
25934         MONO_EGD_SOCKET
25936 2004-07-17  Martin Baulig  <martin@ximian.com>
25938         * reflection.c (mono_reflection_bind_generic_method_parameters):
25939         Set `gmethod->reflection_info'.
25941 2004-07-17  Martin Baulig  <martin@ximian.com>
25943         * class.c (mono_class_create_from_typedef): Insert the newly
25944         created class into the hash table before computing the interfaces
25945         since we could be called recursively.
25947 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
25949         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
25950         function to implement stelem.ref in managed code
25951         * class-internals.h, debug-helpers.c: a new wrapper type
25952         for the above.
25954 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25956         * gc.c: allow GC handles to work even when no GC is compiled in.
25957         Fix part of bug #61134 (GetAddrOfPinnedObject).
25959 2004-07-13  Peter Williams  <peter@newton.cx>
25961         * process.c (complete_path): Make sure we don't attempt to execute
25962         directories.
25964 2004-07-12  Geoff Norton <gnorton@customerdna.com>
25966         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
25967           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
25968           and will add/subtract the hour if needed
25970 2004-07-12  Martin Baulig  <martin@ximian.com>
25972         * reflection.c (mono_field_get_object): If we have
25973         `field->generic_info', take the attributes from
25974         `field->generic_info->generic_type'.    
25976 2004-07-12  Martin Baulig  <martin@ximian.com>
25978         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
25979         This function must be called before initializing the runtime.
25980         (mono_debug_init_1): New function; call this after initializing
25981         the runtime, but before loading the assembly.  It tells the
25982         debugger to load corlib and the builtin types.
25984         * mono-debug-debugger.c: Did some larger changes in the debugging
25985         code; support recursive class declarations, make sure we actually
25986         add all classes.
25988 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25990         * debug-helpers.c: undo my previous patch and fixed the real issue in
25991         ../mini/exceptions-x86.c
25993 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25995         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
25996         when no HOME env. variable was set and a NullRef was thrown in a .cctor
25997         called from other .cctors.
25999 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26001         * loader.c: Removed the mono_loader_wine_init hack now that we are
26002         doing a managed version of Windows.Forms.
26004 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26006         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26007         threadpool.c, threads.c: remove static data from rootset.
26009 2004-07-09  Dick Porter  <dick@ximian.com>
26011         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26012         Don't do any more processing if the matched length was 0.  It was
26013         increasing the size of the string before.  Fixes bug 61167.
26015 2004-07-09  Dick Porter  <dick@ximian.com>
26017         * socket-io.h:
26018         * socket-io.c
26019         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26020         Add support for SO_PEERCRED if its available.
26022 2004-07-09  Peter Bartok <pbartok@novell.com>
26023         * loader.c: winelib.exe.so error message is now only displayed if
26024         MONO_DEBUG is set. To help us avoid questions when people are trying
26025         out the new Managed.Windows.Forms.
26027 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26029         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26030         for isinst and castclass wrappers.
26032         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26033         to libmetadata from the JIT, so they could be used by the marshalling
26034         code and the interpreter.
26036         * marshal.c: Register marshalling related JIT icalls here instead of
26037         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26038         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26040         * metadata.h: Remove unneeded marshalling conversions.
26042         * opcodes.c: Update for new opcodes.
26043         
26044 2004-07-08  Martin Baulig  <martin@ximian.com>
26046         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26047         (mono_debug_get_domain_data): Make this function static.
26049 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26051         * gc.c, object.h: add nice GC handle API for embedders.
26053 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26055         * reflection.c: more changes for the new api
26057         * object.c: When we reflect on a field w/ a constant value, it
26058         will not have a memory location, so we must access metadata. Also,
26059         allow easier reading of strings so that we can read them from
26060         the constant data.
26062         * class.c (mono_class_layout_fields): no need for literal fields here.
26064         * class-internals.h: api changes for const fields
26066         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26068 2004-07-06  Martin Baulig  <martin@ximian.com>
26070         * mono-debug.h: Increment version number to 44.
26072         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26073         now a gpointer, rewrote this whole method.
26075         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26076         function.  Add information about the wrapper in a new "misc table".
26078         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26079         for the new misc table.
26081 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26083         * metadata-internals.h image.c: Add a cache for helper signatures.
26085         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26087 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26089         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26090         delegates from a delegate. Fixes #61033.
26091         
26092         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26093         marshalling of stringbuilder arrays. Fixes #59900.
26095 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26097         * icall.c: Add EnumBuilder:setup_enum_type icall.
26099 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26101         * icall.c: Added a new icall for the property version of
26102         OffsetOfStringData.
26104 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26106         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26107         it has a constant size across platforms.
26109         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26110         stack trace.
26112 2004-06-29  Martin Baulig  <martin@ximian.com>
26114         * mono-debug.c (mono_debug_add_method): Protect the whole function
26115         in mono_debugger_lock(), not just parts of it.
26117 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26119         * reflection.c: make sure padding bytes in heaps are zeroed.
26121 2004-06-24  David Waite  <mass@akuma.org>
26123         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26124         image.c, loader.c, locales.c, marshal.c, metadata.c,
26125         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26126         string-icalls.c, threads.c: change to C90-style comments from C99 /
26127         C++ -style
26129 2004-06-24  Dick Porter  <dick@ximian.com>
26131         * threads.c
26132         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26133         return createdNew.  Fixes bug 60412.
26135         * threads-types.h: 
26136         * icall.c: Add createdNew parameter to CreateMutex icall
26138 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26140         * reflection.c, object-internals.h: save default value in params.
26142 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26144         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26145         no need to build a new path combining that with the application base.
26146         Fixes bug #60442.
26148 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26150         * reflection.c: fixed minor standard compliance issues.
26152 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26154         * reflection.c: fixed issue with encoding some custom attributes
26155         (arrays in properties and fields, bug #60411).
26157 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26159         * reflection.c: fix start address when copying the public key token.
26161 2004-06-23  Martin Baulig  <martin@ximian.com>
26163         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26164         the `exc' object in a static object to put it into the GC's root set.
26166 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26168         * reflection.c: make mono_reflection_setup_internal_class ()
26169         callable a second time to setup a new parent class.
26171 2004-06-23  Dick Porter  <dick@ximian.com>
26173         * threads.c: Check for WAIT_IO_COMPLETION return values.
26175 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26177         * appdomain.c: Removed the g_free on the public key token. Now copy 
26178         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26179         * assembly.c: Added public key token string value when loading 
26180         assemblies. Fix bug #60439.
26181         * icall.c: Added missing informations (like public key) in 
26182         GetReferencedAssemblies. Fix #60519.
26183         * image.h: Changed definition for public key token from const char*
26184         public_tok_value to guchar public_key_token [17];
26185         * reflection.c: Updated for changes to public key token.
26187 2004-06-22  Lluis Sanchez Gual
26189         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26190         for the field in base classes.
26192 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26194         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26195         mark headers as not supported, they are installed only for use by the
26196         debugger.
26198 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26200         * *.c, *.h: avoid namespace pollution in public headers.
26202 2004-06-21  Martin Baulig  <martin@ximian.com>
26204         * exception.c (mono_get_exception_security): It's in
26205         "System.Security", not in "System".
26207         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26208         the exception classes.
26210 2004-06-21  Martin Baulig  <martin@ximian.com>
26212         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26213         Protect the exception object from being finalized.
26215 2004-06-21  Martin Baulig  <martin@ximian.com>
26217         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26218         public function.
26220 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26222         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26223         if it was not loaded before. Fix parts of #60439.
26225 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26227         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26228         code that was broken since Ben's change: wrappers are now
26229         dependent on the method signature only again.
26231 2004-06-21  Martin Baulig  <martin@ximian.com>
26233         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26234         added interface support.
26236 2004-06-21  Martin Baulig  <martin@ximian.com>
26238         * class.c (mono_vtable_get_static_field_data): New public method.
26240 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26242         * filewatcher.c : Windows build fix to be compliant with API changes.
26244 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26246         * class.h, class.c: more accessors.
26247         * metadata.h, metadata.c: prepare for hiding MonoType and
26248         MonoMethodSignature: people should use the accessors from now on
26249         outside of the tree.
26251 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26253         * *.c, *.h: more API cleanups.
26255 2004-06-18  Jackson Harper  <jackson@ximian.com>
26257         * assembly.c: Trace loading assemblies.
26258         * loader.c: Trace loading native libraries.
26259         * mono-config.c: Trace loading config files.
26260         
26261 2004-06-18  Dick Porter  <dick@ximian.com>
26263         * locales.c: Tell ICU the lengths of strings, it can cope with
26264         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26266 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26268         * image.c: swapped name/filename;
26270 2004-06-18  Martin Baulig  <martin@ximian.com>
26272         * mono-debug-debugger.c (write_class): Write the parent class at
26273         the end of the header.
26275 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26277         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26279 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26281         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26282         (bundle_obj): New conditional define.
26283         (BUILT_SOURCES): Remove.
26284         ($(bundle_srcs)): Make parallel-make safe.
26285         (libmonoruntime_la_LIBADD): Make unconditional.
26286         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26287         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26289 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26291         * culture-info-tables.h: It was inconsistent with the latest
26292           supp info files.
26294 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26296         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26297         be loaded.
26299         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26300         with gcc 2.95.
26302 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26304         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26305         cleaned up public header threads.h.
26307 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26309         * Makefile.am, *.c, *.h: more API cleanups.
26311 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26313         * Makefile.am: removed monosn from compilation.
26314         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26315         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26316         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26317         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26318         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26319         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26321 2004-06-15  Jackson Harper  <jackson@ximian.com>
26323         * assembly.c: Make locales lower case when searching the GAC for
26324         assemblies. gacutil will always make locales lowercase when
26325         installing so this effectively makes them case insensitive.
26326         
26327 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26329         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26330         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26331           parameter which allows to choose whether the wait can be interrupted or 
26332           not. Also added the method mono_monitor_enter(), which locks the monitor
26333           using an infinite wait and without allowing interruption.
26334           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26335           interrupted.
26336         * object.h: Added new fields in MonoThread. suspend_event holds the event
26337           used to susped/resume the thread. synch_lock is the lock object to use for
26338           modifying the thread state.
26339         * threads.c: Use the new synch_lock object for locking, instead of "this",
26340           which can generate deadlocks.
26341           Moved thread state change in Thread.Sleep and Thread.Join from managed
26342           to unmanaged code. This avoids a deadlock when the thread was suspended
26343           just after acquiring the thread lock.
26344           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26345           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26346           which is not fully implemented in the io-layer.
26347         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26349 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26351         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26352         threads-types.h: more API cleanups.
26354 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26356         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26357         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26358         threadpool.c, threads.c: first pass at the exported API cleanup.
26360 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26362         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26364 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26366         * icall.c: added internalGetHome.
26368 2004-06-14  Dick Porter  <dick@ximian.com>
26370         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26371         possible to return successfully when '.' or '..' were the only
26372         entries in a directory, but were skipped.  The MonoIOStat was not
26373         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26374         Fixes bug 59574.
26376 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26378         * reflection.c: make binaries run on .Net 1.1 by default.
26380 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26382         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26384 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26386         * marshal.c: keep track of struct size with explicit layout
26387         (bug #59979).
26389 2004-06-12  Martin Baulig  <martin@ximian.com>
26391         * mono-debug-debugger.c: Comment out a debugging g_message().
26393 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26395         * reflection.c, reflection.h: do not free custom attrs that are cached.
26396         * icall.c: use braces to make code clearer.
26398 2004-06-11  Martin Baulig  <martin@ximian.com>
26400         * class.h (MonoInflatedField): New type.
26401         (MonoClassField): Replaced `MonoType *generic_type' with
26402         `MonoInflatedField *generic_info'.
26404         * icall.c
26405         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26407 2004-06-11  Martin Baulig  <martin@ximian.com>
26409         * reflection.c (mono_image_create_method_token): Correctly encode
26410         varargs methods.
26412 2004-06-11  Martin Baulig  <martin@ximian.com>
26414         * metadata.c (mono_metadata_parse_method_signature): When parsing
26415         a MethodDef which has VarArgs, also set sentinelpos if we don't
26416         have any parameters.
26418 2004-06-11  Martin Baulig  <martin@ximian.com>
26420         * verify.c (mono_method_verify): In CEE_CALL, use
26421         mono_method_get_signature() to get the method's signature, unless
26422         we're a PInvoke method.
26424 2004-06-10  Jackson Harper  <jackson@ximian.com>
26426         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26427         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26428         logical name as the supplied path is just a prefix to the gac not
26429         the direct path to it.
26430         
26431 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26433         * reflection.c: make the token for a created method match
26434         the token of the MethodBuilder it was created from
26435         (IKVM requires this behaviour now).
26437 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26439         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26440         reflection.c, socket-io.c: leak fixes.
26442 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26444         * icall.c: handle sentinel pos in vararg methods in position different
26445         from 0.
26447 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26449         * culture-info-tables.h: freshly generated.
26451 2004-06-09  Martin Baulig  <martin@ximian.com>
26453         * loader.c (mono_get_method_constrained): Call `mono_class_init
26454         (constrained_class)'.   
26456 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26458         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26459         any methods. Fixes #59629.
26461 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26463         * culture-info-tables.h: reflecting locale-builder updates.
26465 2004-06-08  Dick Porter  <dick@ximian.com>
26467         * object.h:
26468         * locales.c: Fixed compile warnings, including a real bug in
26469         CompareInfo_internal_compare.
26470         
26471 2004-06-08  Dick Porter  <dick@ximian.com>
26473         * locales.c
26474         (ves_icall_System_Globalization_CompareInfo_internal_index):
26475         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26476         Double-check the resuls of usearches, because ICU currently
26477         ignores most of the collator settings here.  Fixes bug 59720.
26478         
26479 2004-06-08  Dick Porter  <dick@ximian.com>
26481         * locales.c
26482         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26483         Fix memory leak and segfault-causing typo.  No idea how this one
26484         lasted so long without being noticed.
26486 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26488         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26489         any methods. Fixes #59629.
26491 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26493         * assembly.c:
26494         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26495         own the critical section before). Removed dead code (that's done
26496         in the preload hook).
26498         (mono_assembly_load_with_partial_name): call the preload hook.
26500 2004-06-08  Martin Baulig  <martin@ximian.com>
26502         * metadata.c (mono_metadata_signature_alloc): Default
26503         `sentinelpos' to -1.
26505         * reflection.c (mono_image_get_array_token): Likewise.
26507 2004-06-08  Martin Baulig  <martin@ximian.com>
26509         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26511         * metadata.c (mono_metadata_parse_method_signature): When parsing
26512         a MethodDef which has VarArgs, set sentinelpos.
26514         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26515         `gint16' since we're using -1 for non-varargs methods.
26517         * reflection.c
26518         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26519         (method_encode_signature): Added varargs support.
26520         (method_builder_encode_signature): Likewise.
26521         (mono_image_get_varargs_method_token): New static method.
26522         (mono_image_create_method_token): New public method; this is
26523         called via an icall instead of mono_image_create_token() when
26524         calling a varargs method.       
26526 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26528         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26530 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26532         * culture-info-tables.h : Reflecting the latest locale-builder that
26533           fixed empty array representation ({} to {0}).
26535 2004-06-07  Jackson Harper  <jackson@ximian.com>
26537         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26538         looking up extra gac paths. This allows MONO_GAC_PATH to act
26539         exactly like a prefix.
26540         
26541 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26543         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26544         type name before modifying it. Fixes #59405.
26546 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26548         * culture-info.h: added fields for "all datetime patterns".
26549         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26550           _construct_datetime_format ()): fill xxx_patterns fields.
26551         * object.h: added fields for "all datetime patterns" to
26552           MonoDateTimeFormatInfo.
26553         * culture-info-tables.h: reflecting locale-builder updates.
26555 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26557         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26558         the event has no add and remove methods. Fixes #59629.
26560 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26562         * object.c: Fixed possible integer overflow when allocating large
26563         strings.
26565 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26567         * culture-info-tables.h: reflecting locale-builder updates.
26569 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26571         * culture-info-tables.h: reflecting locale-builder updates.
26573 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26575         * culture-info-tables.h: reflecting locale-builder updates.
26577 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26579         * threads.c: Made Thread.Sleep abortable.
26581 2004-06-02  Martin Baulig  <martin@ximian.com>
26583         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26585         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26587 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26589         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26591 2004-05-30  Jackson Harper  <jackson@ximian.com>
26593         * reflection.c: Do not hardcode assembly versions or public key
26594         tokens anymore. All of this except the corlib section was dead
26595         code anyways.
26596         
26597 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26599         * object.c (mono_runtime_invoke_array): Automatically create boxed
26600         objects for byref valuetypes if needed. Fixes #59300.
26601         
26602         * object.c (mono_method_return_message_restore): Handle 
26603         MONO_TYPE_OBJECT as well.
26605 2004-05-28  Jackson Harper  <jackson@ximian.com>
26607         * reflection.c: The modified type encoding was causing build
26608         problems. Reverted for now.
26609         
26610 2004-05-28  Jackson Harper  <jackson@ximian.com>
26612         * reflection.c/h: Take an assembly ref so that we dont create
26613         fully qualified names when encoding types in the same assembly as
26614         the custom attribute being emitted.
26615         * appdomain.c: Increment version number.
26616         
26617 2004-05-26  Duncan Mak  <duncan@ximian.com>
26619         * icall.c
26620         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26621         Set the full version number (major, minor, build, revision).
26623 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26625         * marshal.c (emit_struct_conv): increment src/dst after blit
26626         (mono_marshal_get_managed_wrapper,
26627         mono_marshal_get_native_wrapper): make sure we have marshalling
26628         info before marshalling params (info computation affects
26629         blittable)
26631         * class.c (class_compute_field_layout): correctly deal with
26632         blittable
26633         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26634         value types (as per what windows dows by default)
26635         (mono_class_setup_mono_type): System.ValueType is blittable
26636         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26637         blittable
26639         * marshal.c (mono_marshal_load_type_info): flag types  as
26640         non-blittable if the native layout doesn't match the managed
26641         layout
26643 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26645         * appdomain.c: don't add stuff in the private search path that is
26646         above the application base. If application base is not set, there's
26647         no private search path.
26649 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26651         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26652         byref struct arguments in native->managed marshalling.
26654 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26656         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26657         cache methods using signature (special case for methods
26658         that are value type or string class)
26659         
26660         * image.c (mono_image_close): clean up allocated GSList's
26661         in runtime_invoke_cache.
26663 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26665         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26666         there's no MONO_CFG_DIR environment variable defined.
26668 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26670         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26672 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26674         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26675           is interrumped.
26676         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26677           before waiting for it, and call CloseHandle after the wait to unref it.
26678           This will make sure that handles are not disposed too early.
26680 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26682         * appdomain.c:
26683         * appdomain.h:
26684         * icall.c: removed
26685         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26686         needed now.
26688         * object.c: se the application_base only for the domain that runs
26689         Main. Fixes bug #59216,
26691 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26693         * appdomain.c:
26694         * object.c: only the domain in which Main is run have
26695         SetupInformation.ConfigurationFile set, so moved a few lines from
26696         appdomain.c to object.c.
26698 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26700         * appdomain.c: we tried to load [name].(dll|exe), but according
26701         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26702         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26703         There's a test case attached to bug #58922.
26705 2004-05-27  Dick Porter  <dick@ximian.com>
26707         * icall.c:
26708         * file-io.c: Implemented icalls for locking and unlocking regions
26709         in a file.
26710         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26711         FALSE on error (fixes both compiler warning and real bug.)
26713 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
26715         * culture-info-tables.h: reflecting locale-builder updates.
26717           (Added missing ChangeLog entry for 05/26)
26719 2004-05-27  Jackson Harper  <jackson@ximian.com>
26721         * locales.c: Fix some cut and paste errors.
26722         
26723 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26725         * mono-config.c: set the correct path for config. directory on windows.
26727 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26729         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
26730           on win32.
26732 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26734         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
26735         from pinvoke functions.
26736         
26737         * marshal.c (mono_ftnptr_to_delegate): Implement this.
26739 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26741         * culture-info-tables.h: reflecting locale-builder updates.
26743 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26745         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
26746         #59086.
26748 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
26750         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
26751         * icall.c: Modified icalls for RNG.
26752         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
26753         Windows (CryptoAPI).
26755 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26757         * locales.c: Fix build.
26759 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
26761         * culture-info-tables.h: reflecting locale-builder updates.
26763 2004-05-25  Jackson Harper  <jackson@ximian.com>
26765         * locales.c: When creating the current culture use the $LANGs
26766         specific culture. So DateTimeFormat and NumberFormat entries are created.
26767         
26768 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26770         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
26771         a char array as parameter.
26773 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
26775         * image.c: In mono_image_open(), always use an absolute path name to
26776           look for already loaded images.
26778 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
26780         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
26781         missing in the windows build (like older cygwin include files).
26783 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
26785         * icall.c: Fixed check for possible integer overflow in Buffer_
26786         BlockCopy icall. Replaced comments style // by /* */.
26788 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
26790         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
26791         
26792         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
26793         check after MONO_VTADDR. Fixes pinvoke2.exe.
26795         * marshal.h marshal.c metadata.h: Add beginnings of support for
26796         ftnptr -> delegate marshalling.
26798 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
26800         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
26801         * threads.c: Fix warnings.
26803 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
26805         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
26806         * icall.c: Registered icalls for Suspend and Resume.
26807         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
26808           Thread.Abort.
26809         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
26810         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
26811         * process.c: Use WaitForSingleObjectEx.
26812         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
26813           checkpoints.
26814         * threads.c, threads.h: Make use of new Ex wait methods. Improved
26815           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
26816           for Suspend and Resume. Added new mono_thread_stop, used for stoping
26817           background threads. Added basic support for Abort in Windows.
26818           Start new threads using a managed delegate invoke wrapper. This wrapper
26819           has an interruption checkpoint that is needed since an interruption
26820           can be requested before the thread leaves the unmanaged code that starts 
26821           the thread.
26822         * marshal.c: Added interruption checkpoint after every native call, and
26823           also before managed calls for wrappers called from unmanaged code to
26824           go into managed code.
26825         * object.h: Added new field in MonoThread to keep track of interruption
26826           requests.
26828 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
26830         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
26831         calls.
26833 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26835         * appdomain.c:
26836         * assembly.c:
26837         * gc.c:
26838         * locales.c:
26839         * mono-config.c:
26840         * rand.c: getenv -> g_getenv (windows!)
26842         * process.c: complete_path is also used on non-windows platforms.
26844 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26846         * icall.c: new signature for Process_Start.
26848         * process.[ch]: new signature for Process_Start. If we're on windows
26849         and UseShellExecute is false, we have to search for the program by
26850         ourselves if we don't get a full path.
26852 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
26854         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
26855         marshalling and call CleanUpNativeData if needed. Fixes #58646.
26857 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26859         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
26860         Fixes bug #58373.
26862 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26864         * process.c: use double quotes to quote program name and arguments on
26865         windows. Fixes bug #58575.
26867 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26869         * file-io.c: don't return "." and ".." when using windows Find*File.
26871 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26873         * marshal.c: Don't pass wrappers to message init because method 
26874         addressed used to lookup metadata. part of remoting[2|3] fix.
26876 2004-05-15  Jackson Harper  <jackson@ximian.com>
26878         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
26879         path is essentially the same as MONO_PATH except that it points to
26880         GACs instead of lib directories.
26881         * loader.h: The user gac is gone so we dont need function to
26882         enable/disable it.
26883         * mono-config.c: user gac option is now gone.
26884         
26885 2004-05-15  Jackson Harper  <jackson@ximian.com>
26887         * culture-info.h: Make defines more consistent, add calendar data
26888         to the culture info table.
26889         * culture-info-tables.h: Add basic calendar data. Basically
26890         everyone gets default gregorian until all the data is
26891         updated.
26892         * locales.c: Use the new consistent defines. Set calendar data for
26893         culture info objects.
26894         * object.h: add a field for calendar data to CultureInfo
26895         
26896 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
26898         * image.c: image->runtime_invoke_cache is keyed on signatures now.
26899         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
26900         a signature.
26901         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
26902         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
26903         an extra param that is the pointer of the method to invoke. The IL for
26904         the invoke method is no longer specific to the method, but to the
26905         signature of the method. Thus, we can share the same code for multiple
26906         methods. This reduces the number of methods that have to be compiled.
26908 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
26910         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
26912         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26914         * icall.c: Optimize Buffer.BlockCopy.
26916 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26918         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
26919         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
26920         quote). Changed them to "MMMM yyyy".
26922 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
26924         * rand.c
26925         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
26927 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
26929         * reflection.h: Updated after changes to managed structures.
26931         * appdomain.c: Bump corlib version.
26933 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26935         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
26936         windows.
26938 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26940         * Makefile.am: link to ../os/libmonoos.la on windows.
26942         * assembly.c:
26943                 -If MONO_DEBUG, warn about non-existing directories in
26944                 MONO_PATH.
26945                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
26946                 compile time variable.
26947                 -Removed init_default_path and call mono_set_rootdir from
26948                 libmonoos.a instead (windows only).
26950         * assembly.h: declare mono_assembly_getrootdir().
26952         * domain.c:
26953         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
26955         * loader.c: s/getenv/g_getenv/
26957 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
26959         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
26961         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
26963         * metadata.h: Add new marshalling conversions.
26965         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
26966         function.
26968         * reflection.c (mono_reflection_get_type): Lookup the type in all
26969         modules of a multi-module assembly. Fixes #58291.
26971 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
26973         * threads.c: Before aborting a background, set the StopRequested
26974         state.  This avoids throwing the Abort exception.
26975         In mono_thread_manage, don't continue with the shutdown until all
26976         aborted threads have actually stopped.
26978 2004-05-10  Jackson Harper  <jackson@ximian.com>
26980         * locales.c: Remove the modifier from culture names.
26981         
26982 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26984         * Makefile.am: monosn is not installed any more. It has been deprecated
26985         in favor of sn.
26987 2004-05-07  Jackson Harper  <jackson@ximian.com>
26989         * locales.c
26990         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
26991         Fix array construction, add bailout if the length is 0.
26993 2004-05-07  Dick Porter  <dick@ximian.com>
26995         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
26996         machine doesn't have a DNS entry.  Patch by Urs Muff
26997         (umuff@quark.com), fixes bug 57928.
26999 2004-05-06  Jackson Harper  <jackson@ximian.com>
27001         * reflection.c: Handle null PublicTokens properly. alloc mem for
27002         assembly names culture so we dont crash when freeing it.
27003         
27004 2004-05-06  Jackson Harper  <jackson@ximian.com>
27006         * assembly.c: Check the usergac when loading with partial names.
27007         
27008 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27010         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27011         does nothing for now (not required for Linux/Windows) but the class
27012         library can call it (and a newer or modified runtime could need it).
27013         * icall.c: Registred icall.
27015 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27017         * loader.c: prints a message on module loading error we set MONO_DEBUG
27018         environment variable.
27020 2004-05-05  Jackson Harper  <jackson@ximian.com>
27022         * appdomain.c: Handle PublicKeyToken=null properly.
27023         
27024 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27026         * environment.c|h: Added icall ves_icall_System_Environment_
27027         GetOSVersionString to get the current OS version as a string.
27028         * icall.c: Registred icall.
27030 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27032         * object.c: in mono_object_get_virtual_method(), take into account that
27033         non-virtual methods don't have a slot in the vtable. Check needed when
27034         the object is a proxy.
27036 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27038         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27039         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27041         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27043         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27044         passed when a valuetype is expected.
27046         * object.c (mono_unhandled_exception): Only set the exit code if the
27047         exception happens in the main thread. Fixes thread5.exe.
27049         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27050         invalid names. Fixes #58047.
27052 2004-05-03  Jackson Harper  <jackson@ximian.com>
27054         * assembly.c: This line was committed accidently and is unneeded.
27055         
27056 2004-05-03  Jackson Harper  <jackson@ximian.com>
27058         * icall.c: Add new icall for Assembly::LoadWithPartialName
27059         * assembly.c/.h: new function that probes the GAC to load partial
27060         assembly names by Paolo Molaro.
27061         
27062 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27064         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27065         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27066         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27067         full type name.
27069 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27071         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27072         * reflection.c: fix bug when parsing a full type name and Version is not
27073         the last thing in the string.
27075 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27077         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27078         crashes when it is freed.
27080 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27082         * assembly.c: print the compat warning to stderr.
27084 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27086         * assembly.c (mono_assembly_load_references): Add a compatibility
27087         hack to run old applications that might be still referencing the
27088         3300-based assemblies, only do this for System.xxx.
27090 2004-05-01  Jackson Harper  <jackson@ximian.com>
27092         * appdomain.c: If the culture is neutral we set it to "".
27093         
27094 2004-04-29  Jackson Harper  <jackson@ximian.com>
27096         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27098 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27100         * string-icalls.c: added low overhead function for copying chars
27101         * icall.c: added needed icall for the above function
27103 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27105         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27106         Environment.GetLogicalDrives.
27108 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27110         * rand.c: try and talk to egd or prngd
27111         for random bytes if opening devices fail.
27113 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27115         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27116         alignment for the type using the native alignment of its members 
27117         instead of using klass->min_align.
27119         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27121 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27123         * file-io.c:
27124         * socket-io.c: added check for sys/aio.h.
27126 2004-04-28  Dick Porter  <dick@ximian.com>
27128         * threads.c: Don't abort a thread thats already aborting, when
27129         terminating everything.
27131 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27133         * icall.c: added 2 new async calls for Socket.
27135         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27136         IO on *nix systems.
27138         * threadpool.c: removed unused variable.
27140 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27142         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27144 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27146         * locales.c: put back string_invariant_tolower () and
27147         string_invariant_toupper ().
27149 2004-04-26 David Waite <mass@akuma.org>
27151         * file-io.h:
27152         * socket-io.h:
27153         * threads.h:
27154         * unicode.h: remove comma from end of enumeration declarations
27156 2004-04-26 David Waite <mass@akuma.org>
27158         * debug-mono-symfile.h:
27159         * decimal.c:
27160         * mono_debug.h:
27161         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27164 2004-04-26  Jackson Harper  <jackson@ximian.com>
27166         * appdomain.c: Increment version number.
27167         
27168 2004-04-26  Jackson Harper  <jackson@ximian.com>
27170         * appdomain.c: Set assembly references public token value when
27171         PublicKeyToken is specified, not the hash_value. Free public token
27172         values when free assembly name data. Previously the public key
27173         token was hex decoded, however we are using hex encoded public key
27174         tokens, so this is not neccasary.
27175         * assembly.c: Lookup assemblies in the gac if their public token
27176         value is set. Add function to allow enabling user gac
27177         lookups. Specify whether or not the assembly was loaded from the
27178         GAC. Compare full assembly names when checking the cache for
27179         assemblies (Temporarily disabled see comment in code). Remove
27180         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27181         specifies trace-loader they get extra info to stdout on the
27182         loading of assemblies.
27183         * image.h: Add a field for an assembly references public token
27184         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27185         whether an assembly has been loaded from the GAC.
27186         * image.c: Remove a corlib -> mscorlib name mapping.
27187         * loader.h: Add function to enable/disable the user gac.
27188         * mono-config.c: Check if the usergac is enabled in the config
27189         file.
27190         * icall.c: New icall to determine whether or not an assembly has
27191         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27192         * tabldefs.h: Add constant for assemblyref flag that specifies a
27193         full public key is used instead of a public token.
27194         * reflection.c: Remove mscorlib -> corlib mappings. Set
27195         PublicTokenValue instead of hash value. This value is a hex
27196         string so it does not need to be expanded.
27198 2004-04-26  Martin Baulig  <martin@ximian.com>
27200         * mono-debug-debugger.c (mono_debugger_initialize): Set
27201         `mono_debugger_initialized' before calling mono_debug_lock().
27203 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27205         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27206           InternalToUpper/InternalToLower.
27207         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27208           removed invariant culture shortcut.  This is now done in managed code.
27209         * locales.c: (string_invariant_toupper/tolower) removed.
27211 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27213         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27214         Added Poll internal call.
27216         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27217         call for Poll. Select was too heavy for polling a single socket.
27219         * threadpool.[ch]: added mono_threadpool_cleanup.
27220         * threads.c: use it. Don't use Thread_Abort on windows.
27222 2004-04-23  Martin Baulig  <martin@ximian.com>
27224         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27226 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27228         * icall.c: Registred new icalls for key pair protection and added an
27229         icall for Environment.GetFolderPath on Windows.
27230         * security.c|h: Added new icalls for key pair protection.
27232 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27234         * socket-io.c: don't display the non-supported family warning for known
27235         families. Now this is not displayed on windows when checking support
27236         for IPv4/IPv6.
27238 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27240         * class.c: don't display the layout warning for static fields.
27242 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27244         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27245         * locales.c, locales.h: Added new icalls for culture-specific
27246         Char.ToLower and Char.ToUpper.
27248 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27250         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27251         by David Waite.
27253 2004-04-20  Martin Baulig  <martin@ximian.com>
27255         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27256         of the type name before passing it to mono_reflection_type_from_name().
27258 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27260         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27261         encodings here. Fixes #56965.
27263 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27265         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27266         fix test on strstr result not that I can see anything that
27267         relies on the result.
27269 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27271         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27272         Fixes #57081.
27274         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27276         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27277         function to determine which marshalling to use for strings. Fixes
27278         #56965.
27280         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27282         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27284 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27286         * icall.c: #include mono-config.h
27288 2004-04-15  Jackson Harper  <jackson@ximian.com>
27290         * culture-info-tables.h: Fix date formats for en-US culture.
27291         
27292 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27294         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27295         ThreadPool.SetMinThreads.
27296         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27297         ThreadPool.SetMinThreads.
27299 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27301         * mono-config.c: also load the .config file in the directory
27302         where the assembly was found.
27304 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27306         * assembly.c: load per-assembly config files.
27307         * icall.c: decrapified code to get the config dir and moved to
27308         mono-config.c.
27309         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27310         per-assembly config files. When doing a dll map lookup give precedence
27311         to the per-assembly data.
27313 2004-04-14  Martin Baulig  <martin@ximian.com>
27315         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27316         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27317         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27319         * mono-debugger-debugger.c: While the debugger is locked, remember
27320         whether the symbol tables have changes and send one single
27321         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27323 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27325         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27327         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27328         function.
27330         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27331         account when marshalling string arrays. Fixes #56965.
27333 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27335         * icall.c: Add new icalls mapping for security.
27336         * security.c|h: Add internal calls for WindowsIdentity,
27337         WindowsImpersonationContext and WindowsPrincipal.
27339 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27341         * class.c: Added comment to ensure the System.MonoDummy class
27342         is removed when no longer necessary
27344 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27346         * appdomain.c: Pass arguments to the bootstraping exceptions to
27347         minimize JITed methods at boot
27349         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27350         second string to be null.
27352         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27353         Change the protocol to minimize the JIT methods at startup.  Now
27354         it Returns the internal codepage, if the value of "int_code_page"
27355         is 1 at entry, and we can not compute a suitable code page
27356         number, returns the code page as a string.
27358 2004-04-13  Jackson Harper  <jackson@ximian.com>
27360         * culture-info-tables.h: Fix number of decimal digits for all
27361         english locales.
27363 2004-04-13  Jackson Harper  <jackson@ximian.com>
27365         * icall.c: Clairfy out of sync error message. It is not always
27366         your corlib that is out of sync.
27368 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27370         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27371         properties when only the set accessor is overriden. Fixes #55874.
27373 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27375         * assembly.c (mono_assembly_load_references): Make this thread safe.
27376         Fixes #56327.
27378 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27380         * monosn.c: Add missing initialization calls.
27382 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27384         * locales.c:
27385         ves_icall_System_Globalization_CultureInfo_construct_number_format
27386         Fix g_assert so it compiles on fussier compilers re int/ptr
27387         mismatch
27389 2004-04-08  Dick Porter  <dick@ximian.com>
27391         * socket-io.h:
27392         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27393         53992.  Also rearrange the code so that the internal calls return
27394         an error value and exceptions are thrown from managed code.
27396         * icall.c: Add type info to the socket icalls.
27398 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27400         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27401         owes me a beer.
27403 2004-04-07  Martin Baulig  <martin@ximian.com>
27405         * class.c (mono_class_from_generic_parameter): Don't default
27406         `klass->parent' to `mono_defaults.object_type'.
27408 2004-04-07  Martin Baulig  <martin@ximian.com>
27410         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27411         `param->pklass->reflection_info'.       
27413 2004-04-07  Jackson Harper  <jackson@ximian.com>
27415         * culture-info-tables.h: Fix date separator symbol.
27416         
27417 2004-04-07  Martin Baulig  <martin@ximian.com>
27419         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27420         from System.Type to System.MonoType.
27422 2004-04-07  Martin Baulig  <martin@ximian.com>
27424         * reflection.h
27425         (MonoReflectionGenericParam): Added `has_reference_type' and
27426         `has_value_type' fields.
27428         * reflection.c (mono_image_get_generic_param_info): Encode the
27429         correct flags if we have the `class' or `struct' constraint.
27431 2004-04-07  Martin Baulig  <martin@ximian.com>
27433         * reflection.h
27434         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27436 2004-04-07  Jackson Harper  <jackson@ximian.com>
27438         * appdomain.c: Revert extra patches, just wanted to bump the
27439         version number.
27440         
27441 2004-04-07  Jackson Harper  <jackson@ximian.com>
27443         * Makefile.am: Add culture-info private headers.
27444         * icall.c: Add new icalls for contructing locales.
27445         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27446         * locales.h: Declare new culture info construction methods.
27447         * object.h: Add new fields used to avoid the CultureMap to
27448         MonoCultureInfo.
27449         * culture-info.h: Definition of structs used in the culture info
27450         tables.
27451         * culture-info-tables.h: Autogenerated tables that contain culture
27452         info data. This file was generated with the locale-builder tool.
27453         * appdomain.c: Incement corlib version number.
27454         
27455 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27457         * appdomain.c: (mono_runtime_init) move mono_thread_init
27458         to before mono_object_new calls so critical sections
27459         are initialized before use.
27461 2004-04-07  Martin Baulig  <martin@ximian.com>
27463         * icall.c
27464         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27465         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27466         (ves_icall_MonoGenericParam_initialize): Removed.
27467         (monogenericparam_icalls): Removed.
27468         (generictypeparambuilder_icalls): Added new table for
27469         System.Reflection.Emit.GenericTypeParameterBuilder.
27471         * reflection.c
27472         (mono_reflection_define_generic_parameter): Removed.
27473         (mono_reflection_initialize_generic_parameter): This is now called
27474         from GenericTypeParameterBuilder's .ctor.
27476 2004-04-06  Martin Baulig  <martin@ximian.com>
27478         * class.c (mono_class_init): Don't inflate nested classes in a
27479         generic instance.
27480         (mono_type_get_name_recurse): Include the generic arguments for
27481         generic instances and generic type declarations.
27482         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27483         (_mono_class_get_instantiation_name): Removed.
27484         (mono_class_create_generic): Always use `gklass->name' as our name.
27486         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27488         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27489         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27490         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27491         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27492         closed generic methods here.
27494         * reflection.c
27495         (mono_reflection_generic_inst_get_nested_types): Removed.
27496         (inflate_mono_method): Copy the generic parameters from the
27497         MonoMethodHeader into out MonoGenericMethod.
27499 2004-04-06  Martin Baulig  <martin@ximian.com>
27501         * row-indexes.h
27502         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27504         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27506         * reflection.c (build_compressed_metadata): If we have any entries
27507         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27508         set the header version to 1.1.
27510 2004-04-06  Martin Baulig  <martin@ximian.com>
27512         * class.c (mono_class_init): If we're a generic instance,
27513         initialize our nested classes, too.
27514         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27515         suffix. 
27517 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27519         * process.c: quote the argument passed to the shell on windows.
27521 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27523         * threads.c (mono_alloc_special_static_data): Allow this to be
27524         called during startup.
27526 2004-04-02  Martin Baulig  <martin@ximian.com>
27528         * icall.c
27529         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27531 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27533         * icall.c: Fix build.
27535 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27537         * Makefile.am: Added security.c|h.
27538         * icall.c: Added icall for get_UserName;
27539         * security.c: New file for security related icalls. Added function
27540         get_UserName for System.Environment (fix #56144).
27541         * security.h: New. Header file for security.c
27543 2004-04-02  Dick Porter  <dick@ximian.com>
27545         * icall.c: Deleted the icalls that were obsoleted some time ago
27546         by the ICU string code, and which were mixed into the icall
27547         rearranging.  Fixes bug 55969.
27549         * string-icalls.h: 
27550         * string-icalls.c: Deleted the code that those icalls reference.
27552 2004-04-01  Martin Baulig  <martin@ximian.com>
27554         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27556         * class.c (mono_class_from_generic_parameter): Don't set 
27557         TYPE_ATTRIBUTE_INTERFACE.
27558         (my_mono_class_from_generic_parameter): Likewise.
27560 2004-04-01  Martin Baulig  <martin@ximian.com>
27562         * loader.c (find_method): Added an optional `MonoClass *ic'
27563         argument to search in a specific interface.
27564         (mono_get_method_constrained): New public function.
27566 2004-04-01  Martin Baulig  <martin@ximian.com>
27568         * reflection.c (mono_image_get_generic_field_token): Use the
27569         `handleref' cache here.
27571 2004-04-01  Martin Baulig  <martin@ximian.com>
27573         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27575         * reflection.c (create_generic_typespec): Use the `typespec' hash
27576         here, not the `typeref' one.    
27578 2004-04-01  Martin Baulig  <martin@ximian.com>
27580         * class.c (mono_class_inflate_generic_type): Moved the
27581         functionality into a new static inflate_generic_type() which
27582         returns NULL if it didn't do anything.  Only increment the
27583         `mono_stats.inflated_type_count' if we actually inflated
27584         something.
27585         (mono_class_get_full): Check the classes type to see whether we
27586         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27588 2004-04-01  Jackson Harper  <jackson@ximian.com>
27590         * reflection.c: Set culture for assembly references.
27591         
27592 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27594         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27596 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27598         * assembly.c:
27599         (do_mono_assembly_open): the critical section also covers
27600         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27602 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27604         * threads.c:
27605         (mono_manage_threads): abort the background threads when finishing.
27606         Fixes bug #47232.
27608 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27610         * gc.c: only close the done_event handle if there was no timeout.
27611         C-ified comments.
27613 2004-03-30  Martin Baulig  <martin@ximian.com>
27615         * icall.c (icall_entries): It's called "System.Activator", not
27616         "System.Activation".    
27618 2004-03-30  Martin Baulig  <martin@ximian.com>
27620         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27621         (mono_class_create_from_typespec): Likewise.
27623 2004-03-30  Martin Baulig  <martin@ximian.com>
27625         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27626         `has_ctor_constraint' and `initialized'.
27628 2004-03-30  Martin Baulig  <martin@ximian.com>
27630         * reflection.c (encode_new_constraint): New static function to add
27631         the constructor constraint attribute to a type parameter.
27632         (encode_constraints): Call encode_new_constraint() if necessary.
27634         * reflection.h
27635         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27637         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27638         
27639 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27641         * reflection.c, icall.c: add support for pinning variables. 
27643 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27645         * marshal.c (mono_marshal_get_managed_wrapper):
27646         init bool local with zero rather than null.
27648 2004-03-29  Martin Baulig  <martin@ximian.com>
27650         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27651         the "official" behavior here.
27652         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27654 2004-03-29  Martin Baulig  <martin@ximian.com>
27656         * icall.c: Reflect latest API changes.
27658 2004-03-29  Martin Baulig  <martin@ximian.com>
27660         * loader.c (mono_get_method_from_token): Also call
27661         mono_metadata_load_generic_params () for abstract and interface
27662         methods; replace the type arguments in the method signature with
27663         the ones which are loaded from the metadata.
27665 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27667         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27668         of the lock is not the current thread. MS.NET don't do it, in spite of
27669         what the documentation says. See bug #56157.
27671 2004-03-28  Martin Baulig  <martin@ximian.com>
27673         * class.c (mono_class_init): Don't call init_properties() and
27674         init_events() for generic instances; set `prop->parent' when
27675         inflating properties.
27677         * reflection.c (mono_generic_inst_get_object): Call
27678         `mono_class_init (ginst->klass)'.
27679         (mono_type_get_object): Only create a MonoGenericInst if your
27680         generic type is a TypeBuilder.
27681         (do_mono_reflection_bind_generic_parameters): Only set
27682         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27684 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27686         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27687         Fixes #56091.
27689 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27691         * icall.c: added Kill_internal icall.
27692         * process.[ch]: added Kill_internal icall.
27694 2004-03-25  Martin Baulig  <martin@ximian.com>
27696         * class.h (MonoStats): Added `generic_instance_count',
27697         `inflated_method_count', `inflated_type_count' and
27698         `generics_metadata_size'.       
27700 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27702         * reflection.c: no warnings now.
27704 2004-03-25  Martin Baulig  <martin@ximian.com>
27706         * class.c (mono_class_get_full): New public function; does a
27707         mono_class_get(), but also takes a `MonoGenericContext *'.
27709         * loader.c (mono_field_from_memberref): Renamed to
27710         `field_from_memberref', made static and added `MonoGenericContext *'
27711         argument.
27712         (mono_field_from_token): Added `MonoGenericInst *' argument.
27713         (method_from_memberef): Likewise.
27714         (mono_get_method_from_token): Likewise.
27715         (mono_get_method_full): New public function; does a
27716         mono_get_method(), but also takes a `MonoGenericContext *'.
27718         * verify.c (mono_method_verify): Get the method's generic context
27719         and pass it to mono_field_from_token(), mono_get_method_full() and
27720         mono_class_get_full().
27722 2004-03-25  Martin Baulig  <martin@ximian.com>
27724         * class.c (mono_class_inflate_generic_type): Take a
27725         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
27726         `MonoGenericMethod *'.
27728 2004-03-25  Martin Baulig  <martin@ximian.com>
27730         * loader.h (MonoMethodInflated): Store the MonoGenericContext
27731         instead of the MonoGenericMethod here.
27733 2004-03-25  Martin Baulig  <martin@ximian.com>
27735         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
27736         each time we create a new MonoGenericInst, we also create a new
27737         context which points back to us.
27739         * class.c (inflate_method): Use `ginst->context' instead of
27740         creating a new context.
27742         * loader.c (method_from_memberref): Use
27743         `klass->generic_inst->context' instead of creating a new context.
27745 2004-03-25  Martin Baulig  <martin@ximian.com>
27747         * class.h (MonoGenericContext): New struct.
27748         (MonoGenericMethod): Removed `generic_inst'.
27750         * class.c (mono_class_inflate_generic_method): Take a
27751         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
27753 2004-03-25  Martin Baulig  <martin@ximian.com>
27755         * loader.h (MonoMethodInflated): New typedef.
27757         * metadata.h (MonoMethodSignature): Removed `gen_method', make
27758         `generic_param_count' consume just 30 bits, added `is_inflated'
27759         and `has_type_parameters' flags (one bit each).
27761         * class.c (mono_class_inflate_generic_method): Create a
27762         MonoMethodInflated instead of a MonoMethodNormal and set
27763         `is_inflated' in the method signature.
27765         * class.h (MonoGenericMethod): Removed `generic_method'.
27767 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
27769         * image.c: Make sure the name of a MonoImage is always an absolute path.
27770           This fixes bug #54415.
27772 2004-03-24  Martin Baulig  <martin@ximian.com>
27774         * class.c (mono_class_setup_vtable): If we're a generic instance,
27775         use our generic type's vtable size.
27777 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
27779         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
27780         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
27781         problems.
27783 2004-03-23  Martin Baulig  <martin@ximian.com>
27785         * class.h (MonoDynamicGenericInst): Added `int count_events' and
27786         `MonoEvent *events'.
27788         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
27789         (typebuilder_icalls): Added "get_event_info"; calls
27790         mono_reflection_event_builder_get_event_info(). 
27792         * reflection.c (mono_reflection_generic_inst_initialize): Added
27793         `MonoArray *events'.
27794         (mono_reflection_event_builder_get_event_info): New function.
27796 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
27798         * object.h: add mono_type_initialization_init
27800         * object.c (mono_runtime_class_init): 
27801         implement class constructor synchronization rules
27802         to cope with threading issues.  
27803         add mono_type_initialization_init
27805         * appdomain.c (mono_runtime_init): call 
27806         mono_type_initialization_init
27808         * class.h: removing initializing field from MonoVTable
27810 2004-03-23  Martin Baulig  <martin@ximian.com>
27812         * class.c (my_mono_class_from_generic_parameter): Use
27813         `param->name' if it's not NULL. 
27815 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
27817         * class.c: do not insert non-virtual methods in the vtable.
27818         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
27819         that means the method is non-virtual. This never would have
27820         happened before.
27822 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
27824         * profiler.c: Added lock for accessing coverage_hash.
27826 2004-03-22  Martin Baulig  <martin@ximian.com>
27828         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
27829         `method->method->signature->generic_param_count != 0' to make it
27830         work for interface methods.
27832 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27834         * process.c: quote the string passed to the shell using g_shell_quote.
27836 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27838         * threads.c:
27839         (mono_threads_manage): don't remove the finalizer thread and self
27840         from the threads hash table so that mono_thread_manage can be called
27841         more than once.
27843 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27845         * process.c: quote the arguments when UseShellExecute is true. Fixes
27846         bug #55790.
27848 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27850         * threads.c: set mono_thread_detach as a cleanup routine for every
27851         thread. This way it's always executed upon thread termination, either
27852         aborted or finished normally. No more xsp hangs!
27854 2004-03-17  Martin Baulig  <martin@ximian.com>
27856         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
27857         `int count_nested' and a `MonoType **nested'.
27859         * reflection.c (mono_reflection_bind_generic_parameters): Moved
27860         most of the functionality into a new static
27861         do_mono_reflection_bind_generic_parameters() and don't take a
27862         `MonoType *nested_in' argument any more.  Don't compute nested
27863         types here.
27864         (mono_reflection_generic_inst_get_nested_types): New public method
27865         to get nested types.
27867         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27868         we're a nested class.
27870         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27871         mono_reflection_generic_inst_get_nested_types() to compute the
27872         nested types.
27874 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27876         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
27877         descriptive error message under windows.
27878         
27879 2004-03-17  Martin Baulig  <martin@ximian.com>
27881         * class.c (dup_type): Added `const MonoType *original' argument;
27882         copy the attrs from the original type.
27884 2004-03-17  Martin Baulig  <martin@ximian.com>
27886         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
27887         `m->generic_inst_cache' here.
27889 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27891         * exception.h exception.c: Add stack_overflow_exception.
27893 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27895         * threadpool.c:
27896         (overlapped_callback): call SetEvent *after* invoking the callback.
27897         No need to call CloseHandle.
27899 2004-03-16  Martin Baulig  <martin@ximian.com>
27901         * reflection.c (mono_image_get_fieldref_token): Take a
27902         `MonoReflectionField *' instead of a `MonoClassField *' and a
27903         `MonoClass *'; store the `MonoReflectionField *' in the hash.
27905 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27907         * appdomain.c: don't add the culture to the filename we're looking for
27908         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
27910 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27912         * locales.c: don't ignore symbols when doing case insensitive compares.
27913         Thanks Dick! Fixes bug #54046.
27915         * threads.c: surround 'threads' usage with enter/leave in
27916         mono_thread_manage.
27918 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
27920         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
27921         implicitly marshalled as [Out]. Fixes #55450.
27923         (mono_marshal_get_runtime_invoke): Zero out the result if there is
27924         an exception.
27926 2004-03-16  Martin Baulig  <martin@ximian.com>
27928         * class.c (mono_class_from_generic_parameter): Use the actual
27929         parameter name. 
27931 2004-03-16  Martin Baulig  <martin@ximian.com>
27933         * reflection.c (type_get_signature_size): New static function.
27934         Compues the size of the type in a method signature.
27935         (method_get_signature_size): New static function; calls
27936         type_get_signature_size() to compute the actual size of the
27937         method's signature.
27938         (method_encode_signature): Use method_get_signature_size() to get
27939         the signature's size rather than using `nparams * 10'.
27941 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27943         * file-io.h: define here WapiOverlapped on windows. I don't want the
27944         regular OVERLAPPED one.
27946         * file-io.c:
27947         * threadpool.c: somehow, BindIoCompletionCallback is not found.
27948         Disabling AIO on windows.
27950 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27952         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
27953         bug #55385.
27955 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27957         * appdomain.c: upgraded corlib version.
27959         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
27960         and BeginWrite. Allow opening files for asynchrnous operations.
27962         * file-io.h: new struct that maps FileStreamAsyncResult.
27963         * icall.c: added new icalls.
27964         * process.[ch]: support setting child process environment variables
27965         and use the SHELL or COMSPEC when UseShellExecute is true.
27967         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
27968         callback for async. IO is here and also BindHandle.
27970         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
27971         from here.
27973 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
27975         * reflection.c (create_custom_attr): Allow len == 0.
27977         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
27978         computation on big-endian machines.
27980 2004-03-13  Martin Baulig  <martin@ximian.com>
27982         * class.h (MonoGenericInst): Added `int count_ifaces'.
27984         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
27985         `ginst->count_ifaces' instead `klass->interface_count' since we
27986         may get called before the vtable is created.
27988         * loader.c (mono_method_get_param_names): If we're a generic
27989         instance, return and don't initialize the class.
27991         * reflection.c (mono_reflection_setup_generic_class): Don't call
27992         ensure_runtime_vtable().
27993         (mono_reflection_bind_generic_parameters): Set
27994         `ginst->count_ifaces'.
27996 2004-03-11  Jackson Harper <jackson@ximian.com>
27998         * icall.c:
27999         * unicode.c:
28000         * unicode.h: Remove unused System.Char icalls.
28001         
28002 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28004         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28005         code when we P/Invoke the first library in Windows.Forms, instead
28006         of when we first open the assembly.
28008         * assembly.c: Drop the lookup from here.
28010 2004-03-10  Martin Baulig  <martin@ximian.com>
28012         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28013         class for properties, fields and events.  Finally fixes #54945.
28015 2004-03-10  Martin Baulig  <martin@ximian.com>
28017         * metadata.c (mono_metadata_class_equal): New static function;
28018         checks whether two generic instances or two generic parameters are
28019         equal.
28020         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28021         compare classes.        
28023 2004-03-10  Martin Baulig  <martin@ximian.com>
28025         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28027         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28028         argument and write it into the `reflection_info' field.
28030         * icall.c
28031         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28032         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28034 2004-03-09  Jackson Harper  <jackson@ximian.com>
28036         * char-conversions.h: use 8 bits for numeric data its all we need
28037         * icall.c: numeric data is only 8 bits now.
28039 2004-03-09  Martin Baulig  <martin@ximian.com>
28041         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28043         * class.c (init_properties, init_events): Initialize the new
28044         `parent' field.
28046         * reflection.c (typebuilder_setup_properties): Likewise.
28047         (typebuilder_setup_events): Likewise.
28049         * reflection.h (MonoEventInfo): Replaced `parent with
28050         `declaring_type' and `reflected_type'.
28052         * icall.c (ves_icall_get_property_info): Distinguish between
28053         declaring and reflected type.
28054         (ves_icall_get_event_info): Likewise.
28056 2004-03-09  Martin Baulig  <martin@ximian.com>
28058         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28059         (ves_icall_Type_GetField): Correctly set field->klass.
28061 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28063         * loader.h: Fix warning.
28065 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28067         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28068         library routine if present.  Notice that it will still continue
28069         executing even if its missing, for those working on the Gtk#
28070         edition of Windows.Forms.
28072         * assembly.c (do_mono_assembly_open): If loading the
28073         System.Windows.Forms call mono_loader_wini_init.
28075 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28077         * class.h: Added MonoRemoteClass struct.
28078         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28079         function for MonoStrings.
28080         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28081         Added internal call for getting the proxy type.
28082         * marshal.c: Get the type of transparent proxies from its remote_class.
28083         Added methods that generate the IL for type checks and casts:
28084         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28085         mono_marshal_get_proxy_cancast.
28086         * marshal.h: Declaration of the previous new methods.
28087         * object.c: Added new moethods for creating and updating MonoRemoteClass
28088         instances: mono_remote_class, mono_upgrade_remote_class, 
28089         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28090         * verify.c: FIx transparent_proxy_fields layout.
28091         * appdomain.c: Bump corlib version.
28093 2004-03-04  Jackson Harper  <jackson@ximian.com>
28095         * icall.c: Add icall to access char conversion tables.
28096         * char-conversions.h: Character conversion tables.
28097         * Makefile.am: Add char-conversions.h private header file.
28098         
28099 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28101         * appdomain.c (unload_thread_main): Increase unloading timeout to
28102         10 sec as a temporary workaround for Nant problems.
28104 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28106         * gc.c: Add checks for GC_enable and GC_disable.
28108         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28109         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28110         (bug #54988).
28111         
28112 2004-02-27  Martin Baulig  <martin@ximian.com>
28114         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28115         `MonoReflectionType *' instead of a `MonoType *'.
28117 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28119         * gc.c (run_finalize): Avoid finalizing the object representing the
28120         finalizer thread.
28121         (finalizer_thread): Fix warning.
28123 2004-02-25  Martin Baulig  <martin@ximian.com>
28125         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28126         argument for nested types.
28127         (mono_class_create_generic): Added support for nested generictypes.
28129         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28130         `GList *nested'.
28132         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28134         * reflection.c (method_encode_signature): Increase the minimum
28135         value of `size' from 10 to 11.
28136         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28137         and `MonoType **types' arguments instead of the `MonoArray
28138         *types'; added `MonoType *nested_in'.  Recursively instantiate
28139         nested classes. 
28141 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28143         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28144         stack_overflow_ex members which are used by exception handling.
28146         * appdomain.c (mono_runtime_init): Initialize the new members.
28148         * gc.c (mono_gc_enable): New helper function.
28149         * gc.c (mono_gc_disable): New helper function.
28151 2004-02-23  Martin Baulig  <martin@ximian.com>
28153         * icall.c: I must have been really stupid - make it actually work
28154         this time ;-)
28156 2004-02-23  Martin Baulig  <martin@ximian.com>
28158         * loader.c (method_from_memberref): Only inflate the method if
28159         it's in another klass.
28161 2004-02-23  Martin Baulig  <martin@ximian.com>
28163         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28164         (mono_class_init): If we're a generic instance and an interface,
28165         compute `class->interface_id'; also create `class->interfaces'
28166         here and inflate them.
28168         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28169         `ginst->is_open'.
28170         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28172         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28174 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28176         * reflection.c (method_encode_code): Improved the error message
28177         generated by the exception.
28179 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28181         * icall.c: Martin did not do what he said in the ChangeLog for
28182         2004-02-18, but put back the changes for properties and events.
28183         Commenting those changes out again and adding comment to bug #54518.
28184         
28185         * process.c: removed warning.
28187 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28189         * marshal.c (emit_struct_conv): Print an error message instead of
28190         asserting when a type does not have the StructLayout attribute.
28192 2004-02-20  Martin Baulig  <martin@ximian.com>
28194         * reflection.c (mono_type_get_object): Also use the cache for
28195         generic instances.
28196         (mono_reflection_bind_generic_parameters): Always compute
28197         `ginst->ifaces'.        
28199 2004-02-20  Martin Baulig  <martin@ximian.com>
28201         * class.h (MonoGenericMethod): Removed `klass'.
28203         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28204         *klass' argument.
28206 2004-02-20  Martin Baulig  <martin@ximian.com>
28208         * reflection.c (method_encode_methodspec): Actually use the
28209         uninflated signature for the memberref.
28211 2004-02-20  Martin Baulig  <martin@ximian.com>
28213         * class.h (MonoGenericMethod): Removed `declaring'.
28215         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28216         is NULL, compute it here.
28218 2004-02-20  Martin Baulig  <martin@ximian.com>
28220         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28222         * metadata.c (mono_metadata_generic_inst_hash): New method.
28223         (mono_metadata_generic_inst_equal): New method.
28225         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28226         `klass->image->generic_inst_cache' cache to avoid creating
28227         duplicate MonoGenericInst's.
28229         * class.c (mono_class_inflate_generic_type): Use the cache.
28231 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28233         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28235 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28237         * icall.c: added Socket.WSAIoctl icall.
28239         * socket-io.[ch]: implemented
28240         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28242 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28244         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28246 2004-02-18  Urs C Muff  <umuff@quark.com>
28248         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28249         this work on PPC and other big-endian architectures.
28251         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28252         fields with an underscore to make sure they're only accessed by
28253         the read32() macro.
28255 2004-02-18  Martin Baulig  <martin@ximian.com>
28257         * icall.c: Put the klass->refclass changes back for methods and
28258         fields, but not for properties and events.  We're currently not
28259         distinguishing between DeclaringType and ReflectedType for
28260         properties and events, that's what caused the regressions.
28262 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28264         * object.c:
28265         (mono_async_result_new): the handle can be NULL.
28267         * threadpool.c: Use an event instead of a semaphore, don't initialize
28268         it until needed. This saves quite a few semaphores from being created
28269         when using the threadpool.
28271 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28273         * object.c (mono_string_is_interned_lookup): Fix interning of long
28274         strings. Fixes #54473.
28276         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28278         * icall.c: Revert the klass->refclass changes since they introduce
28279         regressions (bug #54518).
28281 2004-02-18  Martin Baulig  <martin@ximian.com>
28283         * class.c (mono_class_init): If we're a generic instance and don't
28284         come from a TypeBuilder, inflate our members here.
28285         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28286         (mono_class_create_generic): New public method.
28287         (mono_class_initialize_generic): Removed.
28288         (get_instantiation_name): Renamed to
28289         _mono_class_get_instantiation_name() and made it public.
28291 2004-02-18  Martin Baulig  <martin@ximian.com>
28293         * class.c (mono_class_inflate_generic_type): Clear the new
28294         instance's `nginst->klass' when inflating a generic instance.
28295         (mono_class_is_subclass_of): Added (basic) support for generic
28296         instances.
28298 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28300         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28301         MonoMempool to hold compiled native code.
28303 2004-02-17  Martin Baulig  <martin@ximian.com>
28305         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28306         `properties'.
28308         * reflection.c (mono_reflection_generic_inst_initialize): Added
28309         `MonoArray *properties' argument.
28311         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28313 2004-02-17  Martin Baulig  <martin@ximian.com>
28315         * icall.c (ves_icall_Type_GetFields): Renamed to
28316         ves_icall_Type_GetFields_internal() and added a
28317         `MonoReflectionType *rtype' argument; pass it to
28318         mono_field_get_object() to set the field's "reflected" type.
28319         (ves_icall_Type_GetConstructors): Likewise.
28320         (ves_icall_Type_GetEvents): Likewise.
28321         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28322         argument; pass it to mono_method_get_object() to set the method's
28323         "reflected" type.       
28325 2004-02-17  Martin Baulig  <martin@ximian.com>
28327         * class.h (MonoDynamicGenericInst): New type.
28328         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28330         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28331         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28332         (ves_icall_MonoGenericInst_GetFields): New interncall.
28334         * class.c (mono_class_from_generic): Don't call
28335         mono_class_initialize_generic() if this is a dynamic instance;
28336         ie. it's being created from a TypeBuilder.
28337         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28338         `class->byval_arg.type'.
28340         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28341         to `inflate_method' and made static.
28342         (mono_reflection_inflate_field): Removed.
28343         (mono_reflection_generic_inst_initialize): New public method.
28345         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28346         `ctors' and `fields'; added `initialized'.
28348 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28350         * debug-helpers.c (mono_method_full_name): Fix output for empty
28351         namespaces.
28353 2004-02-12  Martin Baulig  <martin@ximian.com>
28355         * class.h (MonoClassField): Added `MonoType *generic_type'.
28357         * reflection.c (mono_image_get_fieldref_token): Added support for
28358         instantiated generic types.
28359         (field_encode_inflated_field): Removed.
28360         (mono_image_get_inflated_field_token): Removed.
28361         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28363         * reflection.h (MonoReflectionInflatedField): Removed.
28365 2004-02-12  Martin Baulig  <martin@ximian.com>
28367         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28368         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28370         * reflection.c (mono_image_get_methodspec_token): Take a
28371         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28372         (mono_image_create_token): Check whether we have a
28373         `method->signature->gen_method' and call
28374         mono_image_get_methodspec_token() if appropriate.
28375         (inflated_method_get_object): Removed.
28376         (mono_reflection_bind_generic_method_parameters): Return a
28377         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28378         (mono_reflection_inflate_method_or_ctor): Likewise.
28380         * reflection.h (MonoReflectionInflatedMethod): Removed.
28382 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28384         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28385         for custom valuetype marshalling.
28387         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28389 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28391         * icall.c: fixed WSAGetLastError_internal name.
28393 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28395         * threads.c (mono_thread_attach): Allow this to be called multiple
28396         times for a thread.
28397         
28398         * threads.c (build_wait_tids): Do not wait for ourselves.
28400         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28401         appdomain list is empty.
28403         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28404         memory returned by mono_string_builder_to_utf16, since it points into
28405         managed memory. Thanks to Bernie Solomon for noticing this.
28407         * icall.c: Add AppDomainSetup icalls.
28409         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28411         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28412         types.
28414         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28415         custom attributes to the method_aux struct. Also fix array indexes etc.
28417         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28418         
28419 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28421         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28422         (both static and runtime) and reduce startup time.
28424 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28426         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28427         AsAny marshalling conversion instead of crashing.
28429         * marshal.c: Fix warnings.
28431 2004-02-09  Martin Baulig  <martin@ximian.com>
28433         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28435         * reflection.h (MonoReflectionInflatedMethod): Removed the
28436         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28438         * reflection.c (method_encode_methodspec): Removed the `method'
28439         argument; we get it from `gmethod->declaring'.
28440         (inflated_method_get_object): Removed the `declaring' argument.
28442 2004-02-09  Martin Baulig  <martin@ximian.com>
28444         * class.h (MonoGenericMethod): New type.
28445         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28446         `generic_method'.
28448         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28449         a `MonoGenericMethod *gen_method' one.
28451         * class.c (mono_class_inflate_generic_type): Take an additional
28452         `MonoGenericMethod * argument.  This is only non-NULL if we're
28453         inflating types for a generic method.   
28454         (mono_class_inflate_generic_signature): Renamed to
28455         inflate_generic_signature() and made static; take a
28456         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28457         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28458         instead of a `MonoGenericInst *' one.
28459         (mono_class_inflate_generic_method): Likewise.
28461         * reflection.c (encode_generic_method_sig): Take a
28462         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28463         (method_encode_methodspec): Likewise.
28464         (inflated_method_get_object): Likewise. 
28466         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28467         field with a `MonoGenericMethod *gmethod' one.  
28469 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28471         * class.h (mono_class_has_parent): add parens to expansion
28472         so you can ! this.
28474 2004-02-08  Martin Baulig  <martin@ximian.com>
28476         * image.h (MonoImage): Removed `generics_cache'.
28478         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28479         instead of a `MonoType *' argument; removed the `inflate_methods'
28480         argument.  Don't inflate methods here.
28482         * loader.c (find_method): If it's a generic instance, call
28483         mono_class_init() on the `sclass->generic_inst->generic_type'.
28485         * metadata.c (mono_type_size): Make this work on uninitialized
28486         generic instances; call it on the `ginst->generic_type's class.
28488         * reflection.c (mono_reflection_bind_generic_parameters): Call
28489         mono_class_from_generic() to create the `ginst->klass'.
28491 2004-02-08  Martin Baulig  <martin@ximian.com>
28493         * class.h (MonoClass): Changed type of `generic_inst' from
28494         `MonoType *' to `MonoGenericInst *'.
28496 2004-02-08  Martin Baulig  <martin@ximian.com>
28498         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28499         mono_type_get_object(), this is now creating a `MonoGenericInst'
28500         for MONO_TYPE_GENERICINST.
28501         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28502         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28504         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28505         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28506         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28507         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28508         and reflected type.
28510         * reflection.h (MonoReflectionInflatedMethod): Removed
28511         `declaring_type' and `reflected_type'.
28513 2004-02-08  Martin Baulig  <martin@ximian.com>
28515         * class.h (MonoGenericInst): Added `MonoType *parent' and
28516         `MonoType **ifaces'.
28518         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28519         `parent' and `interfaces'.
28521         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28522         `MonoType *' argument and return a `MonoType *'.
28524         * icall.c
28525         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28526         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28528 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28530         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28531         valuetype marshalling.
28533 2004-02-06  Martin Baulig  <martin@ximian.com>
28535         * class.c
28536         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28537         (my_mono_class_from_generic_parameter): Likewise.
28539 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28541         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28542         contents of the symbol files lazily.
28544         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28546         * threads.h threads.c icall.c: New icalls for getting and setting the
28547         threads name.
28549 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28551         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28552         Raise an exception when the domain is not found.
28554 2004-02-03  Martin Baulig  <martin@ximian.com>
28556         * reflection.c (mono_image_get_methodspec_token): Use the
28557         uninflated signature; fixes gen-33.
28559 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28561         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28562         the finalizer code can use thread functionality.
28564         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28565         the finalizer thread.
28567         * threads.c: Make some functions more robust.
28569         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28571         * metadata.h: Add new marshalling conventions.
28573         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28574         stringbuilder marshalling. Fixes #53700.
28576         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28578         * reflection.c (mono_image_get_type_info): Save declarative security
28579         info.
28581         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28582         unmanaged fields as well.
28584         * appdomain.c: Bump corlib version.
28586 2004-02-01  Martin Baulig  <martin@ximian.com>
28588         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28589         method type arguments.  
28591 2004-01-30  Duncan Mak  <duncan@ximian.com>
28593         * marshal.h: Add prototype for
28594         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28595         and
28596         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28597         fix the build.
28599 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28601         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28602         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28604 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28606         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28607         custom marshalling of valuetypes.
28609         * marshal.c: Fix some warnings.
28611 2004-01-29  Martin Baulig  <martin@ximian.com>
28613         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28614         for generic method parameters.
28616         * reflection.c (method_encode_methodspec): Write the uninflated
28617         signature into the methodspec table.
28618         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28619         is always the uninflated method.
28620         (reflection_methodbuilder_to_mono_method): Copy the generic
28621         parameters from the MethodBuilder into `header->gen_params'.
28623 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28625         * class.c (mono_class_from_generic_parameter): Fix warning.
28627 2004-01-27  Martin Baulig  <martin@ximian.com>
28629         * class.c (mono_class_from_generic_parameter): Don't create
28630         `klass->methods' here.  
28632 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28634         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28635         extension since it does not work with libraries named lib<FOO>.dll.so.
28637 2004-01-25  Martin Baulig  <martin@ximian.com>
28639         * class.c (mono_class_inflate_generic_type): Added support for
28640         MONO_TYPE_GENERICINST.
28642         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28643         inflate methods on open constructed types.      
28645 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28647         * object.c: fire ProcessExit event in the root AppDomain after running
28648         Main. Fixes bug #53299.
28650 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28652         * socket-io.c: include the new socket-wrappers.h header.
28653         Use the wrappers instead of the unix socket functions to make the code
28654         more clear.
28656 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28658         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28660         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28661         Fixes #22532.
28663 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28665         * reflection.c (mono_image_create_pefile): Handle the case when the
28666         entry point is not a MethodBuilder.
28668         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28669         field to ReflectionMethod since it is not allways a builder.
28671         * reflection.c (type_get_fully_qualified_name): New helper function to
28672         return the fully qualified name of a type.
28674         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28675         type name for custom marshallers.
28677         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28679         * class.c (mono_class_setup_vtable): If a parent class already 
28680         implements an interface, use the implementing methods from that class.
28681         Fixes #53148.
28683 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28685         * threadpool.c: just return instead of ExitThread to allow for thread
28686         clean up earlier.
28688 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28690         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28691         when closing resource modules.
28693         * reflection.c (mono_image_create_pefile): Handle the case when the
28694         entry point is not a MethodBuilder.
28696         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28697         field to ReflectionMethod since it is not allways a builder.
28699 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28701         * marshal.c (mono_marshal_get_managed_wrapper): 
28702         mono_marshal_alloc takes native int so CONV_I
28703         the arg for 64bits.
28705 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28707         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28708         tokens in the cattr table. Fixes #53108.
28710 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28712         * loader.c: don't trim ".dll" before looking up in the config file.
28713         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
28715 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
28717         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
28718         Return the module which contains the resource as well.
28719         (ves_icall_System_Reflection_Module_Close): New icall.
28721         * appdomain.c: Bump corlib version number.
28723         * image.c (mono_image_addref): New public function.
28725         * assembly.c: Call mono_image_addref.
28727         * reflection.c (mono_module_get_object): Increase reference count of 
28728         the image.
28730         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28731         Fixes #22532.
28733         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
28734         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
28735         proper exceptions on DllImport problems.
28737 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
28739         * class.c, metadata.c: eliminate CSIZE macro.
28741 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
28743         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
28744         * object.h: Added async_callback field in MonoAsyncResult.
28745         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
28746         * verify.c: Added async_callback in MonoAsyncResult layout.
28748 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
28750         * reflection.c (mono_reflection_get_custom_attrs): Add support
28751         for Modules.
28753 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28755         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
28756         marshalling.
28757         (mono_marshal_method_from_wrapper): Add null pointer check.
28759 2004-01-16  Martin Baulig  <martin@ximian.com>
28761         * debug-mono-symfile.h: Set version number to 36 and reflect
28762         latest symbol writer changes.
28764 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28766         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
28767         multi-dimensional arrays.
28768         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
28769         (mono_class_from_mono_type): Use bounded_array_class_get.
28770         
28771         * class.c (mono_bounded_array_class_get): New function which takes
28772         a 'bounded' bool argument to distinguish vectors from one dimensional
28773         arrays.
28775         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
28776         bounded_array_class_get if the array has bounds.
28778         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28779         Search modules loaded using AssemblyBuilder:AddModule as well.
28781 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28783         * appdomain.c: increased corlib version.
28784         * filewatcher.c: removed g_print.
28785         * icall.c:
28786         (get_property_info): only allocate what is actually requested.
28787         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
28789 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28791         * Makefile.am: added filewatcher.[ch]
28792         * filewatcher.[ch]: FileSystemWatcher runtime support.
28793         * icall.c: added new FSW icalls.
28795 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
28797         * string-icalls.c: fix stringbuilder regression as suggested by
28798         Iain McCoy <iain@mccoy.id.au>.
28800 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
28802         * process.c (process_read_stringtable_block): Recognize '007f' as
28803         a language neutral stringtable block.
28805 2004-01-12  Patrik Torstensson
28807         * object.h (MonoStringBuilder) : Changed layout to support our
28808         new stringbuilder class.
28809         * marshal.c: Change marshalling to support the new layout of 
28810         string builder.
28811         * appdomain.c: increased version number because new layout of
28812         string builder.
28814 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
28816         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
28817         assembly name as an string instead of an AssemblyName, since it is
28818         easier to extract info from it.
28820         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
28821         the culture subdirectories too. Fixes #52231.
28823 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28825         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
28826         It takes 2 new parameters with an optional name for the method to look
28827         for and case ignoring info.
28829         * threadpool.c: removed unused variable.
28831 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28833         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
28834         It takes 2 new parameters with an optional name for the property to look
28835         for and case ignoring info.
28836         Fixes bug #52753.
28838 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
28840         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
28841         Fix #52451.
28843 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28845         * appdomain.c:
28846         * assembly.c: escape the uri before passing it to g_filename_from_uri.
28847         Fixes bug #52630.
28849 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
28851         * reflection.c: Add support for more than one unmanaged resource.
28853         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
28854         in field->def_value, as done in all other cases.
28856         * reflection.c (mono_reflection_get_custom_attrs): Add support for
28857         TypeBuilders.
28859         * reflection.c (mono_reflection_create_runtime_class): Remove 
28860         errorneous assignment to klass->element_class, since it is already
28861         done in mono_reflection_setup_internal_class.
28863 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28865         * gc.c: added missing LeaveCriticalSection.
28866         * icall.c: indented a couple of lines.
28867         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28868         if we call EndInvoke inside a callback. Fixes bug #52601.
28870 2004-01-07  Martin Baulig  <martin@ximian.com>
28872         * mono-debug-debugger.h
28873         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
28875 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
28877         * appdomain.c: Use messages in NotImplementedException.
28879         * exception.c (mono_get_exception_not_implemented): Now this takes
28880         a message argument.
28882         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
28883         exception instead of g_asserting an aborting when something is not
28884         implemented.
28886         Add some inline docs.
28888 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
28890         * reflection.h: Update after changes to object layout.
28892         * reflection.c: Implement saving of unmanaged aka win32 resources.
28894         * appdomain.c: Bump version number.
28896         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
28897         Handle missing domains gracefully.
28899 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
28901         * file-io.c : On Windows, there are much more invalid_path_chars.
28903 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
28905         * class.h, object.c: prepare for GetType () speedup.
28907 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
28909         * profiler.c: workaround for --profile null reference exception on
28910           cygwin. Patch by Patrik Torstensson.
28912 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
28914         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
28915         make work for unaligned access.
28917 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
28919         * class.c: small cleanup (class->fields [i] -> field).
28920         * image.c: check address of metadata is valid.
28922 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
28924         * assembly.h assembly.c (mono_assembly_loaded): New public function to
28925         search the list of loaded assemblies.
28927         * reflection.c (mono_reflection_type_from_name): Use 
28928         mono_assembly_loaded instead of mono_image_loaded.
28930         * reflection.c: Fix warnings.
28932 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
28934         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
28935         is dynamic. This is needed since an assembly can contain both dynamic and
28936         non-dynamic images.
28938         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
28939         assembly->dynamic.
28941         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
28943         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
28944         to store modules loaded using AddModule.
28946         * reflection.c (mono_image_fill_file_table): Generalize this so it works
28947         on Modules.
28949         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
28951         * reflection.c (mono_image_fill_export_table_from_module): New function to
28952         fill out the EXPORTEDTYPES table from a module.
28954         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
28955         into a separate function. Also handle loaded non-dynamic modules.
28957         * reflection.c (mono_image_basic_init): Fix memory allocation.
28959         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28961         * assembly.c (mono_assembly_load_references): Make this public.
28963 2003-12-19  Martin Baulig  <martin@ximian.com>
28965         * class.c (mono_class_initialize_generic): Made this static, take
28966         a `MonoGenericInst *' instead of a `MonoClass *'.
28967         (mono_class_from_generic): Call mono_class_initialize_generic()
28968         unless we're already initialized or being called from
28969         do_mono_metadata_parse_generic_inst().
28971         * class.h (MonoGenericInst): Added `initialized' and
28972         `init_pending' flags.
28974         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
28975         `mono_class_init (gklass)' or mono_class_initialize_generic()
28976         here; set `generic_inst->init_pending' while parsing the
28977         `type_argv'.
28979 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
28981         * locales.c: include string.h for memxxx prototypes
28983 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
28985         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
28986         constructor when accessing literal fields.
28988 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
28990         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28992         * reflection.c (assembly_add_resource_manifest): New function to fill
28993         the MANIFESTRESOURCE table.
28995         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
28997         * reflection.h: Update to changes in class layout.
28999         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29000         Reenable call to mono_runtime_is_shutting_down ().
29002         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29003         determine if the runtime is shutting down.
29005 2003-12-16  Jackson Harper <jackson@ximian.com>
29007         * icall.c: comment out call to mono_runtime_is_shutting_down to
29008         fix build.
29009         
29010 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29012         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29013         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29015 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29017         * reflection.c: move definition of swap_with_size
29018         to before its first call
29020 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29022         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29024         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29025         icall.
29027         * object.c: Fix warnings.
29029         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29030         members if FlattenHierarchy is set.
29032         * reflection.c (mono_image_add_decl_security): New function to emit
29033         declarative security.
29035         * reflection.h reflection.c: Add support for declarative security.
29037         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29038         
29039 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29041         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29042         
29043         * appdomain.c verify.c: Moved corlib version checking into its own
29044         function in appdomain.c since it needs to create vtables etc.
29046 2003-12-13  Patrik Torstensson <p@rxc.se>
29048         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29049         instead of unwrapped server.
29051 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29053         * verify.c (check_corlib): Fix field index.
29055 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29057         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29058         GetGacPath icall.
29060 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29062         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29063         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29064         cope with sizeof(size_t) != sizeof(guint32).
29066 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29068         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29069         in case of failure.
29071 2003-12-10  Mark Crichton <crichton@gimp.org>
29073         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29074         in managed code.
29076         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29078 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29080         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29081         marked as deleted.
29083 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29085         * verify.c (check_corlib): Handle the case when the version field is 
29086         initialized by a static constructor.
29088 2003-12-08  Patrik Torstensson  <p@rxc.se>
29090     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29092 2003-12-08  Martin Baulig  <martin@ximian.com>
29094         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29095         a MonoReflectionGenericParameter, also take the parameter index
29096         and name as arguments.
29097         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29098         (ves_icall_MonoGenericParam_initialize): New interncall.
29099         (ves_icall_Type_make_byref_type): New interncall.
29101         * reflection.h (MonoReflectionGenericParam): Derive from
29102         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29103         `index' fields.
29105         * reflection.c (mono_reflection_define_generic_parameter): Create
29106         and return a new MonoReflectionGenericParam; don't initialize the
29107         constraints here.
29108         (mono_reflection_initialize_generic_parameter): New public method;
29109         initializes the constraints and creates the `param->pklass'.
29111 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29113         * reflection.h reflection.c: Use the new fields 'num_types', 
29114         'num_fields' and 'num_methods' to track the number of types etc.
29116         * verify.c (check_corlib): Check corlib version number.
29118 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29120         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29121         function works on all methods.
29123 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29125         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29126         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29127         the custom_type_info flag of the transparent proxy.
29128         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29129         objects that supports IRemotingTypeInfo.
29130         * object.h: Added custom_type_info field in transparent proxy.
29132 2003-12-06  Martin Baulig  <martin@ximian.com>
29134         * class.c (mono_class_create_from_generic): Removed.
29135         (mono_class_from_generic): Check `ginst->klass' before doing
29136         anything else.  This is important to fully support "recursive"
29137         generic types.
29139         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29140         empty `generic_inst->klass' before doing anything else.
29142 2003-12-06  Dick Porter  <dick@ximian.com>
29144         * verify.c: 
29145         * object.h:
29146         * icall.c:
29147         * locales.c: Use C structs to access class fields.  Don't do a
29148         conversion between MonoString and UChar because both are
29149         platform-endian UTF-16.  Compare now takes startindex and count
29150         parameters.  Add a char overload for IndexOf.  Speed up the
29151         invariant string IndexOf.
29153 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29155         * Makefile.am (monosn_LDADD): Fix parallel build.
29157 2003-12-04  Martin Baulig  <martin@ximian.com>
29159         * icall.c
29160         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29161         (ves_icall_Type_make_array_type): New interncall.       
29163 2003-12-04  Martin Baulig  <martin@ximian.com>
29165         * locales.c: also change it in the !HAVE_ICU case.
29167 2003-12-04  Dick Porter  <dick@ximian.com>
29169         * icall.c:
29170         * locales.c: construct_compareinfo is now in CompareInfo, not
29171         CultureInfo.
29173 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29175         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29176         image->files array.
29178         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29179         table as well.
29181         * assembly.c (mono_assembly_load_references): Only load references
29182         once.
29184         * class.c (mono_class_from_name): Avoid linear search of the 
29185         EXPORTEDTYPE table.
29187         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29189 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29191         * image.h (MonoImage): Add 'field_cache' field.
29193         * loader.c (mono_field_from_token): Cache field lookups.
29194         
29195         * reflection.c (mono_module_get_object): Fix name property.
29197         * icall.c (ves_icall_get_enum_info): Update after changes to 
29198         mono_metadata_get_constant_index ().
29200         * icall.c: Get rid of get_type_info icall, use a separate icall for
29201         each type property to avoid needless memory allocations. Fixes #51514.
29203         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29204         to avoid needless binary searches.
29206         * class.c (class_compute_field_layout): Move the initialization of
29207         field->def_value to mono_class_vtable ().
29209         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29210         non-corlib types.
29212         * object.c (mono_object_allocate): Make it inline.
29214         * object.c (mono_object_allocate_spec): Make it inline.
29215         
29216 2003-12-02  Dick Porter  <dick@ximian.com>
29218         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29219         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29221 2003-12-01  Dick Porter  <dick@ximian.com>
29223         * threads.c: Fix signature and call in CreateMutex and
29224         CreateEvent.
29226 2003-12-01  Dick Porter  <dick@ximian.com>
29228         * icall.c: 
29229         * locales.c: Implement string compares and searching
29231         * object.h: Add extra Thread field
29233 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29235         * reflection.c (fixup_method): Add support for MonoCMethod.
29237 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29239         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29241         * reflection.c (assembly_name_to_aname): Allow extra characters in
29242         assembly names. Fixes #51468.
29244 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29246         * exception.c (mono_exception_from_name_domain): New helper function.
29248         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29249         exception object in the correct domain.
29251         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29252         formatting + make a copy a the input data.
29254         * loader.c (mono_get_method_from_token): Methods which contain
29255         native code do not have entries in the ImplMap.
29257         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29258         Thanks to Gonzalo for spotting this.
29259         
29260         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29261         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29263         * assembly.h (mono_assembly_load_from): Split the second part of 
29264         assembly loading into a new public function.
29266         * exception.h (mono_get_exception_bad_image_format): New function.
29268 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29270         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29271         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29272         
29273         * icall.c: Add new icall for creating dynamic methods.
29275         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29277         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29279         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29280         create a dynamic method.
29282         * reflection.c (resolve_object): New helper function.
29284         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29285         which manipulate it so they can also work on dynamic methods.
29287         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29288         creating the MonoReflectionMethodAux structure if it is not needed.
29289         
29290         * reflection.h verify.c: Update after changes to object layout.
29292         * reflection.c (method_builder_encode_signature): Fix compilation on
29293         gcc 2.95.x.
29295 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29297         * appdomain.h: Added support for context static fields. Added static_data
29298           field to MonoAppContext and renamed thread_static_fields to a more
29299           generic special_static_fields in MonoAppDomain, since it can now contain
29300           context static fields.
29301         * domain.c: Updated hashtable name.
29302         * object.c: Replaced field_is_thread_static() for a more generic
29303           field_is_special_static() which also checks for context static attribute.
29304           In mono_class_vtable(), added support for static context fields.
29305         * threads.c: Changed methods that manage thread static fields to more
29306           generic methods so they can be reused both for thread and context static
29307           data.
29308         * threads.h: Declared some new methods.
29310 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29312         * reflection.h: Update after changes to the managed types.
29314         * reflection.c (encode_custom_modifiers): New helper function.
29316         * reflection.c (method_encode_signature): Emit custom modifiers.
29318         * reflection.c (field_encode_signature): Emit custom modifiers.
29320 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29322         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29324         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29325         implementation.
29327         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29328         icall.
29330         * object.c (mono_field_get_value_object): New function.
29332         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29333         specific.
29335 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29337         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29338         return a preallocated out-of-memory exception instance.
29340         * object.c (out_of_memory): Use the new function.
29342         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29343         flag is before the custom modifiers. Fixes #49802.
29345 2003-11-16  Martin Baulig  <martin@ximian.com>
29347         * class.c (mono_class_is_open_constructed_type): Implemented the
29348         MONO_TYPE_GENERICINST case.
29350 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29352         * assembly.c (mono_assembly_fill_assembly_name): New function to
29353         fill out the MonoAssemblyName structure.
29354         (mono_assembly_open): Use the new function.
29356         * icall.c (fill_reflection_assembly_name): New helper function.
29358         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29359         new function.
29361         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29363 2003-11-15  Martin Baulig  <martin@ximian.com>
29365         * class.c (mono_class_is_open_constructed_type): New public
29366         function; checks whether a type is an open constructed type,
29367         ie. whether it still contains type parameters.
29368         (mono_class_inflate_generic_type): If we're a type parameter and
29369         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29370         type.
29372         * class.h (MonoGenericInst): Added `guint32 is_open'.
29374         * loader.c (method_from_methodspec): Check whether we're an open
29375         or closed constructed type and set `ginst->is_open'.
29377         * reflection.c (mono_reflection_bind_generic_parameters): Check
29378         whether we're an open or closed constructed type and set
29379         `ginst->is_open'.
29380         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29381         from open constructed types.
29383 2003-11-15  Martin Baulig  <martin@ximian.com>
29385         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29386         a generic instance (instead of a generic type declaration) with
29387         unbound generic parameters, bind them to our actual types.
29389 2003-11-14  Martin Baulig  <martin@ximian.com>
29391         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29393         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29394         an interface type, populate `res->interfaces' with instantiated
29395         versions of all the interfaces we inherit.
29397 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29399         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29400         when MONO_PATH is set but doesn't contain the install dir.
29402 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29404         * icall.c:
29405         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29406         it's also implemented in base classes. Fixes bug #50927.
29408 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29410         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29411         if this method is called from a finalizer. Fixes #50913.
29413 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29415         * threads.c: Implement VolatileRead/VolatileWrite
29417         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29419 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29421         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29422         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29423         2.95.3.
29425         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29426         from Peter Ross (pro@missioncriticalit.com).
29427         
29428 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29430         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29432 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29434         * assembly.c (mono_assembly_load_references): Disable check because it
29435         triggers on older corlibs which lots of people have.
29437 2003-11-12  Jackson Harper  <jackson@ximian.com>
29439         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29440         load corlib.dll if mscorlib.dll is not found.
29441         * assembly.h: Remove corlib name define.
29442         * class.c:
29443         * domain.c:
29444         * image.c: Change corlib name to mscorlib.
29445         
29446 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29448         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29450 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29452         * appdomain.h: Added loader_optimization here to sync with the C#
29453         code, and add disallow_binding_redirects field.
29455 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29457         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29459         * reflection.c (mono_image_build_metadata): Fix crash on modules
29460         with no types.
29462         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29464         * icall.c (ves_icall_get_method_info): Return callingConvention as
29465         well.
29467         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29468         namespaces from the EXPORTEDTYPE table as well.
29470         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29471         from all modules inside the assembly.
29472         
29473 2003-11-11  Martin Baulig  <martin@ximian.com>
29475         * reflection.c (mono_reflection_bind_generic_parameters): Make
29476         this work for interfaces.
29478 2003-11-11  Martin Baulig  <martin@ximian.com>
29480         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29482 2003-11-11  Martin Baulig  <martin@ximian.com>
29484         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29485         "MonoInflatedMethod" and "MonoInflatedCtor".
29487 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29489         * reflection.c (resolution_scope_from_image): Use the assembly table
29490         from the manifest module, since other modules don't have it.
29492         * debug-helpers.c (mono_type_full_name): New helper function.
29494         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29496         * image.c (mono_image_load_file_for_image): New public function which
29497         is a replacement for the load_file_for_image in class.c.
29499         * assembly.c (mono_assembly_load_module): A wrapper for the function
29500         above which does assembly association and reference loading too.
29502         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29504 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29506         * appdomain.c: not all of the attributes for the full assembly name
29507         are required and the order doesn't matter. Fixes bug #50787.
29509 2003-11-10  Dick Porter  <dick@ximian.com>
29511         * locales.c: Use platform-endian UTF16
29513 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29515         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29516         
29517 2003-11-10  Martin Baulig  <martin@ximian.com>
29519         * metadata.c
29520         (mono_metadata_load_generic_params): Make this actually work.
29522         * reflection.c (mono_reflection_bind_generic_parameters): If our
29523         parent is a generic instance, pass all the `types' to it, no
29524         matter whether it has the same number of type parameters or not.
29526 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29528         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29530         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29531         assignment code to this function so it gets called recursively for all
29532         modules.
29534         * image.c (load_modules): Remove the assembly assignment since it is
29535         now done by mono_assembly_load_references.
29536         
29537         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29538         Add 'module' argument.
29539         (mono_module_get_types): New helper function.
29540         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29542 2003-11-08  Martin Baulig  <martin@ximian.com>
29544         * class.c (mono_class_inflate_generic_method): Interface method
29545         don't have a header.
29547         * reflection.c (mono_image_get_methodspec_token): Take an
29548         additional `MonoGenericInst *' argument instead of reading it from
29549         the header; this is necessary to support interfaces.
29550         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29551         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29552         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29553         argument.
29555         * reflection.h (MonoReflectionInflatedMethod): Added
29556         `MonoGenericInst *ginst'.
29558 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29560         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29562 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29564         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29566 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29568         * reflection.c 
29569         (reflection_methodbuilder_from_method_builder):
29570         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29571         initialize a ReflectionMethodBuilder structure.
29572         (mono_image_get_methodbuilder_token):
29573         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29574         tokens which point to types in another module inside the same assembly.
29576         * reflection.c: Use the new helper functions.
29577         
29578         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29580         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29581         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29583         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29584         neccesary.
29586         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29587         current module. Emit the manifest only for the main module.
29589         * reflection.c (mono_image_create_token): Add assertion when a 
29590         memberref needs to be created.
29592         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29594         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29595         larger buffer for the custom attribute blob. Fixes #50637.
29596         
29597 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29599         * threadpool.c: notify listener on async processing handles after
29600         invoking the async callback. Thanks to Zoltan.
29602 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29604         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29605         avoid code duplication.
29607         * reflection.h (MonoDynamicImage): New type which is currently unused,
29608         but will be used through the ref.emit code in place of 
29609         MonoDynamicAssembly.
29611         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29612         object layout.
29614         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29615         a MonoDynamicImage instead of just a MonoImage.
29616         
29617         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29618         icalls to ModuleBuilder but keep their semantics, so they will work
29619         with moduleb->assemblyb. This will change later.
29620         
29621 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29623         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29624         object layout.
29626         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29627         main module, since it is now done by the managed code.
29629 2003-11-03  Martin Baulig  <martin@ximian.com>
29631         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29632         `ginst->klass' here.
29633         (method_encode_methodspec): Don't use the `ginst->generic_method's
29634         klass if it's a generic instance, use `ginst->klass' in this case.
29636 2003-11-03  Martin Baulig  <martin@ximian.com>
29638         * reflection.c (mono_image_get_generic_method_param_info):
29639         Removed, use mono_image_get_generic_param_info() instead.
29640         (mono_image_get_type_info): Write the GenericParam table before
29641         the Method table.  This is neccessary because in the GenericParam
29642         table, type parameters of the class (ie. '!0' etc.) must come
29643         before the ones from its generic methods (ie. '!!0' etc).
29645 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29647         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29649 2003-11-02  Martin Baulig  <martin@ximian.com>
29651         * reflection.c (create_generic_typespec): Take a
29652         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29653         the generic parameters from it.
29655 2003-11-02  Martin Baulig  <martin@ximian.com>
29657         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29658         instead of a `MonoClassField *' since we just need the type.
29659         (create_generic_typespec): New static function.  Creates a
29660         TypeSpec token for a generic type declaration.
29661         (mono_image_get_generic_field_token): New static function.
29662         (mono_image_create_token): If we're a FieldBuilder in a generic
29663         type declaration, call mono_image_get_generic_field_token() to get
29664         the token.
29666 2003-11-02  Martin Baulig  <martin@ximian.com>
29668         * reflection.h
29669         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29670         `MonoReflectionGenericInst *declaring_type' and
29671         `MonoReflectionGenericInst *reflected_type' fields.
29673         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29674         `MonoReflectionGenericInst *declaring_type' and a
29675         `MonoReflectionGenericInst *reflected_type' argument instead of a
29676         single `MonoReflectionGenericInst *type' one.  Set
29677         `res->declaring_type' and `res->reflected_type' from them.
29678         (mono_reflection_inflate_field): Likewise.      
29680 2003-11-02  Martin Baulig  <martin@ximian.com>
29682         * class.c (mono_class_setup_vtable): Don't store generic methods
29683         in the vtable.  
29685 2003-11-02  Martin Baulig  <martin@ximian.com>
29687         * reflection.h (MonoReflectionGenericInst): Added
29688         `MonoReflectionType *declaring_type'.
29690         * reflection.c (mono_reflection_bind_generic_parameters): Use
29691         `if (tb->parent)' instead of `klass->parent'.
29693 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29695         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29696         with an empty ASSEMBLY table.
29698         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29699         variable in the inner and outer loops.
29701 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29703         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29704         argument.
29706         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29707         
29708         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29709         icalls. Instead, do everything in managed code. This is needed since
29710         it is hard to restore the original domain etc. in unmanaged code in the
29711         presence of undeniable exceptions.
29713         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
29714         New icalls to push and pop appdomain refs.
29716 2003-10-31  Martin Baulig  <martin@ximian.com>
29718         * class.c (inflate_generic_type): Renamed to
29719         mono_class_inflate_generic_type() and made it public.
29721         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
29722         New interncall.
29724         * loader.c (mono_field_from_memberref): Also set the retklass for
29725         typespecs.
29727         * fielder.c (mono_image_get_inflated_field_token): New static
29728         method; creates a metadata token for an inflated field.
29729         (mono_image_create_token, fixup_method): Added support for
29730         "MonoInflatedField".
29731         (fieldbuilder_to_mono_class_field): New static function.
29732         (mono_reflection_inflate_field): New public function.
29734         * reflection.h
29735         (MonoReflectionGenericInst): Added `MonoArray *fields'.
29736         (MonoReflectionInflatedField): New typedef.     
29738 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
29740         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
29741         for Solaris and other platforms without s6_addr16
29743 2003-10-30  Martin Baulig  <martin@ximian.com>
29745         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
29746         argument instead of two.
29747         (mono_class_inflate_generic_signature): Likewise.
29748         (inflate_generic_header): Likewise.
29749         (mono_class_inflate_generic_method): Likewise.  In addition, if
29750         `ginst->klass' is set, it becomes the new `method->klass'.
29752         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
29753         field.
29755         * reflection.c (encode_generic_method_sig): Write a 0xa as the
29756         first byte. [FIXME]
29757         (method_encode_methodspec): If we have generic parameters, create
29758         a MethodSpec instead of a MethodRef.
29759         (fixup_method): Added support for "MonoInflatedMethod" and
29760         "MonoInflatedCtor".
29761         (mono_image_create_token): Added support for "MonoInflatedMethod"
29762         and "MonoInflatedCtor".
29763         (inflated_method_get_object): New static function; returns a
29764         managed "System.Reflection.MonoInflatedMethod" object.
29765         (mono_reflection_bind_generic_method_parameters): Return a
29766         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
29767         (mono_reflection_inflate_method_or_ctor): Likewise.
29768         (mono_image_get_generic_method_param_info): Initialize unused
29769         fields to zero.
29770         (mono_image_get_generic_param_info): Likewise.
29772         * reflection.h (MonoReflectionInflatedMethod): New public
29773         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
29774         "S.R.MonoInflatedCtor" classes.
29776         * loader.c (method_from_memberref): If we're a TypeSpec and it
29777         resolves to a generic instance, inflate the method.
29779 2003-10-28  Dick Porter  <dick@ximian.com>
29781         * object.c (mono_runtime_run_main): Convert command-line arguments
29782         into utf8, falling back to the user's locale encoding to do so.
29784 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
29786         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
29787         at this time.
29789         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
29791         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
29792         up icalls at method definition time. Partially fixes #33569.
29794 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
29796         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
29797         marshalling of arrays. Fixes #50116.
29799         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
29801         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
29802         points to a vtable in the dying appdomain.
29804         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
29805         listeners into unmanaged code inside the lock.
29807         * object.c (mono_class_vtable): Turn off typed allocation in non-root
29808         domains and add some comments.
29810 2003-10-25  Martin Baulig  <martin@ximian.com>
29812         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
29814         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
29816         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
29817         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
29818         currently parsing.  Create the generic class and store it in
29819         `generic_inst->klass' before parsing the type arguments.  This is
29820         required to support "recursive" definitions; see mcs/tests/gen-23.cs
29821         for an example.
29822         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
29823         to support recursive typespec entries.
29825         * class.c (mono_class_setup_parent): If our parent is a generic
29826         instance, we may get called before it has its name set.
29827         (mono_class_from_generic): Splitted into
29828         mono_class_create_from_generic() and mono_class_initialize_generic().
29830 2003-10-25  Martin Baulig  <martin@ximian.com>
29832         * icall.c (ves_icall_Type_BindGenericParameters): Return a
29833         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
29834         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
29835         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
29837         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
29838         (create_typespec): Likewise.
29839         (mono_reflection_bind_generic_parameters): Return a
29840         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
29841         (mono_reflection_inflate_method_or_ctor): New public function.
29843         * reflection.h (MonoReflectionGenericInst): New typedef.        
29845 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
29847         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
29848         inside the domain lock. Fixes #49993.
29849         
29850         * object.c (mono_class_vtable): When typed allocation is used, 
29851         allocate vtables in the GC heap instead of in the mempool, since the
29852         vtables contain GC descriptors which are used by the collector even
29853         after the domain owning the mempool is unloaded.
29855         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
29857         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
29858         reflect what it does. Also invalidate mempools instead of freeing
29859         them if a define is set.
29861         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
29862         of the appdomain.
29863         
29864         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29865         hold the finalizable objects in this domain.
29867         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29868         appdomain.
29870         * appdomain.c (mono_domain_set): New function to set the current
29871         appdomain, but only if it is not being unloaded.
29873         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
29874         appdomain which is being unloaded.
29875         
29876         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
29877         unloading of the root appdomain.
29879         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
29880         icall to execute a method in another appdomain. Intended as a 
29881         replacement for InternalSetDomain, which can confuse the code 
29882         generation in the JIT.
29884         * appdomain.c (mono_domain_is_unloading): New function to determine
29885         whenever an appdomain is unloading.
29887         * appdomain.c (mono_domain_unload): New function to correctly unload
29888         an appdomain.
29890         * assembly.c (mono_assembly_load_references): Check that an assembly
29891         does not references itself.
29893         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
29894         domain manually, it asks the finalizer thread to do it, then waits for
29895         the result. Also added a timeout.
29897         * icall.c: Register the new icalls.
29899         * threads.h threads.c: Export the mono_gc_stop_world and 
29900         mono_gc_start_world functions.
29901         
29902         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
29903         function to fill out the mempool with 0x2a.
29905 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
29907         * reflection.h (MonoReflectionMethodAux): New structure to store
29908         information which is rarely used, thus is not in the MonoMethod
29909         structure.
29911         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
29912         store the aux info.
29914         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
29915         and marshalling info into the aux structure.
29917         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
29918         from the aux structure.
29920         * loader.c (mono_method_get_param_names): Retrieve the param names from
29921         the aux structure.
29922         
29923 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
29925         * exception.h exception.c: Add AppDomainUnloadedException && fix 
29926         warning.
29928 2003-10-21  Dick Porter  <dick@ximian.com>
29930         * socket-io.c
29931         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
29932         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
29934 2003-10-21  Martin Baulig  <martin@ximian.com>
29936         * reflection.c (mono_reflection_bind_generic_parameters):
29937         `klass->parent' is NULL for interfaces.
29939 2003-10-21  Martin Baulig  <martin@ximian.com>
29941         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29943 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
29945         * exception.c (mono_exception_from_name_msg): New helper function for
29946         creating exceptions and initializing their message field.
29948         * exception.c: Simplify functions using the new helper.
29950         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
29951         New function.
29953         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
29954         mono_raise_exception, since otherwise gcc doesn't generate the function
29955         epilog for raise_exception, confusing the stack unwinding in the JIT.
29956         Fixes #45043.
29958         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
29959         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
29960         Fixes #49499.
29962 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29964         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
29965         utf8.
29967 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
29969         * icall.c: Removed GetUninitializedObject method because
29970           AllocateUninitializedClassInstance does the same.
29972 2003-10-18  Martin Baulig  <martin@ximian.com>
29974         * class.c (inflate_generic_signature): Renamed to
29975         mono_class_inflate_generic_signature() and made it public.
29976         (my_mono_class_from_generic_parameter): New static function; if we
29977         don't already have the generic parameter's MonoClass, create a
29978         very simple one which is just used internally in the runtime and
29979         not passed back to managed code.
29981         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
29983         * metadata.h (MonoMethodSignature): Moved the
29984         `MonoGenericParam *gen_params' to the MonoMethodHeader.
29985         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
29987         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
29988         ves_icall_MonoMethod_GetGenericArguments(); this is now an
29989         interncall on the MonoMethod class, not on MethodInfo.
29990         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
29991         calling mono_reflection_bind_generic_method_parameters() directly.
29993         * loader.c (mono_method_get_signature): If this is a MethodSpec;
29994         return the already computed `method->signature'.
29995         (method_from_methodspec): New static function to load a method
29996         from a MethodSpec entry.
29997         (mono_get_method_from_token): Call the new method_from_methodspec()
29998         for MethodSpec tokens.  
29999         (mono_get_method_from_token): If we're a generic method, load the
30000         type parameters.
30002         * reflection.c (mono_image_get_memberref_token): Allow
30003         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30004         table.
30005         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30006         (mono_image_create_token): First check whether it's a generic
30007         method (so we'd need to create a MethodSpec), then do the other
30008         two alternatives.
30009         (mono_reflection_bind_generic_method_parameters): Return a
30010         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30011         called directly from the interncall.
30013 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30015         * reflection.c (load_public_key): Move loading of the public key
30016         into managed code.
30018         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30020         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30021         fields.
30023         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30024         culture, hash_alg and public_key. Fixes #49555.
30026 2003-10-17  Martin Baulig  <martin@ximian.com>
30028         * class.h (MonoGenericInst): Moved this declaration here and added
30029         `MonoMethod *generic_method'.
30031         * icall.c
30032         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30033         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30035         * metadata.c (mono_metadata_type_equal): Two types of
30036         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30037         index; ie. don't compare the address of the `MonoGenericParam'
30038         structure.
30039         (mono_metadata_load_generic_params): Removed the `MonoMethod
30040         *method' argument.
30042         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30043         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30045         * reflection.c (method_encode_signature): Encode the number of
30046         generic parameters.
30047         (encode_generic_method_sig): New static function.
30048         (method_encode_methodspec): New static function; creates an entry
30049         in the MethodSpec table for a generic method.
30050         (mono_image_get_methodspec_token): New static function.
30051         (mono_image_create_token): Call mono_image_get_methodspec_token()
30052         for generic methods.
30053         (mono_reflection_bind_generic_method_parameters): New public
30054         function.  Instantiates a generic method.
30056 2003-10-16  Martin Baulig  <martin@ximian.com>
30058         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30059         *gen_params' here from MonoMethodHeader.
30061         * metadata.c (mono_metadata_parse_method_signature): If we have
30062         generic parameters, initialize `method->gen_params' and then set
30063         the correct `type->data.generic_param' in all the parameters.
30065 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30067         * threads.c (mono_threads_get_default_stacksize): New function to 
30068         return the default stacksize.
30070         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30071         termination of the finalizer thread, since the previous method had
30072         race conditions. Fixes #49628.
30074         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30075         as for the other managed threads.
30077 2003-10-16  Martin Baulig  <martin@ximian.com>
30079         * class.c (inflate_generic_signature): Copy `generic_param_count'
30080         and `gen_params'.
30082         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30083         New interncall.
30085         * metadata.c (mono_metadata_parse_method_signature): Actually set
30086         the `method->generic_param_count' here.
30087         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30089 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30091         * object.h: Add a new field to TypedRef to simplify the implementation
30092         of the REFANY opcodes in the JIT.
30094         * icall.c: Make use of the new field.
30096         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30097         dynamically.
30099 2003-10-15  Martin Baulig  <martin@ximian.com>
30101         * class.c (mono_class_from_gen_param): Renamed to
30102         mono_class_from_generic_parameter() and moved most of the
30103         functionality from mono_reflection_define_generic_parameter()
30104         here; ie. we create a "real" class here.
30105         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30106         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30107         previously been called.
30109         * class.h (MonoGenericParam): Moved the declaration of this struct
30110         here from metadata.h and added `MonoMethod *method'.
30112         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30113         interncall.
30115         * loader.c (mono_get_method_from_token): If we have any generic
30116         parameters, call mono_metadata_load_generic_params() to read them
30117         from the MONO_TABLE_GENERICPAR.
30119         * metadata.c (mono_metadata_load_generic_params): Added
30120         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30122         * metadata.h (MonoMethodSignature): Replaced
30123         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30124         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30126         * reflection.c (mono_reflection_define_generic_parameter): Moved
30127         most of the functionality into the new
30128         mono_class_from_generic_parameter(); set the `method' field if
30129         we're a method parameter.       
30131 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30133         * marshal.c (emit_struct_conv): if native size is 0
30134         emit no code.
30136 2003-10-14  Martin Baulig  <martin@ximian.com>
30138         * icall.c: The generics API has changed in the spec since it was
30139         added to System.Type; these modifications make it match the spec
30140         again.
30141         (ves_icall_Type_GetGenericParameters): Renamed to
30142         `ves_icall_Type_GetGenericArguments'.
30143         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30144         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30145         `ves_icall_MonoType_get_HasGenericArguments'.
30146         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30147         `ves_icall_MonoType_get_IsGenericParameter'.
30148         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30149         this is no interncall anymore.
30150         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30151         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30153 2003-10-14  Martin Baulig  <martin@ximian.com>
30155         * reflection.c (mono_reflection_bind_generic_parameters): Also
30156         inflate generic methods if we're reading the class from IL.
30158 2003-10-13  Martin Baulig  <martin@ximian.com>
30160         * reflection.c (mono_reflection_define_generic_parameter): This
30161         method isn't called directly from the icall anymore; take a
30162         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30163         method generic parameters.
30164         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30165         (method_builder_encode_signature): Encode generic parameters.
30166         (mono_image_get_method_info): Write generic params to the
30167         MONO_TABLE_GENERICPARAM table.
30169         * reflection.h (MonoReflectionMethodBuilder): Added
30170         `MonoArray *generic_params'.
30172         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30174         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30175         wrapper for mono_reflection_define_generic_parameter().
30176         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30178 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30180         * marshal.h: Add missing function to fix build.
30182         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30183         the SetLastError pinvoke attribute.
30185         * marshal.c (mono_marshal_set_last_error): New helper function called
30186         by the generated code.
30187         
30188         * marshal.c (mono_mb_emit_branch): New helper function.
30190         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30192         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30193         classes as parameters and return values of delegates. Fixes #29256. 
30195 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30197         * locales.c: use gint32 in non HAVE_ICU case
30199 2003-10-11  Martin Baulig  <martin@ximian.com>
30201         * mono-debug.c (mono_debug_add_method): Added a workaround for
30202         bug #48591.
30204 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30206         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30207         delegates passed to native code must use the STDCALL calling 
30208         convention. Fixes #35987.
30210 2003-10-10  Martin Baulig  <martin@ximian.com>
30212         * class.c (inflate_generic_type): If we're inflating for a generic
30213         type instance (and not for a generic method), return
30214         MONO_TYPE_MVAR unchanged.
30216 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30218         * string-icalls.c: Join ignores null strings in the source array.
30219         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30220         * threads.c: GetAvailableTheads is slightly more accurate.
30222 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30224         * threads.h threads.c : add mono_threads_set_default_stacksize
30225         and pass default to CreateThread calls.
30227 2003-10-09  Dick Porter  <dick@ximian.com>
30229         * icall.c:
30230         * locales.h:
30231         * locales.c: Internal calls for constructing CultureInfo and
30232         related objects from libicu (if its available.)
30234 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30236         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30238 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30240         * threadpool.c: added an argument to async_invoke_thread that is the
30241         item to process, pass the MonoAsyncResult to the thread start function
30242         when creating a new thread. This way we don't need to acquire any lock
30243         when we're creating a new thread. Readded a semaphore for faster
30244         response times (instead of that Sleep i added).
30246 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30248         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30249         get daylight change dates better on Windows, fix handling
30250         of platforms without tm_gmtoff.
30252 2003-10-06  Martin Baulig  <martin@ximian.com>
30254         * class.c (inflate_generic_method): Renamed to
30255         mono_class_inflate_generic_method() and made public.
30256         (mono_class_init): Don't inflate the generic methods here.
30257         (mono_class_from_generic): Added `gboolean inflate_methods'
30258         argument.  Inflate the methods here.
30260         * loader.c (mono_method_get_param_names): Ignore instances of
30261         generic types for the moment.
30263         * reflection.c (fixup_method): Added support for inflated methods.
30264         (mono_image_create_token): Use mono_image_get_methodref_token()
30265         for inflated methods.
30266         (mono_custom_attrs_from_param): Ignore instances of generic types
30267         for the moment.
30268         (mono_reflection_bind_generic_parameters): New public function.
30269         Moved all the functionality from
30270         ves_icall_Type_BindGenericParameters() here and added support for
30271         dynamic types.
30272         (mono_reflection_define_generic_parameter): Initialize
30273         `klass->methods' here.
30275         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30276         functionality into mono_reflection_define_generic_parameter().
30277         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30278         TypeBuilder, return that TypeBuilder.
30280 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30282         * appdomain.c: removed mono_delegate_semaphore.
30284         * threadpool.c:
30285         (mono_thread_pool_add): moved hash table creation inside and the thread 
30286         creation outside of the critical region.
30287         (mono_thread_pool_finish): removed obsolete code.
30288         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30289         continue or exit the thread depending on the queue.
30291 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30293         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30294         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30295         handle more bool marshalling options
30297 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30299         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30300         arrays of structs. Also add a more descriptive error message when
30301         a structure member is marshalled as LPArray.
30303 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30305         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30306         marshalling arrays of complex types. Fixes #29098. Also remove an
30307         usused and incomplete function.
30309 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30311         * gc.c: report heap_size - free_bytes as total memory allocated
30312         (bug#49362).
30314 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30316         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30317         fix timezone handling problems on Windows.
30318         
30319         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30320         asserts when the year is outside the range handled by ms the functions.
30322         * class.c (setup_interface_offsets): If the class is an interface,
30323         fill out its interface_offsets slot.
30325 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30327         * threadpool.c: mark threadpool threads as background.
30329 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30331         * decimal.c - define DECINLINE to nothing if not using GCC
30333 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30335         * assembly.c: More refcount fixes.
30337 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30339         * string-icalls.c: if we're not trimming, return the same string.
30340         When not splitting, don't create a new string.
30342 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30344         * image.c:
30345         (mono_image_open): increment the ref_count inside the critical section.
30347 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30349         * image.c (mono_image_open): Fix reference counting bug.
30351 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30353         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30354         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30355         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30356         mono_lookup_pinvoke_call throws.        
30358 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30360         * reflection.c (mono_reflection_parse_type): Fix #49114.
30362         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30363         temporary workaround for cygwin header problem.
30365         * object.c (mono_object_isinst): Synchronize this with the code
30366         generated by the JIT for casts.
30368 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30370         * reflection.c (encode_type): Fix #38332.
30372 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30374         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30375         the original method from the wrapper method.
30377 2003-09-25  Martin Baulig  <martin@ximian.com>
30379         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30380         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30381         (ves_icall_Type_get_IsGenericInstance): New interncall.
30383 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30385         * object.c: fix cast warning in big endian code.
30387 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30389         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30390         
30391 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30393         * assembly.c: don't call check_env from mono_assembly_load. It's
30394         already done once in mono_assemblies_init and may cause headaches when
30395         multiple threads are loading assemblies.
30397 2003-09-19  Martin Baulig  <martin@ximian.com>
30399         * reflection.c (mono_reflection_define_generic_parameter): Don't
30400         allocate `klass->methods', set `klass->flags' to
30401         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30403 2003-09-18  Martin Baulig  <martin@ximian.com>
30405         * class.c (mono_class_init): Don't create `class->methods' if it's
30406         already initialized.
30408         * metadata.c (mono_metadata_load_generic_params): Make this
30409         actually work.
30411         * reflection.c (mono_reflection_define_generic_parameter): Set
30412         parent class and interfaces from the constraints.
30414         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30415         to keep this struct in sync with the declaration in TypeBuilder.cs.
30417 2003-09-17  Martin Baulig  <martin@ximian.com>
30419         * metadata.h (MonoType): Replaced the data's `int type_param'
30420         field with `MonoGenericParam *generic_param'.
30421         (MonoGenericParam): Added `MonoClass *klass'.
30423         * class.c (mono_class_from_gen_param): Removed the
30424         `MonoImage *image' and `int type_num' arguments.
30426         * metadata.c (mono_metadata_parse_generic_param): New static
30427         method; creates a MonoGenericParam which just contains the index.
30428         (do_mono_metadata_parse_type): Call
30429         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30430         MONO_TYPE_MVAR.
30432         * reflection.c (mono_image_typedef_or_ref): Generic type
30433         parameters may be in the same assembly, but never use a typedef
30434         for them.
30435         (mono_reflection_define_generic_parameter): We're now creating a
30436         "real" class for the type parameter; it's now safe to call
30437         mono_class_from_mono_type() on the class'es type, it'll do the
30438         right thing.
30440 2003-09-16  Martin Baulig  <martin@ximian.com>
30442         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30443         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30444         the `symfile' data structure must be fully initialized before it
30445         gets added to the table.
30447 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30449         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30451         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30452         class init trampolines.
30454 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30456         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30457         to the built-in profiler to turn off time and allocation profiling
30458         respectively.
30460 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30462         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30463         g_direct_equal.
30465         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30466         in human readable form.
30468 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30470         * reflection.c icall.c: Fixed warnings.
30472         * image.c (load_class_names): Use a temporary hash table to hold the
30473         namespaces in order to avoid doing many string comparisons.
30475         * image.h: Fix typo.
30477         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30478         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30479         since the NULL case is short-circuited inside g_hash_table_lookup, 
30480         leading to better performance.  
30482         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30483         obtain the first custom attribute for a given index. Depends on the
30484         CustomAttribute table being sorted by the parent field.
30486         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30487         for better performance.
30489 2003-09-07  Martin Baulig  <martin@ximian.com>
30491         * class.c (mono_class_init): If we're a generic instance, inflate
30492         all our methods instead of loading them from the image.
30493         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30495 2003-09-07  Martin Baulig  <martin@ximian.com>
30497         * mono-debug-debugger.c: Added support for constructors.
30499 2003-09-06  Martin Baulig  <martin@ximian.com>
30501         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30502         New interncall.
30504         * reflection.c (mono_reflection_setup_generic_class): Call
30505         ensure_runtime_vtable() to create the vtable.
30507 2003-09-05  Martin Baulig  <martin@ximian.com>
30509         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30510         MONO_TYPE_MVAR.
30512 2003-09-04  Martin Baulig  <martin@ximian.com>
30514         * reflection.c (mono_reflection_define_generic_parameter): Generic
30515         parameters start with zero.
30517 2003-09-04  Martin Baulig  <martin@ximian.com>
30519         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30521         * reflection.h (MonoReflectionGenericParam): New typedef.
30522         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30523         the generic parameters from the managed TypeBuilder.
30525         * reflection.c (mono_reflection_define_generic_parameter): New function.
30526         (mono_reflection_create_runtime_class): Encode generic parameters.
30527         (mono_reflection_setup_generic_class): New function; this is
30528         called after adding adding all generic params to the TypeBuilder.
30529         (encode_type): Added MONO_TYPE_VAR.
30531 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30533         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30534         here from the JIT.
30536         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30537         load hook.
30539 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30541         * reflection.h reflection.c class.h class.c: Delete duplicate 
30542         definition of mono_type_get_name () from reflection.c and export the
30543         one in class.c.
30545         * class.c: Class loading fixes from Bernie Solomon 
30546         (bernard@ugsolutions.com).
30548         * reflection.c: Endianness fixes from Bernie Solomon 
30549         (bernard@ugsolutions.com).
30550         
30551 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30553         * assembly.h assembly.c: Define a file format version for AOT
30554         libraries.
30555         
30556         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30558         * appdomain.h (MonoJitInfo): New field to determine whenever the
30559         code is domain neutral.
30560         
30561 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30563         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30565 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30567         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30568         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30569         Avoid caching the result since strings must be domain specific. Fixes
30570         #48050.
30572 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30574         * marshal.c (mono_marshal_init): Make this callable multiple times
30575         since it is hard to find a correct place to call it.
30577         * object.c (mono_runtime_class_init): Execute static constructors in
30578         the correct appdomain.
30580         * image.c (build_guid_table): Handle the case when multiple images have
30581         the same GUID.
30583 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30585         * icall.c: added a couple of icalls for System.Web.
30587 2003-08-28  Martin Baulig  <martin@ximian.com>
30589         * icall.c (ves_icall_Type_BindGenericParameters): Use
30590         `klass->generic_inst' instead of `&klass->byval_arg' in the
30591         mono_type_get_object() call.  The returned type must be
30592         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30594 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30596         * NOTES: New file.
30598         * object.c (mono_class_proxy_vtable): Make it thread safe.
30600         * pedump.c: Fix warning.
30602         * object.c appdomain.h: Get rid of metadata_section. 
30603         It is no longer needed and it was causing deadlocks with domain->lock.
30605         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30607 2003-08-26  Martin Baulig  <martin@ximian.com>
30609         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30611 2003-08-26  Martin Baulig  <martin@ximian.com>
30613         * pedump.c (main): Call mono_metadata_init(),
30614         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30615         and mono_loader_init().
30617 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30619         * loader.h: Add missing include to fix build.
30621         * image.h: mono_image_load_references is no more.
30623         * assembly.c: Reworked assembly loading to make it really thread safe.
30624         After these changes, the assembly returned by mono_assembly_open is
30625         fully initialized, i.e. all its references assemblies are loaded.
30627         * assembly.c (mono_image_load_references): Renamed to 
30628         mono_assembly_load_references, and made private, since clients no
30629         longer need to call it.
30631         * class.c: Removed calls to mono_assembly_load_references, since it was
30632         a source of deadlocks.
30634         * loader.h loader.c class.h class.c: Protect data structures using a 
30635         new lock, the loader lock.
30637         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30638         GPtrArrays only when needed.
30640         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30641         into empty structures by mcs. Fixes pinvoke7.cs.
30642         
30643         * domain.c (mono_init): Call a new initialization function.
30645         * appdomain.c (mono_runtime_init): Call the new initializer function
30646         of the marshal module.
30648         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30649         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30651         * marshal.h marshal.c: Added locks around the wrapper caches to make
30652         this module thread safe.
30654         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30655         this argument. Fixes pinvoke1.exe.
30657 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30659         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30660         enumeration of values. Removed fields to store remote call output values in
30661         MonoAsyncResult. Not needed any more.
30662         * object.c: Initialize call_type and async_result fields in mono_message_init.
30663         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30664         dispatching the message.
30665         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30666         async call to finish. To do it use a message with EndInvoke call type.
30668 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30670         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30671         determines whenever a method has marshalling info.
30673 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30675         * assembly.c: fix the build on windows.
30677 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30679         * object.cs: Fixed bug #47785.
30681 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30683         * string-icalls.c (StringReplace): If their are no occurances of
30684         the old string found return a reference to the supplied
30685         string. This saves some memory and matches MS behavoir.
30686         
30687 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30689         * socket-io.c: fixed compilation for systems that define AF_INET6
30690         and don't define SOL_IP/SOL_IPV6.
30692 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30694         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30695         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30697         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30699         * domain.c: Make this module thread safe.
30701         * domain.c (mono_init): Call new initialization function.
30703         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30704         reference types too. Fixes #38812.
30706         * image.c (mono_image_init): Fixed warnings.
30708         * class.c (mono_class_from_typeref): Handle assembly load failure
30709         correctly.
30711         * appdomain.c (add_assemblies_to_domain): Handle the case when
30712         the references of an assembly are not yet loaded.
30714         * metadata.c image.c assembly.c: Moved initialization of global
30715         variables to a separate function called at startup since lazy 
30716         initialization of these variables is not thread safe.
30717         
30718         * image.c assembly.c: Made this module thread safe by adding locks in 
30719         the appropriate places.
30721         * domain.c (mono_init): Call the new initialization functions of the
30722         three modules.
30724 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
30726         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
30727           make a direct call. It is proxy's work to make the call asynchronous.
30728           mono_delegate_end_invoke(): If the targe is a proxy, just collect
30729           the return values.
30730         * object.cs: mono_method_call_message_new(): read AsyncResult and
30731           state object from parameters list, if this info is requested.
30732         * object.h: Added fields to store remote call output values in
30733           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
30735 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30737         * object.h: add needed fields to MonoThread.
30738         * threads.c, threads.h: allow registering a function to cleanup data
30739         allocated per thread by the JIT.
30741 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30743         * loader.h: portability fix by Bernie Solomon
30744         * <bernard@ugsolutions.com>.
30746 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
30748         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
30749         return a MonoArray. This simplifies the code and also ensures that
30750         the cache allways contains an object reference as a value.
30752         * icall.c (ves_icall_get_parameter_info): Simplified using the new
30753         function.
30755 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30757         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
30758         fixes a problem with byte ordering when getting the address family for
30759         a socket.
30761 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
30763         * .cvsignore: Added monosn.
30765         * reflection.h reflection.c loader.c: Added support for parameter
30766         marshalling to dynamically created types. Fixes #47295.
30768 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
30770         * rand.c: remove useless warnings.
30772 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30774         * class.c: implemented ldtoken for methods and fieldrefs.
30776 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30778         * threadpool.c: when mono_async_invoke was called, no one took care of
30779         monitoring the queue. So if the method invoked took some time and we
30780         got new async invoke requests after 500 ms (the thread created waited
30781         that long in WaitForSingleObject), the new async invoke was not called
30782         until the previous one finished.
30784         This is fixed now. Thanks to Totte for helping with it.
30786 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30788         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
30790 2003-08-11  Martin Baulig  <martin@ximian.com>
30792         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
30794 2003-08-06  Martin Baulig  <martin@ximian.com>
30796         * mono-debug-debugger.c: Added support for static fields,
30797         properties and methods.
30799 2003-08-06  Martin Baulig  <martin@ximian.com>
30801         * mono-debug-debugger.c: Don't store the MonoString's vtable to
30802         make this work for applications with multiple application domains.
30804 2003-08-04  Martin Baulig  <martin@ximian.com>
30806         * mono-debug-debugger.c: Completely reworked the type support; the
30807         most important thing is that we're now just using one single
30808         `MonoType' instance per type.
30810 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
30812         * mono-endian.h, mono-endian.c, icall.c: Added icall
30813         ves_icall_System_Double_AssertEndianity to assert double word endianity
30814         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
30816 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30818         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
30819         support, icalls and fixes.
30821 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
30823         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
30824         classes that are a punctuation character in .NET is not the same a
30825         g_unichar_ispunct.
30827 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30829         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
30831 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
30833         * icall.c: Add new MemCopy internalcall.
30834         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
30835         Simplified code; It is not necessary to handle all the cases here,
30836         as the C# code takes care of it.  Only handle the case of the name
30837         resource embedded into the assembly.
30839         Changed signature to return the data pointer and the size of the
30840         data. 
30842 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
30844         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
30845         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
30847 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30849         * socket-io.c: ignore EINTR error in select.
30851 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30853         * class.h, class.c: removed unused subclasses field in MonoClass.
30855 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30857         * icall.c: improve fix of get_base_definition(). If the parent class
30858           doesn't have the mehod, look at the parent of the parent.
30859         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
30860           to check if a parameter is an in or out parameter
30861           (PARAM_ATTRIBUTE_IN is not set by default).
30862           mono_method_return_message_restore(): Use mono_class_value_size to
30863           get the size of a value type. mono_type_stack_size (parameterType)
30864           does not return the correct value if parameterType is byRef.
30865           mono_load_remote_field(), mono_load_remote_field_new(),
30866           mono_store_remote_field(), mono_store_remote_field_new():
30867           raise exception if the remote call returns an exception.
30869 2003-07-28  Martin Baulig  <martin@ximian.com>
30871         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30872         method.  This is a wrapper around mono_runtime_invoke() which
30873         boxes the instance object if neccessary.
30875 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30877         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
30878         metadata.h, row-indexes.h, verify.c: first cut of generics support.
30880 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30882         * icall.c: disable mcs bug workaround.
30884 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
30886         * object.c (mono_runtime_class_init): Take the metadata_section
30887         mutex before obtaining the domain mutex.
30889         * appdomain.h: Added definition of metadata_section mutex here. 
30891         * object.c: define metadata_mutex here.
30893 2003-07-24  Ravi Pratap  <ravi@ximian.com>
30895         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
30896         fixed.
30898 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
30900         * reflection.c: Fix bug #46669
30902 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30904         * exception.c:
30905         * exception.h:
30906         * icall.c:
30907         * object.h: fill in the type name for TypeLoadException.
30909 2003-07-23  Ravi Pratap  <ravi@ximian.com>
30911         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
30912         relationship between TypeBuilders while compiling corlib) and bug
30913         45993 (Array types returned from the runtime while compiling
30914         corlib were from the loaded corlib).
30916 2003-07-22  Martin Baulig  <martin@ximian.com>
30918         * mono-debug-debugger.c: Reworked the type support a bit more;
30919         distinguish between types and classes.
30921 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
30923         * icall.c: add IsArrayImpl icall.
30925 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
30927         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
30928         initializing real_size only once. Also fix bug #46602.
30930 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
30932         * object.c: Renamed mono_metadata_section to metadata_section.
30934 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
30936         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
30937           empty array if the type is an array. Fixed.
30938           ves_icall_MonoMethod_get_base_definition: if the base method
30939           is abstract, get the MethodInfo from the list of methods of
30940           the class.
30941         * reflection.c: ParameterInfo.PositionImpl should be zero-based
30942           and it was 1-based. Fixed in mono_param_get_objects.
30944 2003-07-20  Martin Baulig  <martin@ximian.com>
30946         * mono-debug.h: Set version number to 31.
30947         (mono_debug_init): Added `MonoDomain *' argument.
30949         * mono-debug-debugger.c: Reworked the type support; explicitly
30950         tell the debugger about builtin types; pass the `klass' address to
30951         the debugger.
30953 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
30955         * image.c: Allow new metadata tables to be loaded without a
30956         warning. Also update the warning message to give the new constant value.
30957                 
30958 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
30960         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
30961         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
30962         array type representation changes.
30964 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30966         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
30967         on Environment.Exit () call.
30969 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30971         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
30972         requires a matching corlib.
30974 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30976         * Changelog: My editor decided to add a CR to each line. Sorry about that.
30977           Committed again without the CRs.
30978         
30979 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30981         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
30982           getting it from the "this" socket instance. Did not work
30983           if the socket is a subclass of Socket.
30984           Also fixed bug #35371.
30986 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30988         * metadata.c: fixed size for TypedByRef.
30989         * loader.c: when searching for a method, consider the vararg amrker.
30990         * unicode.c, decimal.c: constify some arrays.
30992 2003-07-15  Dick Porter  <dick@ximian.com>
30994         * socket-io.c: Fixed compilation for gcc < 3.2.
30996         Fixed compilation for machines that don't have AF_INET6 (thanks to
30997         Bernie Solomon <bernard@ugsolutions.com> for that part.)
30999         Fixed compile warnings.
31000         
31001         Fixed formatting and line endings.
31003 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31005         * socket-io.h:
31006         * socket-io.c: Added IPv6 support.
31008 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31010         * class.c (mono_class_is_assignable_from): New function to implement
31011         the is_assignable_from logic. Used by mono_object_isinst, 
31012         Type::IsAssignableFrom () and the interpreter.
31014         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31015         Object, even interfaces.
31016         
31017         * object.c (mono_object_isinst): Implement in terms of 
31018         is_assignable_from.
31020         * icall.c (ves_icall_type_is_assignable_from): New icall.
31022 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31024         * domain.c (foreach_domain): fix compiler warning.
31026 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31028         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31029         not available on all plattforms
31031 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31033         * image.h image.c: Store the metadata version string in MonoImage.
31034         * icall.c: New icall to retrieve the image version.
31035         * reflection.c (create_dynamic_image): Fill in the image version field
31036         * reflection.c (build_compressed_metadata): Use the image version
31037         from the image structure.
31039 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31041         * appdomain.c: modified comment.
31042         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31043         That will be its last iteration when mono_gc_cleanup is called from
31044         mono_runtime_cleanup and before the domain is unloaded.
31046         Fixes bug #45962.
31048 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31050         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31051         attributes.
31053 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31055         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31056         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31057         Bernie Solomon <bernard@ugsolutions.com>.
31059 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31061         * object.c, object.h: provide mono_object_new_fast() for faster
31062         allocation in some special cases.
31064 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31066         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31067         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31069 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31071         * threadpool.c: fix leaks.
31073 2003-07-01  Dick Porter  <dick@ximian.com>
31075         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31076         using MonoGHashTables.  Fixes threadpool bug posted to list.
31078 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31080         * image.h, image.c: added support to load an assembly from a byte array.
31081         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31082         assembly bundle support.
31084 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31086         * threadpool.c (mono_thread_pool_add): keep a reference to the
31087         AsyncResult to prevent GC
31089 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31091         * class.c: leak fix.
31093 2003-06-25  Dick Porter  <dick@ximian.com>
31095         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31096         for the async object, the WaitHandle object will close the handle.
31097         Fixes bug 45321.
31099 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31101         * class.c: in mono_array_class_get (), lookup from the hash with the
31102         same type we insert: this works around a bug in
31103         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31104         lluis. The real fix will have to wait for after the release.
31106 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31108         * icall.c: fix memory leak when getting type members.
31110 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31112         * reflection.c: added more pubtoken special cases.
31114 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31116         * class.c: handle field offset correctly when class size
31117         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31119 2003-06-20  Martin Baulig  <martin@ximian.com>
31121         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31122         *image' field.
31124 2003-06-20  Martin Baulig  <martin@ximian.com>
31126         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31128 2003-06-20  Martin Baulig  <martin@ximian.com>
31130         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31131         just distinguish between variables in registers and variables at
31132         an offset relative to a register.
31134 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31136         * icall.c: #ifdef out latest changes until mcs is fixed.
31138 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31140         * icall.c: return members in metadata order.
31142 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31144         * icall.c: avoid infinite loop in GetTimeZoneData.
31146 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31148         * icall.c: added Marshal.Prelink/All icalls.
31150 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31152         * object.c, object.h: fix warnings and do some overflow checking
31153         when creating arrays.
31155 2003-06-17  Dick Porter  <dick@ximian.com>
31157         * file-io.h:
31158         * file-io.c: File attributes need to be tweaked slightly when
31159         passed from the managed to the w32 world.
31161 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31162         * profiler.h profiler-private.h profiler.c: Rework last patch
31163         based on suggestion by Paolo.
31164         
31165 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31167         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31168         instruction level coverage data collection.
31169         * profiler.h profiler.c (: Added new callback function which can be
31170         used by the profiler to limit which functions should have coverage
31171         instrumentation.
31172         * profiler.c (mono_profiler_load): Call g_module_build_path to
31173         generate the file name of the profiler library.
31175 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31177         * profiler.c, profiler.h, profiler-private.h: added basic block 
31178         coverage profiling API.
31180 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31182         * reflection.c (mono_reflection_create_runtime_class): Add support
31183         for events in dynamically generated code.
31185         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31186         not allocated.
31188 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31190         * icall.c: when getting timezone info, return reasonable values if we
31191         can't get the actual data.
31193 2003-06-14  Dick Porter  <dick@ximian.com>
31195         * threads.c (start_wrapper): Remove the reference to the thread
31196         object in the TLS data, so the thread object can be finalized.
31197         This won't be reached if the thread threw an uncaught exception,
31198         so those thread handles will stay referenced :-( (This is due to
31199         missing support for scanning thread-specific data in the Boehm GC
31200         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31202 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31204         * reflection.c: ensure streams and tables are first allocated with
31205         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31207 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31209         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31211 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31213         * reflection.c (mono_reflection_create_runtime_class): Add support for
31214         properties to dynamically created classes.
31215         * reflection.c: Fix a few places where non-MonoObjects were inserted
31216         into the tokens hashtable.
31218 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31220         * object.c: some support to handle out of memory exceptions.
31222 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31224         * marshal.c (mono_marshal_get_native_wrapper): support reference
31225         return types
31227 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31229         * object.h, object.c: more portability stuff from Bernie Solomon.
31230         Unexport mono_object_allocate(). Added mono_object_unbox ().
31231         Set exitcode when an unhandled exception is thrown.
31233 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31235         * marshal.c (mono_marshal_get_native_wrapper): use custom
31236         marshaler for return types.
31238 2003-06-10  Dick Porter  <dick@ximian.com>
31240         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31241         ip_mreq is available
31243 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31245         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31246         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31247         by Bernie Solomon <bernard@ugsolutions.com>.
31249 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31251         * gc.c (mono_gc_init): Avoid error message on shutdown when
31252         GC_DONT_GC=1 is used.
31254         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31255         New icall to return the GUID of a module.
31257 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31259         * class.c: ensure instance size always includes the parent's size
31260         even whem class size is set explicitly (fixes bug#44294).
31262 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31264         * profiler.h, profiler.c: made the simple profiler thread-safe,
31265         get more accurate timing info. Allow the loading of an
31266         externally-developed profiler module.
31268 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31270         * marshal.c (mono_marshal_get_native_wrapper): improved
31271         class/byref arguments.
31272         (mono_marshal_get_native_wrapper): better string marshaling support.
31274 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31276         * class.c: ensure .pack and .size are handled correctly and
31277         simplified layout of static fields.
31279 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31281         * appdomain.c
31282         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31284         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31285         current directory (fix bug 44008)
31287 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31289         * marshal.c (mono_marshal_get_native_wrapper): started support for
31290         custom marshalers.
31291         (mono_delegate_to_ftnptr): consider marshalling specifications
31293 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31295         * reflection.c, reflection.h: emit custom marshal info.
31297 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31299         * object.c: free the GError.
31300         * icall.c: added CloseEvent_internal.
31301         * threads.[ch]:
31302         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31303         call.
31305 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31307         * loader.c (mono_method_get_signature): Add support for dynamic
31308         assemblies.
31310 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31312         * reflection.c: fixed bug #43905.
31314 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31316         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31317         handling TypedReference and ArgIterator.
31318         * loader.c, loader.h: added function to get signature at call site.
31320 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31322         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31323         data readonly. Buglets and warning fixes. Some MethodSpec support.
31325 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31327         * class.h, class.c, object.c: remove relative numbering support.
31329 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31331         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31332         free the string, until we get a chance to fix Gtk#
31334 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31336         * marshal.c: revert last patch.
31338 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31340         * icall.c: updates for new mono_class_vtable() not calling
31341         the type constructor anymore.
31343 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31345         * object.h, object.c: separate vtable creation from type
31346         initialization. Make running the .cctor thread safe.
31348 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31350         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31352 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31354         * loader.c (mono_get_method): consider calling convention
31356 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31358         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31359         to return the invisible global type for a module.
31361         * reflection.c (mono_image_build_metadata): Emit global fields too.
31363 2003-05-20  Peter Williams  <peterw@ximian.com>
31365         * loader.c (mono_lookup_internal_call): Add a few newlines.
31367 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31369         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31370         literal strings.
31372         * appdomain.c (set_domain_search_path): Recalculate search path when
31373         AppDomainSetup.PrivateBinPath changes.
31375         * object.c (mono_class_compute_gc_descriptor): It turns out some
31376         parts of the class libs (like System.Thread) holds pointers to
31377         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31378         to treat native int a pointer type here.
31379         
31380 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31382         * appdomain.h, domain.c: add hashtable for jump target resolution.
31384 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31386         * reflection.h reflection.c icall.c: Added new icalls 
31387         GetManifestResourceInfoInternal, GetModulesInternal and support
31388         infrastructure.
31390 2003-05-16  Dick Porter  <dick@ximian.com>
31392         * icall.c:
31393         * file-io.h:
31394         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31396 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31398         * object.c: mono_store_remote_field: little fix to previous patch.
31400 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31402         * class.c: add constructors to array classes.
31403         * icall.c: special case array construction for InternalInvoke (),
31405 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31407         * class.h class.c reflection.c object.c: Added support for field
31408         defaults in dynamically generated classes.
31410 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31412         * reflection.c: properly encode charset for ddlimport.
31414 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31416         * threads.c: allow compiling without GC.
31418 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31420         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31421         handling of thread static data.
31423 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31425         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31427 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31429         * class.c (mono_array_class_get): always set the serializable flags
31430         (mono_array_class_get): always set the SEALED attribute for array types
31432 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31434         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31435         attributes (fix for bug 42021).
31437 2003-05-12  Dick Porter  <dick@ximian.com>
31439         * gc.c: Don't run finalizers when the finalizer thread is
31440         finishing up, because the default domain has already been
31441         destroyed.
31443 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31445         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31446         value is null, we should throw an exception.   This is slightly
31447         different than the other conventions used for the constructor.
31449 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31451         * socket-io.c: fixed windows build.
31453 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31455         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31457 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31459         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31460         compilers.
31462 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31464         * class.c (mono_class_layout_fields): Add experimental GC aware
31465         auto layout facility. Requires class library changes to work correctly.
31467         (mono_class_setup_vtable): Avoid overriding explicit interface
31468         method implementations. Fixes iface3.exe test.
31470         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31471         object reference.
31472         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31473         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31475         * metadata.h: Add new type classification macro which determines
31476         whenever the type holds an object reference.
31478 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31480         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31482 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31484         * gc.c (finalizer_thread): Work around a GC bug.
31486 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31488         * marshal.c (emit_struct_conv): allow unions
31490         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31492 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31494         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31496 2003-05-06  Martin Baulig  <martin@ximian.com>
31498         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31500 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31502         * socket-io.c:
31503         (Select_internal): allow NULLs, don't create arrays if not needed.
31504         Coupled with Socket.cs changes.
31506         * threadpool.c:
31507         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31508         register a finalizer for it that will close the semaphore handle. This
31509         fixes the leak and make Lupus' test run with > 4080 loops.
31511 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31513         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31514         Jerome Laban (bug #42287)
31516 2003-05-02  Martin Baulig  <martin@ximian.com>
31518         * debug-mono-symfile.h
31519         (MonoSymbolFile): Moved declaration into mono-debug.h.
31520         (MonoDebugMethodJitInfo): Likewise.
31521         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31522         argument.
31523         (_mono_debug_address_from_il_offset): Take a
31524         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31526         * mono-debug.h
31527         (MonoDebugDomainData): New struct.
31528         (mono_debug_get_domain_data): New function.
31529         (mono_debug_add_method): Take an additional `MonoDomain *'
31530         argument.
31531         (mono_debug_source_location_from_address): Likewise.
31532         (mono_debug_il_offset_from_address): Likewise.
31533         (mono_debug_address_from_il_offset): Likewise.
31535 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31537         * reflection.c: one more check for null type in custom attrs.
31539 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31541         * reflection.c: avoid warning (comparison is always false due to limited
31542         range of data type).
31544 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31546         * icall.c: throw an exception in Type.GetField if the argument 'name'
31547         is NULL.
31549 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31551         * reflection.c: fixed handling of enums in named arguments to custom
31552         attributes (bug #42123).
31554 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31556         * reflection.c: use the right array element type and handle
31557         a null for a Type argument, too.
31559 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31561         * reflection.c: handle arrays as arguments to custom attributes.
31563 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31565         * reflection.c: handle a string value in a custom attr
31566         ctor that takes an object.
31568 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31570         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31571         (fix bug #42063)
31573 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31575         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31577 2003-04-27  Martin Baulig  <martin@ximian.com>
31579         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31580         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31581         MONO_DEBUGGER_EVENT_BREAKPOINT.
31582         (mono_breakpoint_trampoline_code): Removed.
31583         (mono_debugger_event_handler): The last argument is now a
31584         `guint32'.
31585         (mono_debugger_insert_breakpoint_full): Removed the
31586         `use_trampoline' argument.
31587         (mono_debugger_method_has_breakpoint): Likewise.
31588         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31589         mono_debugger_breakpoint_callback(); take the method and
31590         breakpoint number as arguments.
31592 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31594         * metadata.c: fix off by one when loading parameters attributes.
31596 2003-04-24  Martin Baulig  <martin@ximian.com>
31598         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31600 2003-04-24  Martin Baulig  <martin@ximian.com>
31602         * mono-debug-debugger.c: Moved all code which interacts with the
31603         Mono Debugger here.
31605         * debug-mono-symfile.c: This code now just deals with the symbol
31606         file itself, the debugger code is now in mono-debug-debugger.c.
31608 2003-04-23  Martin Baulig  <martin@ximian.com>
31610         * mono-debug.c (mono_debug_source_location_from_il_offset):
31611         New method; like mono_debug_source_location_from_address(), but
31612         takes an IL offset instead of a machine address.
31614 2003-04-23  Martin Baulig  <martin@ximian.com>
31616         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31617         `line' field; this is now computed by the debugger.
31619 2003-04-23  Martin Baulig  <martin@ximian.com>
31621         * mono-debug.[ch]: New files.  This is the new debugging interface.
31623         * mono-debug-debugger.[ch]: New files.  Moved all code which
31624         interacts with the Mono Debugger here.
31626 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31628         * domain.c (mono_init): initialize mono_defaults.monitor_class
31630 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31632         * reflection.c (method_encode_code): Add a spicy exception to help
31633         future compiler authors.
31635 2003-04-21  Martin Baulig  <martin@ximian.com>
31637         * icall.c
31638         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31639         Make this work with relative pathnames; g_filename_to_uri() needs
31640         an absolute filename.
31642 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31644         * icall.c: Track name changes in Object and ValueType.
31646 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31648         * metadata.c (mono_type_stack_size): size should be a multiple of
31649         sizeof (gpointer)
31651 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31653         * gc.c:
31654         (internal_domain_finalize): moved into mono_domain_finalize. No need
31655         to create another thread because the finalizers will be run in the
31656         finalizer thread.
31657         
31658         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31659         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31660         to be run (MS does this too).
31662 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31664         * object.c (mono_class_compute_gc_descriptor): Update comment.
31666         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31668         * image.h: Add synchronized wrapper cache.
31670         * image.c (do_mono_image_open): Initialize cache.
31672         * reflection.c (create_dynamic_mono_image): Initialize cache.
31674 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31676         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31677         ves_icall_System_Buffer_ByteLengthInternal.
31679 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31681         * reflection.c: setup klass->nested_in earlier. Allow
31682         a dash in the assembly name.
31684 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31686         * metadata.c (mono_type_to_unmanaged): dont access
31687         type->data.klass for MONO_TYPE_OBJECT
31688         (mono_type_to_unmanaged): consider System.Delegate class
31690 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31692         * class.c: just setup supertypes in the proper place instead of
31693         initializing the full element class for arrays.
31695 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31697         * class.c: ensure the element class of arrays is initialized.
31698         Setup the supertype info for array classes, too.
31700 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31702         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31704 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31706         * Makefile.am: re-added -m option when running cygpath. This way,
31707         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31708         separator.
31709         * mono-config.c: same codepath for locating mono config file for WIN32
31710         and the rest.
31711         * assembly.c: if mono_assembly_setrootdir is called, don't override
31712         the value set.
31714 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31716         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
31717         MONO_ASSEMBLIES variable.
31719 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
31721         * icall.c: added Assembly::GetNamespaces() icall.
31723 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31725         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
31727 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
31729         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
31730         * object.c: fixed bug in the construction of vtable for proxies
31732 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
31734         * object.c (mono_array_new): Mark mono_array_new as an icall.
31736 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31738         * class.c: fixed test for public method when overriding interfaces.
31739         Closes bug #40970.
31741 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31743         * appdomain.h, domain.c: added mono_domain_foreach() to
31744         be able to access the currently loaded appdomains.
31745         * object.c: make string interning work across sppdomains.
31746         Mark some functions for use as icalls.
31748 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
31750         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
31752         * reflection.h reflection.c: Allocate long living data using 
31753         GC_MALLOC_ATOMIC so the collector does not need to scan it.
31755         * reflection.c: Double the allocation size in streams instead of
31756         increasing it, to prevent unneccesary copying on large assemblies.
31757         
31758         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
31759         creation if the assembly does not have the Run flag set.
31761 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
31763         * class.h: avoid the C++ keywords in header files (Jerome Laban
31764         spotted and fixed this).
31766 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31768         * object.c:
31769         (mono_unhandled_exception): fill in the arguments for the
31770         UnhandledException event. Only trigger that event for the default
31771         domain (as MS does).
31773 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
31775         * object.c: Improve typed allocation stuff based on suggestions from
31776         Paolo. Also turn it on if the GC library supports it.
31778 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31780         * object.c object.h class.h: Added experimental typed allocation
31781         facility using the interfaces in gc_gcj.h.
31783         * os/gc_wrapper.h: Added new include files.
31784         
31785 2003-04-03  Martin Baulig  <martin@ximian.com>
31787         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
31788         which is not yet enabled by default.
31790         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
31791         functions.
31792         (mono_gc_lock, mono_gc_unlock): New static functions.
31794         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
31795         functions; stop/start the world for the garbage collector.  This
31796         is using the windows API; we need to complete the SuspendThread()/
31797         ResumeThread() implementation in the io-layer to make this work on Unix.
31798         (mono_gc_push_all_stacks): New public function; tells the garbage
31799         collector about the stack pointers from all managed threads.
31801 2003-04-03  Martin Baulig  <martin@ximian.com>
31803         * object.h (MonoThread): Added `gpointer stack_ptr'.
31805         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
31807 2003-04-03  Martin Baulig  <martin@ximian.com>
31809         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
31811 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31813         * reflection.c (typebuilder_setup_fields): Initialize field.first and
31814         field.last.
31816 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
31818         * loader.c (mono_lookup_internal_call): Report the corlib that is
31819         out of sync.
31821 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
31823         * icall.c (ves_icall_type_GetTypeCode): fixed check for
31824         System.DBNull (it's class not valuetype).
31826 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31828         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
31829         if the array method was already assigned a token (fixes bug#40646).
31831 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
31833         * reflection.c (mono_reflection_get_type): Attempt type resolve even
31834         if no assembly is given.
31836 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
31838         * metadata.h: Added the new tables.
31840         * row-indexes.h: Added definitions for new tables.
31842         * metadata.c: Add schemas for new tables, and add support for
31843         computing the sizes of them.
31845         * class.c: Update for handling the new type cases.
31847 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
31849         * metadata.h (MONO_TYPE_IS_VOID): new macro
31851 2003-03-31  Martin Baulig  <martin@ximian.com>
31853         * threads.h (MonoThreadCallbacks): Added `thread_created'.
31855         * threads.c (mono_thread_new_init): Call `thread_created' in the
31856         mono_thread_callbacks.
31858 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
31860         * loader.h: added marshalbyrefobject_class to mono_defaults
31861         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
31862         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
31863           generation of output parameters.
31864           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31865         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31866           contextbound and the target object belongs to the context of the caller.
31867         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31868         * object.c: Implemented support for interfaces and abstract classes
31869           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31870           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31872 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31874         * class.h class.c (mono_class_is_subclass_of): New function.
31875         
31876         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
31877         routines for most common case (calls from ArrayList::ToArray).
31879         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
31880         routine so programs which call Environment::Exit() can be profiled.
31882         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
31883         Added MONO_ARCH_SAVE_REGS.
31885         * icall.c (ves_icall_type_is_subtype_of): Use new function.
31887 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
31889         * blob.h: Add a couple of new MonoType types definitions.
31891         * tabledefs.h: Add a couple of new call convs.
31893 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
31895         * reflection.h (MonoReflectionDynamicAssembly): track changes in
31896         the layout of the class.
31898         * reflection.c (alloc_table): double the size on overflow to avoid
31899         unnecessary copying.
31901         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
31902         avoid filling out metadata tables and blobs. Also set mb->ilgen to
31903         null so it can be garbage collected.
31904         
31905 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
31907         * reflection.c (mono_reflection_get_type): Return the resolved type
31908         only if it is in the assembly we searched.
31910         * reflection.c (ensure_runtime_vtable): Initialize method slots.
31912         * class.c (mono_class_setup_vtable): Set the slot of the overriding
31913         method.
31915 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31917         * appdomain.c:
31918         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
31919         the right one is 'file:///blah', but MS allows it.
31920         * assembly.c:
31921         (mono_assembly_open): allow 'file://blah'
31923         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
31925 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
31927         * socket-io.c: fixes bug #40310.
31929 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
31931         * reflection.c (mono_reflection_parse_type): handle deeply nested
31932         types correctly.
31934         * reflection.c (mono_image_create_token): Use unique token values
31935         since they will be put into a hash table.
31937         * class.c (mono_class_setup_vtable): If a method occurs in more than
31938         one place in the vtable, and it gets overriden, then change the
31939         other occurances too.
31941         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31942         object as return type.
31944 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31946         * icall.c: Deleted "ToString" implementation for double and float
31947         because they are full implemented in managed code.
31949 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31951         * reflection.c, reflection.h: implemented and exported functions
31952         to retrieve info about custom attributes.
31954 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31956         * appdomain.c: moved Uri handling to assembly.c
31957         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
31958         work when using a file Uri in *nix and windows.
31960         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
31961         GetReferencedAssemblies.
31963 2003-03-18  Dick Porter  <dick@ximian.com>
31965         * icall.c: Rename a couple of internal calls
31967         * threads.c: Set the thread state to Stopped when a thread exits.
31968         Fixes bug 39377.
31970 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
31972         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
31973         New icall.
31975         * object.c (mono_class_vtable): fix warning.
31977 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
31979         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
31981         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
31982         memory.
31983         (method_encode_clauses): Create exception info structures in the right
31984         order.
31985         (mono_reflection_setup_internal_class): Initialize supertypes field.
31987         * class.c object.c: Handle interfaces which implement other interfaces 
31988         correctly.
31990         * class.h class.c: Move the supertypes array initialization code into 
31991         a separate function so it can be used for dynamic types too. Also call
31992         it earlier, in mono_class_init(), since it can be used before the
31993         type is initialized.
31995 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31997         * Makefile.am:
31998         * assembly.c:
31999         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32001         * appdomain.c:
32002         * appdomain.h:
32003         * marshal.c:
32004         * object.c: remove warnings.
32006 2003-03-13  Martin Baulig  <martin@ximian.com>
32008         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32009         (MonoDebugLexicalBlockEntry): New types.
32011         * debug-mono-symfile.c
32012         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32014 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32016         * process.c: ret can be any non-zero value accroding to MS doc.
32018 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32020         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32021         fixing a warning for a miss-used prototype, would have cause
32022         random memory corruption.
32024 2003-03-07  Martin Baulig  <martin@ximian.com>
32026         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32027         getting really annoying ....
32029 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32031         * reflection.c (fixup_method): added support for array methods.
32033 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32035         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32036         (pointed out by Michael Adams).
32038 2003-03-04  Dick Porter  <dick@ximian.com>
32040         * icall.c: Temporarily reverted the Double and Single ToString()
32041         change, because it broke nunit.
32043 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32045         * object.h, threads.h: make include files compatible with C++
32046         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32048 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32050         * icall.c: Erased ToString helper functions for Double and Single.
32051         Now, that implementations ar all in managed code (Double and Single
32052         Formatters).
32054 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32056         * appdomain.c: Added method for initializing the default context of
32057         a domain. Added internal call for getting the default context.
32058         * appdomain.h: Added context variable in MonoDomain struct.
32059         * domain.c: mono_domain_set also sets the default context of the domain
32060         * icall.c: Mapped internal method InternalGetDefaultContext.
32061         * object.c: mono_object_get_virtual_method returns always a remoting
32062         wrapper if the object is a transparent proxy.
32063         mono_runtime_invoke_array: when creating an object by calling the
32064         constructor, if the created object is a proxy, then the constructor should
32065         be called using the a remoting wrapper.
32067 2003-03-03  Dick Porter  <dick@ximian.com>
32069         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32070         variable so it compiles on solaris.  Problem spotted by
32071         Christopher Taylor <ct@cs.clemson.edu>
32073 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32075         * appdomain.c:
32076         (get_info_from_assembly_name): don't leak value.
32078         * icall.c:
32079         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32080         result.
32082 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32084         * assembly.c: export mono_image_load_references ().
32085         * class.c: handle function pointers. mono_class_from_name() now
32086         supports nested type names directly.
32088 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32090         * reflection.h reflection.c: Encode already created dynamic methods 
32091         and fields correctly as a DEF instead of a REF.
32093         * reflection.c: Get rid of the force_ref argument to 
32094         mono_image_typedef_or_ref since it was wrong in the first place.
32096         * string-icalls.c: add error checking to string constructors according
32097         to the MSDN docs.
32099         * reflection.c: Emit types in the order their TypeBuilders were 
32100         created. Previously, a new table index was assigned to each type before
32101         the tables were emitted. This was wrong because the signature blob
32102         might already refer to a type by its original table index.
32104 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32106         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32107         change.
32108         
32109 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32111         * Makefile.am: make assemblies dir have \ instead of / on windows.
32113 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32115         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32116         iterate over the NESTEDCLASS table using a linear search since the
32117         table is not guaranteed to be sorted by the secondary key.
32119         * class.c (mono_class_create_from_typedef): fixed up call to
32120         mono_metadata_nesting_typedef.
32121         
32122 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32124         * marshal.c (mono_string_to_byvalstr): clear the memory as
32125         suggested by Jerome Laban <jlaban@wanadoo.fr>
32127 2003-02-26  Dick Porter  <dick@ximian.com>
32129         * process.c: Cope with padding in .rsrc blocks
32131 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32133         * metadata.h: reverted the filter_len change, it breaks reflection
32134         
32135 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32137         * metadata.h: added a new field to store the filter_len
32138         
32140 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32142         * reflection.c: handle custom attributes for types and members
32143         created with Reflection.Emit (bug#38422).
32145 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32147         * reflection.c: define RTSpecialName automatically for constructors for
32148         compatibility with MS.NET.
32150         * reflection.c (mono_reflection_create_runtime_class): initialize
32151         nested_in field of dynamically created classes.
32153 2003-02-22  Martin Baulig  <martin@ximian.com>
32155         * debug-mono-symfile.h: Incremented version number.
32157 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32159         * object.h icall.c process.c: fix warnings.
32161 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32163         * appdomain.h appdomain.c:
32164         (mono_domain_try_type_resolve): split the 
32165         name_or_tb argument into a name and a tb argument.
32166         (mono_domain_has_type_resolve): new function to check whenever the
32167         application has registered a TypeResolve event handler.
32168         
32169         * icall.c reflection.h reflection.c: move the type resolve logic into
32170         mono_reflection_get_type () so it will be invoked when 
32171         Assembly::GetType () is called.
32173         * reflection.c:
32174         (mono_reflection_get_type): renamed to get_type_internal.
32175         (mono_reflection_get_type): fixed type name generation so it works 
32176         for nested types too.
32177         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32178         costly type name generation if there is no resolve event handler.
32180 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32182         * class.c, image.c: load exported types from file references.
32184 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32186         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32187           used to cache the managed methods used to create proxies and make 
32188           remote invocation of methods.
32189         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32190           to be remotely created.
32191         * object.c: Modified the method mono_class_vtable(). It now initializes 
32192           the remote flag of the vtable. Modified mono_object_new_specific(), 
32193           so now it checks the remote flag.
32194         * icall.c: Added a couple of internal methods, one for enabling instance 
32195           creation interception for a type, and one for creating objects bypassing
32196           the remote check.
32198 2003-02-18  Martin Baulig  <martin@ximian.com>
32200         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32201         New interncall to get a method's metadata token.
32203         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32204         New interncall for the debugger.
32206 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32208         * class.c (mono_class_setup_vtable): allocate supertype array
32210 2003-02-18  Martin Baulig  <martin@ximian.com>
32212         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32214 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32216         * reflection.c:
32217         (assembly_name_to_aname): jump over unknown properties (i've found
32218         something like: 'type, assembly, version=xxx, custom=null, public...',
32219         so now will ignore custom=null and still get the rest of the values).
32221 2003-02-17  Dick Porter  <dick@ximian.com>
32223         * threads.c: Have Thread.Start() wait for a semaphore to signal
32224         that the thread has set up all its local data.  This fixes bug
32225         34323, where Abort() raced the new thread's TLS data.
32227         Also removes the handle_store() call from start_wrapper, because
32228         threads are now always created suspended and there is no longer a
32229         race between the parent and child threads to store the info.
32231 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32233         * image.c: explain the #- heap issue in a message, hopefully
32234         avoiding FAQs on mono-list.
32236 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32238         * icall.c:
32239         (GetEntryAssembly): if the domain has not invoked
32240         AppDomain.ExecuteAssembly yet, return the assembly of the default
32241         AppDomain.
32243 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32245         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32247 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32249         * metadata.c, reflection.c: simple speedup to type hash
32250         and equals code.
32252 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32254         * image.c, image.h, class.c, assembly.c: move module loading
32255         to MonoImage. When loading metadata, consider alignemnet from
32256         the start of metadata, not from the metadata address in memory.
32258 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32260         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32261         AssemblyBuilder objects. Factored out custom attribute creation into
32262         a separate function.
32263         (create_custom_attr): new function to create custom attributes.
32265 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32267         * Makefile.am: Got tired of typing the full pathname to pedump.
32268         Until there is another option, am installing this.
32270 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32272         * class.c (class_compute_field_layout): always set field->parent 
32273         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32275 2003-02-11  Dick Porter  <dick@ximian.com>
32277         * threads-types.h:
32278         * monitor.c: Rewrote Monitor, making lock much faster and
32279         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32280         creates them as needed.
32282         * exception.c: Added SynchronizationLockException
32284         * threads.c: Deleted old Monitor implementation.  The new one is
32285         in a new file.
32287 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32289         * class.c: handled TypedReference type code. Set the correct size for
32290         class data. Setup interface_offsets for interface classes, too.
32292 2003-02-09  Martin Baulig  <martin@ximian.com>
32294         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32296 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32298         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32299         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32300         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32301         * verify.c: check for code that runs after the end of the method.
32303 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32305         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32306         "System.Math::Round2".
32307         * sysmath.h: Added Floor, Round and Round2 definitions.
32308         * sysmath.c: Modified certain functions that were not 100% compliant
32309         with MS.NET (math precision) and added the implementation of Floor,
32310         Round and Round2.
32312 2003-02-07  Martin Baulig  <martin@ximian.com>
32314         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32316 2003-02-07  Martin Baulig  <martin@ximian.com>
32318         * debug-mono-symfile.c: Reflected latest symwriter changes.
32319         (mono_debug_create_mono_symbol_file): Removed.
32320         (mono_debug_open_mono_symbol_file): Take an argument which
32321         specifies whether to create a dynamic symbol file.
32323 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32325         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32327 2003-02-05  Martin Baulig  <martin@ximian.com>
32329         * reflection.c (mono_image_build_metadata): Make this public,
32330         protect it against being called multiple times, don't create
32331         resources and don't build the compressed metadata here.
32332         (mono_image_create_pefile): Do this here.
32334         * icall.c
32335         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32337 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32339         * socket-io.c: fixed bug #36322.
32341 2003-02-06  Piers Haken <piersh@friskit.com>
32343         * appdomain.[ch]:
32344         * class.h:
32345         * debug-mono-symfile.c:
32346         * icall.c:
32347         * loader.c:
32348         * mono-config.c:
32349         * monosn.c:
32350         * reflection.c:
32351         * socket-io.c: warning cleanups
32353 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32355         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32356         function. works like remoting invoke, but does a check for the Proxy first.
32358 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32360         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32362 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32364         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32365         array of pointers.
32366         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32367         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32369         * object.c (mono_store_remote_field_new): used by the new jit
32370         instead of mono_store_remote_field
32371         (mono_load_remote_field_new): used by the new jit
32372         instead of mono_load_remote_field
32374 2003-02-05  Patrik Torstensson
32376         * appdomain.c: changed unload to take the domain id instead
32377         of domain
32378         
32379         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32382 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32384         * appdomain.c: don't look for assemblies in ApplicationBase if
32385         PrivateBinPathProbe is set.
32387 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32389         * object.c: make the first argument in main_args contain the absolute
32390         path to the assembly. Fixes bug #37511.
32392 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32394         * icall.c: get correct UTC offset for countries not using daylight
32395         time saving. Fixes bug #30030.
32397 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32399         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32400         and 1 are the family).
32402 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32404         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32406         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32408 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32410         * reflection.c: added support for SignatureHelper tokens, which is
32411         needed by the Calli opcode.
32413         * reflection.h: track changes to SignatureHelper class.
32415         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32417 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32419         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32421 2003-02-03  Patrik Torstensson
32422         * appdomain.[c|h], domain.c : 
32423          - Added support for getting a domain via domain id
32424          - Support for setting and getting domain from System.AppDomain 
32425            (used in cross appdomain channel)
32426          - Added support for get/set for a MonoAppContext on a thread 
32427            (Context class in System.Runtime.Remoting.Contexts),
32428          - Removed hack in Get/SetData and ExecuteAssembly.
32429         
32430         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32431         the managed world to get control when a proxy is created.
32433         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32434         
32435 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32437         * icall.c
32438         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32439         Populate the codebase field as well.
32441 2003-02-02  Martin Baulig  <martin@ximian.com>
32443         * debug-mono-symfile.c
32444         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32445         (mono_debug_symfile_add_method): Allow interncalls.
32447 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32449         * icall.c: throw parse exception if strtod fails or the string is empty.
32451 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32453         * marshal.c: handle object type separately from defined
32454         class types.
32456 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32458         * marshal.c: handle NATIVE_LPSTR for strings when it's
32459         explicitly specified.
32461 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32463         * reflection.c, reflection.h, icall.c: setup the reflection
32464         handle cache for ModuleBuilders and AssemblyBuilders.
32466 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32468         * reflection.c (reflection_methodbuilder_to_mono_method): set
32469         pinvoke flag
32471 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32473         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32475 2003-01-29  Dick Porter  <dick@ximian.com>
32477         * threads.c: No need for the fake_thread kludge now that Thread
32478         doesn't run a class constructor
32479         
32480 2003-01-29  Dick Porter  <dick@ximian.com>
32482         * threads.c: Use g_direct_hash instead of the rather bogus
32483         g_int_hash
32485 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32487         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32488         (fix pinvoke12.exe)
32489         (mono_marshal_get_struct_to_ptr): generate valid IL code
32490         (mono_marshal_get_ptr_to_struct): generate valid IL code
32491         (*): correctly set sig->pinvoke, we need to memdup the signature
32492         to do that
32494 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32496         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32497         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32499 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32501         * profiler.c: provide more callers information.
32503 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32505         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32507         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32509         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32511 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32513         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32514         exception instead of going into an infinite loop on dates which it 
32515         can't yet handle.
32517         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32518         out-of-range exception if needed.
32520         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32521         an implementation for an interface method and to override an inherited
32522         method at the same time. 
32523         Imagine a scenario when a virtual method is used to override a
32524         virtual abstract method in a parent class, and this same method 
32525         provides an implementation for an method inherited from an interface. 
32526         In this case, the interface resolution code will set im->slot, which 
32527         means that the virtual method override pass will skip this method 
32528         which means a pointer to the abstract method inherited from the parent
32529         will remain in the vtable of this non-abstract class.
32531         * class.c: (mono_class_setup_vtable): continue search for a real 
32532         method if only an abstract method is found.     
32534 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32536         * reflection.c: add size to encoding for ByValStr and ByValArray
32537         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32539 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32541         * class.c (mono_class_setup_vtable): pass the override info as an
32542         argument.
32544         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32545         correctly.
32546         
32547         * reflection.c (ensure_runtime_vtable); add support for method 
32548         overrides.
32549         
32550 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32552         * reflection.c (resolution_scope_from_image): Hack to work to work with
32553         dynamic assemblies.
32555         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32556         added a 'force_ref' argument to force this function to allways return 
32557         a TypeRef. This is needed by mono_image_get_memberref_token ().
32558         
32559 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32561         * reflection.c (mono_image_get_type_info): interfaces really don't have
32562         a parent.
32564         * reflection.c (mono_image_basic_init): fill out missing fields of
32565         image structure.
32567         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32568         dynamic assemblies. This is required so dynamic assemblies show up in
32569         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32570         Type::GetType() etc. This is consistent with MS behaviour.
32572         * image.c image.h reflection.c: add newly created classes to the name 
32573         cache so mono_class_get () will find them.      
32575 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32577         First part of changes to get IKVM.NET running under mono.
32578         
32579         * appdomain.h, appdomain.c: added new function 
32580         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32581         This function will call AppDomain::DoTypeResolve to do the actual work.
32583         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32584         moved existing code dealing with dynamic tokens to a new function 
32585         called mono_reflection_lookup_dynamic_token (). This function will 
32586         raise TypeResolve events when appropriate. Since reflection.c is not 
32587         part of libmetadata, a new hook function called 
32588         mono_lookup_dynamic_token() is added to class.c which will call this.
32590         * assembly.h assembly.c: make the invoke_load_hook function public,
32591         so it can be called for dynamic assemblies.
32593         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32595         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32596         type isn't found.
32598         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32599         MonoGHashTable, since it contains pointers to objects which the GC 
32600         needs to track.
32602         * assembly.c (search_loaded): remove unused variable.
32603         
32604 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32606         * object.c: fixed issue exposed by gcc-generated IL programs
32607         that use RVA data for pointers.
32609 2003-01-25  Martin Baulig  <martin@ximian.com>
32611         * threads.c (start_wrapper): Moved the initialization of
32612         `start_func' above the mono_new_thread_init() call to which we
32613         pass it as argument.
32615 2003-01-24  Martin Baulig  <martin@ximian.com>
32617         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32618         the MonoThread pointer.
32620 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32622         * icall.c: Rename `PowImpl' to Pow.
32624 2003-01-23  Dick Porter  <dick@ximian.com>
32626         * threads.c (start_wrapper): Create a Thread object if needed, so
32627         the Main() thread can do the class initialisation in a subthread
32628         that has been set up to allow managed code execution.
32630         Pass the thread ID instead of the MonoThread pointer to the thread
32631         start and attach callbacks.  This change is required, because the
32632         jit thread start callback must be called _before_ the Thread
32633         object can be created.
32634         
32635         (mono_thread_init): Removed much object creation code that is no
32636         longer needed.  No managed code is called from here now.
32638         * object.c (mono_runtime_exec_managed_code): Create a subthread
32639         for Main, and call back to the runtime to use it.
32640         Set the exit code when Main exits.
32642         * gc.c: Make sure domain finalisation happens in a subthread.
32643         Re-enable threaded GC, fixing bug 31333 (again).
32645         * environment.c: System.Environment internall calls (so far just
32646         ExitCode is here, the others are still in icall.c)
32648         * appdomain.c (mono_runtime_cleanup): All threads running managed
32649         code should have finished before mono_runtime_cleanup() is
32650         reached, so no need to clean up threads.
32652 2003-01-22  Martin Baulig  <martin@ximian.com>
32654         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32655         `gpointer func' arguments.      
32656         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32657         but added `MonoThread *thread' argument.
32658         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32660         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32661         and pass it to the mono_thread_start_cb callback.
32662         (mono_install_thread_callbacks): New public function to install a
32663         set of callbacks which are set by the debugger.
32664         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32666 2003-01-22  Martin Baulig  <martin@ximian.com>
32668         * Makefile.am: Install debug-mono-symfile.h.
32670 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32672         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32674 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32676         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32677         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32678         (mono_array_class_get): correctly set access levels of arrays
32680 2003-01-20      Patrik Torstensson
32681         * image.h (MonoAssemblyName): changed major, minor, build, revision
32682         from signed to unsigned.
32684 2003-01-20  sean kasun <skasun@azstarnet.com>
32686         * reflection.c (load_cattr_value): Now this handles
32687         MONO_TYPE_SZARRAY.  Fixes bug #35629
32689 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32691         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32692         integer value
32694 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32696         * decimal.c: fixed bug #26056.
32698 2003-01-17  Martin Baulig  <martin@ximian.com>
32700         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32702 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32704         * exception.[ch]:
32705         (mono_get_exception_type_initialization): new function.
32707         * object.c: throw a TypeInitializationException when an exception is
32708         thrown invoking the class constructor.
32710 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32712         * reflection.c: fixed attribute reading.
32714 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32716         * icall.c:
32717         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
32718         provided, look for the type in the calling assembly and then in
32719         mscorlib; if the assembly name is provided, only try that one.
32721 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
32723         * object.c: register the vtable before there is a chance it's
32724         queried again recursively.
32726 2003-01-13  Duncan Mak  <duncan@ximian.com>
32728         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
32729         gc-internal.h. 
32730         
32731 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
32733         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
32735 2003-01-11  Martin Baulig  <martin@ximian.com>
32737         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
32738         this to 20 for the release.
32740 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
32742         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
32744         * loader.c (mono_method_get_marshal_info): bug fix
32746         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
32747         structures with explicit layout
32749 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32751         * profiler.c: made the output more readable (and sorted). 
32752         Added caller information for the allocation profiler.
32754 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
32756         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
32758 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32760         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
32761         to get value types.
32762         
32763 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
32765         * object.c, profiler.h, profiler.c, profiler-private.h:
32766         Added object allocation profiler.
32768 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
32770         * reflection.h, reflection.c: handle global methods.
32771         Compress blob entries.
32773 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
32775         * marshal.c: fix compilation.
32777 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
32779         * loader.c (mono_method_get_marshal_info): impl.
32781         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
32783 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32785         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
32786         for reference types.
32788 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
32790         * loader.c: fixed off by one error in loaded parameter names.
32792 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
32794         * marshal.c (mono_marshal_get_icall_wrapper): like
32795         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
32796         instead of a MonoMethod.
32798 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32800         * decimal.c: fixed bug #36537.
32802 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
32804         * marshal.c: throw a missing method exception if a
32805         P/Invoke method is not found.
32807 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32809         * icall.c: allow a null this for constructors.
32811 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
32813         * icall.c: raise the proper exceptions if the arguments to the
32814         internal Invoke are incorrect.
32816 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
32818         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
32820 2003-01-03  Martin Baulig  <martin@ximian.com>
32822         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32824 2002-12-31  Martin Baulig  <martin@ximian.com>
32826         * debug-mono-symfile.c: Completely rewrote the type section.
32827         Instead of using individual malloc()ed fields, we use one big
32828         continuous memory area and offsets into this area.
32829         See the comments in the source code for details.
32831 2002-12-30  Martin Baulig  <martin@ximian.com>
32833         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
32835 2002-12-30  Martin Baulig  <martin@ximian.com>
32837         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
32838         line number table in this data blob instead of using an external
32839         pointer.
32841 2002-12-28  Martin Baulig  <martin@ximian.com>
32843         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32845 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
32847         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
32848         as a boxed return type.
32850 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
32852         * appdomain.c
32853         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
32854         g_build_filename to properly get separators on the filename created.
32856         * object.h: Small change, introduce MonoMarshalByRefObject to
32857         track the layout of that structure in the C# universe as we make
32858         changes there.
32860 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
32862         * object.c: removed assert to allow static fields on interfaces.
32863         * loader.c: a TypeSpec may be used for any type, not just arrays.
32865 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32867         * class.c, class.h: added mono_class_array_element_size ().
32868         Ignore static methods in interfaces.
32870 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32872         * threads.c: fixed the build under cygwin.
32874 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32876         * reflection.c: handle nullref constants. Allocate keys for
32877         reflection handles with the GC.
32879 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32881         * threads.c, threads.h: added mono_thread_get_abort_signal()
32882         to get a suitable signal for thread abort.
32884 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32886         * metadata.c: fix handling of ExportedType table.
32888 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32890         * icall.c: added WriteWindowsDebugString internal call.
32892 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32894         * reflection.h: added fields to match C# implementation.
32896 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32898         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
32900 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
32902         * gc.h, gc-internal.h: Rename header for GC internal calls to
32903         gc-internal.h from gc.h as to not clash with Boehm GC having its
32904         header installed as <gc.h> in outside include paths.
32905         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
32906         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
32908 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32910         * icall.c: assign minor, build and revision in FillName.
32912 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
32914         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
32915         Added support for running code generated by Reflection.Emit.
32917 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32919         * appdomain.c: check for NULL argument in LoadFrom.
32921 2002-12-10  Dick Porter  <dick@ximian.com>
32923         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
32925 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32927         * appdomain.c: fix buglet when building exe file name.  Handle full
32928         assembly name (needed after latest changes to AssemblyName).
32929         * image.c:
32930         (mono_image_close): free some hashtables.
32932 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
32934         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
32935         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
32936         on some systems (redhat 7.3) 
32938 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
32940         * threads.c: delete the critical section of a sync block,
32941         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
32943 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
32945         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
32947 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32949         * appdomain.[ch]: handle the assembly preload event to try loading the
32950         assemblies using the paths we have in the current domain.
32952         * assembly.[ch]: created an assembly preload hook that is called to try
32953         loading the assembly by other means that the ones provided here.
32955         * domain.c: initialize the domain search path.
32957         From now on, assemblies (TODO: except corlib and System) are loaded
32958         according to these rules when using mono_assembly_load ():
32960                 1. It tries to load the assembly from the ApplicationBase
32961                 of the current domain appending .dll and .exe (TODO: have to
32962                 try loading from name/name.dll and name/name.exe).
32964                 2. It tries the search path specified in PrivateBinPath for the
32965                 current domain (if any).
32967                 3. Previous behavior.
32969 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
32971         * icall.c: implemented GetInterfaceMap() related icall.
32972         * domain.c, loader.h: load MethodInfo in mono_defaults.
32974 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32976         * gc.c: disable the finalizer thread for now, untill all the issues
32977         with it are resolved.
32979 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32981         * string-icalls.c: handle embedded nulls in string ctor when the
32982         length is specified.
32984 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
32986         * class.c: look for explicit interface implementation in parent
32987         classes, too.
32989 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
32991         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
32993 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
32995         * gc.c: protect handles with a critical section.
32997 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32999         * icall.c:
33000         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33001         parameters. If no assembly specified, try getting the type from all
33002         the assemblies in the current domain, else, load the assembly and get
33003         the type from it.
33005 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33007         * marshal.c: applied patch from Aleksey Demakov that fixes
33008         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33010 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33012         * icall.c: fixed get_location.
33014 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33016         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33017         declarations to make it work with older gcc. 
33019         * loader.c (mono_get_method): set signature->pinvoke for native calls
33021 2002-11-20  Dick Porter  <dick@ximian.com>
33023         * threads.c (mono_thread_init): Set the main thread's handle
33025 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33027         * gc.c: allow compilation without GC support. Changed to match the
33028         mono coding style.
33030 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33032         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33034 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33036         * reflection.c: set a public key token on the core assemblies.
33038 2002-11-18  Dick Porter  <dick@ximian.com>
33040         * threads.c: Split out some thread initialisation so that other
33041         files can set the start callback function.
33043         * gc.c: Run finalisers in a separate thread, to avoid stack
33044         overflow.  Fixes bug 31333.
33046         * appdomain.c: Set up GC finalisation thread.
33048         * reflection.c: 
33049         * object.c: 
33050         * domain.c: Use gc.h macros for GC_malloc
33051         
33052 2002-11-15  Dick Porter  <dick@ximian.com>
33054         * threadpool.c: 
33055         * threads.c:
33056         * appdomain.c: Removed mono_runtime_init_with_attach(),
33057         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33058         merging the extra parameter with the existing function.  Removed
33059         unneeded code in mono_thread_attach().
33061 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33063         * image.c (mono_image_loaded_by_guid): a method to get loaded
33064         images by guid. 
33065         (load_metadata_ptrs): we store the guid as string.
33067 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33069         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33071         * metadata.c (mono_guid_to_string): imported method form Zoltan
33072         Varga (slightly modified)
33074         * assembly.c (mono_assembly_open): load precompiled code
33076         * loader.h (MonoMethod): we store the method token for use in the
33077         aot compiler. 
33079 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33081         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33082         the hook function called when an assembly is loaded.
33083         
33084         * domain.c: Modified file.
33085         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33087         Fixes bug #33196.
33089 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33091         * reflection.c: Map PEFileKind to the value expected by the WinNT
33092         image loader. 
33094 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33096         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33097         Read until the buffer is filled completely.
33099 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33101         * icall.c: implemented MonoType.InternalGetEvent ().
33103 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33105         * appdomain.c: implemented InitAppDomainSetup. Delayed
33106         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33107         the entry_assembly.
33109         * assembly.c: base_dir is now an absolute path ending with
33110         G_DIR_SEPARATOR.
33112         * icall.c: modified get_location according to the above changes.
33114         * object.c: init AppDomain.SetupInformation for the default domain after
33115         we have the entry assembly.
33117         * domain.c: when unloading a domain, setup = NULL.
33119 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33121         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33123 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33125         * object.h, object.c: introduced mono_object_get_virtual_method ()
33126         to lookup the method invoked on an object when a callvirt is done on
33127         a method.
33128         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33130 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33132         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33133         current domain when loaded an assembly and failed to load it.
33135         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33137 2002-10-31  Dick Porter  <dick@ximian.com>
33139         * icall.c: 
33140         * file-io.h: 
33141         * file-io.c: Return the error status in a parameter, as the
33142         GetLastError() value has long since been blown away if we try and
33143         look it up in a subsequent internal call invocation.  Delete the
33144         GetLastError() internal call, because it's useless.
33146 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33148         * class.[ch]: added cast_class to fix bug 29517
33150 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33152         * marshal.c: create valid IL code in the filter clause:
33153         the new JIT is less forgiving:-)
33155 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33157         * icall.c: removed get_property internal call.
33159 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33161         * appdomain.h domain.c: Added an ID to appdomains.
33162         
33163         * threads.c threads.h icall.c: Implement icall
33164         Thread:GetDomainID(), and remove unused icall 
33165         CurrentThreadDomain_internal.
33167 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33169         * icall.c: Don't recurse through the base types in GetConstructor.
33170         Fixes bug #32063. 
33172 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33174         * mempool.h, mempool.c: added mono_mempool_empty() and
33175         mono_mempool_stats().
33177 2002-10-23  Dick Porter  <dick@ximian.com>
33179         * file-io.c: 
33180         * file-io.h: 
33181         * icall.c: Added MonoIO.GetFileType internal call
33183 2002-10-17  Dick Porter  <dick@ximian.com>
33185         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33186         delegate semaphore before waiting for all threads to finish,
33187         because new threads can also call async delegates.  Fixes bug
33188         32004.
33190         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33191         of 3 seconds, in case another async job is queued.  (This part is
33192         needed because the bug fix reintroduced the 3s exit lag.)  This
33193         makes the mono_runtime_shutdown flag superfluous.
33195 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33197         * reflection.c: include ehader size in method section headers.
33198         Really check for suplicated modules entries.
33200 2002-10-17  Martin Baulig  <martin@gnome.org>
33202         * debug-mono-symfile.c: Added back support for locals.
33204 2002-10-14  Martin Baulig  <martin@gnome.org>
33206         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33207         MONO_TYPE_VOID.
33209 2002-10-14  Martin Baulig  <martin@gnome.org>
33211         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33212         mono_class_get() instead of looking in the class cache. 
33214 2002-10-13  Martin Baulig  <martin@gnome.org>
33216         * debug-mono-symfile.c: Set version number to 28, include the
33217         signature in method names.
33219 2002-10-13  Martin Baulig  <martin@gnome.org>
33221         * debug-mono-symfile.h: Set version number to 27.
33223 2002-10-11  Martin Baulig  <martin@gnome.org>
33225         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33227 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33229         * metadata.c, metadata.h: added helper function to allocate signatures.
33231 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33233         * icall.c: added internal call to get the location of machine.config.
33235 2002-10-08  Martin Baulig  <martin@gnome.org>
33237         * debug-mono-symfile.c: Ignore classes with a pending init for the
33238         moment.
33240 2002-10-03  Dick Porter  <dick@ximian.com>
33242         * threads.c: Freebsd pthread_t is a pointer
33244 2002-10-03  Dick Porter  <dick@ximian.com>
33246         * socket-io.c: Implemented GetHostName_internal
33248 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33250         * mono-config.c:
33251         (mono_config_parse_file): don't leak the text.
33253 2002-10-02  Martin Baulig  <martin@gnome.org>
33255         * debug-mono-symfile.c: Added support for methods.
33257 2002-10-01  Martin Baulig  <martin@gnome.org>
33259         * debug-mono-symfile.c: Don't emit methods and line numbers for
33260         the dynamic symbol file, just write the type table.  We can easily
33261         have an external helper program which creates a symbol file for an
33262         IL file.        
33264 2002-10-01  Dick Porter  <dick@ximian.com>
33266         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33267         Only add the handle to the cleanup array when we're about to
33268         launch the thread.  Bug 31425 deadlocked when the test was run on
33269         mono under w32.
33271 2002-10-01  Martin Baulig  <martin@gnome.org>
33273         * debug-mono-symfile.c: Added support for properties.
33275 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33277         * reflection.c: unaligned store fix from Mark Crichton
33278         <crichton@gimp.org>.
33280 2002-09-27  Martin Baulig  <martin@gnome.org>
33282         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33283         New interncall.
33285 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33287         * assembly.h, assembly.c: use a sane API to hook into the assembly
33288         loading process instead of a useless special-purpouse hack
33289         (ngen needs a hook, too, for example).
33291 2002-09-27  Dick Porter  <dick@ximian.com>
33293         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33294         io-layer can set up some process handle info.  Not needed on w32,
33295         but doesn't hurt either.
33297         * process.c: Pass the program name in the second parameter to
33298         CreateProcess, so the path is searched.  Include the working
33299         directory. Implemented process name, process enumeration, and some
33300         process detail internal calls.
33301         
33302         * icall.c: Added internal calls for process lookup, and some
33303         process details
33305 2002-09-26  Martin Baulig  <martin@gnome.org>
33307         * assembly.c (mono_install_open_assembly_hook): New global
33308         function to install a function to be invoked each time a new
33309         assembly is loaded.
33310         (mono_assembly_open): Run this callback function if set.
33312         * debug-mono-symfile.c: Put back line numbers for the dynamic
33313         symbol file and also record the .il file as source file.  This
33314         allows us to install the temporary symbol file as `file.dbg' just
33315         like a compiler-generated one.
33317 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33319         * Corrected typo in gc.c (BOHEM vs BOEHM).
33321 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33323         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33324         GetProperties. Also avoid calling g_slist_length in GetProperties and
33325         GetMethods.
33327 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33329         * reflection.c: avoid unaligned stores (bug spotted by
33330         Mark Crichton  <crichton@gimp.org>).
33332 2002-09-25  Martin Baulig  <martin@gnome.org>
33334         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33335         instead of guint64 for addresses and added prologue/epilogue info.
33337 2002-09-25  Martin Baulig  <martin@gnome.org>
33339         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33340         store line number info.  For the dynamic symbol file, we only need
33341         to provide the JIT generated dynamic line number info for the dynamic
33342         symbol file.
33344 2002-09-25  Martin Baulig  <martin@gnome.org>
33346         * debug-mono-symfile.h: Incremented version number.
33348 2002-09-24  Martin Baulig  <martin@gnome.org>
33350         * class.c (mono_debugger_class_init_func): New global function
33351         pointer variable.
33352         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33353         call it.
33355         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33356         function.  This is called via the mono_debugger_class_init_func
33357         hook to add all types to the dynamic type table.
33358         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33359         from its metadata token.
33361         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33362         New interncall for the debugger.
33364 2002-09-24  Nick Drochak <ndrochak@gol.com>
33366         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33367         before using it in case it is null.
33368         
33369 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33371         * metadata.c: allow custom modifiers in local var signatures
33372         (bug spotted by Zoltan Varga).
33374 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33376         * class.c: deal with the <Module> class that may have a NULL vtable.
33377         Eliminate warnings.
33379 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33381         * image.c, image.h: more strong name helpers.
33382         * monosn.c: more work: convert pem keys to cryptoapi format.
33384 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33386         * string-icalls.c: speedup IndexOf.
33388 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33390         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33392 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33394         * icall.c: cleanup: use mono_object_domain ().
33396 2002-09-23  Martin Baulig  <martin@gnome.org>
33398         * debug-mono-symfile.c: Improved type support.
33400 2002-09-22  Martin Baulig  <martin@gnome.org>
33402         * debug-mono-symfile.c: Added support for reference types and strings.
33404 2002-09-22  Martin Baulig  <martin@gnome.org>
33406         * debug-mono-symfile.c: Started to work on the type table.
33408 2002-09-21  Martin Baulig  <martin@gnome.org>
33410         * debug-mono-symfile.c: Largely reworked the symbol table format.
33411         The symbol table is now incrementally updated each time a new
33412         method is added.  We're now also using our own magic and version
33413         so that you don't need to recompile all your classes if the
33414         dynamic table changes.
33415         (mono_debug_update_mono_symbol_file): Removed.
33416         (mono_debug_symfile_add_method): New function to add a method.
33418 2002-09-21  Martin Baulig  <martin@gnome.org>
33420         * icall.c
33421         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33422         New interncall.
33424         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33425         New interncall to get a method from its metadata token.
33427 2002-09-21  Martin Baulig  <martin@gnome.org>
33429         * debug-mono-symfile.c: Create type table.
33431 2002-09-20  Martin Baulig  <martin@gnome.org>
33433         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33435 2002-09-20  Martin Baulig  <martin@gnome.org>
33437         * debug-mono-symfile.c: Provide information about params and locals.
33439 2002-09-20  Martin Baulig  <martin@gnome.org>
33441         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33442         New interncall.
33444         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33445         interncall to get a method from its metadata token.
33447 2002-09-20  Martin Baulig  <martin@gnome.org>
33449         * debug-mono-symfile.c: Added a few checks for method->header
33450         being non-NULL.  This should never happen, but for the moment
33451         let's use a g_warning() rather than a g_assert().
33453 2002-09-19  Mark Crichton  <crichton@gimp.org>
33455         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33456         even if support for it isn't present.  Added an #ifdef to fix this.
33458         * socket-io.c: Added checks back for Solaris support.
33460 2002-09-19  Martin Baulig  <martin@gnome.org>
33462         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33463         changes in the symbol file format.
33465 2002-09-18  Martin Baulig  <martin@gnome.org>
33467         * debug-mono-symfile.c: Set version number to 21.
33469 2002-09-18  Dick Porter  <dick@ximian.com>
33471         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33472         on netbsd.  Fixes bug 30051.
33474 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33476         * reflection.c:
33477         (set_version_from_string): little fix.
33479 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33481         * monosn.c, Makefile.am: added strong name utility.
33482         * reflection.h, reflection.c: implemented delayed signing,
33483         locale, version and hash id assembly attributes.
33485 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33487         * loader.c, metadata.c: load param attributes in signatures.
33489 2002-09-16  Martin Baulig  <martin@gnome.org>
33491         * debug-mono-symfile.c: Added string table with all method names.
33493 2002-09-14  Martin Baulig  <martin@gnome.org>
33495         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33496         fast method lookup.
33498 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33500         * reflection.c: record the public key token of referenced assemblies.
33502 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33504         * image.c, image.h: added functions to get the strong name and the
33505         public key of an assembly.
33506         * pedump.c: use them.
33508 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33510         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33512 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33514         * marshal.c (mono_marshal_get_managed_wrapper): Added
33515         MONO_TYPE_BOOLEAN 
33517 2002-09-11  Martin Baulig  <martin@gnome.org>
33519         * gc.c: Call GC_unregister_disappearing_link() on all links when
33520         finalizing them, this is necessary to aviod a crash in boehm's
33521         finalize handler.
33523 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33525         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33526         nick@chemlab.org.
33528 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33530         * icall.c: implemented MonoType::Module.
33531         * reflection.c, reflection.h: mono_module_get_object () from
33532         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33534 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33536         * icall.c: ignore overridden methods in GetMethods ().
33537         Fix for FieldInfo::SetValue().
33538         * object.c: handle float/double in runtime invoke.
33540 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33542         * object.c: allow a constructor to be called again on an object.
33544 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33546         * class.h, class.c: move field layout code to it's own function and
33547         export it. Get an interface id earlier. Move fields in MonoClass
33548         so they are more cache friendly and align the bitfields.
33549         * loader.c: temporary handle get_param_names() for a runtime method.
33550         * reflection.c, reflection.h: more code to handle runtime creation of
33551         types.
33553 2002-09-09  Martin Baulig  <martin@gnome.org>
33555         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33556         signature with the pinvoke field being set for the actual call.
33558 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33560         * icall.c: removed some unused icalls. Start of map of glib charsets
33561         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33563 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33565         * debug-helpers.c: break infinite loop (found and fixed by
33566         Holger Arnold <harnold@gmx.de>).
33568 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33570         * icall.c: target may be null in create_delegate.
33572 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33574         * marshal.c: handle a boolean return type.
33576 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33578         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33580 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33582         * gc.c: fix weakreferences.
33584 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33586         * icall.c: added icall to get default codepage.
33588 2002-09-03  Dick Porter  <dick@ximian.com>
33590         * threads.h: 
33591         * threads.c: Use MonoThread instead of MonoObject where
33592         apropriate.
33594         Store running thread objects in a hash table, so that we have all
33595         the info to hand when waiting for them to finish
33596         (means we don't need OpenThread() any more, so mingw builds should
33597         be fully functional again.)
33599         * verify.c:
33600         * object.h: Added thread ID to MonoThread
33602 2002-09-03  Martin Baulig  <martin@gnome.org>
33604         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33606 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33608         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33610 2002-09-03  Martin Baulig  <martin@gnome.org>
33612         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33613         argument to store the end address of the disassembled instruction.
33615         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33616         here from debug-symfile.h.
33617         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33618         JIT into this struct.
33619         (MonoSymbolFile): Added `char *image_file' field.
33620         (MonoDebugGetMethodFunc): Removed.
33621         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33622         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33623         (mono_debug_find_method): New method.
33625         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33626         create a full symbol file.
33627         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33628         and static symbol files.
33629         (mono_debug_find_method): The symbol file keeps an internal method hash,
33630         call this to get a MonoDebugMethodInfo from a MonoMethod.
33632         * debug-symfile.[ch]: Removed.
33634 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33636         * image.c (do_mono_image_open): Remove linker version check.
33638 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33640         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33641         wrappers for instance methods.
33642         
33643 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33645         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33647 2002-08-28  Dick Porter  <dick@ximian.com>
33649         * Makefile.am: Export HOST_CC for w32 builds
33651 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33653         * file-io.c process.c: MonoString are null terminated, no
33654         need for mono_string_to_utf16() anymore.
33656 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33658         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33660 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33662         * icall.c, reflection.h: speedup System.MonoType.
33664 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33666         * reflection.c: allow null as the value of a string argument in
33667         custom attributes constructors.
33669 2002-08-27  Martin Baulig  <martin@gnome.org>
33671         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33672         `trampoline_address' field.
33674 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33676         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33677         check (fixes bug #29486) 
33679 2002-08-27  Martin Baulig  <martin@gnome.org>
33681         * debug-mono-symfile.c: Changed the file format in a way that allows us
33682         open it read-only and to use a specially malloced area for all the
33683         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33684         debugging IL code and there is no MCS generated symbol file for it.
33686 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33688         * object.c: added a define for a good string and array
33689         creation speedup (not enabled by default because we need to deal with
33690         the synch stuff).
33692 2002-08-26  Martin Baulig  <martin@gnome.org>
33694         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33695         function to create a dynamic symbol file.  This is used by the
33696         debugger to create a symbol file for IL code on-the-fly.
33698 2002-08-26  Martin Baulig  <martin@gnome.org>
33700         * loader.c (mono_lookup_pinvoke_call): Include the error message
33701         from g_module_error() in the error message.
33703 2002-08-24  Martin Baulig  <martin@gnome.org>
33705         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33706         function to update the symbol file.  The symbol file is mmap()ed
33707         writable, but private.  This allows us to install the symbol file
33708         together with the assembly.
33710 2002-08-24  Martin Baulig  <martin@gnome.org>
33712         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
33713         but they can read the new symbol file format which mcs is now creating.
33715         * debug-symfile.c (mono_debug_find_source_location): Moved to
33716         debug-mono-symfile.c; this is now operating on the new symbol file.
33718 2002-08-23  Martin Baulig  <martin@gnome.org>
33720         * debug-helpers.c (mono_method_desc_from_method): New function to get
33721         a MonoMethodDesc from a MonoMethod.
33723 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33725         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
33726         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
33728 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33730         * string-icalls.[ch]: make helper methods static.
33732 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33734         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
33735         types to it and to SetValueInternal.
33737         * object.c: Moved handle_enum label to its proper place. This was the
33738         f... bug! ;-)
33740         This time i compiled mcs and gtk-sharp and they both work.
33742 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33744         * icall.c: reverted partially my previous patch until 
33745         object.c:set_value handles enums correcly.
33747 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33749         * icall.c:
33750         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
33751         (ves_icall_System_Environment_get_MachineName): removed warning when
33752         compiling under cygwin.
33754 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33756         * object.c: fixed field_get_value() for reference types.
33758 2002-08-22  Dick Porter  <dick@ximian.com>
33760         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
33761         Don't free a buffer while it's still needed.  Patch from Jonathan
33762         Liger <Jonathan.liger@wanadoo.fr>
33764 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
33766         * icall.c (ves_icall_System_Environment_get_Platform): Add new
33767         internal call.
33769 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
33771         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
33772         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
33774         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
33775         we call unmanaged code which throws exceptions.
33777 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33779         * appdomain.h: added per-domain entry_assembly.
33780         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
33781         arguments.
33782         * icall.c: Assembly::GetEntryAssembly icall.
33783         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
33784         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
33786 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33788         * appdomain.h, gc.c: added mono_domain_finalize ().
33790 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33792         * object.c:
33793         (mono_print_unhandled_exception): changed g_warning by g_printerr
33794         because g_log has a 1024 characters limit (yeah, i got a big stack
33795         trace). Don't print exception name, that should be in ToString 
33796         returned string.
33798 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33800         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
33801         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
33803 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33805         * object.c:
33806         (mono_print_unhandled_exception): after previous commit, i realized
33807         that MS calls ToString on the exception. I changed this function to
33808         do that. This way we get stack_trace for free.
33810 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33812         * object.c:
33813         (mono_print_unhandled_exception): invoke Message property instead of
33814         getting 'message' field from Exception. Don't allocate memory for
33815         'trace' and 'message' if not needed.
33817 2002-08-18  Dick Porter  <dick@ximian.com>
33819         * unicode.c: Fix asserts to match Encoder.cs checks
33821 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33823         * marshal.c: fix unaligned store issue and a few wrong
33824         opcode argument types.
33826 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33828         * icall.c: added GetUninitializedObjectInternal internal call.
33830 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
33832         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
33833         to the right domain.
33835 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
33837         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
33839         * class.c (class_compute_field_layout): set blittable to false for Strings
33841         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
33843 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33845         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
33846         first chunk of code to create types at runtime. Code to
33847         handle ReflectedType/DeclaringType. Make reflection handles
33848         domain specific.
33850 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33852         * class.c: set correct name in arrays.
33854 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
33856         * appdomain.c (mono_domain_transfer_object): make it work with
33857         valuetypes. bug fixes.
33859 2002-08-12  Dick Porter  <dick@ximian.com>
33861         * object.h: Rename some parameters to avoid c++ keywords (Patch
33862         from Joseph Wenninger <kde@jowenn.at>)
33864 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33866         * icall.c: added icall to implement Assembly.GetFile*.
33868 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33870         * reflection.h, reflection.c: code to embed managed resources.
33872 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33874         * class.c: move all the type size stuff into
33875         class_compute_field_layout().
33877 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33879         * class.c: ensure enums have always the correct instance size.
33880         * unicode.c: remove wrong assert.
33882 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33884         * assembly.c: fix mem corruption issue.
33885         * image.h, image.c: added mono_image_get_resource () to access
33886         managed resources.
33887         * icall.c: implemented Assembly.EntryPoint property and some
33888         Managed Resources related internalcalls.
33891 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33893         * image.c, image.h: impemented mono_image_get_entry_point ().
33894         * appdomain.c: use mono_image_get_entry_point.
33896 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33898         * reflection.c: support the object type argument when loading
33899         custom attributes.
33901 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
33903         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
33904         String as return type.
33906 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
33908         * reflection.c: fix encoding of named args for custom attrs to match
33909         the ms implementation. Read them back when instantiating custom
33910         attributes.
33912 2002-08-02  Radek Doulik  <rodo@ximian.com>
33914         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
33915         by Dietmar as quick fix
33916         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
33917         16 as stack size, used on more places as quick fix before Dietmar
33918         will fix it properly
33920 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33922         * object.h, object.c: added accessors for fields and properties.
33924 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33926         * class.c, class.h: made mono_class_get_field_from_name ()
33927         loop on parent types.
33928         Added mono_class_get_property_from_name ().
33930 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33932         * class.c, class.h: move the code to setup the type vtable in its own
33933         function so that it can be reused also for types created at runtime.
33934         Eliminate the "class" identifier from the header file.
33935         * reflection.c: setup the vtable for enums so that we can create
33936         objects for use in SetConstant ().
33938 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
33940         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
33941         instead of the delegate itself as this pointer (bug #28383)
33943 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
33945         * marshal.c (mono_marshal_get_managed_wrapper): added return type
33946         conversions.
33948 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33950         * loader.c: don't set the pinvoke bit on icalls.
33952 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
33954         * debug-helpers.c (mono_method_full_name): only print a number to
33955         indicate wrapper type (so that the output is more readable in traces).
33957 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
33959         * class.c (mono_class_init): include method override patch from Paolo
33961 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
33963         * icall.c: fixed GetTypeCode().
33965 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
33967         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
33968         use real delegate invoke function to make it work with multicast
33969         delegates (fix bug# 28291).
33971 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33973         * object.c: load constant strings.
33975 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33977         * reflection.c: no magic numbers.
33978         * tabledefs.h: security action enum.
33980 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33982         * assembly.c: fix possible memory corruption.
33984 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33986         * reflection.h, reflection.c: added support for linking resources.
33987         * verify.c: check we have an updated corlib.
33989 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
33991         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
33992         string arrays.
33993         (mono_marshal_string_array): null terminate unmanaged string arrays.
33994         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
33996 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33998         * icall.c: Type.GetType () can now return also types from the
33999         calling assembly.
34001 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34003         * loader.h, loader.c: stack walking support.
34004         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34005         GetCallingAssembly.
34007 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34009         * marshal.c: added optimisations for blittable types 
34011         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34012         (mono_class_setup_mono_type): set blittable attribute for single
34013         and double.
34015         * marshal.c (mono_string_utf8_to_builder): impl.
34016         (mono_string_builder_to_utf8): impl.
34017         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34019 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34021         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34022         (mono_marshal_get_managed_wrapper): impl. byref types
34024 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34026         * icall.c:
34027         (search_method): don't display debug message. 
34029 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34031         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34033 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34035         * appdomain.c: set the missing filename when throwing exception.
34037 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34039         * metadata.c (mono_type_size): code cleanup
34040         (mono_type_stack_size): removed some test code
34042 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34044         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34045         mono_get_exception_file_not_found now.
34047         * exception.c (mono_exception_from_name_two_strings): New version
34048         that will call a constructor with two string arguments. 
34049         (mono_get_exception_file_not_found): New helper routine, used to
34050         report file-not-found errors.
34052 2002-07-20  Dick Porter  <dick@ximian.com>
34054         * process.h:
34055         * process.c: Pass file handles to CreateProcess
34056         
34057         * icall.c:
34058         * file-io.h:
34059         * file-io.c: Implemented CreatePipe
34061 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34063         * metadata.c (mono_get_param_info): set alignment for value types
34065 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34067         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34068         Constify mono_domain_assembly_open().
34069         * loader.c: handle null namespace in icalls.
34071 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34073         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34074         (emit_str_to_ptr_conv): marshal object as structs
34076         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34078         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34080 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34082         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34083         (mono_marshal_get_native_wrapper): we an now return value types
34085 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34087         * verify.c: more checks implemented.
34089 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34091         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34092         (fix bug #27695)
34093         (mono_marshal_get_native_wrapper): allow byref arguments
34094         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34095         impl. PtrToStringXXX methods
34096         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34097         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34098         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34099         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34100         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34102 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34104         * reflection.c: fix buglet in parsing an assembly name.
34106 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34108         * marshal.c (emit_ptr_to_str_conv): first impl.
34110 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34112         * object.c, class.h: cache the vtable in the class as suggested by
34113         vargaz@freemail.hu (Zoltan Varga).
34115 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34117         * class.h, loader.c: added mono_field_from_token().
34118         * verify.c: first cut of type checking code.
34120 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34122         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34124 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34126         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34127         (fix bug #27782)
34128         (mono_marshal_get_remoting_invoke): impl.
34129         (mono_delegate_begin_invoke): impl.
34130         (mono_mb_emit_save_args): impl.
34131         (mono_delegate_end_invoke): impl.
34132         (mono_marshal_get_delegate_begin_invoke):
34133         (mono_marshal_get_delegate_end_invoke):
34134         (mono_marshal_get_delegate_invoke): generate a special name for
34135         those methods (including the signature) and associate them whith
34136         the delegate class. 
34138 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34140         * reflection.[ch]: 
34141         (mono_reflection_type_from_name): now it has a MonoImage parameter
34142         which is used as the default image to search the type in. If the image
34143         is NULL or getting the type from it fails, it defaults to corlib.
34145         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34146         new parameter.
34148 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34150         * reflection.c: update the parameter table index.
34152 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34154         * domain.c: don't include the mark byte in the string hash.
34156 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34158         * icall.cs: icall for Type.GetTypeCode ().
34159         * verify: a couple of fixes and disabled local initialization checks.
34161 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34163         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34165         * debug-helpers.c (mono_method_full_name): print the type of the
34166         runtime wrapper
34168         * metadata.c (mono_signature_hash): a hash function for signatures
34169         (mono_signature_hash): better hash algorithm
34171         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34173         * debug-helpers.c (mono_method_full_name): this can now generate
34174         method names with signatures
34176         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34177         method dont have this pointers.
34179 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34181         * reflection.c: fixup typebuilder tokens.
34182         * image.c: fix buglet.
34183         * marshal.h: remove whitespace.
34184         * metadata.h, metadata.c: reinstate code that was removed.
34185         * verify.c: handle catch directives and fix another couple of bugs.
34187 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34189         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34190         (mono_marshal_get_native_wrapper): make it comp. with the old code
34191         (mono_marshal_get_native_wrapper): support boolean
34192         (mono_marshal_get_managed_wrapper): support more types
34194 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34196         * class.c (class_compute_field_layout): compute class->blittable attribute.
34198 2002-07-09  Dick Porter  <dick@ximian.com>
34200         * threads.c: Make the thread cleaning up cope with threads that
34201         call ExitThread()
34203 2002-07-08  Radek Doulik  <rodo@ximian.com>
34205         * reflection.c (method_encode_code): use non-translated values to
34206         compute finally_start, this fixes exception handling on ppc, yay!
34208         * decimal.h (struct signscale): fix endianess
34210 2002-07-07  Radek Doulik  <rodo@ximian.com>
34212         * reflection.c: swap box_val and not val
34214 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34216         * reflection.c, reflection.h: handle full assembly info in type name.
34217         Handle Type arguments when loading custom attributes.
34218         * icall.c: updated to use new mono_reflection_type_from_name () method.
34220 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34222         * loader.c:
34223         (method_from_memberref): also print assembly name when method not found.
34225 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34227         * icall.c:
34228         (ves_icall_TypeGetProperties): fixed bug #27473. 
34230 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34232         * reflection.c: display image name and token when cannot find the
34233         .ctor for an attribute.
34235 2002-07-05  Martin Baulig  <martin@gnome.org>
34237         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34239 2002-07-04  Dick Porter  <dick@ximian.com>
34241         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34242         compile on mingw.  This will cause mingw builds to not wait for
34243         subthreads to terminate after the main thread does.  I've lodged a
34244         bug with the mingw developers for them to wrap OpenThread().
34246 2002-07-03  Dick Porter  <dick@ximian.com>
34248         * threads.c: Store thread IDs instead of handles, because
34249         GetCurrentThread() returns a pseudohandle and therefore stores
34250         useless values.  mono_thread_cleanup() continues checking the
34251         array of threads until it is empty, to cope with subthreads
34252         spawning new threads after the main thread has finished.
34254         * profiler.h:
34255         * profiler.c:
34256         * profiler-private.h: Pass the thread ID to thread profiler
34257         functions, instead of a handle
34259 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34261         * verify.c: fixes to make it more usable.
34262         * pedump.c: added --verify code to verify IL code in an assembly.
34264 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34266         * reflection.c: turn errors into warnings to allow compiling corlib.
34268 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34270         * reflection.c: add special cases to compile corlib.
34272 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34274         * reflection.c: handle properties with only a set method.
34276 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34278         * opcodes.h: add enum with opcodes in opval order.
34280 2002-07-01  Dick Porter  <dick@ximian.com>
34281         
34282         * object.h:
34283         * object.c (mono_runtime_run_main): Removed unneeded argument
34285 2002-06-28  Martin Baulig  <martin@gnome.org>
34287         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34289 2002-06-27  Dick Porter  <dick@ximian.com>
34291         * threads.c: Store the handle in both the parent thread and in the
34292         subthread, to minimise the time between starting a new thread and
34293         storing its ID.
34295 2002-06-26  Dick Porter  <dick@ximian.com>
34297         * appdomain.c (mono_runtime_cleanup): Close the socket library
34298         after all the threads have finished, not before
34300 2002-06-26  Martin Baulig  <martin@gnome.org>
34302         * debug-symfile.c (mono_debug_find_source_location): Added
34303         `guint32 *line_number' argument.  If it's not NULL, store the line number
34304         there and return the file name without the line number.
34306 2002-06-25  Dick Porter  <dick@ximian.com>
34308         * icall.c:
34309         * process.h:
34310         * process.c: Process forking and other support functions
34312 2002-06-25  Dick Porter  <dick@ximian.com>
34314         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34315         things dont happen when the image is closed.
34316         (mono_image_lookup_resource): Walk the resource section looking
34317         for a particular entry
34319         * cil-coff.h: PE resource section decoding
34321 2002-06-25  Dick Porter  <dick@ximian.com>
34322         
34323         * assembly.h:
34324         * assembly.c: 
34325         (mono_assembly_foreach): Accessor functions to walk the list of
34326         loaded assemblies
34327         (mono_assembly_set_main):
34328         (mono_assembly_get_main): Process methods need to know which
34329         assembly is the "main" one
34331         * object.c (mono_runtime_run_main): Record the main assembly
34333         * debug-helpers.c: Fix typo
34335 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34337         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34338         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34340 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34342         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34344 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34346         * image.c (do_mono_image_open): Initialize reference count,
34347         otherwise we leak the MonoImage.
34349 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34351         * reflection.c: small tweak to handle self-hosting.
34353 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34355         * reflection.c: fix type name parse code.
34357 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34359         * reflection.c: break out of the loop.
34360         * image.c: special case corlib.
34362 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34364         * reflection.c: add all the custom attrs at the end to ensure the
34365         ctors have been properly initialized when the attributes are defined
34366         in the current assembly.
34368 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34370         * reflection.c: handle correctly multiple-nested types.
34372 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34374         * row-indexes.h: fix typos.
34375         * reflection.c: adjust for typos and fix method_def_or_ref
34376         encoding in MethodImpl table.
34378 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34380         * reflection.c: fix entry point patching (thanks Serge!).
34382 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34384         * verify.c: add check for System.Exception
34386 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34388         * image.c, class.c: minifix for code just c&p'ed.
34389         * reflection.c: warning fix.
34390         * object.h, loader.h, domain.c: load also StringBuilder.
34392 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34394         * marshal.h, marshal.c: some support code to handle complex marshaling.
34396 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34398         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34399         Better signatures with vtable error dump.
34401 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34403         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34405 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34407         * icall.c (ves_icall_Type_GetField): impl.
34409 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34411         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34412         to retrieve a marshal description blob for a field or param.
34414 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34416         * reflection.h, reflection.c: change order of nested type emission
34417         to avoid table corruption. The NestedTypes table is sorted.
34418         * icall.c: change order of GetConstructor results to workaround mcs bug.
34420 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34422         * reflection.h, reflection.c: handle field and param marshal
34423         information.
34425 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34427         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34429 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34431         * reflection.c: fix call convention.
34433 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34435         * reflection.h, reflection.c: mono_image_get_memberref_token()
34436         takes a type instead of a class, now. Added
34437         mono_image_get_array_token() to create tokens for the special
34438         multi-dim array methods.
34440 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34442         * assembly.c: handle modules (no assembly table). Split
34443         loading references in its own function.
34444         * class.c: handle moduleref resolution scope.
34445         * image.c, image.h: cache module name in image.
34447 2002-06-07  Martin Baulig  <martin@gnome.org>
34449         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34450         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34452 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34454         * icall.c: more signature fixes that used uint instead of int.
34456 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34458         * reflection.c: fixed signature of field refs.
34460 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34462         * class.c, reflection.c: handle typerefs of nested types
34463         (both on read and when writing files).
34465 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34467         * icall.c: fix method signatures that tried to workaround the previous
34468         typo, d'oh!
34470 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34472         * debug-helpers.c: fix typo.
34474 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34476         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34477         rewrote the PE/COFF writing code (our programs are understood by the
34478         ms runtime, now).
34480 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34482         * gc.c, gc.h, icall.c: weakreference support.
34484 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34486         * Makefile.am, mono-config.c: use $(sysconfdir).
34488 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34490         * icall.c: changed default precision of Double.ToString() to 15.
34491         Fixed memory leak. Unified with Single.ToString.
34493 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34495         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34497 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34499         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34500         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34501         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34502         and myself.
34504 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34506         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34508 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34510         * reflection.c, socket-io.c: more compilation fixes.
34512 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34514         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34515         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34516         unicode.c: warning and compiler compatibility fixes.
34518 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34520         * class.h, metadata.c: fixed warnings/compilation errors.
34522 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34524         * Makefile.am, mono-config.c, mono-config.h: configuration file
34525         support routines.
34526         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34527         config file. Export methods to insert and lookup mappings.
34529 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34531         * reflection.c: handle types and boxed objects in custom attr
34532         constructors.
34534 2002-05-30  Martin Baulig  <martin@gnome.org>
34536         * debug-symfile.c
34537         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34539 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34541         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34542         to lookup the implmap row for a P/Invoke method.
34543         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34544         P/Invoke method from the runtime on an as needed basis.
34546 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34548         * metadata.c (mono_metadata_parse_signature): impl.
34550 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34552         * class.c: handle .pack directive.
34554 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34556         * object.c: initialize static fields with RVA data.
34558 2002-05-25  Martin Baulig  <martin@gnome.org>
34560         * debug-symfile.c
34561         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34563 2002-05-24  Martin Baulig  <martin@gnome.org>
34565         * debug-symfile.c
34566         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34567         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34568         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34570 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34572         * object.c: special case string ctros in invoke.
34573         * gc.c: silly whitespace changes.
34575 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34577         * threadpool.[ch]: impl. a threadpool that can
34578         be used by mint and mono.
34580 2002-05-22  Martin Baulig  <martin@gnome.org>
34582         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34583         The first argument is now a `MonoReflectionModuleBuilder *', the return
34584         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34585         `methods' field to get the method builder.  The `token' argument is the
34586         unfixed token.
34588         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34589         invalid characters instead of g_assert_not_reached()ing.  This seems
34590         to be the behaviour of mscorlib.
34592 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34594         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34595         Hestilow to fix bug #25104
34597 2002-05-21  Martin Baulig  <martin@gnome.org>
34599         * debug-symfile.c (mono_debug_find_source_location): New function.
34600         Looks up an IL offset in the line number table and returns the source
34601         location as a string.
34603 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34605         * icall.c:
34606         (mono_double_ToStringImpl): changed %f by %g until we have something
34607         better.
34609 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34611         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34612         parameters first in C#.
34614 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34616         * icall.c, reflection.h: added icall to get info about an event.
34618 2002-05-20  Radek Doulik  <rodo@ximian.com>
34620         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34621         endian
34622         (mono_value_box): don't use memcpy for small sizes on
34623         architectures with unaligned access
34625 2002-05-20  Martin Baulig  <martin@gnome.org>
34627         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34628         if `tb->parent == NULL'.
34629         (mono_reflection_create_internal_class): New function.  This is
34630         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34631         for enum types.
34633         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34634         New interncall.
34636 2002-05-19  Martin Baulig  <martin@gnome.org>
34638         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34639         argument to get the length, don't default to the array length.
34641 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34643         * assembly.c (mono_assembly_setrootdir): New function used to
34644         override the MONO_ASSEMBLIES directory.
34646 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34648         * icall.c: ValueType_GetHashCode() initialize local var.
34650 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34652         * reflection.c: sort custom attributes table.
34654 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34656         * reflection.c: support named args in custom attributes (write support).
34658 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34660         * reflection.c: fix finally position calculation.
34662 2002-05-15  Radek Doulik  <rodo@ximian.com>
34664         * reflection.c: fixed endianess at many places
34666         * icall.c (ves_icall_InitializeArray): comment out debug msg
34668 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34670         * object.c (mono_unhandled_exception): new function to handle
34671         unhandled exceptions.
34672         (mono_unhandled_exception): call the UnhandledException event.
34673         (mono_runtime_delegate_invoke): impl.
34675 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34677         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34678         returns the RVA, not the direct pointer to the data. Handle the case
34679         when the class size is fixed.
34681 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34683         * reflection.c: fix some endianess issues.
34685 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34687         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34689         * threads.c (mono_thread_init): added a callback which is invoked
34690         at thread start.
34692 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34693         
34694         * icall.c: make GetHashCode return non-negative values.
34696 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34698         * object.c, icall.c, gc.c: revert to address-based hashcode.
34700 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34702         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34704 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34706         * icall.c, class.c: special case <Module>.
34708 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34710         * icall.c: fix bug in GetNow().
34712 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
34714         * object.c (mono_runtime_class_init): make sure that we call all
34715         static class constructors.
34717 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34719         * reflection.c: sort methodsemantics table.
34721 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34723         * reflection.h, reflection.c: honour init locals setting.
34725 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
34727         * icall.c: copied Double ToStringImpl for Single ToStringImpl
34729 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34731         * reflection.c: support ContructorBuilders in attribute blob creation.
34733 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34735         * reflection.c: some changes to build a binary that can be run
34736         directly in windows.
34738 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34740         * loader.c: print a big message when an icall can't be found.
34742 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34744         * string-icalls.c: fix bug 24248.
34746 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34748         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
34749         icall.c, reflection.h: separate assembly loading by pathname and by
34750         assembly name. Use the MONO_PATH env var to search for assemblies.
34752 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34754         * assembly.c, image.h: add some support for assemblies
34755         with multiple modules.
34756         * class.c, class.h: export mono_class_from_typeref().
34757         * loader.c: remove duplicated code and use mono_class_from_typeref(),
34758         instead.
34760 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34762         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
34763         documentation says (the ECMA one is correct).
34765 2002-05-02  Dick Porter  <dick@ximian.com>
34767         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
34768         Don't name the synchronisation mutex.
34770 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
34772         * rand.c
34773         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
34774         Make the prototypes match.
34775         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
34776         Same.
34778         * icall.c
34779         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
34780         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
34781         all systems have tm.tm_zone, so use strftime() with %Z to print
34782         the timezone abreviation into a temp string.
34784         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
34785         rather than mono_array_addr() on a MonoString on Big Endian
34786         machines.
34788 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
34790         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
34791         fix bug 24041
34793 2002-04-30  Dick Porter  <dick@ximian.com>
34795         * socket-io.c: Cope with SOCKET being an integer rather than a
34796         pointer now.
34798         * threads.c: Added Thread_free_internal, to deal with thread
34799         handle cleanup.  Moved calls to handle_store() and handle_remove()
34800         to start_wrapper(), so each can only be called once.  Allocate
34801         synchronisation blocks with GC_malloc(), and use GC finalisation
34802         to close the handles.
34804         * icall.c: added System.Threading.Thread::Thread_free_internal
34806 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34808         * icall.c: support Environment.Exit, CommandLineArgs().
34810 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34812         * object.c, object.h: added mono_runtime_run_main () and
34813         mono_runtime_get_main_args () for use in System.Environment.
34815 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34817         * gc.c: fix thinko, enable actual finalization since the jit is now
34818         fixed.
34820 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34822         * gc.c, object.c: take into account that an object may be offset wrt the address
34823         returned by GC_malloc().
34825 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34827         * image.c: handle files without entries in the assembly table (modules).
34829 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
34831         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
34832         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
34833         allowed to be null when it's System.Object class setup.
34835 2002-04-27  Martin Baulig  <martin@gnome.org>
34837         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
34838         if `tb->parent == NULL' rather than crashing.
34840 2002-04-28  Nick Drochak  <ndrochak@gol.com>
34842         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
34843         calling acos() where asin() should have been called.
34845 2002-04-26  Martin Baulig  <martin@gnome.org>
34847         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
34848         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
34849         there's a subdirectory called `System', but we don't want to read that
34850         subdirectory as an assembly.
34852 2002-04-25  Martin Baulig  <martin@gnome.org>
34854         * debug-symfile.c: Reflect latest MonoString changes.
34856 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34858         * rand.c, rand.h: instance method icalls need to have an explicit
34859         this pointer as first argument in the C implementation.
34861 2002-04-25  Nick Drochak <ndrochak@gol.com>
34863         * icall.c: Fix typo in map for GetNonZeroBytes
34865 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34867         * string-icalls.c : String does now passes unit tests without any 
34868         errors, the following changes has been made:
34869         
34870         Implemented replace methods.
34871         Renaming of methods to (try) follow the standard.
34872         Fixed compare ordinal
34873         Made all memory allocated directly to function instead of via icall function.
34874         Small performance fix in is_in_array function
34875                         
34876  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
34878         c (mono_string_Internal_ctor_charp_int_int):
34879         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
34880         sindex < 0, throw ArgumentOutOfRangeException instead of
34881         ArgumentNullException.
34883         Added new check for length == 0, however
34884         I need to make it return String.Empty from the C code.
34885         
34886         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
34887         that calculate the length for us here.
34888         
34889         (mono_string_Internal_ctor_sbytep_int_int): Replaced
34890         mono_string_new_utf16 with mono_string_new, since value is utf8.
34892 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34894         * object.c: register the object for finalization if needed.
34895         Allocate one more char in the string for the terminating 0 char.
34897 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34899         * class.c, class.h, image.c: check if a type implemenst a destructor.
34900         Use the proper key for array class lookups.
34901         * icall.c: register the icalls in the System.GC class.
34902         * gc.c, gc.h: GC-related functions and icalls.
34904 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34906         * icall.c:
34907         * socket-io.c:
34908         * unicode.c: free some strings gotten from mono_string_to_utf8 and
34909         changed a couple of free () by g_free ().
34911         * decimal.c: one-liner in the comments for decimal2string ().
34913 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34915         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
34917 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34919         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
34920         * object.c (mono_runtime_invoke_array) : handle null in params
34922 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34924         * string-icalls.c: fixed bug in split (one off bug)
34926 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34928         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
34929         * icalls.c: added String::Equals as internal method
34931 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34933         * threads.c: fixed bug in the double interlocked functions
34935 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
34937         * threads.c: implemented all of the new interlocked icalls.
34938         * string-icalls.c: fix a bug in insert.
34939         * icalls.c: added the icalls for interlocked, removed old string functions.
34940         
34941 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34943         * loader.c: fix off-by-one error when reading argument names.
34945 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34947         * profiler.c: win32 counter implementation (untested).
34948         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
34949         (the latter needs testing and more complete impl. from win32 folks).
34951 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
34953         * object.c: mono_array_new_full workaround mono_array_class_get
34954         problem.
34956 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34958         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
34959         * object.h (mono_string_chars): Changed casting type.
34961 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34963         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
34964                            method signatures to use gunichar2 instead of gint16.
34966 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
34968         * object.h, object.c: domain-specific versions of mono_object_new and
34969         mono_array_new.
34971 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
34973         * object.c: changed String layout
34975         * string-icalls.c (mono_string_Internal_ctor_chara): added
34976         internal string constructors.
34978 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
34980         * threads.c: pass 'this' to the thread start routine.
34982 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34984         * string-icalls.c: fix IndexOf and LastIndexOf. Now
34985         InternalCompareStr don't call twice mono_string_cmp_char for the last
34986         character. Improved performance in mono_string_cmp_char.
34988 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34990         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
34991         code into its own library: libmonoruntime.
34993 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
34995         * object.h, object.c: changed array format so that szarrays do not
34996         require a bounds structure.
34997         * icall.c, appdomain.c: support for new szarray format.
34999 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35001         * metadata.c: compare also the retuns type when comparing signatures:
35002         we didn't do this as an optimization since really overloaded methods
35003         must differ also in the arguments, but this doesn't work with
35004         low-level IL code (or when using explicit conversion operators: see
35005         bug#23498 for an example).
35007 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35009         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35011 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35013         * icall.c: make MonoType::GetElementType its own icall.
35015 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35017         * icall.c: remove MonoMethod_get_Name().
35018         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35019         object.
35021 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35023         * string-icalls.c: optimized a few methods.
35025 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35027         * icall.c: added all new string internal calls
35028         * string-icalls.c: added, new string internal call implementation.
35029         * object.c: added mono_string_new_size for allocating a string a size
35031 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35033         * object.c (mono_object_isinst): use the same code as in the
35034         optimized x86 version.
35036 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35038         * profiler.c: TSC-based timer code (faster and more accurate).
35039         Not hooked up in configure, yet (set USE_X86TSC to 1).
35041 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35043         * profiler.c, profiler.h: track time spent compiling methods.
35044         * threads.c: track thread creation/destruction.
35046 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35048         * profiler.c, profiler.h, profiler-private.h: profiling interface
35049         and sample implementation. Moved here so that it can be used also by
35050         the jit.
35052 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35054         * reflection.c, reflection.h: keep types and other handles separate in
35055         the hash tables for referred tokens. Add guid for modules.
35057 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35059         * assembly.c: fix bugs found with valgrind.
35060         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35062 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35064         * threads: added icall support for getting current domain for
35065                    the thread.
35067 2002-04-13  Martin Baulig  <martin@gnome.org>
35069         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35070         (MonoDebugVarInfo): Added `index' field for register based addresses.
35071         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35072         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35073         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35074         `MonoDebugVarInfo *this_var'.
35076         * debug-symfile.c (relocate_variable): New static function to write
35077         a location description for a local variable or method parameter.
35079 2002-04-12  Martin Baulig  <martin@gnome.org>
35081         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35082         stack offset and begin/end scope address of a local variable.
35083         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35084         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35085         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35087         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35088         Added new relocation types for start/end scope of a local variable.
35090 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35092         * object.h: add mono_object_domain() macro.
35093         * reflection.c: handle typespecs.
35094         * icall.c: MonoMethod::get_Name() implementation.
35096 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35098         * icall.c: String::GetHashCode() icall implementation.
35100 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35102         * icall.c: String::IndexOfAny icall.
35103         * object.c, object.h: make array->max_length more useful.
35104         Intrduced mono_object_class() and mono_string_length() macros.
35106 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35108         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35109         instead of g_unichar_isdigit.
35111 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35113         * icall.c: Implement a simple Double.ToString().
35115 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35117         * appdomain.h: only io-layer.h is supposed to be included.
35118         * icall.c: explicitly import environ. Fix warning.
35120 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35122         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35123                 return true even if it's not Daylight Savings time.
35124                 Only return false for the case where the function isn't
35125                 implemented for a plaform (read Windows).
35127 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35129         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35130         data with a mutex.
35132 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35134         * mempool.c (mono_mempool_alloc): only use g_malloc when
35135         absolutely necessary.
35137 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35139         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35141         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35142         (mono_class_proxy_vtable): use domain mempool
35144 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35146         * appdomain.h, appdomain.c: split initialization that requires the
35147         execution engine support into mono_runtime_init().
35149 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35151         * class.c (mono_class_init): don't include vtable inside MonoClass
35152         to save some memory, gather some statistics.
35153         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35155 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35157         * icall.c: internalcall implementation for ValueType.Equals().
35159 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35161         * object.c (mono_message_init): moved 
35162         (mono_runtime_exec_main): new arch. independent impl.
35163         (mono_runtime_invoke_array): new method - like
35164         mono_runtime_invoke, but you can pass an array of objects.
35165         (mono_remoting_invoke): new arch. independent impl.
35166         (mono_message_invoke): new arch. independent impl.
35167         (mono_runtime_class_init): new arch. independent impl.
35168         (mono_runtime_object_init): new arch. independent impl.
35170 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35172         * metadata.c, object.c, reflection.c: documented the exported
35173         functions.
35175 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35177         * icall.c: simpler code to pass the assembly builder data to corlib.
35178         Implement GetNestedTypes() internalcall.
35180 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35182         * class.c: warn if a type can't be loaded.
35184 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35186         * image.h: typedef MonoImageOpenStatus
35187         * types.h: removed unused file
35188         
35189 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35191         * icall.c: Enum_ToObject accepts enum value arguments.
35193 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35195         * class.c: move initialization of properties, events and nested
35196         classes, so that they happen for interfaces, too.
35198 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35200         * icall.c: cleanup some ugly casts in Array_SetValue*.
35202 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35204         * icall.c: the values array fro enums is of the correct type, now.
35205         Implement (correctly) getFullName instead of assQualifiedName for
35206         MonoType.
35207         * reflection.h, reflection.c: added mono_type_get_name ().
35209 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35211         * assembly.c, image.h: for each MonoImage, record from wich assembly
35212         it was loaded.
35213         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35214         Make Type.Assembly work.
35216 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35218         * debug-symfile.h: use char* instead of gpointer to avoid
35219         unnecessary casts.
35221         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35223         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35224         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35226 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35228         * icall.c (mono_message_init): impl. (code cleanup)
35229         (ves_icall_InternalExecute): impl. FieldGetter
35231         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35232         defined we call all (non-static)methods through the vtable. 
35234 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35236         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35237         finalizer even though the memory is still referenced (and the chunk of
35238         memory is not freed).
35240 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35242         * assembly.c: fix brokeness.
35244 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35246         * class.c: kill some warnings. Check explicit interface method
35247         implementation also without considering the namespace.
35248         Load also literal strings in static class data.
35250 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35252         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35253         (default_assembly_name_resolver): Make the resolver take the
35254         "base" directory where the assembly was originally defined, so we
35255         can load DLLs that are in the same directory as the assembly that
35256         is being referenced.
35258 2002-03-28  Dick Porter  <dick@ximian.com>
35260         * file-io.h: 
35261         * file-io.c:
35262         * socket-io.c: 
35263         * unicode.h: 
35264         * unicode.c: Warning cleanups
35266 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35268         * object.h, reflection.h: use the correct type instead of MonoObject.
35270 2002-03-28  Martin Baulig  <martin@gnome.org>
35272         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35273         (mono_debug_update_symbol_file): Initialize classes if necessary.
35275 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35277         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35278         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35280 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35282         * assembly.h: fix function prototype.
35283         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35284         * mono-endian.h: use const cast.
35286 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35288         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35290 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35292         * loader.c: don't assert when a typeref can't be loaded, give
35293         a chance to the runtime to trow an exception instead.
35294         * loader.h: fix warning.
35296 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35298         * class.c (mono_class_proxy_vtable): added proxy support
35300 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35302         * icall.c: removed last of PAL calls, added System.Environment
35303         * file-io.h, file-io.c: MonoIO implementation
35304         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35306 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35308         * appdomain.c: do not use the byte marker in ldstr table lookup.
35309         * debug-helpers.c: allow two ':' to separate class and method name.
35310         * object.c: allocate arrays bounds with the GC, too.
35311         * verify: add a few more checks.
35313 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35315         * reflection.c: output also literal strings. Allocate parameter data
35316         with GC_malloc() (thanks, Martin, for catching this!).
35318 2002-03-26  Martin Baulig  <martin@gnome.org>
35320         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35321         include the `this' offset in the `param_offsets'.
35323 2002-03-25  Martin Baulig  <martin@gnome.org>
35325         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35326         mono_debug_get_class() function to get the classes. Added new
35327         relocation types for arrays and strings.
35328         (mono_debug_get_class): New static function to search in all
35329         referenced assemblies for a metadata token.
35331         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35333 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35335         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35336         hold gc-allocated objects. Make the string heap a stream like the
35337         others. Removed duplicated code when writing stream info.
35338         Added asserts to catch possible buffer overflows. Set the sorted map
35339         for tables that need sorting. Added some documentation.
35341 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35343         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35344         for interned strings and vtables.
35346 2002-03-24  Martin Baulig  <martin@gnome.org>
35348         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35349         it in the array since it was created with g_slist_prepend().
35351 2002-03-24  Martin Baulig  <martin@gnome.org>
35353         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35354         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35355         (mono_debug_method_from_token): Renamed to
35356         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35357         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35359         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35360         relocation types.
35362         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35364 2002-03-24  Martin Baulig  <martin@gnome.org>
35366         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35367         (mono_debug_method_from_token): New func.
35369         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35370         New interncall, calls mono_debug_local_type_from_signature().
35371         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35372         calls mono_debug_method_from_token().
35374 2002-03-23  Martin Baulig  <martin@gnome.org>
35376         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35377         specifies the number of bytes to be converted, not the array size.
35378         Return the number of chars, not the number of bytes.
35379         (ves_icall_iconv_get_chars): The `byteCount' argument
35380         specifies the number of bytes to be converted, not the array size.
35382 2002-03-23  Martin Baulig  <martin@gnome.org>
35384         * reflection.h (MonoReflectionSigHelper): New type.
35386         * reflection.c (mono_reflection_sighelper_get_signature_local),
35387         (mono_reflection_sighelper_get_signature_local): New functions.
35389         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35390         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35391         interncalls.
35393 2002-03-23  Martin Baulig  <martin@gnome.org>
35395         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35396         is_writeable is set.
35397         (mono_raw_buffer_update): New function to write the modified map
35398         back to disk.
35400         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35402         * debug-symfile.c (mono_debug_update_symbol_file): Call
35403         mono_raw_buffer_update() when done writing.
35405 2002-03-23  Martin Baulig  <martin@gnome.org>
35407         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35409         * debug-symfile.c: Added support for arguments and local variables.
35411 2002-03-23  Dick Porter  <dick@ximian.com>
35413         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35414         protected by ifdefs, hence breaking the w32 build.
35416 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35418         * object.c: implement is_interned() the right way.
35420 2002-03-21  Martin Baulig  <martin@gnome.org>
35422         * debug-symfile.[ch]: New files to handle debugging information
35423         files. There's also support to dynamically update these symbol
35424         files to include machine dependent information.
35426 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35428         * threads.c (mono_thread_create): new function to create thread
35429         from C
35431 2002-03-20  Martin Baulig  <martin@gnome.org>
35433         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35434         method is a constructor.
35435         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35436         points to ves_icall_InternalInvoke().
35438 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35440         * file-io.c: Flush shouldn't throw exceptions.
35442 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35444         * file-io.c: FileStream flush support; FileSetLength now
35445         restores file pointer.
35447 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35449         * class.c: set image for pointer classes.
35451 2002/03/19  Nick Drochak <ndrochak@gol.com>
35453         * sysmath.c: Forgot one.
35455 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35457         * sysmath.c: Avoid redefining existing names.
35459 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35461         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35462         handled by runtime as icall rather than dllimport from libm.so
35463         * file-io.c, file-io.h: fixed handle argument type.
35465 2002-03-18  Dick Porter  <dick@ximian.com>
35467         * reflection.c (mono_image_get_type_info): rename interface to
35468         iface, because of "#define interface struct" on windows.
35470 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35472         * class.c, class.h: rename and export mono_ptr_class_get().
35473         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35474         * reflection.c, reflection.h, icall.c: better/saner type name
35475         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35476         method signatures.
35478 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35480         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35482         * icall.c (ves_icall_InternalInvoke): impl.
35484 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35486         * reflection.c: output the interface map table, too.
35488 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35490         * class.c (class_compute_field_layout): separate computation of 
35491         static field layout
35493 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35495         * icall.c: added System.Buffer support.
35496         * file-io.c: moved file icalls from PAL to FileStream.
35498 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35500         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35502 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35504         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35506 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35508         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35510 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35512         * debug-helpers.{c,h}: moved here from monograph some useful functions
35513         to locate a method by name/signature in a class or image. Included
35514         also a small and flexible IL disassembler.
35516 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35518         * reflection.c: fixup tokens in methods with small header size, too.
35520 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35522         * object.c (mono_string_to_utf8): remove assert(!error), instead
35523         print a warning. 
35525 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35527         * icall.c: update to the new mono_Array_class_get interface.
35529 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35531         * appdomain.c, object.c: Boehm-GC enable.
35532         * icall.c: make get_data_chunk() support split data requests.
35533         Ensure a class is initialized in more cases. Return only the first
35534         property found in GetProperties() or the compiler gets confused. 
35535         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35536         * reflection.h, reflection.c: add fixup mechanism for field and method
35537         tokens. Initialize assembly->typeref in a single place. Output
35538         properties after events. Support custom attributes for events, too.
35539         Typo fix for paramter custom attrs.
35541 2002-03-07  Martin Baulig  <martin@gnome.org>
35543         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35545 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35547         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35549 2002-03-06  Martin Baulig  <martin@gnome.org>
35551         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35552         non-zero lower bounds. See testcases #F10-#F13.
35554 2002-03-05  Martin Baulig  <martin@gnome.org>
35556         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35558         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35559         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35560         here.
35561         (ves_icall_System_Array_SetValue): Likewise.
35562         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35563         as argument and does the actual work. This function is used when copying a
35564         multi-dimensional array.
35565         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35566         now do all the widening conversions of value types.
35567         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35569 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35571         * class.c: remove some magic numbers and use the smbolic names,
35572         instead. Added init_events() to load event info at class init time.
35573         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35574         and mono_metadata_methods_from_event().
35575         * reflection.h, reflection.c: added support for writing out the evnets
35576         related information.
35578 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35580         * reflection.h, icall.c: use a different method (GetInterfaces)
35581         to gather interface info and add isbyref, isprimitive and
35582         ispointer to the ves_icall_get_type_info() return value.
35584 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35586         * class.h: stared adding support for events.
35587         * icall.c: split find_members implementation. Added debug icall to get
35588         the address of an object.
35589         * reflection.c: handle TypeBuilders in mono_type_get_object().
35591 2002-03-01  Martin Baulig  <martin@gnome.org>
35593         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35594         ArgumentOutOfRangeException(), not an ArgumentException().
35595         (ves_icall_System_Array_GetLowerBound): Likewise.
35596         (ves_icall_System_Array_GetValue): Improved argument checking.
35597         (ves_icall_System_Array_SetValue): Improved argument checking.
35599 2002-03-01  Martin Baulig  <martin@gnome.org>
35601         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35602         called with invalid arguments rather than just dying with g_assert().
35603         (ves_icall_System_Array_SetValue): Likewise.
35604         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35605         raise a NotImplementedException instead.
35606         (ves_icall_System_Array_GetLength): Added argument checking.
35607         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35609 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35611         * object.h (mono_assert): new macros mono_assert and
35612         mono_assert_not_reached
35614 2002-02-28  Martin Baulig  <martin@gnome.org>
35616         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35617         and "System::String::IsInterned" to "System::String::_IsInterned".
35619 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35621         * icall.c: remove hacks for typebuilder. Added icall to create a
35622         modified type from a tybebuilder.
35623         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35624         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35625         to create a backing MonoClass for a TypeBuilder.
35627 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35629         * class.c, class.h: more refactoring of class init.
35630         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35632 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35634         * marshal.c, marshal.h: start of marshaling interface.
35636 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35638         * icall.c: fix order in assembly qualified name icall.
35640 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35642         * class.c: do not free str, since we store it in the hash table.
35643         * reflection.h: add label field to MonoILExceptionInfo.
35644         * reflection.c: handle references to more than one assembly. Handle
35645         case when there isn't a module created in the assembly.
35647 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35649         * class.c: Fix typo. Start refactoring of class init code.
35651 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35653         * appdomain.c: exit with 1 on error.
35654         * class.c: we already have the name in MonoClassField.
35655         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35656         MonoStreamHeader instead of an offset of image->raw_metadata.
35658 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35660         * appdomain.c (mono_init): Be even more descriptive about the error.
35662 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35664         * appdomain.c: give the user an informative message when corlib can't
35665         be loaded.
35667 2002-02-26  Martin Baulig  <martin@gnome.org>
35669         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35670         New icall to get the time zone data.
35672 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35674         * reflection.c: set virtual and raw size of section correctly.
35675         * threads.c: transfer domain information to newly created threads.
35677 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35679         * class.c: when instancing a class in a domain, load the default
35680         vaules for static fields from the constant table. Fix System.Enum to
35681         not be an enum.
35682         * icall.c: implement Object::GetType() internalcall. Implemented
35683         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35684         Fixed checking of binding flags in find_members().
35685         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35686         * reflection.c: handle enumerations when writing to the constant
35687         table. Use a different object cache for types.
35690 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35692         * object.c (mono_object_isinst): fix for arrays
35694         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35696 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35698         * object.c: don't use mprotect ()  and fix intern pool hash table
35699         lookup for big endian systems.
35701 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35703         * icall.c: change type_is_subtype_of () signature.
35705 2002-02-21  Mark Crichton  <crichton@gimp.org>
35707         * rand.c, rand.h: Added random number generator for
35708         System.Security.Cryptography classes.
35710         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35712         * icall.c: Added System.Security.Cryptography calls.
35714 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
35716         * class.c, icall.c, metadata.c: better support for pointer types.
35717         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
35718         * reflection.c: Add support for getting custom attrs for properties
35719         and simplify some code.
35721 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35723         * icall.c: change getToken () and add custom attribute GetBlob()helper
35724         method.
35725         * reflection.h: add custom attrs array to the reflection builder structures.
35726         * reflection.c: encode and emit custom attributes for all the relevant
35727         reflection objects. Cache fieldref and methodref tokens. Change
35728         mono_image_create_token() interface to take a MonoDynamicAssembly.
35729         More complete custom attributes decoder. Load custom attributes for
35730         Assembly, Field, Method and Constructor objects, too. Make the
35731         returned array an Attribute[] one, not object[]. Added
35732         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
35733         custom attribute constructor.
35735 2002-02-20  Dick Porter  <dick@ximian.com>
35737         * icall.c:
35738         * rawbuffer.c:
35739         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
35740         problem code out for now).
35742 2002-02-19  Radek Doulik  <rodo@ximian.com>
35744         * object.c (mono_ldstr): use hash table to avoid multiple swapping
35746 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
35748         * icall.c: register the GetCustomAttributes method.
35749         * object.c, object.h: add mono_string_new_len ().
35750         * reflection.h, reflection.c: added mono_runtime_invoke(),
35751         mono_install_runtime_invoke(). Added
35752         mono_reflection_get_custom_attrs () to load custom attributes and
35753         create the attribute objects.
35755 2002-02-19  Dick Porter  <dick@ximian.com>
35756         * threads-dummy-types.c:
35757         * threads-dummy-types.h:
35758         * threads-dummy.c:
35759         * threads-dummy.h:
35760         * threads-pthread-types.c:
35761         * threads-pthread-types.h:
35762         * threads-pthread.c:
35763         * threads-pthread.h:  Deleted obsolete files
35765 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
35767         * class.c (mono_class_vtable): runtime init the class when we
35768         allocate static class data.
35770         * icall.c (ves_icall_System_Array_SetValue): check for null values.
35772         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
35773         and String - but we will need generic marshalling support in the
35774         future. 
35775         (mono_init): set the domain name in a ms compatible way
35777         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
35778         String[].
35780 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
35782         * object.c (mono_array_clone): use alloca() instead of g_malloc  
35783         for sizes
35785         * appdomain.c (mono_domain_unload): impl.
35787 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35789         * appdomain.c, object.c: fix intern pool implementation.
35790         * class.c: fix alignment code.
35792 2002-02-16  Radek Doulik  <rodo@ximian.com>
35794         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
35795         and s2 > s1, just copy lower bytes to be compatible with little
35796         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
35797         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
35799         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
35800         force big_endian to be 1 for big endian machines 
35801         (ves_icall_iconv_new_decoder): ditto
35803 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
35805         * socket-io.c (convert_sockopt_level_and_name): If the system
35806         doesn't define SOL_IP or SOL_TCP, get them by hand using
35807         getprotobyname() and caching the values (because this could be a
35808         slow operation).
35809         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
35810         Use the appropriate struct when the system does support it. Ie,
35811         not all systems have struct ip_mreqn so use struct ip_mreq when
35812         appropriate.
35814 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
35816         * reflection.c: handle finally clauses.
35818 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
35820         * socket-io.c: use g_snprintf() instead of snprintf.
35822 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35824         * reflection.c (mono_param_get_objects): Cast second argument to
35825         mono_method_get_param_names to a const char** to silence the
35826         compiler warning.
35828         * appdomain.c (mono_domain_assembly_open): Put parens around the
35829         truth statement in the for-loop.
35831         * unicode.c (iconv_convert): Got rid of a compiler warning about
35832         int i being unused when the system has a new iconv.
35833         (iconv_get_length): Same.
35835         * image.c (load_class_names): Cast the second argument to
35836         g_hash_table_insert() to char* to hush compiler warnings about the
35837         arg being a const.
35838         (mono_image_open): Same here.
35840         * socket-io.c: Don't conditionally include sys/filio.h or
35841         sys/sockio.h here anymore since we now get them from
35842         io-layer/io-layer.h
35843         (inet_pton): If the system doesn't support inet_aton, implement
35844         using inet_addr and also #define INADDR_NONE if it isn't defined
35845         by the system.
35847 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
35849         * metadata.c, metadata.h: added function to get packing and size info
35850         of a typedef.
35851         * reflection.h, reflection.c: handle field RVA data. Save info about
35852         the table layout if needed. Assign typedef indexes to all the types
35853         before dumping the info about them to avoid forward reference problems.
35855 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
35857         * socket-io.c (convert_sockopt_level_and_name): ifdef
35858         SO_ACCEPTCONN because it is not defined on my system (old debian)
35860 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35862         * opcode.c: use stddef.h to get NULL.
35864 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35866         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35867         for FIONBIO, FIONREAD and SIOCATMARK.
35868         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35869         define INADDR_NONE and besides, inet_addr() is deprecated and
35870         should not be used. Use inet_pton() instead - it also has the
35871         added bonus that it can easily handle IPv6 addresses as well.
35872         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35874 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35876         * decimal.c: remove _MSC_VER conditional.
35878 2002-02-13  Dick Porter  <dick@ximian.com>
35880         * socket-io.c: 
35881         * icall.c: Internal calls for Blocking, Select, Shutdown,
35882         GetSocketOption and SetSocketOption
35884 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35886         * assembly.cs: better resolver: use it instead of some kludgy
35887         code.
35889 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
35891         * reflection.c: the best way to speed-up the compiler is to avoid
35892         infinite loops.
35894 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
35896         * class.c (mono_class_vtable): changed the object layout
35897         (obj->vtable->class). 
35898         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
35900 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35902         * assembly.c: look for assemblies in the assembly dir, too.
35904 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35906         * class.c: fix thinko in mono_class_from_type().
35908 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35910         * exception.h, exception.c: added TypeLoadException.
35911         * object.h, object.c: added mono_array_clone ().
35912         * icall.c: handle throwOnError in AssemblyGetType().
35913         Added Array.Clone().
35914         * opcode.h, opcode.c: use a single value for the opcode val.
35915         Compile fix for non-gcc compilers.
35917 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
35919         * opcodes.c, opcodes.h: export interesting info about opcodes.
35921 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
35923         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
35924         icalls. 
35926         * class.c (class_compute_field_layout): set element_class for enums
35927         (mono_class_create_from_typedef): set element_class for normal classes
35929         * icall.c (ves_icall_System_Enum_get_value): impl.
35931         * class.c (mono_class_create_from_typedef): do not set valuetype
35932         flag for System.ValueType and System.Enum
35934 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
35936         * unicode.c (iconv_convert): fix big endian problem.
35938 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35940         * class.c: add asserts if we are ever going to scribble over memory.
35941         * socket-io.c: not all systems have AF_IRDA defined.
35943 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
35945         * class.c (class_compute_field_layout): do not consider static
35946         fields to compute alignment
35948 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
35950         * appdomain.c (mono_appdomain_get): impl.
35951         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
35953 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35955         * icall.c: ignore "file://" prefix when loading an assembly.
35957 2002-01-23  Dick Porter  <dick@ximian.com>
35959         * socket-io.c:
35960         * icall.c:
35961         * Makefile.am: Added socket support
35963 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35965         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
35966         code back.  This should return the assemblies that are loaded by
35967         the runtime on behalf of an application domain. 
35969         The current implementation is still broken, it just returns every
35970         assembly loaded, but until we get real applications domain this
35971         will do.
35973 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
35975         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
35976         AppDomain object.
35978 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35980         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
35981         the mono_class_from_name lookup.
35982         (ves_icall_get_parameter_info): ditto.
35983         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
35984         method.
35985         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
35987 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
35989         * class.c: load also nested classes on class init.
35990         System.ValueType instance methods gets passed boxed
35991         values, unless methods in derived classed that get a pointer to the
35992         data.
35993         * icall.c: use better name parsing code in GetType().
35994         * image.c, image.h: add mono_image_loaded ().
35995         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
35996         * reflection.c, reflection.h: added mono_reflection_parse_type().
35998 2002-01-22  Veronica De Santis <veron78@interfree.it>
36000         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36001         * threads.c : Added the implementation of internal calls for events
36002         * threads.h : Added prototypes of internal calls for events
36003         
36004 2002-01-21  Radek Doulik  <rodo@ximian.com>
36006         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36008 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36010         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36011         (mono_class_value_size): use min_align
36013 2002-01-20  Dick Porter  <dick@ximian.com>
36015         * threads.h:
36016         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36017         so it compiles on w32.
36019 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36021         * metadata.c (mono_type_stack_size): impl.
36023         * class.c (mono_class_get_field): impl. memberref token
36025 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36027         * icall.h : Added the internal calls mapping for CreateMutex_internal
36028                     and ReleaseMutex_internal.
36029         * threads.h : Added the prototype of mutexes internal calls.
36030         * threads.c : Added the implementations of mutexes internal calls.
36032 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36034         * metaparse.h: removed unused file.
36035         * reflection.c, reflection.h: added stream_data_align () function 
36036         to align data in streams and keep stream aligned. Add support for
36037         exception support in method headers.
36039 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36041         * unicode.c: make iconv_convert () return the number of bytess written
36042         in the output buffer.
36044 2002-01-15  Dick Porter  <dick@ximian.com>
36045         * threads.c: Make the runtime's idea of infinite timeouts coincide
36046         with the class library's
36048         Fix a particularly egregious bug in mono_thread_cleanup(). That
36049         code was so utterly bogus it must have been written on a Monday.
36051 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36053         * reflection.h: add subtypes field to TypeBuilder.
36054         * reflection.c: encode constants for literal fields.
36055         Handle subtypes. Fix user string token (and add a zero byte)
36056         at the end.
36057         
36058 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36060         * class.c (mono_class_init): bug fix: assign slot numbers for
36061         abstract methods.
36063 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36065         * reflection.c: don't try to output a code RVA for abstract methods.
36066         Small fixes for method header format. Output parameter info to the
36067         ParamDef table. Save method overriding info to MethodImpl table.
36068         Fix property support. Allow typedef.extends to be a type in the
36069         building assembly.
36070         * verify.c: fix off-by-one error.
36072 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36074         * class.c: fix mono_class_from_mono_type () for szarray types.
36075         Remove unused cache check in mono_class_from_type_spec().
36076         * icall.c: *type_from_name () functions handle simple arrays and byref.
36077         * reflection.c: handle byref and szarray types. Handle methods without
36078         body (gets P/Invoke compilation working). Handle types and fields in
36079         get_token ().
36080         * reflection.h: add rank to MonoTypeInfo.
36082 2002-01-10  Dick Porter  <dick@ximian.com>
36084         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36085         internal calls
36087 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36089         * icall.c: initialize class in type_from_handle ().
36090         Loop also in parent classes for get_method ().
36091         * reflection.c: properly encode class and valuetype types.
36092         Start on encoding TypeBuilder types. Handle fieldrefs.
36093         Use correct length when registering a user string.
36094         Handle ConstructorBuilder and MonoMethod in get_token ().
36095         Make mono_type_get_object () aware of cached types.
36096         * object.c: back out change to mono_string_new ().
36098 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36099         * object.c: mono_string_new should return a NULL when the string 
36100         passed in is NULL -- not try to deference it.
36101         
36102 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36104         * icall.c: hack to make IsSubType work for TypeBuilders.
36105         * reflection.c: emit constructors before methods.
36106         Retrieve param names in mono_param_get_objects().
36108 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36110         * Makefile.am: fix list of headers and sources so automake 1.5
36111         doesn't complain. Removed \# at end of list.
36113 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36115         * reflection.c: get token for a method ref. Set return type of
36116         constructor to void.
36117         * loader.c: debug message.
36118         * class.c: typo fix.
36120 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36122         * icall.c: fix array init with rank > 1. FindMembers
36123         loops in parent class as well.
36124         * image.c: do not insert nested types in name cache.
36125         * reflection.c: warning fix.
36126         * reflection.h: add override method (for interface impl).
36128 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36130         * metadata.c: fix customattr decoding.
36132 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36134         * rawbuffer.cs: Added native Win32 implementation, avoids using
36135         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36137 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36139         * class.c: make the low-level routines handle the cache.
36141 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36143         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36145 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36147         * class.c: fix mono_array_element_size() for objects.
36148         * class.h, class.c: add properties to MonoClass and load them
36149         at init time.
36150         * icall.c: check with isinst() when assigning a value to an array
36151         instead of requiring the classes to match exactly.
36152         Implemented icall for System.Type::GetType().
36153         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36154         enums. Handle bindingflags when looking for methods and fields.
36155         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36156         and mono_metadata_methods_from_property().
36157         * reflection.h, reflection.c: added structures for propreties,
36158         parameters and enums. Implemented mono_property_get_object() and
36159         mono_param_get_objects().
36161 2001-12-18  Dick Porter  <dick@ximian.com>
36163         * file-io.c: Use mono_string_to_utf16() instead of
36164         mono_string_chars()
36166         * object.c: Added mono_string_to_utf16(), which copies the non
36167         NULL-terminated MonoString into a new double-null-terminated
36168         buffer.
36170 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36172         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36174 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36176         * file-io.c: raise exceptions if handle is invalid.
36178 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36180         * assembly.c: yet another check for mscorlib.
36181         * class.c, class.h: load nesting info for classes.
36182         * icall.c: many new functions to support the Reflection classes.
36183         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36184         * reflection.h, reflection.c: mono_image_create_token(),
36185         mono_assembly_get_object(), mono_type_get_object(),
36186         mono_method_get_object(), mono_field_get_object(): methods to return
36187         objects that parallel the C representation of assemblies, types,
36188         methods, fields.
36190 2001-12-11  Dick Porter  <dick@ximian.com>
36192         * icall.c:
36193         * file-io.c: Internal calls for file IO.
36195 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36197         * tabledefs.h: missing FileAttributes.
36198         * verify.h, verify.c: use is_valid_string () to simplify and check for
36199         valid strings more correctly. Fix warnings and speeling.
36200         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36201         Check code: branches, maxstack, method calls.
36203 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36205         * object.c (mono_object_allocate): removed static, so that the jit
36206         can allocate value types.
36208         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36210 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36212         * class.c: init enum types right away and register the
36213         token->MonoClass map in mono_class_create_from_typedef ().
36214         * verify.h, verify.c: first cut of the verifier.
36215         * pedump.c: add --verify switch to verify metadata tables.
36216         * tabledefs.h: add some missing enums.
36218 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36220         * class.c (mono_install_runtime_class_init): impl.
36221         (mono_class_init): renamed mono_class_metadata_init to
36222         mono_class_init, also removed the metadata_inited flag
36224         * object.c (mono_object_isinst): use faster algorithm
36226 2001-11-30  Radek Doulik  <rodo@ximian.com>
36228         * mono-endian.h: reverted last change
36229         added function prototypes
36231         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36232         add mono-endian.c back
36234         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36235         for unaligned access, I've mistaked it with endianess. I am
36236         sorry.
36237         (mono_read16): fix reverted endianess
36238         (mono_read64): ditto
36239         (mono_read32): ditto
36241 2001-11-30  Dick Porter  <dick@ximian.com>
36243         * exception.c: Implement mono_exception_from_name()
36245 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36247         * metadata.h, metadata.c: remove params_size and locals_size and their
36248         calculation from the metadata code: they are only usefult to the
36249         interp.
36251 2001-11-29  Radek Doulik  <rodo@ximian.com>
36253         * object.c (mono_ldstr): swap bytes here, it's probably not the
36254         best place, but works for me now, I'll redo it once I know mono
36255         better, also note that I add PROT_WRITE and don't reset back, also
36256         note that it's only affects big endians, so x86 should be OK
36258         * mono-endian.h (read16): use just glib macros for both endians
36260         * mono-endian.c: removed as glib macros are used in in
36261         mono-endian.h so we don't need to care about endianess for read
36262         macros as glib does that for us already
36264 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36266         * class.h, class.h: take minimum alignment into consideration so
36267         that the fields of a class remain aligned also when in an array.
36269 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36271         * loader.h, loader.c: add mono_method_get_param_names().
36272         * class.c: 0-init class fields.
36274 2001-11-26  Dick Porter  <dick@ximian.com>
36276         * icall.c:
36277         * threads-types.h:
36278         * threads.c: New file that handles System.Threading on all platforms
36280         * object.c: 
36281         * object.h: Remove the synchronisation struct from MonoObject,
36282         replace it with a pointer that gets initialised on demand
36284         * Makefile.am: Replace all the system-specific threading code with
36285         a single file that uses the new wrapper library
36287 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36289         * class.c, class.h: add mono_install_trampoline() so that the runtime
36290         can register a function to create a trampoline: removes the ugly
36291         requirement that a runtime needed to export arch_create_jit_trampoline.
36292         * object.h, object.c: added mono_install_handler() so that the runtime
36293         can install an handler for exceptions generated in C code (with
36294         mono_raise_exception()). Added C struct for System.Delegate.
36295         * pedump.c: removed arch_create_jit_trampoline.
36296         * reflection.c: some cleanups to allow registering user strings and
36297         later getting a token for methodrefs and fieldrefs before the assembly
36298         is built.
36299         * row-indexes.h: updates and fixes from the new ECMA specs.
36301 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36303         * class.h, class.c: add enum_basetype field to MonoClass.
36304         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36305         to get index in the constant table reated to a field, param or
36306         property.
36307         * reflection.h, reflection.c: handle constructors. Set public-key and
36308         version number of the built assembly to 0.
36309         * row-indexes.h: update from new ECMA spec.
36311 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36313         * class.h, class.c: add a max_interface_id to MonoClass.
36314         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36315         since it's used to do that. Added mono_type_type_from_obj().
36316         Make GetType() return NULL instead of segfaulting if the type was not
36317         found. Handle simple arrays in assQualifiedName.
36318         * object.h: add a struct to represent an Exception.
36319         * reflection.c: output call convention in method signature.
36320         Add code to support P/Invoke methods and fixed offsets for fields.
36322 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36324         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36325         the value.
36326         * icall.c: use mono_array_addr instead of array->vector: fixes the
36327         reflection image writing.
36328         * reflection.c: init call convention byte to 0 in method signature.
36329         Encode the property signature. Don't output property-related methods
36330         twice. Really process the properties for a type (don't cast a field to
36331         a property, my mom always told me that).
36332         Fix 64 bit issues in pointer alignment in a different and more
36333         readable way.
36335 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36337         * loader.h: Removed type class from MonoDefaults, added monotype
36339         * loader.c: Loaded MonoType, removed loading of Type
36341         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36342         and fills in System.Type._impl with a RuntimeTypeHandle rather
36343         than the actual MonoClass *
36345         (ves_icall_type_from_handle): change from type_class to
36346         monotype_class
36348         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36349         implemented
36351         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36352         implemented
36354         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36356         (ves_icall_System_Reflection_Assembly_GetType): implemented
36358         (ves_icall_System_MonoType_assQualifiedName): implemented
36360         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36362 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36364         * assembly.c (mono_assembly_open): Implement a cache for the
36365         assemblies. 
36367         (mono_assembly_close): only destroy the assembly when the last
36368         reference is gone.
36369         
36370 2001-11-09  Dick Porter  <dick@ximian.com>
36372         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36374 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36376         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36378 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36380         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36381         from Martin Weindel.
36382         * object.h: add mono_string_chars ().
36384 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36386         * reflection.c (build_compressed_metadata): Eliminates warnings
36387         and uses 64-bit clean code.
36389         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36390         (mono_type_equal): Change signature to eliminate warnings.
36392 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36394         * icall.c, loader.c: remove the internalcall array constructors.
36395         Changes to match the new MonoArray structure.
36396         * object.h, object.c: an array object doesn't allocate an extra
36397         vector. Add mono_array_new_full () to create jagged arrays easily.
36399 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36401         * metadata.h, metadata.c: add mono_metadata_field_info () to
36402         retreive all the info about a field from vairous tables.
36403         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36404         * class.h, class.c: augment MonoClassField with more info.
36405         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36406         policy and load a field's RVA if needed.
36408 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36410         * class.c (mono_class_metadata_init): create a trampoline for all
36411         virtual functions instead of actually compiling them.
36413 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36415         * class.h, class.c: include name in MonoClassField.
36416         * class.c: fix fundamental type of System.Object and System.String.
36417         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36418         tokens in ldtoken.
36419         * icall.c: remove internalcalls for the Reflection stuff that is now
36420         done in C# code.
36421         * loader.c: mono_field_from_memberref () implementation.
36422         * mono-endian.c: thinko (s/struct/union/g).
36423         * object.c, object.h: make the mono_string_* prototypes actually use
36424         MonoString instead of MonoObject.
36425         * reflection.c, reflection.h: updates for changes in the reflection
36426         code in corlib: we use C structures that map to the actual C# classes.
36427         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36428         fat method header if needed and use the info from the ILGenerator for
36429         methods. Handle fields in types. Misc fixes.
36431 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36433         * class.c (mono_class_metadata_init): bug fix: always allocate
36434         space for static class data
36436 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36438         * class.c (mono_compute_relative_numbering): use relative
36439         numbering to support fast runtime type checks.
36441 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36443         * class.c (mono_class_create_from_typeref): added debugging output
36444         to print class name when MonoDummy is returned instead of real class
36446 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36448         * class.c (mono_class_metadata_init): interface offset table now
36449         contains pointers into the vtable - this is more efficient for the jit
36451 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36453         * class.c (mono_class_metadata_init): use a temporary vtable (the
36454         old algorithm only worked for the interpreter, but not for the jit)
36456 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36458         * loader.c (method_from_memberref): use mono_class_get to get the
36459         class of an array instead of using System.Array directly.
36460         (mono_get_method): also add MEMBERREF methods to the method cache
36461         which usefull for arrays.
36463 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36465         * pedump.c (arch_compile_method): added to compute vtable entry
36467         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36468         number of interfaces.
36469         
36470         * class.h: merged MonoArrayClass into MonoClass
36472         * class.c (mono_class_create_from_typedef): compute the vtable size and
36473         allocate space to include the vtable inside MonoClass
36474         (mono_class_metadata_init): initialize the vtable
36476 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36478         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36479         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36480         * image.c: endian fixes by Laurent Rioux.
36481         * object.h, object.c: rename MonoStringObject to MonoString and
36482         MonoArrayObject to MonoArray. Change some function names to conform to
36483         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36484         guint16* as first argument, so don't use char*.
36485         Provide macros to do the interesting things on arrays in a portable way.
36486         * threads-pthread.c: updates for the API changes and #include <sched.h>
36487         (required for sched_yield()).
36488         * icall.c: updates for the API changes above.
36489         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36490         platforms that need them.
36492 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36494         * class.c: set the correct type for all the fundamental
36495         type when loading the class.
36497 2001-10-05  Dick Porter  <dick@ximian.com>
36499         * threads-pthread.c (pthread_mutex_timedlock): Simple
36500         compatibility version for C libraries that lack this call.
36502 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36504         * class.c: MonoTypes stored in MonoClass are stored as
36505         fundamental MonoTypes when the class represents a
36506         fundamental type (System.Int32, ...).
36507         The TypeHandle return by ldtoken is a MonoType*.
36508         * icall.c: ves_icall_get_data_chunk () write out all the
36509         PE/COFF stuff. Implement ves_icall_define_method (),
36510         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36511         * image.c: properly skip unknown streams.
36512         * loader.h, loader.c: add type_class to mono_defaults.
36513         * metadata.c, metadata.h: export compute_size () as
36514         mono_metadata_compute_size () with a better interface.
36515         Typo and C&P fixes.
36516         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36517         * reflection.c, reflection.h: many cleanups, fixes, output method
36518         signatures and headers, typedef and typeref info, compress the metadata
36519         tables, output all the heap streams, cli header etc.
36520         * row-indexes.h: typo fixes.
36522 2001-10-04  Dick Porter  <dick@ximian.com>
36524         * object.h: Add a synchronisation mutex struct to MonoObject
36526         * object.c (mono_new_object): Initialise the object
36527         synchronisation mutexes
36529         * icall.c: System.Threading.Monitor internal calls
36530         
36531         * threads-pthread.h:
36532         * threads-pthread.c: System.Threading.Monitor internal calls
36534         * threads-types.h: New file, includes the system-specific thread
36535         structures
36536         
36537         * threads-pthread-types.h:
36538         * threads-pthread-types.c: New files, handle pthread-specific
36539         synchronisation types
36541         * threads-dummy-types.h: 
36542         * threads-dummy-types.c: New files of dummy support for
36543         thread-specific types
36545         * metadata.c:
36546         * image.c:
36547         * pedump.c: include mono-endian.h not endian.h
36548         
36549         * Makefile.am: More threads files.
36550         Name mono-endian.h not endian.h
36552 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36554         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36555         stuff and implement a few more bits.
36556         * icall.c: a field needs to be dereferenced twice. Do not use the same
36557         name for two variables in the same scope.
36558         * image.c, image.h: cleanups.
36560 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36562         * class.c (mono_class_metadata_init): bug fix: compute the right size
36564 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36566         * icall.c: implemented some of the Reflection internalcalls.
36567         * image.c, image.h: start writing out the PE/COFF image.
36568         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36569         that does the reverse than decode_blob_size ().
36570         * object.c: use mono_metadata_encode_value (). Move here
36571         temporary implementation of mono_string_to_utf8 ().
36572         * rawbuffer.c: make malloc_map static.
36574 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36576         * metadata.c: fix type comparison for arrays.
36577         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36578         Added a couple of new classes to monodefaults.
36579         * icall.c: added a couple of Reflection-related internalcalls.
36580         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36581         Added a byval_arg MonoType to MonoClass.
36583 2001-09-28  Dick Porter  <dick@ximian.com>
36585         * icall.c:
36586         * threads-pthread.h: 
36587         * threads-pthread.c: Implemented internal calls for
36588         LocalDataStoreSlot operations.  Applied mutexes around all shared
36589         data.  Reworked the thread creation and Start() operations to
36590         avoid a race condition.
36591         
36592         * threads-dummy.h:
36593         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36595 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36597         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36599 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36601         * class.c, loader.c: warn and return NULL instead of erroring out.
36602         * icall.c: added System.AppDomain::getCurDomain().
36603         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36605 2001-09-25  Dick Porter  <dick@ximian.com>
36607         * threads-pthread.h:
36608         * threads-pthread.c: Implemented timed thread joining and added
36609         System.Threading.Thread::Join_internal internal call
36611         * icall.c: Added System.Threading.Thread::Join_internal internal call
36613         * threads-dummy.h:
36614         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36616 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36618         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36619         mono_string_intern () to implement the semantics of the ldstr opcode
36620         and the interning of System.Strings.
36621         * icall.c: provide hooks to make String::IsIntern and String::Intern
36622         internalcalls.
36624 2001-09-23  Dick Porter  <dick@ximian.com>
36626         * threads-dummy.c: 
36627         * threads-dummy.h: New files of dummy threading routines
36629         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36630         support code based on system specifics
36632         Rename PTHREAD_LIBS to THREAD_LIBS
36633         
36634 2001-09-23  Dick Porter  <dick@ximian.com>
36636         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36637         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36638         internal calls.
36639         (mono_thread_init): Set up a Thread object instance to return when
36640         the main thread calls Thread.CurrentThread
36641         (mono_thread_cleanup): Wait for all subthreads to exit
36643         * icall.c: New internal calls for System.Threading.Thread::Sleep
36644         (including Schedule) and CurrentThread
36646         * threads.h: New file, to insulate thread-specific stuff from the
36647         rest of the code
36649 2001-09-21  Dick Porter  <dick@ximian.com>
36651         * threads-pthread.h: 
36652         * threads-pthread.c: New file, for handling pthreads-style
36653         threading support.  Start() now starts a new thread and executes
36654         the ThreadStart delegate instance.
36656         * icall.c: Added the internalcall for
36657         System.Threading.Thread::Start_internal
36659         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36661 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36663         * loader.c: work around the different signatures for delegates
36664         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36666 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36668         * class.h, class.c: add mono_class_get_field_from_name ().
36669         * *: Fix C comments and other ANSI C issues.
36671 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36673         * endian.h, assembly.c: fix some endianness issues.
36675 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36677         * loader.h, load.c: add delegate_class to mono_defaults.
36678         Handle runtime provided methods in mono_get_method ().
36680 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36682         * loader.c (mono_get_method): use pinvoke for internal call
36684         * icall.c: use pinvoke for internal call
36686         * loader.c (method_from_memberref): set the method name
36688 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36690         * metadata.c: help the compiler generate better code for
36691         mono_class_from_mono_type ().
36693 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36695         * class.c (mono_class_metadata_init): delayed computing of the
36696         class size to mono_class_metadata_init ()
36698 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36700         * class.c, class.h: add an interfaces member to MonoClass.
36701         * image.c, image.h: add assembly_name field to MonoImage
36702         from the assembly table.
36703         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36705 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36707         * class.c: Handle Array in mono_class_from_mono_type ().
36708         * metadata.c, pedump.c: some endian fixes.
36710 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36712         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
36713         * metadata.c: fix small problem introduced with the latest commit.
36715 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
36717         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
36718         We don't need a MonoMetadata pointer anymore to compare signatures in
36719         mono_metadata_signature_equal (), update callers.
36720         Reduced memory usage an number of allocations for MonoMethodHeader and
36721         MonoMethodSignature.
36723 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
36725         * metadata.c: added compare for szarray.
36727 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
36729         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
36730         and add a couple more types to it and mono_defaults. Give an hint on
36731         classes that need implementing in our corlib and are referenced
36732         in mscorlib.
36734 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
36736         * class.h, class.c: keep track if a class is also an Enum.
36737         * loader.c: Implement a couple more types for use in libffi
36738         marshalling. Gives better diagnostics when failing to dlopen
36739         a library. Set method->klass for P/Invoke methods, too.
36741 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
36743         * class.c, class.h: add a MonoType this_arg to MonoClass that
36744         represents a pointer to an object of the class' type that
36745         can be used by the interpreter and later the type cache.
36746         Add best guess alignment info for valuetype objects.
36748 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
36750         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
36751         into MonoType: one less level of indirection and allocation and
36752         simplifies quite a bit of code. Added cache for MonoTypes that are
36753         used frequently, so that we don't need to allocate them all the time.
36755 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
36757         * class.c (mono_class_create_from_typedef): System.Enum is also a
36758         value type, although it does not derive from System.ValueType
36759         (maybe a bug in the ms compiler?)
36761         * metadata.c (mono_type_size): return the right size for value types
36763         * loader.c (mono_get_method): only initialize method header if not abstract
36765         * class.c (mono_class_from_mono_type): use mono_default values. 
36767 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
36769         * *: use MonoClass pointers instead of <type_tokens>
36770         
36771         * class.h: new flag: metadata_inited.
36773         * class.c (mono_class_metadata_init): impl.
36774         (mono_class_instance_size): impl.
36775         (mono_class_data_size): impl.
36777 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36779         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
36780         MonoClass now has the name and name_space fields. 
36781         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
36782         mono_get_method () takes and optional MonoClass as argument.
36783         Removed mono_typedef_from_name() and added mono_class_token_from_name()
36784         instead that takes advantage of a map from class names to typedef
36785         tokens in MonoImage.
36787 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
36789         * metadata.c: zero is not a valid alignment boundary.
36790         Merge MONO_TYPE_VOID in default decoding code.
36792 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
36794         * image.h: merged MonoMetadata into MonoImage
36796         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
36797         identify the type of elements.
36799 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
36801         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
36802         * cil-coff.h: split MonoMSDOSHeader and add size info.
36803         * image.c: add some consistency checks.
36804         * metadata.c: fix row size computation: one programmer
36805         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
36806         add explanation for the locator routine.
36807         Fix decoding of size in method header.
36808         
36809 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
36811         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
36812         (g_concat_dir_and_file): Bring g_concat_dir_and_file
36813         function from gnome-libs.  This uses the right path separator
36814         based on the OS, and also works around a bug in some systems where
36815         a double slash is not allowed. 
36816         (default_assembly_name_resolver): Use g_concat_dir_and_file
36817         (mono_assembly_open): ditto.
36819 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
36821         * metadata.c (mono_metadata_signature_equal): impl.
36823         * *: void is now a realy MonoType (instead of using NULL)
36824         
36825         * metadata.c (do_mono_metadata_parse_type): use
36826         mono_metadata_parse_type to parse void value.
36828 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
36830         * metadata.c, metadata.h: in the signature and method header store
36831         only the space required for holding the loca vars and incoming arguments.
36833 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
36835         * metadata.c (do_mono_metadata_parse_type): treat void like any
36836         other type (instead of assigning NULL);
36838 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
36840         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
36842 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
36844         * image.c (do_mono_image_open): added a cache for arrays.
36846 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36848         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
36849         decode a single column from a row in a metadata table and changes
36850         to take advantage of it in the typedef locator (gives a nice speed up).
36851         Store offset info for function params.
36853 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
36855         * image.h (MONO_IMAGE_IS_CORLIB): removed 
36857 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
36859         * assembly.c: how could mono_assembly_close () had ever worked?
36860         * metadata.c, metadata.h: provide offset info for local vars.
36861         Implement mono_type_size () to take care of alignment as well
36862         as size (it was mono_field_type_size in cli/class.c before).
36864 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36866         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36868         * assembly.h (CORLIB_NAME): set to corlib.dll
36870         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36872 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36874         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
36875         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
36876         tokentype.h: massive namespace cleanup.
36878 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36880         * metadata.h, metadata.c: decode exception clauses when parsing method header.
36882 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
36884         * metadata.c (mono_metadata_free_type): added check for type !=
36885         NULL (void) before calling mono_metadata_free_type()
36887 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
36889         * metadata.h, row_indexes.h: added header with enumerations to use
36890         to index in the columns from tables in metadata and to decode coded
36891         tokens: we should start using this instead of embedding magic numbers
36892         all over the code.
36894 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
36896         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
36897         Move metadata_t info from cli_image_info_t to MonoImage, where
36898         it's easily accessible. Changed all the uses accordingly.
36899         Added the method and class caches to MonoImage.
36900         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
36901         and mono_metadata_decode_value () signature to be more consistent
36902         with the other parse functions (and simplify code). Taken advantage
36903         of zero-length array allocation with GCC. Removed reduntant (and
36904         wrong) MonoFieldType struct and use MonoParam instead. Changed
36905         mono_metadata_parse_field_type () to use common code for parsing.
36906         Added mono_metadata_typedef_from_field () and
36907         mono_metadata_typedef_from_method () to lookup a typedef index from a
36908         field or method token.
36909         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
36911 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
36913         * metadata.c (mono_metadata_parse_field_type): Implement. 
36914         (do_mono_metadata_parse_type): Split engine from
36915         mono_metadata_parse_type, so that we can create smaller structures
36916         for things that just have one pointer to the MonoType (look at
36917         the MonoFieldType)
36919 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
36921         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
36922         as Jan Gray found out, it is incorrect. 
36924 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
36926         * assembly.c: Implement asssembly loading.  This loads an image
36927         and loads all the referenced assemblies.  Come to think of it, we
36928         could always do lazy loading of the assemblies. 
36930         * image.c (mono_image_open): Keep loaded images in a hashtable.
36932         * image.h (MonoImage): Add reference count.
36934 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
36936         * assembly.c (mono_assembly_open): Keep track of the file name in
36937         case the assembly has no ASSEMBLY table.
36939         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
36940         from get.c here.
36942 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
36944         * metadata.c, metadata.h: decode local vars in method header
36945         parse function. Change callers accordingly.
36947 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
36949         * metadata.h, cil-coff.h: protect against multiple inclusion.
36950         Added some new structures to hold information decoded from metadata:
36951         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
36952         and relevant decoding/free functions.
36953         * metadata.c: implement decoding functions. Add warning for out of bounds
36954         index in mono_metadata_locate(). Implement mono_get_method () to retreive
36955         all the info about a method signature and invocation. Remove check on
36956         uninitialized local var in parse_mh() and fix memory leak.
36958 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
36960         * metadata.h: More macros.
36962         * tokentype.h: New file.
36964 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
36966         * assembly.c: added a consistency check and initialize
36967         some structures with g_new0().
36968         * metadata.c: fixed a couple more bugs in table size computation
36969         and add other checks for out-of bound access to metadata.
36971 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
36973         * metatada.c: fix bugs computing table sizes. Spew a
36974         warning when index in string heap is out of bounds.
36976 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
36978         * metadata.h: Add a couple of macros to manipulate tokens. 
36980 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36982         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
36983         cli_section_tables).
36985 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
36987         * metadata.c (mono_metadata_user_string): New function, provides
36988         access to the UserString heap. 
36990 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
36992         * metadata.c: Add inline documentation.
36994 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
36996         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
36997         files. 
36999 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37001         * typeattr.h: New file, TypeAttribute flags. 
37003 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37005         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37006         mono_assembly_ensure_section): Section loading code.
37007         (load_section_tables): Load the sections.
37009         * mono/metadata/metadata.c (mono_metadata_locate_token,
37010         mono_metadata_locate): Functions to locate the information
37011         definition given a token or a table and an index.
37012         (mono_metadata_compute_table_bases): New.
37013         (compute_size): New function to compute the sizes of the various
37014         tables.
37016         * mono/metadata/metadata.h: Finish listing the different index
37017         types. 
37019         * mono/metadata/pedump.c: Improve to dump new information.
37021 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37023         * mono/metadata/metadata.c: Entered all the tables matching
37024         Beta2. 
37026         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2