2009-01-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono/afaerber.git] / mono / metadata / ChangeLog
blob4a12285ee71588a9c8157957dac5b8f85255add3
1 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
3         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
4         no longer point to the nursery.
6         * sgen-gc.c: Add a few comments/FIXMEs.
7         
8         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
10         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
11         initialization of the various _method variables thread safe. Fixes
12         #465377.
14 2009-01-12  Mark Probst  <mark.probst@gmail.com>
16         * domain.c, domain-internals.h: Remove the shared_generics_hash
17         and its lookup functions.
19 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
21         * socket-io.c:  Fixing the MSVC build. 
23         Code is contributed under MIT/X11 license.
25 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
27         * metadata-verify.c: Add pe header watermark verification.
29 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
31         * metadata-verify.c: Add lfanew verification.
33 2009-01-12  Jb Evain  <jbevain@novell.com>
35         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
36         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
38 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
40         * socket-io.c: Fix the build.
42         * environment.c: Fix an #ifdef.
44 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
46         * threadpool.c (async_invoke_thread): Handle the wait function returning
47         WAIT_IO_COMPLETION as well.
48         (async_invoke_io_thread): Ditto.
50 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
52         * threads.c: Fixing the Windows build.
54         Code is contributed under MIT/X11 license.
56 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
58         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
59         interrupt a wait.
60         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
61         the thread to wait again.
63 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
65         * metadata-verify.c: Initial skeleton of the metadata verifier.
67         * pedump.c: Add support for the metadata verifier.
69         * verify-internal.h: Export the whole assembly metadata verifier function.
71 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
73         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
75 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
77         * Makefile.am: Upgrade dtrace-prelink.sh location.
79 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
81         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
82         well. Otherwise the shutdown deadlock that happens on unix will can happen
83         as well.
84         If the main thread code finishes too fast it's possible that the finalizer
85         thread won't have executed yet, won't record itself as the finalizer thread
86         and the shutdown sequence will wait on it forever.
88 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
90         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
91         with MSVC.
93 2009-01-08  Miguel de Icaza  <miguel@novell.com>
95         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
96         Robert Jordan for pointing this out.
98 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
100         * icall.c
101         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
102         ves_icall_System_IO_DriveInfo_GetDriveType.
104 2009-01-07  Miguel de Icaza  <miguel@novell.com>
106         * icall.c: Wrap calls to mono_strtod in CriticalSection
107         invocations when using eglib, to work around #464316.
109 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
111         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
112         return value of GetCurrentDirectory to never access unitialized memory.
114 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
116         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
117         return value of GetCurrentDirectory and expand the buffer if needed.
119         Fixes #459094.
121 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
123         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
124           Adding a call to mono_init_com_types.
126         Code is contributed under MIT/X11 license.
128 2009-01-07  Geoff Norton  <gnorton@novell.com>
130         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
131         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
132         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
133         be the value of the ip buffer.
135 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
137         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
138         interfaces_packed here.
140         Fixes part of #463294.
142 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
144         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
146         Fixes part of #463294.
148 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
150         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
151         is a boxed complex as well.
153         Fixes part of #463294.
155 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
157         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
158         control if a methodspec should be created for the generic method definition from external assemblies.
159         Caching of methodspec is done using the handleref hash table.
161         Fixes #462592.
163 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
165         * loader.c (find_method): When searching the interfaces of a class
166         check the transitive closure of implemented interfaces.
168         Fixes #463303.
170 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
172         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
173         
174 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
176         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
177         interfaces calculation to fill_valuetype_array_derived_types.
179         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
180         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
181         for example.
183         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
184         interfaces for valuetypes if needed.    
186         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
187         for their basetype as well. Types are array expanded if rank is > 0.
189         Fixes #400716.
191 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
193         * socket-io.h : Changing the signature of
194           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
195           the blocking state.
197         * icall-def.h :  Changing the signature of
198           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
200         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
201           For Windows only.  Avoid blocking when calling accept by
202           querying for a connection via select.  The loop also queries
203           the thread state every 1000 micro seconds for the thread
204           stop state.  This will avoid the process hanging on shutdown
205           when using a TcpChannel that is never connected to.
207         Code is contributed under MIT/X11 license.
209 2008-12-30  Marek Safar  <marek.safar@gmail.com>
211         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
213 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
215         * class.c (get_implicit_generic_array_interfaces): Extract common
216         code to a helper function making it a lot easier on the eyes.
218 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
220         * class.c (get_implicit_generic_array_interfaces): If the internal
221         enumerator is an interface inflate System.Object instead of itself.
223         Fixes #461261.
225 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
227         * object.c (mono_runtime_invoke_array): Don't assert with
228         byref nullable types.
230         * marshal.c (mono_marshal_get_runtime_invoke): To handle
231         byref nullables we unbox the object and store it on the
232         stack. 
233         We can't use the boxed object since it is the T of Nullable<T>
234         and the boxed representation of a nullable it's underlying type
235         or null.
236         We could cheat and create a boxed nullable and use the same
237         machinery of other byref VTs but this feels like a hack and
238         using the stack has the bonus of reducing heap pressure.
240         Fixes #461941.
242 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
244         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
245         return value.
247         Fixes #461867.
249 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
251         * icall-def.h : Adding an internal call definition for 
252           System.Environment.internalBroadcastSettingChange.
254         * icall.c : Adding a Windows only implementation to broadcast a 
255           WM_SETTINGCHANGE when an environment variable has changed.
257         Code is contributed under MIT/X11 license.
259 2008-12-19  Mark Probst  <mark.probst@gmail.com>
261         * class.c, class-internals.h: Made
262         mono_class_has_parent_and_ignore_generics() non-static.
264 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
266         * image.c: deal with the mmap failing when loading an image.
268 2008-12-17  Geoff Norton  <gnorton@novell.com>
270         * threadpool.c: Ensure that the io_queue_lock is initialized
271         in all circumstances, as we always attempt to cleanup against it.
273 2008-12-17  Miguel de Icaza  <miguel@novell.com>
275         * icall.c (ves_icall_System_Environment_get_Platform): For
276         compatibility reasons for existing client code we will keep
277         returning 4 for a while.   
279         For how long will depend on the documentation being updated, and
280         for us to give client code a chance to be updated.
282         This reverts the original decison on #433108 since we did not
283         catch roughly 33 instances of the broken code in our own source
284         code base, we did not catch failures on the buildbots, and QA did
285         not bring this as a problem.
287         Only today I found some customer's code breaking due to our own
288         class libraries not being fully updated and tracked it down to
289         this change.  I am reverting it because if we could not even get
290         our story straight in our own code base, how can we hope that our
291         end user code be fixed?
293         As of this morning, our Wiki page that documents how to detect
294         Unix had not been fixed.    
296 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
298         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
300         * class.c (mono_class_get_fields): Handle loading errors.
302 2008-12-12 Mark Mason <mmason@upwardaccess.com>
304         * 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.
305         
306 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
308         * mono-perfcounters.c: avoid warning.
310 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
312         * reflection.c (ensure_runtime_vtable): Work on generic instances and
313         make sure all interfaces have MonoClass::interface_id set.
315         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
316         method table is property set.
318 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
320         * class.c: New function mono_class_setup_interface_id that setup
321         MonoClass::interface_id if needed.
323         * class-internals.h: Export new function.
325 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
327         * class.c: Add code to sanity check the vtable after setup_vtable_general
328         has done it's work.
330 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
332         * icall.c: make Assembly.GetExecutingAssembly work properly when
333         reflection is used to invoke the method.
334         Bug #321781 fixed.
336 2008-12-11  Mark Probst  <mark.probst@gmail.com>
338         * metadata/generic-sharing.c: Look for constraints in all type
339         arguments, not just the first one.
341 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
343         * appdomain.c: return the correct CodeBase for an Assembly instance
344         that was loaded from the shadow-copy directories.
345         Bug #458190 fixed.
347 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
349         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
351         * sgen-gc.c (check_object): New debugging helper function.
353         * object.c: Fix calls to mono_value_copy_array ().
355 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
357         * class.c (mono_class_setup_fields): If working on an inflated class
358         first check if the generic definition did init with success.
360         Fixes #445361.
362 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
364         pedump.c (main): Fix a warning.
366 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
368         * object-internals.h : Adding a definition for 
369           MonoReflectionComVisibleAttribute.
371         * marshal.c (cominterop_com_visible) :  Method added to check the 
372           ComVisible attribute of a class.
374         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
375           cominterop_raise_hr_exception added to consolidate common code 
376           to raise hr exceptions.
378         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
379           if a managed class should support IDispatch.
381         * marshal.c 
382           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
383           Added additional checks for managed object when getting 
384           an IDispatch interface.
386         Code is contributed under MIT/X11 license.
388 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
390         pedump.c (main): Handle mono_get_method () returning NULL. 
392 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
394         * marshal.h: Fix a warning.
396 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
398         * marshal.c : Adding cominterop_release_all_rcws to release all
399           runtime callable wrappers held by the runtime.
401         * marshal.h : Adding declaration for cominterop_release_all_rcws.
402           
403         Code is contributed under MIT/X11 license.
405 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
407         * metadata.c (mono_image_alloc_lock): New helper function.
408         (mono_image_alloc0_lock): Ditto.
410         * metadata.c: Use the alloc_lock () helper functions for allocating
411         memory from the image mempool.
413 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
415         * class.c (mono_class_from_generic_parameter): Document it's
416         locking behavior. Fix double checked locking here, we stored in
417         param->pklass a partially initialized MonoClass and no membar was used.
419 2008-12-05  Marek Habersack  <mhabersack@novell.com>
421         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
422         (3) functions are present in the C library use them to do the
423         job. If they are absent, make sure that the sum of int_part and
424         dec_part is rounded before returning. This is necessary due to the
425         division of dec_part by the power of 10 before the final addition
426         is performed - if the result is not rounded in some cases it will
427         yield invalid results.
429 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
431         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
432         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
433         instruction instead of a pointer constant.
435 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
437         * loader.c (mono_method_get_header): Do most of the work outside the
438         loader lock, to avoid assembly load hook deadlocks.
440         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
441         (mono_metadata_parse_type_full): Ditto.
443 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
445         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
446         Make the stack depth fixed. Ensure proper argument passing to the backtrace
447         funtions. Finally, use a lock to produce well ordered output.
449         The lock looks silly, as all calls to the corlib mempool should be guarded
450         with the loader lock, but for some reason this fact doesn't help. 
452         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
454 2008-12-02  Mark Probst  <mark.probst@gmail.com>
456         * socket-io.c: 64 bit big-endian fixes.
458 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
460         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
461         targets that require strict compatibility between the types.
463         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
464         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
465         Kill the strict argument and create a new one valuetype_must_be_boxed.
467         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
468         state that all valuetypes must be boxed.
470         Fixes #448560.
472 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
474         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
475         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
477         Contributed under MIT/X11 license.
479 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
481         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
482         the inflate_generic_type machinery should handle it.
484         This avoids a crash when the field's flags is zero and it's type is
485         a primitive.
486         What happens is that mono_metadata_parse_type_full will see that opt_attrs
487         is zero and will return one of the cached built-in primitive types. Since
488         those types live in read-only memory, the code that copies it crashes.  
490 2008-11-28  Mark Probst  <mark.probst@gmail.com>
492         * object.c: Don't put function descriptors into generalized IMT
493         thunks.
495 2008-11-28  Mark Probst  <mark.probst@gmail.com>
497         * class.c: Enable generic code sharing on PPC64.
499 2008-11-27  Mark Probst  <mark.probst@gmail.com>
501         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
502         from mini/mini.c.
504         * generic-sharing.c: Allocate the method template slists from the
505         image mempool so it doesn't leak.
507 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
509         * class.c (generic_array_methods): Release the linked list.
511 2008-11-27  Mark Probst  <mark.probst@gmail.com>
513         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
514         invocation to g_utf16_to_utf8().
516 2008-11-26  Mark Probst  <mark.probst@gmail.com>
518         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
519         arguments on big endian archs.
521 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
523         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
524         the type name (test added in corlib).
526 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
528         * pedump.c: initialize perf. counters. Fixes a segv.
530 2008-11-25  Martin Baulig  <martin@ximian.com>
532         * mono-debug-debugger.c
533         (mono_debugger_runtime_invoke): Return the exception object if an
534         exception was thrown.  Visual Studio displays the exception object
535         in the locals window.
537 2008-11-24  Mark Probst  <mark.probst@gmail.com>
539         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
540         ftnptr.
542 2008-11-24  Mark Probst  <mark.probst@gmail.com>
544         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
545         MONO_TYPE_U are sizeof (gpointer), too.
547 2008-11-24  Mark Probst  <mark.probst@gmail.com>
549         * marshal.c (mono_type_native_stack_size): Fixed size and
550         alignment for reference types.
552 2008-11-23  Mark Probst  <mark.probst@gmail.com>
554         * class.c (mono_class_generic_sharing_enabled): Disable generic
555         code sharing for PPC64.
557 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
559         * icall.c (mono_method_get_equivalent_method): Make sure
560         method->klass->methods is inited before looping over it.
562 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
564         * object.c: when calling ExecuteAssembly in a newly created domain,
565         the configuration file and application base are already set up.
566         Bug #446353 take 2 fixed.
568 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
570         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
571         Fixes #444715. Fix a warning.
573 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
575         * appdomain.c: write the full path of the assembly to the .ini file
576         created when "shadow-copying"
577         Bug #446353 fixed.
579 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
581         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
582         if signature==FALSE.
584 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
586         * marshal.h : Fix the cygwin build.
587            marshal.c:12442: undefined reference to `_IID_IMarshal'
588           
589         Code is contributed under MIT/X11 license.
591 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
593         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
594           free threaded marshaler when QueryInterface is called on a COM callable
595           wrapper requesting the IMarshal interface.
596           
597         Code is contributed under MIT/X11 license.
599 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
601         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
603         * reflection.c (mono_type_get_object): Special case the very common
604         void type.
606         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
607         hold typeof(void).
609 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
611         * process.h : Adding method declaration for
612           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
613           
614         * process.c : Adding implementation for
615           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
616           
617         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
618           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
620         Code is contributed under MIT/X11 license.
622 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
624         * appdomain.c (unload_thread_main): Clean up threadpool by
625         calling mono_thread_pool_remove_domain_jobs.
627         * domain-internals.h (struct _MonoDomain): Add new fields to
628         help coordinate the cleanup of the threadpool.
630         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
631         that cleans up the threadpool of all jobs associated with an appdomain.
632         It does that by cleaning up the queues and making sure all active
633         threads are accounted.
635         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
636         unloaded or in the process of. Take this is such way that there is
637         no race condition between another thread starting the unload and the
638         current thread acknowledging it.
640         * threadpool.c (async_invoke_thread): Same.
642         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
643         firing the new thread.
645         * threadpool.c (start_tpthread): Same.
647         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
649         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
651 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
653         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
654         Add support for DuplicateHandle.
655         
656         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
657         Add support for DuplicateHandle.
658         
659         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
660         Add support for DuplicateHandle.
662         Code is contributed under MIT/X11 license.
664 2008-11-06  Mark Probst  <mark.probst@gmail.com>
666         * class-internals.h: Make min_align into a whole byte.
668         * class.c: Set min_align for SIMD types to 16.
670 2008-11-05  Geoff Norton  <gnorton@novell.com>
672         * attach.c: Default the attacher to enabled for all cases including
673         embedded.
675 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
677         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
678         change r117650.
680 2008-11-04  Mark Probst  <mark.probst@gmail.com>
682         * monitor.c, monitor.h: New function for querying offsets of
683         members of MonoThreadsSync.
685 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
687         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
688         to speed up this function and to avoid the boundless memory growth caused by
689         the signature_dup () calls.
691 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
693         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
694         wrapper.
696         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
697         by 1 bit.
699         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
701 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
703         * appdomain.c:
704         * domain-internals.h: made mono_set_private_bin_path_from_config()
705         "internal".
706         * object.c: call the above function after setting the configuration
707         file path for the root domain.
708         Fixes bug #314478.
710 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
712         * assembly.c: when the assembly is loaded from an absolute path, end
713         basedir with a directory separator.
714         Bug #440781 fixed.
716 2008-10-30  Mark Probst  <mark.probst@gmail.com>
718         * monitor.c (mono_monitor_get_fast_enter_method): If
719         CompareExchange is not available, don't create the fastpath
720         instead of asserting.  (The method is missing in the 1.1 profile.)
722 2008-10-30  Mark Probst  <mark.probst@gmail.com>
724         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
726         * monitor.c, monitor.h: Code for generating Monitor.Enter and
727         Monitor.Exit IL fastpaths.
729 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
731         * class.c (mono_class_create_from_typedef): Added Vector2ul.
733 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
735         * class.c (mono_class_create_from_typedef): Added Vector2l.
737 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
739         * class.c (mono_class_create_from_typedef): Added Vector2d.
741 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
743         * appdomain.c: translate \ into / for cache_path.
744         * domain-internals.h: new mono_is_shadow_copy_enabled().
745         * icall.c: (fill_reflection_assembly_name) do the same path
746         manipulations that get_code_base does.
747         (get_code_base) use mono_is_shadow_copy_enabled.
749 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
751         * appdomain.c: shadow-copied assemblies go to CachePath +
752         ApplicationName when both are set. DynamicBase has nothing to do with
753         shadow copies.
754         Bug #406877 fixed.
756 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
758         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
759         STANDALONESIG table.
761         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
762         standalone signatures.
764         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
765         comparison code: instead of comparing the signatures using a custom
766         equals function, transform them to a common signature and compare that. This
767         works better with AOT.
769 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
771         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
773         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
774         call for generic instances.
775         (mono_class_setup_properties): Call setup_properties () before accessing
776         gklass->properties.
778         * class.c (mono_class_get_virtual_methods): New helper function to iterate
779         over the virtual methods of a class using metadata if possible, avoiding the
780         creation of MonoMethod's for non-virtual methods.
781         
782         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
783         get_virtual_methods () to iterate over the virtual methods of classes.
785 2008-10-25  Martin Baulig  <martin@ximian.com>
787         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
789 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
791         * class.c (mono_class_create_from_typedef): Added Vector4i.
793 2008-10-24  Mark Probst  <mark.probst@gmail.com>
795         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
796         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
797         special-casing applies to eliminate the call completely.
799 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
801         * class.c (mono_class_create_from_typedef): Added Vector8s.
803 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
805         * class.c (mono_class_create_from_typedef): Added Vector16sb.
807 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
809         * icall.c: get rid of annoying warning.
811 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
813         * threadpool.c: in 1.x, if you change the background status of the
814         threadpool thread, it's not reset.
815         Remove unnecessary calls to SetState.
817 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
819         * threadpool.c: asynchronously create a set of idle threads upon first
820         use of the threadpool. SetMinThreads will now start the appropriate
821         number of idle threads if they are not already running. The default is
822         1 threadpool thread per CPU. Increased the maximum number of threads
823         per CPU to 10.
825 2008-10-22  Martin Baulig  <martin@ximian.com>
827         Revert r116521 from Zoltan, it breaks the debugger:
829         * class.c (mono_class_get_virtual_methods): New helper function to iterate
830         over the virtual methods of a class using metadata if possible, avoiding the
831         creation of MonoMethod's for non-virtual methods.
832         
833         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
834         get_virtual_methods () to iterate over the virtual methods of classes.
836 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
838         * threads.c: when creating a threadpool thread, set its state to
839         'background'.
840         * threadpool.c: reset the background state of a threadpool thread
841         after finishing each work item
842         Bug #437888 fixed.
844 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
846         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
847         
848         * class.c (mono_class_setup_vtable_general): Add an optimized version for
849         generic instances which works by inflating the methods in the container
850         class's vtable.
852         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
853         variant which doesn't make a copy if no inflation was done.
854         (mono_class_setup_fields): Use it.
856         * metadata.c (mono_metadata_get_shared_type): New helper function to
857         return a shared instance of a given MonoType.
859         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
860         a copy of most non-generic types.
862 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
864         * threadpool.c: remove one more GetSystemInfo () call.
866 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
868         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
869         use the code in mono-proclib.h to get processor information.
871 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
873         * appdomain.c: fixed the logic that determines whether assemblies in a
874         directory are "shadow-copied" or not. Bug #433483 fixed.
876 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
878         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
879         warning.
881 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
883         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
884         returning a vtype.
886         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
887         reflection.c: Use mono_field_get_name () for accessing a field's name.
889         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
890         class.c
892         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
893         field.
895         * loader.c (find_method_in_class): Reenable the metadata optimization by
896         not using it for generic instances.
898         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
899         data/def_type fields from MonoClassField into a separate structure.
900         (struct MonoClassField): Remove data/def_type fields.
901         (struct _MonoClass): Add a 'field_def_values' array to store the default
902         values/RVA for fields.
904         * class.c reflection.c: Update after the changes.
905         
906         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
907         for accessing field->data.
909         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
911         * loader.c (find_method_in_class): Revert the last change for now as
912         it breaks Mono.C5 unit tests.
914         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
915         'field_generic_types' and 'field_objects' which contain the information
916         previously stored in MonoInflatedField.
917         (MonoInflatedField): Delete.
918         (struct _MonoClassField): Delete 'generic_info' field.
920         * reflection.c: Store the information which was previously in 
921         field->generic_info in MonoDynamicGenericClass instead.
923         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
924         MonoClassField changes.
926 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
928         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
929         store the value inside the data array of the MonoMethodWrapper.
930         This saves memory, is faster and fixes the lifetime issues (methods
931         were never removed from the hash previously). May also fix bug#436996.
933 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
935         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
936         generic instances, compute the type from the generic definition instead of
937         looking in field->generic_info.
939         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
940         for inflated fields, the only user was get_fieldref_token () which no
941         longer needs it.
943         * class.c (mono_class_init): Revert the last change as it seems to cause
944         crashes.
946         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
947         bytes on 64 bit platforms.
949         * object.c (mono_class_create_runtime_vtable): Fix a warning.
950         
951         * object.c (mono_class_create_runtime_vtable): Don't initalize
952         field->data/field->def_type here, it is done lazily by 
953         mono_class_get_field_default_value ().
955         * icall.c (ves_icall_get_enum_info): Call 
956         mono_class_get_field_default_value () instead of directly accessing
957         field->data and field->def_type.
959         * object.c (get_default_field_value): Ditto.
961         * class.c (mono_field_get_data): Ditto.
962         
963         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
964         call for generic instances.
966         * loader.c (find_method_in_class): If klass != from_class, then inflate
967         the method with the context of from_class, since the caller assumes this.
969 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
971         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
972         for accessing method->slot.
974 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
976         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
978 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
980         * class.c (mono_method_get_vtable_index): Use
981         mono_method_get_vtable_slot () for accessing method->slot.
983         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
984         accessing klass->methods.
986         * class.c (mono_method_get_vtable_slot): New helper function.
987         (mono_class_get_vtable_entry): Ditto.
988         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
989         accessing method->slot.
991         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
992         method to get_inflated_method ().
994         * class.c (mono_class_get_inflated_method): New helper method to obtain
995         a method of an inflated class without calling setup_methods ().
996         (mono_class_get_cctor): Use get_inflated_method.
998         * generic-sharing.c (mono_class_get_method_generic): Ditto.
999         
1000         * marshal.c image.c: Lazily create all the marshal caches.
1002         * image.c (mono_image_init): Move initialization of runtime_invoke
1003         caches to marshal.c.
1005         * marshal.c (get_cache): New helper function to lazily initialize a 
1006         wrapper cache.
1007         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
1009         * debug-helpers.c (mono_method_full_name): Include generic arguments.
1011 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
1013         * loader.c: fixed check for interface type.
1015 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
1017         * appdomain.c: check for NULL setup before it's referenced.
1020 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
1022         * class.c: remove the unused old vtable setup code.
1024 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
1026         * class.c: don't depend on interface order in
1027         setup_interface_offsets (bug #435777).
1028         * reflection.c: sort the InterfaceImpl table (patch from
1029         Jb Evain  <jbevain@novell.com>).
1031 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
1033         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
1034         the low level assemblies lock.
1036 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
1038         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
1039         object.c, reflection.c, socket-io.c, threads.c: introduced
1040         mono_framework_version () to return the major framewrok version,
1041         changed the code that was using more complex patterns to use it.
1042         Return the correct value for PlatformID for OSX.
1044 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
1046         * icall-def.h, process.h, process.c: added an icall to get info about
1047         processes using mono-proclib.
1049 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
1051         * mono-perfcounters.c: use the mono-proclib functions to
1052         access process information.
1054 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
1056         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
1057         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
1058         reflection.c: remove rawbuffer usage: mmap support is more sanely
1059         provided by utils/mono-mmap.
1061 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
1063         * gc.c: use posix semaphores when possible so that
1064         mono_gc_finalize_notify() is signal safe.
1066 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
1068         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
1069         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
1070         be #ifdef-ed out, the linker will remove the rest.
1072         * marshal.c: Implement DISABLE_COM.
1074         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
1076 2008-10-11  Miguel de Icaza  <miguel@novell.com>
1078         * locales.c (string_invariant_compare_char): Optimization: do not
1079         call g_unichar_type unless we actually need the information.
1081 2008-10-10  Mark Probst  <mark.probst@gmail.com>
1083         * object.c, class-internals.h: Also create remoting trampolines
1084         for generic methods.  Pass the domain to the remoting trampoline
1085         creation function, too.
1087 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
1089         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
1091 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1093         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
1094         Vector4ui.
1096 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1098         * assembly.c:
1099         * locales.c: remove the use of g_strdown. Fixes bug #322313.
1101 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
1103         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
1104         for the least possible amount of time (extending the fix in r113458).
1106 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1108         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
1110 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1112         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
1113         as possible simd intrinsic types.
1114         Optimized the test to check for the common prefix first.
1116 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
1118         * class.c: back out part of a broken optimization committed on
1119         May 23th (bug #433908).
1121 2008-10-09  Mark Probst  <mark.probst@gmail.com>
1123         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
1124         Win32.  Should fix #432388 for most cases until we have the new
1125         profiler on Win32.
1127 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
1129         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
1130         instead of using inst->id so the hash is stable for AOT.
1132 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1134         * appdomain.c:
1135         * icall.c: create a .ini file for shadow-copied assemblies that
1136         contains the location of the original assembly. Use this to return the
1137         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
1138         Also fix the number of '/' for windows when returning the CodeBase.
1139         Fixes bug #430920.
1141 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1143         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
1145         Code is contributed under MIT/X11 license.
1147 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1149         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
1150           if if the class vtable needs initialized.
1152         Code is contributed under MIT/X11 license.
1154 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1156         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
1157           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
1158           STRING->BSTR, and CLASS->INTERFACE.
1160         Code is contributed under MIT/X11 license.
1162 2008-10-07  Marek Habersack  <mhabersack@novell.com>
1164         * sysmath.h: changed the declaration of the
1165         ves_icall_System_Math_Round2 icall by adding an extra
1166         away_from_zero parameter.
1168         * sysmath.c (ves_icall_System_Math_Round2): added support for
1169         away from zero rounding. The icall now takes an extra boolean
1170         parameter to signal that away from zero operation is requested.
1172 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
1174         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
1175         the delegate klass so it can work with full-aot.
1176         (mono_marshal_get_delegate_end_invoke): Ditto.
1177         (mono_marshal_get_delegate_invoke): Ditto.
1179 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
1181         * gc.c, attach.h, attach.c: remove a bad pattern:
1182         add_finalizer_callback () is not implemented correctly, it can't
1183         without adding more overhead to the finalizer loop and it's not
1184         even needed, since we know exactly what we need to call, so there is
1185         no need to do so through an expensive function pointer.
1187 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
1189         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
1190         for the no-gc case.
1191         * attach.c (mono_attach_init): Remove the #ifdef.
1193 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
1195         * attach.c (mono_attach_init): Don't use
1196         mono_gc_add_finalizer_thread_callback when compiling without GC.
1197         Fixes #432306.
1198         
1199         Code is contributed under MIT/X11 license.
1201 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
1203         * class.c (mono_class_create_from_typedef): Remove the 
1204         #ifndef DISABLE_SIMD stuff.
1206 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
1208         * class-internals.h (MonoClass): Added simd_type bit field.
1210         * class.c (mono_class_create_from_typedef): Check if type is a simd
1211         intrinsic.
1213 2008-10-03  Mark Probst  <mark.probst@gmail.com>
1215         * object.c (mono_method_add_generic_virtual_invocation): Only add
1216         instantiations to the thunk whose count is at least as large as
1217         the threshold.
1219 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1221         * icall.c: changed the Type of the exception thrown when trying to
1222         invoke a constructor on an abstract class. Part of the fix for bug
1223         #324185.
1225 2008-10-02  Mark Probst  <mark.probst@gmail.com>
1227         * class.c, class-internals.h (mono_method_get_vtable_index): New
1228         function which returns the index into the vtable and properly
1229         handles inflated virtual generic methods.
1231 2008-10-01  Mark Probst  <mark.probst@gmail.com>
1233         * object.c, domain.c, object-internals.h, domain-internals.h:
1234         Generalize IMT thunk machinery to also handle thunks for virtual
1235         generic method invokes.  When a virtual generic method is invoked
1236         more than a number of times we insert it into the thunk so that it
1237         can be called without lookup in unmanaged code.
1239         * generic-sharing.c, class-internals.h: Fetching a
1240         MonoGenericInst* for a method from an (M)RGCTX.
1242 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
1244         * marshal.c (emit_marshal_string): Applied a variant of a patch by
1245         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
1246         marshalling. Fixes #431304.
1248 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
1250         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1251           handle when ref is specified without In or Out.
1253         Code is contributed under MIT/X11 license.
1255 2008-09-30  Mark Probst  <mark.probst@gmail.com>
1257         * loader.c (mono_get_method_constrained): Don't expand method with
1258         the class's context, because it's already a method of that class.
1260 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
1262         * attach.c : should be correct build fix.
1264 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
1266         * attach.c: Fix the previous change.
1268 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
1270         * attach.c : quick w32 build fix.
1272 2008-09-27  Miguel de Icaza  <miguel@novell.com>
1274         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
1275         crashes MonoDevelop: #430455.
1277 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
1279         * domain-internals.h (struct _MonoDomain): Move most fields used only by
1280         the JIT do MonoJitDomainInfo in ../mini/mini.h.
1282         * domain.c: Remove initialization/cleanup of the removed fields.
1284 2008-09-27  Mark Probst  <mark.probst@gmail.com>
1286         * class.c (mono_class_generic_sharing_enabled): Enable generic
1287         code sharing for PPC.
1289 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
1291         * attach.c : Fixing the Windows builds.
1293         Code is contributed under MIT/X11 license.
1295 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1297         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
1298         the default generic sharing mode to 'all'.
1300 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1302         * generic-sharing.c, class-internals.h: New function for checking
1303         whether a method needs a static RGCTX invoke wrapper.  A few
1304         funtions moved from mini/generic-sharing.c.
1306         * icall.c: New function used.
1308 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1310         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1311         Static RGCTX invoke wrapping applies to value type methods, too.
1313         * class.c (mono_class_setup_vtable_general): In generic-shared
1314         value types, wrap methods with a static RGCTX invoke wrapper.
1316 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1318         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
1319         osx build.
1321 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
1323         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
1324         register a callback which is called when the finalizer thread is woken
1325         up.
1326         (finalizer_thread): Call the callback if it exists.
1328         * attach.h attach.c: New files, implementing the attach mechanism.
1330         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
1331         
1332         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
1333         by the previous change.
1335 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
1337         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
1338         loader.c, marshal.c, metadata-internals.h, metadata.c,
1339         method-builder.c, object.c, reflection.c: introduced specific functions
1340         to allocate from the domain and image mempools and cleaned up most of
1341         the code to use them (still missing a few in reflection.c).
1342         Keep the loader bytes counter updated.
1344 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
1346         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
1347         loader-related counters.
1349 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
1351         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
1352         added more MS-compatible counters.
1354 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
1356         * class.c (mono_class_setup_fields): Call setup_fields before accessing
1357         class->blittable. Fixes #428217.
1359 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
1361         * reflection.c (mono_image_get_field_on_inst_token): Call 
1362         field_encode_signature () since that handles custom modifiers too.
1363         Fixes #424663.
1365 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
1367         * reflection.c (add_custom_modifiers): New helper function to merge custom
1368         modifiers stored in objects to a MonoType.
1369         (fieldref_encode_signature): Encode custom modifiers.
1370         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
1371         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
1373 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
1375         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
1376         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
1377         64-bit IL only images because imports are not resolved for IL only images.
1378         Special thanks to Bill Holmes for finding this bug and testing the patch.
1379         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
1381         Contributed under MIT/X11 license.
1383 2008-09-19  Miguel de Icaza  <miguel@novell.com>
1385         * mono-config.c (dllmap_start): Add support for the bits keyword
1386         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
1388 2008-09-19  Mark Probst  <mark.probst@gmail.com>
1390         * reflection.c (inflate_mono_method): When the class the method is
1391         to be inflated for is itself not inflated, just return the method.
1393 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
1395         * mono-perfcounters.c: use more user friendly process instance names.
1397 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
1399         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1400           handle "[in] ref" and "[in][out] ref" cases.
1402         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
1403           to mono_mb_create_method.  This was causing problems calling native to
1404           managed passing Variants by value.
1406         Code is contributed under MIT/X11 license.
1408 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
1410         * class.c (can_access_internals): Call mono_assembly_load_friends ()
1411         before accessing the friend_assembly_names field.
1413         * assembly.c (mono_assembly_load_friends): Make this callable multiple
1414         times.
1415         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
1416         called lazily when it is needed.
1418         * metadata-internals.h (struct _MonoAssembly): Add 
1419         'friend_assembly_names_inited' flag.
1421 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
1423         * mono-perfcounters-def.h: fix the types of a few counters.
1424         * mono-perfcounters.c: implemented the instance names getter
1425         and a few bugfixes.
1427 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
1429         * culture-info-table.h : regenerated.
1431 2008-09-17  Robert Jordan  <robertj@gmx.net>
1433         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
1434         context bound objects. Fixes #415577.
1436         Code is contributed under MIT/X11 license.
1438 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
1440         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
1441         implementation (bug #423582).
1443 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
1445         * object.c (mono_object_get_virtual_method): Handle the case method->slot
1446         is not set. Fixes #426309.
1448 2008-09-16  Jb Evain  <jbevain@novell.com>
1450         * class.c (mono_class_from_name): fix the exported type look up
1451         when the type is defined in a referenced assembly.
1453 2008-09-16  Jb Evain  <jbevain@novell.com>
1455         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
1456         increment the next index counter on each iteration to make that work
1457         for more than one type forwarder. Unmanaged part to fix #422929.
1459 2008-09-15  Mark Probst  <mark.probst@gmail.com>
1461         * object-internals.h: enum ComInterfaceType in
1462         MonoInterfaceTypeAttribute is guint32, not guint16.
1464 2008-09-12  Mark Probst  <mark.probst@gmail.com>
1466         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
1467         writing code.
1469 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1471         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
1472         not gboolean.
1474 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1476         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
1477         Endianness fixes for MonoSymbolFileOffsetTable.
1479 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1481         * process.c (complete_path) : Removing quotes from the 
1482           input path.  The glib file routines do not handle file paths
1483           that have quotes around them.
1485         Code is contributed under MIT/X11 license.
1487 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1489         * socket-io.h : Adding a comment to provide locations where 
1490           changes to MonoSocketAsyncResult need to be synced.
1492         Code is contributed under MIT/X11 license.
1494 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
1496         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
1497         parameters as well. Fixes #425001.
1499 2008-09-08  Miguel de Icaza  <miguel@novell.com>
1501         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
1502         windows build.
1504 2008-09-07  Miguel de Icaza  <miguel@novell.com>
1506         * console-io.c: Add support for tracking the window size if it
1507         changes.
1509         The setup is very simple: the TtySetup function will now return a
1510         pointer to a location in memory that tracks the current console
1511         size.  The managed code checks its current value every time its
1512         queried against the last value set, and updates accordingly.
1514         With this setup we can work with multiple consoles, and we do not
1515         require to poke into managed code from a signal handler.
1517         Additionally, the environment for COLUMNS and LINES is now handled
1518         in unmanaged code.
1520         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
1522 2008-09-07  Mark Probst  <mark.probst@gmail.com>
1524         * marshal.c (mono_type_native_stack_size): Treat
1525         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
1527 2008-09-04  Jb Evain  <jbevain@novell.com>
1529         * class.c (mono_class_is_assignable_from): fix assignability of nullables
1530         to nullables.
1532 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
1534         * verify.c (verify_type_compatibility_full): Revert change
1535         to allow converting a native int to unmanaged pointer be verifiable
1536         under non-strict mode.
1537         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
1539         * verify.c: Added some TODOs.
1541 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
1543         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
1544           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
1545           Changed to use GlobalAlloc for the memory returned on Windows platforms.
1547         Code is contributed under MIT/X11 license.
1549 2008-09-02  Jb Evain  <jbevain@novell.com>
1551         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
1553 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
1555         reflection.c (typebuilder_setup_fields): Handle classes with
1556         explicit size.
1558 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
1560         class.c (mono_class_setup_events): Add memory barrier due to
1561         double checked locking.
1562         
1563         class.c (mono_class_setup_properties): Same.
1565 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
1567         * class.c (mono_class_is_assignable_from): Fix the build.
1568         
1569         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
1570         before accessing klass->interface_bitmap. Fixes #421744.
1572 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
1574         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
1575         the runtime into no-exec mode, useful when running the AOT compiler.
1577         * appdomain.c gc.c object.c: Avoid executing managed code when running
1578         in no-exec mode.
1579         
1580         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
1582         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
1583         special case when the mono_assembly_loaded () returns NULL because the 
1584         search hook is not installed.
1586 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
1588         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
1589         crashes in bstr marshalling on linux.
1591 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1593         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
1594         with more than one parameter.
1596 2008-08-24  Miguel de Icaza  <miguel@novell.com>
1598         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
1599         start/stop flow control as well when turning off ICANON (allows
1600         C-s and C-q to be read by Console.ReadKey).
1602 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1604         * class.c (mono_class_init): Move the initialization of nested classes
1605         into mono_class_get_nested_types (). Fixes #418433.
1607         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
1608         flag.
1610         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
1611         iterating tough the nested classes of a class.
1613 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
1615         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
1616         on arm.
1618 2008-08-22  Miguel de Icaza  <miguel@novell.com>
1620         * console-io.c (sigcont_handler): Support signal chaining for
1621         SIGCONT.
1623         (console_set_signal_handlers): Use best practices with sigaction,
1624         clear the structure before using it. 
1626 2008-08-22  Robert Jordan  <robertj@gmx.net>
1628         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
1629         Fix the Windows build.
1631 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
1633         * class.c (mono_class_generic_sharing_enabled): Make the default
1634         sharing mode 'corlib'.
1636 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
1638         * console-io.c (console_set_signal_handlers): Fix a warning.
1640         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
1641         method normally, the JIT will take care of avoiding recursion.
1643 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
1645         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
1647         Code is contributed under MIT/X11 license.
1649 2008-08-20  Miguel de Icaza  <miguel@novell.com>
1651         * console-io.c (sigcont_handler): We need to restore the entire
1652         termios state, not only the original settings, as things like echo
1653         can be controlled after this (Booish exposes this issue with its
1654         own ReadLine implementation).
1656         Additionally, we need to set the terminal back into keypad_xmit
1657         mode.
1658         
1659         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
1660         string as a paramter as well.   Otherwise we get different
1661         keyboard sequences.
1663 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
1665         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
1666         delegates with byref out parameter passing. Fixes #351520.
1668         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
1669         a generic context.
1670         (mono_type_get_desc): Add the type arguments for GENERICINST.
1671         (mono_method_full_name): Stringify the class name using mono_type_full_name
1672         so it picks up generic arguments.
1674 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
1676         * console-io.c: Removed debug output.
1678 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
1680         reflection.c (mono_reflection_create_runtime_class): Alloc
1681         the nested classes linked list using the dynamic image mempool.
1682         Fixes leak in corlib compilation.
1684 2008-08-19  Miguel de Icaza  <miguel@novell.com>
1686         * console-io.c: Fix incredibly annoying behavior on the console
1687         after resuming execution after control-z.   This affected every
1688         console application.
1690 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
1692         * mempool-internals.h: Header for mono private mempool functions. The first
1693         two function are for allocating glib linked lists using pools.
1695         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
1697         * Makefile.am: Added mempool-internals.h.
1699 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
1701         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
1702         (mono_domain_free): Ditto.
1704         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
1705         be used by the JIT to store its domain-specific information, instead of putting
1706         it directly into MonoDomain.
1708         * domain.c (mono_install_create_domain_hook): New helper function to install
1709         a hook which initializes domain->runtime_info.
1711         * domain.c (mono_install_free_domain_hook): Ditto.
1712         
1713 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
1715         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
1716         asserting if the ares parameter is null.
1718         * mono-perfcounters.c: Fix warnings.
1720         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
1721         is not needed, don't check for interruptions either.
1722         (mono_marshal_get_delegate_end_invoke): Ditto.
1724 2008-08-15  Marek Habersack  <mhabersack@novell.com>
1726         * mono-perfcounters.c (predef_readonly_counter): added support for
1727         reading the ASP.NET Requests Queued counter from another process.
1729 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
1731         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
1732         MonoImage to simplify the AOT code.
1734 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
1736         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
1737         marshalling. Fixes #416078.
1739 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1740         
1741         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
1742         it is set, looking up the icall address is deferred to the JIT, since 
1743         in embedded scenarios, the icall might not be registered in the runtime
1744         doing the AOT compilation. Backported from the 2.0 branch.
1746 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1748         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
1749         Fixes #415621.
1751 2008-08-05  Marek Habersack  <mhabersack@novell.com>
1753         * Makefile.am: added support for cross-compilation.
1755 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
1757         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
1759 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1761         * mono-perfcounters.c: jitted methods and jitted bytes counters.
1763 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
1765         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
1766         mono-perfcounters.c: performance counters implementation.
1768 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
1770         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
1771         to gpointer, letting the AOT code decide what to store in it.
1773 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
1775         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
1776           mono_class_setup_methods if the methods are not initialized.
1778         Code is contributed under MIT/X11 license.
1780 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1782         * verify.c: Remove some debug code I commited by accident.
1784         * verify.c (mono_method_is_valid_in_context): Change the return value
1785         to make possible to distinguish between invalid and unverifiable.
1787         * verify.c (verifier_load_method): Don't return NULL for unverifiable
1788         methods.
1790 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1792         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
1793         constraints. Fixes regression in gtest-253.
1795 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1797         * verify.c (mono_verifier_verify_class): Don't allow generic types
1798         with explicit layout.
1800         * verify.c (mono_method_verify): Check locals and argument types.
1802 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
1804         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
1805         wait if the thread is in StopRequested state.
1807         * class.c (mono_class_from_name): Refactor the module searching code into
1808         a separate function so it can be reused in the AOT case too.
1810 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1812         * verify.c (mono_type_is_valid_in_context): Improve the error message.
1813         Check both the type and it's generic type definition for loader errors.
1814         
1815         * verify.c (mono_method_is_valid_in_context): Don't generate another
1816         error when a type errors occur, this leads to the wrong exception been
1817         thrown.
1819 2008-07-28  Dick Porter  <dick@ximian.com>
1821         * icall-def.h
1822         * process.c
1823         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
1824         New internal calls to duplicate and close a process handle.
1826 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
1828         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
1830 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
1832         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
1834 2008-07-27  Robert Jordan  <robertj@gmx.net>
1836         * class.c (mono_class_init): Don't compute class.has_finalize for
1837         valuetypes. Fixes #412477.
1839 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
1841         * verify.c: Implement constraint equivalence checking.
1842         This is required when a generic parameter is used as
1843         argument to a constrained one.
1845         Fixes #410637.
1847 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
1849         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1851         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
1853         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
1854         synch with managed object layout.
1856 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1858         * verify.c (do_branch_op): Handle valuetypes and generic
1859         arguments properly.
1861         * verify.c (do_cmp_op): Same.
1863         Fixes #410383.
1865 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1867         * generic-sharing.c: Fix memory leaks.
1869         * class.c, class-internals.h: Make
1870         mono_class_inflate_generic_type_with_mempool() non-static.
1872 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1874         * pedump.c (dump_verify_info): Dump full class name.
1876 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1878         * generic-sharing.c: Removed some old code that didn't do anything.
1880 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
1881         * profiler.c: Added runtime_initialized_event,
1882         mono_profiler_install_runtime_initialized and
1883         mono_profiler_runtime_initialized. This new hook tells the profiler
1884         when the runtime is sufficiently initialized to be able to call
1885         mono_thread_attach on the root appdomain.
1886         * profiler.h, profiler-private.h: Likewise.
1888 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1890         * verify.c (do_cast): Do boxing for generic arguments as well.
1892         * class.c (is_nesting_type): Drop generic instantiations before
1893         checking for nesting.
1895         * class.c (can_access_instantiation): Allow access to generic
1896         arguments.
1898 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1900         * verify.c (verify_class_for_overlapping_reference_fields):
1901         On some cases, the field size might be zero, guard against that.
1902         Fix the explicit layout check to work as expected.
1904 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
1906         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
1907         mono_thread_resume () during shutdown, since the thread we want to abort
1908         might be suspended.
1910 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
1912         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
1913         warning.
1915         * debug-mono-symfile.c: Fix a warning.
1917         * mono-perfcounters.c (get_cpu_times): Fix a warning.
1919         * object.c (mono_class_vtable): Check if exception_type is set, and return
1920         NULL as defined by the function comments.
1922 2008-07-22  Mark Probst  <mark.probst@gmail.com>
1924         * mempool.c: Use malloc for every single mempool allocation if the
1925         configure option is set.  This makes it easier to track mempool
1926         allocations with tools like Valgrind.
1928 2008-07-22  Jb Evain  <jbevain@novell.com>
1930         * reflection.c (create_dynamic_mono_image): emit the same
1931         metadata version that SL2 does when creating a SL2 image.
1933 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
1935         * icall-def.h:
1936         * icall.c: New icall System.Enum:get_hashcode. This function
1937         avoids the overhead of boxing the enum to the underlying type.
1939 2008-07-21  Mark Probst  <mark.probst@gmail.com>
1941         * reflection.c (mono_method_get_object): Don't let static RGCTX
1942         invoke wrappers get into MonoReflectionMethods.
1944 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
1946         * object-internals.h:
1947         * object.c: New mono_runtime_class_init_full function
1948         that makes throwing the exception optinal.
1950         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
1951         for the case where the exception object is supplied.
1953 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
1955         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
1956         old ld versions.
1958         Contributed under MIT/X11 license.
1960 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1962         * string-icalls.c (ves_icall_System_String_InternalSplit):
1963         Optimize array allocation by caching the MonoClass of the
1964         array type.
1966         * icall.c (ves_icall_Type_GetMethodsByName): Same.
1968         * reflection.c (mono_param_get_objects): Same.
1970 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1972         * icall-def.h:
1973         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
1974         It inflates the given type using the class context.
1976 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1978         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
1979         the vtable if it already exists.
1981         * object-internals.h: Add mono_class_try_get_vtable as part of the
1982         internal API.
1984         * reflection.c (mono_type_get_object): Use the MonoObject from the
1985         vtable when possible. Reduces locking contention on reflection heavy
1986         code.
1988 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
1990         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
1991         g_bit_nth_msf () since that macro is not implemented in eglib.
1993 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
1995         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
1996         on platforms which do not support it.
1998 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
2000         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
2002 2008-07-11  Martin Baulig  <martin@ximian.com>
2004         * mono-debug-debugger.h
2005         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
2007         * mono-debug-debugger.c
2008         (_mono_debugger_interruption_request): New global volatile variable.
2009         (mono_debugger_check_interruption): New public function.
2011         * threads.c
2012         (mono_thread_current_check_pending_interrupt): Call
2013         mono_debugger_check_interruption().
2014         (mono_thread_interruption_checkpoint_request): Likewise.
2016 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2018         * verify.c: Add more type checks for loaded types. Verify the result
2019         handle from ldtoken.
2021 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2023         * loader.c (field_from_memberref): Don't crash if the field
2024         wasn't found.
2026 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2028         * verify.c: Verify if type and method instantiations
2029         don't have invalid VAR or MVAR arguments.
2031 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2033         * verify.c: Fix double free of function pointer list.
2035 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2037         * object.c (mono_string_to_utf8): Comment the new code as it
2038         breaks under eglib.
2040 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
2042         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
2044 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
2046         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
2047           is not throw too many times.
2049         Code is contributed under MIT/X11 license.
2051 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
2053         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
2054         debugging is turned off.
2056 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
2058         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
2060 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2062         * class-internals.h, class.c: Added new generic sharing option:
2063         Share only stuff in System.Collections.Generic, which is now the
2064         default.
2066 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2068         * generic-sharing.c, class-internals.h: New function for getting a
2069         generic method in a generic class given the corresponding method
2070         for a different instantiation of the class.  Partly refactored
2071         from mini-trampolines.c.
2073         * class.c: Make sure generic methods have a class_inst if they are
2074         part of a generic class.
2076         * metadata.c (mono_type_stack_size_internal): Handle type
2077         variables.
2079 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2081         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
2082         Signifies whether information on the this/vtable/mrgctx variable
2083         is available.
2085 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2087         * object.c, object-internals.h, icall.c: New function
2088         mono_delegate_ctor_with_method(), which does the same as
2089         mono_delegate_ctor(), but takes an explicit method argument
2090         instead of taking the method from the jit info.
2092         * marshal.c: When creating a delegate with an inflated method take
2093         the "this" argument as the target class for the castclass.
2095 2008-07-03  Mark Probst  <mark.probst@gmail.com>
2097         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
2098         mono_jit_info_table_find() to perform very badly in some cases.
2100 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
2102         * icall.c (type_from_typename): Handle 'string'.
2104         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
2105         wrappers into the wrapper_hash, since the key is not a MonoMethod.
2107 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
2109         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
2111         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
2112         number of available managed allocator types.
2114         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
2115         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
2117 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
2119         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
2120         which is a low level lock protecting just the 'jit_code_hash' hash table.
2122         * domain.c: Initialize+cleanup jit_code_hash_lock.
2123         
2124 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2126         * coree.c (mono_load_coree): Set coree_module_handle global variable only
2127         after initialization.
2129         * coree.h: Make MonoFixupExe internal.
2131         Contributed under MIT/X11 license.
2133 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2135         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
2136         because that is platform independent. Check NumberOfRvaAndSizes in PE32
2137         as well.
2138         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
2139         image being loaded is a CLI image and _CorValidateImage gets called.
2141         * coree.h: Add MonoLoadImage.
2143         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
2144         instead of LoadLibrary.
2146         Contributed under MIT/X11 license.
2148 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
2150         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
2151         for any primitive type.
2153 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
2155         * object.c (mono_array_new_specific): Optimize this and the other allocation
2156         functions a bit.
2157         
2158         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
2159         domains too if mono_dont_free_domains is set.
2161         * domain-internals.h (mono_dont_free_domains): New internal option controlling
2162         whenever to free appdomain data after it has been unloaded.
2164         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
2165         
2166 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
2168         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
2169         (mono_method_get_equivalent_method): Fix a warning.
2171         * object.c (mono_message_init): Avoid looking up array types for each call.
2173 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
2175         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
2176         call.
2178         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
2179         even more.
2181         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
2182         each iteration.
2184         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
2185         fields of an enum.
2187 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2189         * object.c (mono_value_box): Fix boxing of nullables.
2191 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
2193         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
2194         mono_module_handle that is defined by the linker; no initialization required.
2195         * coree.h: Remove mono_module_handle, add __ImageBase, update
2196         mono_image_open_from_module_handle.
2197         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
2198         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
2199         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
2200         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
2201         to 4 GB away from image base address. IA64 version is not tested but was very
2202         easy to implement and should work if we ever need it.
2203         * domain.c (mono_init_internal): Avoid system error message boxes.
2204         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
2205         with has_entry_point. Handle do_mono_image_load fauilre correctly.
2206         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
2207         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
2208         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
2210         Contributed under MIT/X11 license.
2212 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2214         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
2215         as part of the private mono API.
2216         
2217         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
2218         Do proper argument checking for methods that belong to generic classes.
2219         Do proper type resolution for GMFH/2.
2220         Fixes #377324.
2221         
2222 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2224         * verify.c (do_switch): Fix a memory corruption bug with
2225         the jump index is out of bound.
2227 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2229         * verify.c: Disable debug code.
2231 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2233         * reflection.c (mono_image_get_methodbuilder_token): Use
2234         mono_image_get_methodspec_token_for_generic_method_definition
2235         instead of mono_image_get_memberref_token. We cache more memberef
2236         entries now.
2238 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2240         * verify.c: Inflate exception clause types.
2241         Fixes #402606.
2242         
2243 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2245         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
2246         name.
2248         * reflection.c (mono_image_get_ctorbuilder_token): Same.
2250         * reflection.c (mono_image_create_method_token): Same.
2252 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2254         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
2255         It does the same as mono_image_get_methodref_token but works on
2256         MethodBuilder.
2258         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
2259         and always generate a methodspec. This follows the old behavior and fixes
2260         the regressions in System.Core. 
2262 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
2264         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
2265         don't event mono_class_get () succeeds. Fixes #402182.
2267 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2269         * metadata-internals.h: Added MonoDynamicImage::methodspec
2270         hashtable to store methodspec tokens created for MethodBuilders.
2272         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
2273         MethodBuilders as open instantiations if a methodspec was requested.
2275         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
2277         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
2279         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
2281         Fixes bug #349190.
2283 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2285         * loader.c (method_from_methodspec): Avoid crashing if the
2286         method lookup fails.
2288 2008-06-20  Dick Porter  <dick@ximian.com>
2290         * socket-io.c (get_socket_assembly): Cope with Moonlight network
2291         classes being in a different assembly.  Fixes bug 399184.
2293 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
2295         * loader.c (mono_loader_init): Make this callable multiple times.
2296         (mono_dllmap_insert): Call mono_loader_init () so this works even before
2297         the runtime is initialized. Fixes #401755.
2299 2008-06-19  Dick Porter  <dick@ximian.com>
2301         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
2302         Fixes bug 349688.
2304 2008-06-19  Dick Porter  <dick@ximian.com>
2306         * socket-io.c:
2307         * icall-def.h: Implement Socket generic Send() and Receive()
2308         methods.  Fixes bug 395168.
2310 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
2312         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
2314         Contributed under MIT/X11 license.
2316 2008-06-18  Martin Baulig  <martin@ximian.com>
2318         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
2319         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
2320         set to 80.0.  The debugger <-> runtime interface is now frozen as
2321         well.   
2323         * mono-debug.c
2324         (mono_debug_debugger_version): Bump to 4.
2326 2008-06-18  Martin Baulig  <martin@ximian.com>
2328         * debug-mono-symfile.c
2329         (load_symfile): Don't check the minor version.
2331         * debug-mono-symfile.h: Bump the version number to 50.0.
2333 2008-06-18  Martin Baulig  <martin@ximian.com>
2335         * debug-mono-symfile.c
2336         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
2337         minimum required version.
2339 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2341         * reflection.c (mono_custom_attrs_from_property): Fix support for
2342         retriveving cattrs of dynamic inflated generic types.
2344         * reflection.c (mono_custom_attrs_from_event): Same.
2346         * reflection.c (mono_custom_attrs_from_field): Same;
2348         * reflection.c (typebuilder_setup_events): Same cattrs of events.
2350         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
2351         Moved to metadata.c.
2353         * metadata.c: New functions to retrive the equivalent field, event
2354         of property from the generic type definition.
2356         * metadata-internals.h: Added new functions from metadata.c.
2358 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2360         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
2361         to cached in a mempool is used.
2363         * metadata.c (free_generic_class): In some situations field generic_info type
2364         is not properly dup'ed and leads to double free'ing.
2366         Fixes #400643.
2368 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2370         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
2371         this arguments (will be needed later for generic methods).
2372         Collect stats.
2374 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2376         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
2377         Create a static RGCTX invoke wrapper for methods which require it.
2379 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2381         * object.c, class-internals.h: New function for checking whether
2382         an individual field is special static.
2384 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
2386         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
2387         linear search since the table is sorted.
2389         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
2390         Fixes #324180.
2392 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
2394         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
2395         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
2397         * gc.c (mono_domain_finalize): Allow an infinite timeout.
2399         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
2400         
2401         * threads.c (mono_thread_request_interruption): Get rid of locking, use
2402         InterlockedCompareExchange to query and modify 
2403         thread->interruption_requested.
2405         * object-internals.h (struct _MonoThread): Change interruption_requested
2406         to a gint32 so it can be modified by atomic operations. Add 
2407         'critical_region_level' from the managed side, change small_id to a guint32,
2408         add new set of 'unused' fields.
2410         * appdomain.c: Bump corlib version.
2412 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
2414         * class.c (mono_class_from_name): Search modules as well. Fixes
2415         #322332.
2417 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2419         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
2420         templates.  Templates are generalized with an additional type_argc
2421         argument.  RGCTX templates have type_argc==0, MRGCTX templates
2422         have type_argc>0.
2424         * domain-internals.h, domain.c: New hash table for looking up
2425         MRGCTXs.
2427         * metadata.c, metadata-internals.h: Rename hash and equal
2428         functions for MonoGenericInst's and make them public.
2430         * class-internals.h: New data structures for the MRGCTX.  Macros
2431         for distinguishing slots in the RGCTX and the MRGCTX.
2433 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2435         * object.c (mono_method_get_imt_slot): Put the same methods of
2436         different instantiations of the same generic interface in the same
2437         IMT slots, to make generic sharing simpler.
2439 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2441         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
2443         * metadata.c (mono_metadata_field_info_with_mempool): Added.
2444         This function works just like mono_metadata_field_info, but
2445         accept a mempool as argument to be used allocating memory.
2447         * marshal.c (mono_marshal_load_type_info): Use new function
2448         to load marshal data into image mempool.
2450 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2452         * class.c (mono_class_inflate_generic_type_with_mempool):
2453         This function allows to inflate a generic type using
2454         a mempool.
2456         * class.c (inflate_generic_type): Take a mempool as argument
2457         and use it to do type dup'ing.
2459         * class.c (mono_class_setup_fields): Field type for generic
2460         generic classes are allocated from the image mempool.
2462         * metadata.c (free_generic_class): Inflated field type is
2463         now allocated in the image mempool.
2465 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2467         * threads.c (thread_cleanup): Free MonoThread::name.
2469 2008-06-12  Marek Habersack  <mhabersack@novell.com>
2471         * appdomain.c (ensure_directory_exists): avoid unnecessary
2472         mkdir(2) calls when the shadow directory already exists.
2473         (mono_make_shadow_copy): copy also satellite assemblies from the
2474         private bin directories.
2476 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2478         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
2479         
2480         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
2481         a page boundary. Fixes #396219.
2483 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2485         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
2486         due to double-checked locking.
2488 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2490         * assembly.c (build_assembly_name): Release memory on failure.
2492         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
2494 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2496         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
2497         memory on failure.
2499 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2501         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
2502         memory on failure.
2504 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2506         * loader.c (field_from_memberref): Check if field signature type is equal
2507         to the non-inflated type of the field. Fixes #398980.
2509 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2511         * assembly.c (mono_assembly_load_from_full): Call 
2512         mono_assembly_load_friends () outside the assemblies lock, since it can
2513         acquire the loader lock. Fixes #323696.
2515         * reflection.c (resolve_object): Inflate the inst with the context for
2516         FieldOnTypeBuilderInst. Fixes #399010.
2518 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2520         * reflection.c (mono_image_get_field_on_inst_token): Don't
2521         inflate the field to encode it's signature. If it's a
2522         VAR or MVAR it should stay that way in the signature.
2523         Fixes #399047.
2525 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2527         * reflection.c (resolve_object): Release memory of inflated types.
2529 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2531         * loader.c (mono_method_get_signature_full): Remove assert about
2532         loading a methodspec to a generic method. We have such methods, such as
2533         System.Threading.Interlocked::CompareExchange<T>.
2534         This assert was removed since it crashes the verifier when it checks
2535         methods calling CompareExchange<T>.
2537 2008-06-10  Marek Safar  <marek.safar@gmail.com>
2539         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
2540         of Type array and not MonoType.
2542 2008-06-10  Marek Habersack  <mhabersack@novell.com>
2544         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
2545         <lupus@ximian.com>
2547 2008-06-10  Martin Baulig  <martin@ximian.com>
2549         * debug-mono-symfile.h
2550         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
2551         changes to the file format, but we were generating incorrect
2552         source file indices in the line number table due to a bug, which
2553         made backtraces report an incorrect source file.
2555 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2557         * mono-debug.c: Moved mono_debug_free_method_jit_info from
2558         mini/debug-mini.c to here.
2560         * mono-debug.c (il_offset_from_address): Free memory from find_method.
2562         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
2563         use it to release structs returned by mono_debug_find_method.
2565 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
2567         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
2568         since it needs to set method->slot for all interface methods.
2570 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2572         * class-internals.h: Forgot to add.
2574 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2576         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
2578         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
2579         Lookup the custom attributes from property_hash.
2581         * reflection.c (mono_save_custom_attrs): Save the custom attributes
2582         in property_hash. Allocate all data using the image mempool.
2584         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
2585         for dynamic_custom_attrs to checks if the image is dynamic.
2587 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2589         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
2590         assemblies array.
2591         
2592         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
2593         runtime functions while holding the domain assemblies lock.
2595 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2597         * verify.c: Reapplied the last bit of the reverted changes.
2599 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2601         * verify.c: Reapplied more of the reverted changes.
2603 2008-06-09  Martin Baulig  <martin@ximian.com>
2605         * debug-mono-symfile.c (load_symfile): Check the major version
2606         first; if it's wrong, don't print the minor version in the error message.
2608 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2610         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
2611         lock instead of the domain lock to avoid deadlocks, since the thread might
2612         already hold the loader lock.
2614         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
2615         (mono_thread_attach): Ditto.
2617         * monitor.c: Use a TLS variable for holding the current thread id instead
2618         of calling pthread_self ().
2619         (mono_monitor_init_tls): New internal function to initialize the TLS
2620         variable.
2621         (mono_monitor_try_enter_internal): Put the owner == id check after the
2622         owner == 0 check.
2624         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
2625         missed optimizations when using gcc-4.3.
2627 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
2629         * reflection.c (mono_dynamic_image_free): Free the memory
2630         used by MonoGenericParam in MonoDynamicImage::gen_param.
2632         * reflection.c (mono_reflection_setup_generic_class): Allocate
2633         container from mempool.
2635         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
2636         container from mempool.
2638 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2640         * threads.c (mono_set_pending_exception): New internal function to set the
2641         pending exception of the current thread.
2642         (mono_thread_get_and_clear_pending_exception): Check for 
2643         thread->pending_exception as well.
2645         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
2647         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
2648         it can trigger a collection.
2650 2008-06-06  Martin Baulig  <martin@ximian.com>
2652         Merged the `debugger-kahalo' branch.
2654         * mono-debug.h
2655         (MONO_DEBUGGER_VERSION): Bumped to 72.
2657         * debug-mono-symfile.h
2658         (MonoSymbolFileMethodIndexEntry): Removed.
2659         (MonoSymbolFileMethodEntry): New public typedef.
2660         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
2661         (MonoSymbolFileSourceEntry): Remove everything except `index' and
2662         `data_offset'.
2663         (MonoSymbolFileMethodEntry): Removed.
2664         (MonoSymbolFileLexicalBlockEntry): Removed.
2665         (MonoSymbolFileLineNumberEntry): Removed.
2666         (MonoDebugLexicalBlockEntry): Removed.
2667         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
2668         removed `num_il_offsets' and `il_offsets'.
2669         (MonoSymbolFile): Replace `version' with `major_version' and
2670         `minor_version'.
2671         (MONO_SYMBOL_FILE_VERSION): Replace with
2672         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
2673         `MONO_SYMBOL_FILE_MINOR_VERSION'.
2675         * debug-mono-symfile.c
2676         (mono_debug_symfile_lookup_location): Add support for the new line
2677         number table format.
2679 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2681         * metadata.c (free_generic_class): Release the inflated
2682         MonoClass of dynamic generic classes if it's not a generic
2683         type definition.
2685 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2687         * verify.c: Reapplied more of the reverted changes.
2689 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2691         * reflection.c (lookup_custom_attr): Clean the cached flag or
2692         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
2693         for SRE types.
2695 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2697         * verify.c: Reapplied a small part of the reverted changes.
2699 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2701         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2703         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
2704         previously in managed code.
2705         (mono_monitor_exit): Ditto.
2706         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
2708         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
2709         the managed definition.
2711 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2713         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
2715 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2717         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
2718         
2719         * monitor.c: Add some micro optimizations.
2721         * icall.c (type_from_typename): Handle 'bool'.
2723 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2725         * verify.c: Implement constructor verification per P III 1.8.1.4.
2726         Fixes #396716.
2728 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2730         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
2731         holding the assemblies lock here too.
2733 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2735         * verify.c: Kill stack_top function.
2737 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2739         * verify.c: Kill stack_get function.
2741 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2743         * verify.c (mono_method_verify): Last change broke the build. Fixed.
2745 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2747         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
2748         more reliable.
2750         * verify.c (mono_method_verify): Inflate params and locals to avoid
2751         mismatch when checking for compatibility.
2753 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
2755         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
2756         Length prefix should be size in bytes. Fix bug #339530.
2757         
2758         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
2759         Length prefix should be size in bytes. Fix bug #339530.
2761         Code is contributed under MIT/X11 license.
2763 2008-06-05  Bill Holmes <billholmes54@gmail.com>
2765         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
2767         Contributed under MIT/X11 license.
2769 2008-06-05  Martin Baulig  <martin@ximian.com>
2771         * mono-debug-debugger.c
2772         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
2774 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
2776         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
2777         while holding the assemblies lock to prevent deadlocks. Handle the case
2778         where the search hook returns NULL but the assembly was still loaded.
2779         Fixes #323696.
2781         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
2782         modify domain state.
2784 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
2786         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
2787         * Makefile.am (pedump_LDADD): Post-process object files and
2788         add dtrace-generated object file, if necessary.
2790         Code is contributed under MIT/X11 license.
2792 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2794         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
2796 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2798         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
2800 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2802         * threads.c: Try to free everything from the delayed free table
2803         when shutting down threads, and set the variable to NULL after the
2804         table is freed so that calling
2805         mono_thread_hazardous_try_free_all() when shutting down the root
2806         domain doesn't crash.
2808 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2810         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
2811         the caller if resulting type was inflated.
2813         * class.c (mono_class_create_from_typespec): Free the MonoType if it
2814         was inflated.
2816         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
2819 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
2821         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
2822         class library tests.
2824         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
2825         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
2826         #396989.
2828 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2830         * domain.c, domain-internals.h: The JIT infos are now freed by the
2831         JIT info table code.  They are freed immediately if there only a
2832         single JIT info table in circulation.  If there is more, the free
2833         is delayed via a queue.
2835         * threads.c, threads-types.h: New hazard pointer function for
2836         freeing all freeable delayed items in one sitting.
2838 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2840         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
2842         * reflection.c (typebuilder_setup_properties): Same.
2844         * reflection.c (typebuilder_setup_events): Same.
2846 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2848         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
2849         and use it for allocating memory.
2851         * reflection.c (mono_marshal_spec_from_builder): Same.
2853         * reflection.c: Change code to use new signatures.
2855         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
2857 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2859         * decimal.c (rescale128): Put back one line which was accidently commented
2860         out.
2861         
2862         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
2863         to cause crashes.
2865 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2867         * reflection.c (mono_reflection_generic_class_initialize): Name must
2868         be always malloc'ed so we can free it later on. Do this for field, property
2869         and event.
2871         * metadata.c (free_generic_class): Free field, property and event names.
2873 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2875         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
2876         instead of g_memdup.
2878         * reflection.c (typebuilder_setup_fields): Same.
2880 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2882         * decimal.c (rescale128): Optimize this function a bit more.
2884 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2886         * metadata.c (free_generic_class): Release some memory from
2887         SRE generic classes.
2889 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2891         * reflection.c (mono_image_get_generic_field_token): No reference
2892         to name is kept, free it.
2894         * reflection.c (mono_reflection_generic_class_initialize): Free
2895         more memory of the inflated field.
2897 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2899         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
2900         code.
2902 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2904         * reflection.c (mono_dynamic_image_free): Release memory used by
2905         MonoDynamicImage::array_methods elements.
2907         * reflection.c (assembly_add_win32_resources): Release memory after
2908         encoding.
2910 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2912         * decimal.c (log2_32): Use an optimized version for this function too.
2913         
2914         * decimal.c (log2_64): Fix this on 32 bit machines.
2916 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2918         * class.c (mono_dup_array_type): Implement allocation using a mempool.
2920         * class.c (mono_metadata_signature_deep_dup): Same.
2922         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
2923         a mempool.
2925         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
2927         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
2929         * metadata-internals.h: Added mono_metadata_signature_dup_full.
2931         * class-internals.h: Update signatures to take a MonoMemPool.
2933 2008-06-02  Dick Porter  <dick@ximian.com>
2935         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
2936         * icall-def.h: Add
2937         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
2938         FormatMessage API to get the error text.  Fixes bug 321827.
2940 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2942         * decimal.c: Add some micro optimizations to make decimal operations faster.
2944 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2946         * reflection.c (method_encode_clauses): Take a mempool
2947         as parameter and use it to allocate the clause array.
2949         * reflection.c (mono_image_get_field_on_inst_token): Free
2950         the inflated type after encoding it.
2952         * reflection.c (mono_dynamic_image_free): Free each element
2953         of MonoDynamicImage::gen_params.
2955         * reflection.c (reflection_methodbuilder_to_mono_method):
2956         Allocate the generic param array from the mempool.
2957         Allocate signature params from the mempool.
2959         * reflection.c (mono_reflection_generic_class_initialize):
2960         Free inflated fields after been used.
2962 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2964         * icall.c: Reapply the memory leak fixes as they no
2965         longer make mono crash.
2967 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2969         * reflection.c (mono_type_get_object): Don't store the suplied
2970         MonoType with type_hash. A caller which pass a type that
2971         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
2972         might end with a pointer to freed memory.
2973         The solution is to use byval_arg or this_arg from the associated
2974         MonoClass of the supplied type.
2976 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
2978         * icall.c: Revert the rest of the last change as it breaks the build too.
2980 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2982         * icall.c: Revert a leak fix as it's breaking the build.
2984 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2986         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
2988 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2990         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
2992 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2994         * icall.c: Fix some memory leaks.
2996 2008-05-29  Dick Porter  <dick@ximian.com>
2998         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
2999         async socket operations from the pending list when a socket
3000         closes.  Leaving it until the threadpool services the event
3001         exposes a race condition when a socket descriptor is reused.
3002         Fixes bug 377589.
3004 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3006         * object.c: Fix negative index check for array alocation.
3008 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3010         * icall.c, marshal.c: Delegate wrappers should skip visibility.
3011         This check is performed by the verifier for IL created delegates
3012         and by Delegate::CreateDelegate for programatically created ones.
3013         Fixes #372406.
3015 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3017         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
3018         Fix code to use mono_array_size_t instead of int.
3020         Based on patch by Luis F. Ortiz.
3021         Contributed under X11 license.
3022         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3024 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3026         * icall.c: Added ves_icall_System_Array_GetLongLength and
3027         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
3028         arrays.
3030         * icall.h: Export both new functions.
3032         Based on patch by Luis F. Ortiz.
3033         Contributed under X11 license.
3034         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3036 2008-05-28  Martin Baulig  <martin@ximian.com>
3038         The debugger now requires exactly r103463.
3040         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
3041         This version is not supported by the debugger, wait for 72.
3043 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3045         * object.h: Changed array related functions to use
3046         mono_array_size_t instead of guint32. Forgot to commit this file.
3048         Patch by Luis F. Ortiz.
3049         Contributed under X11 license.
3050         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3053 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3055         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
3056         don't define it. Use the number literal instead.
3058 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3060         * icall.c: Changed array related functions to use
3061         mono_array_size_t instead of guint32.
3063         * icall.c (ves_icall_System_Array_GetLength): Check for length
3064         overflow under MONO_BIG_ARRAYS.
3066         Based on patch by Luis F. Ortiz.
3067         Contributed under X11 license.
3068         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3070 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3072         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
3074         Based on patch by Luis F. Ortiz.
3075         Contributed under X11 license.
3076         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3078 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3080         * object.c, object.h: Changed array related functions to use
3081         mono_array_size_t instead of guint32.
3083         Patch by Luis F. Ortiz.
3084         Contributed under X11 license.
3085         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3087 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3089         * object.h: Introduced mono_array_size_t typedef. This must be used
3090         in all places an array length is expected. This is 64bits wide if
3091         MONO_BIG_ARRAYS is enabled.
3093         Patch by Luis F. Ortiz.
3094         Contributed under X11 license.
3095         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3097 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
3099         * security-manager.c class.c: Set the class exception info by calling
3100         mono_class_set_failure ().
3102         * class.c (mono_class_get_exception_data): New accessor function.
3103         (mono_class_set_failure): Store exception_data in the property hash.
3105         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
3106         the struct as a property.
3108         * loader.c (mono_get_method_full): Store the lookup result for method
3109         tokens in method_cache, the others in methodref_cache to decrease the memory
3110         usage of hash tables.
3112         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
3113         (mono_image_init): method_cache is lazy inited now.
3115         * metadata-internals.h (struct _MonoImage): Change method_cache to
3116         a MonoValueHashTable, add a separate methodref_cache.
3118 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
3120         * number-formatter.h: Fix tables to avoid arithemtic overflow in
3121           Double.ToString as exposed by Bug #383531.
3123 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
3125         * number-formatter.h: Make some tables static.
3127         * class.c (mono_method_set_generic_container): New accessor function.
3128         (mono_method_get_generic_container): Ditto.
3130         * class-internals.h (struct _MonoMethod): Remove rarely used 
3131         'generic_container' field, store it in the property hash instead. Add 
3132         'is_generic' boolean field instead.
3134         * image.c (mono_image_init): Initialize property_hash.
3135         (mono_image_close): Destroy property_hash.
3137         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
3138         hold rarely used fields of runtime structures belonging to this image.
3140         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
3141         to get/set method->generic_container.
3143         * loader.c (mono_get_method_from_token): Avoid loading the method header for
3144         generic methods.
3146 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
3148         * class.c (mono_class_inflate_generic_method_full): Don't increase
3149         mono_stats.inflated_method_count for methods found in the cache.
3151         * threads.c (mono_thread_request_interruption): Add a comment about 
3152         QueueUserAPC ().
3154 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
3156         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
3157         interface_offsets_packed table.
3158         
3159         * class.c (mono_class_init): Remove some dead code.
3161         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
3162         mono_class_setup_vtable () when CAS is active to detect security problems.
3164 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
3166         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
3168         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
3169         parameters as it's irrelevant for delegate checking.
3171 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
3173         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
3175         * class.c (mono_class_init): Control the creation of a generic vtable using
3176         a global which is true by default, but set to false by the runtime startup code.
3177         
3178         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
3179         Disabled for now since it breaks the embedding API.
3180         Move the setup of class->methods for arrays to mono_class_setup_methods ().
3181         (mono_class_setup_methods): Add a memory barrier.
3183         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
3184         when mono_class_init () doesn't compute the generic vtable.
3185         
3186 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
3187         * profiler.c: Added mono_profiler_install_statistical_call_chain,
3188         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
3189         to support call chains (backtrace) in the stat profiler.
3190         * profiler.c, profiler-private.h: Likewise.
3192 2008-05-22  Mark Probst  <mark.probst@gmail.com>
3194         * generic-sharing.c: Init generic class when a method of it is
3195         requested via a runtime generic context.
3197 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
3199         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
3201         * reflection.c (mono_type_get_object): Add a FIXME.
3203         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
3205         * class.c (mono_class_get_method_by_index): New helper function, returning an
3206         entry in the class->methods array.
3208 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3210         * class.c (mono_class_init): Only do the array optimization for szarrays. 
3211         Avoid creating a generic vtable for generic instances as well.
3212         (mono_class_get_method_from_name_flags): Don't search in the metadata for
3213         generic instances.
3215 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
3217         * loader.c (mono_get_method_constrained): Inflate the signature
3218         with class context. Fix #325283.
3220 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3222         * object.c (mono_class_create_runtime_vtable): Add a comment.
3224         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
3225         where needed.
3226         (setup_interface_offsets): Handle the case when this is called twice for arrays.
3227         (mono_class_setup_vtable_general): Add an assert.
3228         (mono_class_init): Avoid creating a generic vtable for arrays.
3230         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
3231         here, let mono_class_init () do that.
3233         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
3234         interfaces in mscorlib.
3236         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
3237         interfaces. Add some comments.
3238         (mono_class_init): Call mono_class_setup_methods () here since it is no
3239         longer called by mono_class_setup_vtable ().
3241         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
3242         not set in class->vtable.
3243         (mono_class_create_runtime_vtable): Reenable the disabled code.
3245         * object.c (mono_class_create_runtime_vtable): Disable the last change for
3246         now as it causes some test failures.
3248         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
3249         if using the vtable trampoline. Also remove some strange code which put the
3250         generic methods themselves into the vtable slots. Remove the AOT init_vtable
3251         stuff as it is no longer needed.
3253 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3255         * pedump.c: Give make --verify all option check code as well.
3256         Using --verify code won't check for metadata now.
3258 2008-05-19  Martin Baulig  <martin@ximian.com>
3260         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
3262         * mono-debug.c
3263         (_mono_debug_using_mono_debugger): New global variable; it's set
3264         directly by the debugger, so mono_debug_using_mono_debugger() also
3265         works after attaching.
3267 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3269         * object.c (mono_class_create_runtime_vtable): Use memory barriers
3270         as we do double checked locking on MonoClass::runtime_info and
3271         MonoClassRuntimeInfo::domain_vtables.
3273 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
3275         * debug-helpers.c (print_field_value): Fix a warning.
3277 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
3279         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
3280         set in the AOT case.
3282 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3284         * class.c (mono_class_setup_vtable_general): Use memory barriers
3285         as we do double checked locking on MonoClass::vtable.
3287 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3289         * reflection.c (resolve_object): Inflate only if the generic context
3290         is not null. Fixes #389886.
3292 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
3294         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
3295         instead of g_free.
3297         Code is contributed under MIT/X11 license.
3299 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3301         * class.c: Revert unrelated change.
3303 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3305         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
3306         a generic instantiation, use mono_class_from_mono_type instead of playing
3307         with MonoType directly.
3309 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3311         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
3312         checks must ignore generic instantiations, so mono_class_has_parent is not
3313         suitable. Fixes #390128.
3315 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
3317         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
3318         it to avoid registering tokens during metadata generation. Fixes #390023.
3320 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3322         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
3323         consistent.
3325         Contributed under MIT/X11 license.
3327 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3329         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
3330         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
3331         to fixup the EXE image.
3332         (mono_cleanup): Use mono_close_exe_image.
3333         (mono_close_exe_image): New function.
3334         * image.c: Include "marshal.h".
3335         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
3336         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
3337         counting when the image is loaded outside of mono_image_open_full. Set status
3338         based on GetLastError.
3339         * coree.c: Include required headers. Add init_from_coree.
3340         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
3341         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
3342         (_CorExeMain): Set init_from_coree.
3343         (CorExitProcess): Only call ExitProcess for now.
3344         (CorBindToRuntimeEx): New stub implementation.
3345         (CorBindToRuntime): New function.
3346         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
3347         (MonoFixupExe): ILONLY executables require no fixups.
3348         (mono_set_act_ctx): New function to set activation context.
3349         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
3350         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
3351         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
3352         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
3353         as MONO_INTERNAL.
3354         * domain-internals.h: Add mono_close_exe_image.
3356         Contributed under MIT/X11 license.
3358 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3360         * metadata.c (mono_metadata_compute_size): Correctly calculate field
3361         size for generic param and event tables. Fixes #388977.
3363 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
3365         * loader.c (mono_method_signature): Use memory barriers because of the double
3366         checked locking pattern.
3368         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
3369         aborting or aborted as well. Fixes #376391.
3370         
3371         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
3372         existing runtime state in the Suspend handler during shutdown.
3374 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
3376         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
3378         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
3379         which are starting up or shutting down.
3381         * threads.c (mono_threads_set_shutting_down): Don't return a value since
3382         this function never returns if the runtime is already shutting down.
3384         * icall.c (ves_icall_System_Environment_Exit): Update after 
3385         mono_threads_set_shutting_down () signature change.
3386         
3387 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
3389         * class.c: Added can_access_instantiation to verify if the instantiation
3390         is visible. Fix access check for nested types as they returned TRUE
3391         before doing type and generic instantiation visibility checks.
3393 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3395         * reflection.c (mono_reflection_create_generic_class): The created type
3396         must have a different container from its TypeBuilder. Otherwise they
3397         will end sharing generic arguments, which is wrong.
3399         Due to the sharing, making a generic instance of the created type using
3400         the TypeBuider generic arguments resulted in the generic type definition
3401         been returned, which is wrong as well.
3403         As a bonus the code was leaking the type_params array. This memory should
3404         be allocated from the image mempool.
3406         This fixes bug #354047.
3408 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3410         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
3411         to here         as they are now used in assembly.c new code.
3412         Added a skipverification flag to MonoAssembly.
3413         New internal function mono_assembly_has_skip_verification.
3415         * assembly.c: New function mono_assembly_has_skip_verification. It checks
3416         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
3417         part of #387274.
3419 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3421         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
3422         needed. Fixes #387034.
3424         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
3426 2008-05-06  Miguel de Icaza  <miguel@novell.com>
3428         * assembly.c (mono_assembly_load_reference): Prevent crash while
3429         disassembling Silverlight 2.0 executables while we still do not
3430         have GACed libraries.
3432 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3434         * reflection.c: Special case generic type definitions as well. Fixes #383444.
3436 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
3438         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
3439         of the dynamic case. Fixes #387404.
3441 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3443         *verify.c (mono_verifier_is_class_full_trust): If under
3444         verify_all and the verifier mode was not set, only
3445         gac and corlib types are fulltrust. This makes --verify-all
3446         usable to detect unverifiable code, which is the expected
3447         use case.
3449 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3451         * verify.h: Ops, commited the header with debug
3452         enabled.
3454 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3456         * verify.c (merge_stack): Use the new value on unverifiable
3457         stack merges.
3459         * verify.c (verify_type_compatibility_full): Comparison
3460         of nullable types can't use mono_class_is_assignable_from.
3462         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
3463         that makes all verification errors be reported.
3465         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
3466         mono_method_verify.
3468 2008-05-05  Robert Jordan  <robertj@gmx.net>
3470         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
3471         support for value types. See #386415.
3473         * object.c: comments.
3475         Code is contributed under MIT/X11 license.
3477 2008-05-05  Martin Baulig  <martin@ximian.com>
3479         * debug-mono-symfile.h
3480         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
3481         for old pre-terrania symbol files.
3483 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3485         * mono-config.c: Add ppc64 architecture.
3487         Code is contributed under MIT/X11 license.
3489 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3491         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
3492           PPC64 uses function descriptors as well.
3494         Code is contributed under MIT/X11 license.
3496 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
3498         * object.c (compute_class_bitmap): Ignore literal static fields.
3500         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
3501         var has an invalid format.
3502         (describe_ptr): Add some sanity checks for the vtable.
3503         (add_nursery_frag): Clear unused nursery fragments.
3504         (major_collection): Clear all remaining nursery fragments.
3506 2008-05-03  Robert Jordan  <robertj@gmx.net>
3508         * image.c, metadata-internals.h: add thunk_invoke_cache.
3510         * marshal.c, marshal.h: implement
3511         mono_marshal_get_thunk_invoke_wrapper ().
3513         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
3515         Code is contributed under MIT/X11 license.
3517 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3519         * verify.c (do_leave): Empty the stack.
3521 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3523         * class.c (mono_class_is_assignable_from): Variance
3524         doesn't work between reference and value types. For example,
3525         given type C<T+>, C<int32> is not assignable to C<object>.
3526         Break the argument checking loop on first error. 
3528 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
3530         * icall.c : base64_to_byte_array() needs some more strict
3531           check for sequence of '=' characters. Patch by Santa
3532           Marta (http://deee.g.hatena.ne.jp/santamarta).
3534           Contributed under MIT/X11 license.
3535           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
3537 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
3539         * domain.c: Disable LoadLibrary support to fix Win32 build.
3541         Code is contributed under MIT/X11 license.
3543 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
3545         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
3546         to help with cache behaviour.
3548 2008-05-01  Miguel de Icaza  <miguel@novell.com>
3550         * appdomain.c (mono_domain_from_appdomain): Add new accessor
3551         method. 
3553 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
3555         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
3557 2008-05-01  Dick Porter  <dick@ximian.com>
3559         * process.c (process_get_fileversion): Only pass 16 bits of
3560         language ID to VerLanguageName.  Fixes bug 381204.
3562 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3564         * verify.c (mono_method_verify): Fix the comparison
3565         operator for code bounds check.
3567 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3569         * verify.c (mono_method_verify): Check the bounds of
3570         all access of the code array.
3572 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
3574         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
3576 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
3578         * image.c (mono_image_strong_name_position): Fix return value when the rva is
3579         not valid.
3581 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
3583         * loader.c (mono_get_method_from_token, mono_method_signature): Add
3584         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
3585         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
3586         fixup main EXE images when using mono.exe for mixed-mode assembly support.
3587         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
3588         mono_runtime_load.
3589         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
3590         runtime initialization from metadata.
3591         * assembly.c: Remove obsolete ceGetModuleFileNameA.
3592         (mono_set_rootdir): Use mono_get_module_file_name.
3593         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
3594         handles.
3595         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
3596         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
3597         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
3598         MonoCLIImageInfo. Add support for module handles.
3599         (load_cli_header): Update mono_cli_rva_image_map signature.
3600         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
3601         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
3602         (mono_image_rva_map): Add support for module handles.
3603         (mono_image_ensure_section_idx): Add support for module handles.
3604         (mono_image_close): Add support for module handles.
3605         (do_load_header): Add support for module handles.
3606         (mono_image_open_from_module_handle): New function for internal use.
3607         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
3608         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
3609         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
3610         handles.
3611         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
3612         * image.h: Add mono_image_fixup_vtable.
3613         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
3614         support.
3615         * coree.h: New file.
3616         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
3617         unsupported native code.
3618         (mono_marshal_set_callconv_from_modopt): New function splitted from
3619         mono_marshal_get_managed_wrapper.
3620         (mono_marshal_get_managed_wrapper): Use
3621         mono_marshal_set_callconv_from_modopt.
3622         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
3623         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
3624         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
3625         that results in a deadlock when the runtime is loaded in _CorDllMain.
3626         * Makefile.am: Add coree.c and coree.h.
3628         Contributed under MIT/X11 license.
3630 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3632         * generic-sharing.c: Search for type arguments in array element
3633         types as well.
3635 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3637         * class-internals.h, generic-sharing.c: New, small runtime generic context.
3639         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
3641         * object.c: Don't setup the RGCTX when the vtable is created,
3642         because we're setting it up lazily now.
3644 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
3646         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
3647         64 bit support.
3649 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3651         * verify.c (verify_class_for_overlapping_reference_fields): 
3652         If class is under fulltrust allow reference types to overllap
3653         if they have the same RVA.
3655 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3657         * pedump.c: Added new flag valid-only, that makes the verifier
3658         behaves just like --security=validil. It won't fail type load
3659         due to unverifiable restrictions.
3661 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3663         * class-internals.h (struct MonoMethod): Added a verification_success
3664         field to cache verifier executions. Reduced MonoMethod:slot size by
3665         one bit.
3667 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
3669         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
3670         instead of a 'vt' argument to save an indirection and to allow these to be used
3671         for valuetypes.
3672         (scan_vtype): New helper function to scan an area using a gc descriptor.
3673         (mono_gc_wbarrier_value_copy): Implement this.
3674         (handle_remset): Add support for REMSET_VTYPE.
3675         (find_in_remset_loc): Ditto.
3676         (mono_gc_base_init): Allow some debugging options to be controlled through the
3677         use of the MONO_GC_DEBUG env variable.
3678         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
3679         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
3681 2008-04-23  Martin Baulig  <martin@ximian.com>
3683         * domain.c (mono_domain_create): Move the call to
3684         mono_debug_domain_create() down, after allocating the domain id.
3686 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3688         verify.c (verify_class_for_overlapping_reference_fields): Skip
3689         static fields while verifying for overlapping fields as they
3690         don't matter at all.
3692 2008-04-23  Marek Habersack  <mhabersack@novell.com>
3694         * domain-internals.h: added a declaration of
3695         mono_make_shadow_copy.
3697         * assembly.c (mono_assembly_open_full): shadow copying of
3698         assemblies moved to here, so that all the assemblies within the
3699         application domain's private binary directories can be
3700         processed. Fixes bug #380546
3702         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
3703         mono_make_shadow_copy and made non-static. The decision whether
3704         to shadow-copy an assembly is made based on its location - it's
3705         copied if it's in one of the private application domain binary
3706         directories and its different to the target file in the shadow
3707         directory. Fixes bug #380546
3709 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
3711         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
3713         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
3714         types.
3716         * reflection.c (mono_image_create_token): Handle 
3717         Method/ConstructorOnTypeBuilderInst.
3718         (resolve_object): Ditto.
3719         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
3720         so it can be called from resolve_object. Also handle the case when the inflated
3721         class already has its methods setup.
3723 2008-04-21  Martin Baulig  <martin@ximian.com>
3725         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
3727 2008-04-20  Geoff Norton  <gnorton@novell.com>
3729         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
3730         pointer dereference.
3732 2008-04-15  Marek Habersack  <mhabersack@novell.com>
3734         * appdomain.c (try_load_from): if IOMAP is in effect, call the
3735         portability API to look up the assembly file. Fixes behavior in
3736         situations when the application has a bin/ directory, but the
3737         assembly search patch refers to Bin/ (and thus the requested file
3738         name is Bin/SomeLibrary.dll). Fixes bug #379888
3740 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3742         verify.c (mono_type_is_generic_argument): Extracted this check
3743         from a dozen places to here.
3745         verify.c: Fixed all issues related to boxing generic arguments
3746         and their constraints.
3748 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3750         verify.c (mono_class_interface_implements_interface): Fix win32 build.
3752 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
3754         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
3755         isn't finished yet. Fixes #363447.
3757 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
3759         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
3760         Fixes #346419.
3762 2008-04-13  Jb Evain  <jbevain@novell.com>
3764         * domain.c: update the 2.1 profile versions.
3765         Merged from the Moonlight 2 branch.
3767 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
3769         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
3770         mscorlibs for the non-refonly case as well.
3772         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
3773         in mono_assembly_load_from_full (). Fixes #378924.
3775 2008-04-11  Geoff Norton  <gnorton@novell.com>
3777         * icall.c: The global extern environ doesn't exist on Mac.  We
3778         need to call NSGetEnviron instead.
3780 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3782         verify.c: Add generic method constraint verification.
3784 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3786         class.c (mono_class_inflate_generic_method_full): Add a long
3787         explanation to the is_mb_open hack. Remove the FIXME.
3789 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3791         * verify.c (mono_method_verify): Mark all unknown opcodes
3792         as invalid. Mark jmp as unverifiable.
3794 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3796         * verify.c: Add code to do type constraint verification on class instances.
3798         * verify.c (mono_verifier_verify_class): Use the type constraint 
3799         verification code.
3801 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3803         * class.c (mono_class_get_field_default_value): Don't pass cindex
3804         as hint to mono_metadata_get_constant_index. The local is not initialized
3805         and should contain garbage most of the time. This could only work
3806         with a lot of luck.
3808 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3810         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
3812 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3814         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
3816         * class.c (mono_class_from_generic_parameter): Save the token of the
3817         generic param in MonoClass::sizes.generic_param_token.
3819         * reflection.c (mono_custom_attrs_from_class): If the class type is
3820         VAR or MVAR retrieve the attributes of the generic param.
3822 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3824         * class.c (mono_class_init): Do class verification if the verifier
3825         is enabled.
3827 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3829         * verify-internal.h: Added mono_verifier_verify_class.
3831         * verify.c: Added mono_verifier_verify_class. It checks for
3832         classes with explicit layout that have overlapping reference fields.
3834         * pedump.c: Init the verifier state prior to verification. Fixed
3835         command line arguments.
3837 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3839         * Makefile.am: Added verify-internals.h, hopefully fix the build.
3841 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
3843         * verify-internals.h: Fix a warning.
3845 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3847         * verify-internals.h: New header with the verifier configuration
3848         extracted from mini.c.
3850         * verify.c: Implemented the new functions exported by verify-internals.h.
3852 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3854         * verify.c: Add proper verification of ckfinite.
3856 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3858         * verify.c (do_conversion): Improved error message to something
3859         more meanfull.
3861         * verify.c (check_is_valid_type_for_field_ops): Fix to work
3862         with primitive types.
3864 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3866         * verify.c: Added tail prefix checking. Marked icall
3867         as unverifible.
3869 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3871         * verify.c: Fix the detection of branches to the middle
3872         of an instruction.
3874 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3876         * verify.c: Implemented verification of volatile. and
3877         unaligned. prefix. Check if a type is valid after retrieving it.
3879 2008-04-01  Dick Porter  <dick@ximian.com>
3881         * process.c (process_get_fileversion): If there's no string block,
3882         set the file language to en_US.  Fixes the other new part of bug
3883         374600.
3885 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
3887         * class.c: New functions mono_method_can_access_field_full and
3888         mono_method_can_access_method_full. They perform type visibility
3889         and type site check.
3891         * class-internal.h: Added exported functions.
3893         * verify.c: Use new functions to implement proper visibility checks.
3895 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
3897         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
3899 2008-03-28  Dick Porter  <dick@ximian.com>
3901         * process.c (process_get_fileversion): Use the first language ID
3902         we see, rather than insisting on an invariant language.  Fixes bug
3903         374600.
3905 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
3907         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
3908         the streams to fix reading of invalid memory later.
3910         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
3911         to ease debugging.
3913 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
3915         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
3916         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
3918 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
3919         * threads.h: Added MonoThreadManageCallback type and
3920         mono_thread_set_manage_callback prototype
3921         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
3922         (used to store the mono_thread_manage callback).
3923         * threads.c: Added mono_thread_set_manage_callback, and handle
3924         "MonoThread->manage_callback" in build_wait_tids.
3926 2008-03-26  Dick Porter  <dick@ximian.com>
3928         * process.c (process_get_fileversion): Set FileVersionInfo strings
3929         to Empty when the resource doesn't have the particular info.
3930         Fixes bug 355717.
3932 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
3934         * verify.c (mono_method_verify): Proper prefix validation.
3936 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
3938         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
3939         itself in a separate argument instead of throwing them. Fixes #373448.
3941         * appdomain.c: Bump corlib version.
3943 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3945         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
3947 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
3949         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
3950         version macros.
3952 2008-03-20  Mark Probst  <mark.probst@gmail.com>
3954         * generic-sharing.c, class-internals.h: Code for putting
3955         reflection types into the runtime generic context.
3957 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3959         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
3960         Fixes #340662. 
3963 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
3965         * verify.c (VerifyContext): Added instruction prefix data to the struct.
3967         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
3969         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
3971         * verify.c (do_cast): Let the result value keep the boxed status.
3973         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
3975 2008-03-17  Jb Evain  <jbevain@novell.com>
3977         * reflection.c: when running on a 2.0 runtime, emit
3978         unconditionally the #~ header version as 2.0, and the
3979         CLI header version as 2.5, for symmetry's sake with csc.
3981 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3983         * class.c: Remove the unused cache_interface_offsets stuff.
3985         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
3986         profiler.c: Fix warnings.
3988 2008-03-16  Mark Probst  <mark.probst@gmail.com>
3990         * generic-sharing.c, class-internals.h: Support for putting
3991         methods into the runtime generic context.
3993 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3995         * class.c (mono_class_setup_fields): Ignore calls made to this function for
3996         classes which are generic instances of not-yet finished typebuilders. Fixes
3997         #351172.
3999         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
4001 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
4003         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
4005         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
4006         field, replace it with a hash table in MonoDynamicImage.
4008         * reflection.c (inflate_mono_method): Access the generic definition object from
4009         image->generic_def_objects instead of imethod->reflection_info.
4011         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
4013         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
4014         
4015         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
4016         function in reflection.c so it is easier to keep in sync with the dynamic image
4017         creation code.
4019         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
4020         mono_image_close ().
4022 2008-03-15  Mark Probst  <mark.probst@gmail.com>
4024         * class.c (mono_class_generic_sharing_enabled): Disable generic
4025         sharing for all architectures except AMD64 and x86 to fix build.
4027 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4029         * verify.c: Use the generic definition MonoGenericContext when available.
4030         Remove code for checking generics instance compatibility in favor of
4031         mono_class_is_assignable_from.
4033 2008-03-14  Mark Probst  <mark.probst@gmail.com>
4035         * marshal.c, marshal.h, metadata-internals.h, image.c,
4036         wrapper-types.h: New wrapper for invoking a shared static method
4037         without having to pass the runtime generic context argument.
4039 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4041         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
4043 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
4045         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
4046         
4047         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
4048         create a token from a FieldOnTypeBuilderInst.
4049         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
4050         (resolve_object): Ditto.
4052         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
4053         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
4055 2008-03-14  Martin Baulig  <martin@ximian.com>
4057         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
4059         * debug-mono-symfile.h
4060         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
4061         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
4063 2008-03-10  Martin Baulig  <martin@ximian.com>
4065         * debug-mono-symfile.h
4066         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
4067         `lexical_block_table_offset'.
4068         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
4069         `lexical_blocks'.
4070         (MonoSymbolFile): Added `version'.
4072         * mono-debug.h
4073         (MonoDebugLexicalBlockEntry): Removed.
4074         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
4075         `lexical_blocks'.
4077         * mono-debug.c (mono_debug_add_method): Don't compute lexical
4078         blocks here; the debugger now does this internally.
4080 2008-02-27  Martin Baulig  <martin@ximian.com>
4082         * object.c (mono_runtime_exec_main): Call
4083         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
4084         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
4086 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4088         * verify.c (verify_type_compatibility_full): Allow native int to be converted
4089         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
4091 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4093         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
4094         ldftn with a virtual method.
4096 2008-03-13  Geoff Norton  <gnorton@novell.com>
4098         * decimal.c:  Only include memory.h if the platform has it.
4100 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
4102         * assembly.c, class.c, metadata-internals.h: make sure public key
4103         tokesns are compared in a case-insensitive way. Also, all
4104         the lookups in the GAC use a lowercase public key token
4105         (gaacutil already does the lowercasing on install). Fixes
4106         bug #369541.
4108 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
4110         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
4111         and return value.
4113 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
4115         * image.c: when someone loads a mscorlib from a file, return the
4116         currently loaded mscorlib (fixes bug #369253).
4118 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4120         * class.c: handle types with no parents by forcing them to have
4121         System.Object as a parent and marking them as broken (this currently
4122         allows the first part of bug #369173 to work as well, likely because
4123         we don't check for typeload exceptions everywhere yet).
4125 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
4127         * class.c: more complete check that types belong to corlib
4128         (fixes second part of bug #369173).
4130 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
4132         * generic-sharing.c:  Including glib.h for the MSVC builds to define
4133           "inline" to "__inline" before including mono-membar.h.
4134           
4135         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
4136           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
4137           MSVC builds.
4139         Contributed under MIT/X11 license.
4141 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4143         * verify.c (do_invoke_method): Remove return type validation.
4145         * verify.c (do_ret): Do return type validation at return site instead of
4146         call site.
4148 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4150         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
4152         * verify.c: Some todos cleaned and improved a few error messages.
4154 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
4156         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
4158 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
4160         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
4161         system types correctly.
4163         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
4164         function.
4166 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4168         * assembly.c (build_assembly_name): Fix a warning.
4170 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
4172         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
4173         the called function takes an object type argument. Fixes storing or
4174         valuetypes across remoting as well as reducing memory usage.
4175         * image.c, metadata-internals.h: remove now unused ldfld_remote and
4176         stfld_remote wrapper caches.
4178 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4180         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
4181         is not found.
4183         * reflection.c (mono_image_register_token): New helper function to save
4184         a token->object mapping.        
4186         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
4187         managed code.
4189         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
4190         one dimension arrays. Fixes #367670.
4191         (mono_reflection_get_type_internal): Ditto.
4193 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
4195         * marshal.c: mono_load_remote_field_new() always returns object.
4196         so use the proper signature (fixes bug #366445).
4198 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4199         
4200         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
4201         add an 'inline_failure' flag instead.
4203 2008-03-04  Mark Probst  <mark.probst@gmail.com>
4205         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
4206         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
4207         contains the location of "this", used for exception handling.
4209 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4211         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
4212         their size on all platforms for perf reasons.
4214 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4216         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
4217         object-internal.h
4219         * object-internal.h: Same.
4221 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4223         * reflection.h: Fix the build I just broke.
4225 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4227         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
4228         Test if a token is valid, this remove explicit usage of 
4229         MonoDynamicImage::tokens from the verifier code.
4231         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
4233         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
4234         instead of direct access to MonoDynamicImage::tokens.
4236 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4238         * verify.c (token_bounds_check): Fix the build I just broke.
4240 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4242         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
4244         * verify.c (verifier_load_method): Fixed the errors message.
4246         * verify.c (mono_method_verify): Fixed a debug message.
4248 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
4250         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
4251         mono-perfcounters.h, class-internals.h: support for predefined
4252         writable counters, query of categories and counters, bugfixes.
4254 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4256         * verify.c (do_refanytype): Verify the refanytype opcode.
4258         * verify.c (mono_method_verify): Use do_refanytype.
4260 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4262         * verify.c (do_mkrefany): Verify the mkrefany opcode.
4264         * verify.c (mono_method_verify): Use do_mkrefany.
4266 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
4268         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
4269         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
4270         implementation.
4272 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4274         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
4275         the type load exception.
4277 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4279         * verify.c: Added a few FIXME for method signatures
4281         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
4282         of mono_method_get_signature and get vararg call working. Removed unused
4283         checks for return value.
4285         * verify.c (do_refanyval): Verify the refanyval opcode.
4287         * verify.c (mono_method_verify): Implemented verification of arglist and
4288         use do_refanyval.
4290 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4292         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
4293         vtypes to marshal.c.
4295         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
4296         it works for AOT as well.
4298 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4300         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
4301         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
4302         the system time is adjusted.
4304 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
4306         * icall.c, icall-def.h: use the new time functions (fixes the
4307         non-monotonic behaviour of TickCount).
4309 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
4311         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
4312         it breaks the build.
4313         
4314         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
4315         cattr is not finished yet.
4317 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4319         * verify.c: Proper token validation for field, method and type.
4321 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4323         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
4325         * loader.c (method_from_memberref): Generate type load error instead of method missing
4326         if the type is not found.
4328 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
4330         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
4331         some of the conversions caused the generation of a marshal directive exception.
4333 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4335         verify.c: Report which exception should be thrown by the JIT.
4336         Added a lot of FIXME notes.
4338 2008-02-22  Mark Probst  <mark.probst@gmail.com>
4340         * generic-sharing.c: Runtime generic context slots are not
4341         instantiated on init anymore.  Instead, provide function to do the
4342         instantiating on demand.
4344         * class-internals.h: Added vtable to runtime generic context.
4345         Macros for encoding direct and indirect slot offsets in one
4346         guint32.
4348 2008-02-21  Mark Probst  <mark.probst@gmail.com>
4350         * object.c, generic-sharing.c: Moved some generic sharing code
4351         from object.c to generic-sharing.c.
4353         * generic-sharing.c: Added support for extensible runtime generic
4354         context.
4356         * metadata-internals.h: Two new hash tables in MonoImage for
4357         extensible runtime generic context support.
4359         * domain.c: Unregister generic vtables upon domain unloading.
4361         * image.c: Destroy new hash tables upon image unloading.
4363         * metadata.c: Unregister generic subclasses upon image unloading.
4365         * class-internals.h: New data structure for runtime generic
4366         context template.  New fields in the runtime generic context for
4367         extensible part.
4369         * Makefile.am: Added generic-sharing.c.
4371 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4373         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
4374         there is a pending loader exception, raise it.
4376         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
4377         same.
4379         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
4380         same.
4382         Fixes #363450.
4384 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
4386         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
4388         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
4389         
4390         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
4391         ref-only requests for compatibility with MS.
4393 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4395         * reflection.c (mono_custom_attrs_from_method): Don't silently
4396         return an empty list for generic method instances.
4397         (mono_custom_attrs_from_param): Likewise.
4399 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
4400             Raja R Harinath  <harinath@hurrynot.org>
4402         Fix #354757
4403         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
4404         * class.c (mono_class_inflate_generic_method_full): Initialize it
4405         when a fully-open method is instantiated.
4406         * metadata.c (inflated_method_equal, inflated_method_hash): Update
4407         to new field.
4408         * reflection.c (inflate_mono_method): Don't create a temporary context.
4410 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4412         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4413         Compute correct value, to prepare for imethod->reflection_info going away.
4415 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
4417         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
4419 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4421         * verify.c: Implement skip visibility flag.
4423 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4425         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
4426         which contains an extra field to tell the kind of exception that should be thrown.
4428         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
4430 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
4432         * loader.c (mono_method_get_param_names): Initialize 'klass' after
4433         'method' is updated.
4435 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
4437         * class.c (mono_class_layout_fields): Set class->min_align for classes using
4438         explicit layout as well. Fixes #360375.
4440 2008-02-11  Geoff Norton  <gnorton@novell.com>
4442         * loader.c: Guard and dereference against inflated generic methods
4444 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
4446         * class.c: Include Retargetable spec in assembly name.
4447         * assembly.c: Always include PublicKeyToken spec in assembly name
4448         (with value "null" if assembly is not signed), and include
4449         Retargetable spec.
4450         * icall-def.h: Added icall for Assembly.get_fullname.
4451         * icall.c: Added icall returning the fullname of an assembly.
4453 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
4455         * class.c (mono_class_setup_vtable_general): Add a missing call to
4456         mono_class_setup_methods () which is needed in the AOT case.
4458 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
4460         * verify.c (mono_type_get_stack_name): Added. Return the name for the
4461         stack type of the given MonoType.
4463         * verify.c (verify_type_compatibility_full): Handle the void type.
4465         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
4466         way stack merging works.
4468         * verify.c (store_local): Improved verification message.
4470         * verify.c (do_branch_op): If the merging is invalid, the method
4471         is unverifiable and not invalid. Improved error message.
4473         * verify.c (merge_stacks): Properly merge a boxed valuetype and
4474         a reference type diferent than System.Object. Improved error
4475         message.
4477 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
4479         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
4481         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
4482         type of an enum even if the argument is byref.
4484         * verify.c: Replace all explicit uses of enumtype and enum_basetype
4485         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
4487         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
4489         *verify.c (verify_type_compatibility_full): Make enum types
4490         compatible with their base types.
4492         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
4493         types are compatible for the special case of a boxed valuetype and
4494         System.Object.
4496         * verify.c (verify_stack_type_compatibility): The function
4497         is_compatible_boxed_valuetype was extracted from here.
4499         * verify.c (push_arg): Only set ctx->has_this_store if the method
4500         is not static.
4502         * verify.c (do_ldelem): Fixed a typo in an error message and added
4503         strict check for mixing int32 and native int as the array type
4504         and ldelem type.
4506         * verify.c (merge_stacks): Consider boxed valuetypes in the
4507         compatibility checks.
4509 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
4510         * profiler.h: (MonoGCEvent): Added start-stop the world events.
4512 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4513         *class.c: use_new_interface_vtable_code: renamed the env var to have
4514         a "MONO_" prefix, and fix the logic to enable it by default.
4516 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4517         *class.c:
4518         mono_class_setup_vtable_general: rewrote the way in which interface
4519         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
4520         makes the code more maintainable.
4521         For now the old code is still there, and can be activated setting
4522         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
4524 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
4526         * verify.c: guarded some debug functions around and #ifdef.
4528         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
4530 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
4532         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
4533         changes for now since they seem to break too many things.
4535 2008-02-05  Mark Probst  <mark.probst@gmail.com>
4537         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
4538         mono_marshal_find_nonzero_bit_offset): Added macro and function
4539         for finding the byte- and bit-offset of a bitfield within a
4540         struct.
4542 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
4544         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
4545         (mono_marshal_get_struct_to_ptr): Ditto.
4547         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
4548         cctor_signature.
4550 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
4552         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
4553         between methods for non-corlib types.
4555 2008-02-02  Geoff Norton  <gnorton@novell.com>
4557         * loader.c (mono_method_get_param_names): Populate the parameter name for 
4558         generic parameters as well. (Fixes #342536)
4560 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
4562         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
4564         * verify.c (do_invoke_method): Fix for calling with byref structs.
4566         * verify.c (do_cast): push a boxed value type based on the type token and not
4567         the type of stack.
4569 2008-01-31  William Holmes  <billholmes54@gmail.com>
4571         * process.c (process_module_string_read): Check the size returned form 
4572           VerQueryValue to avoid out of memory exception. 
4574 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
4576         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4577         Handle properly modules which are not in the moduleref table. Fixes
4578         #356938.
4580 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
4582         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
4583         the dynamic case which is now in managed code.
4584         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
4586         * marshal.c (mono_string_to_bstr): Fix a warning.
4587         (init_com_provider_ms): Ditto.
4589         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
4591         * exception.c (mono_get_exception_out_of_memory): New helper function.
4593 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
4595         * marshal.c: Add support for BSTR marshalling
4596         using other COM systems.
4598         Code is contributed under MIT/X11 license.
4600 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4602         * object.c (mono_runtime_invoke_array): reverted previous
4603         commit as it breaks the build.
4605 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4607         * object.c (mono_runtime_invoke_array): Verify arguments for
4608         invalid types. Fixes #348522.
4610 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4612         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
4613         non-final virtual calls using call. 
4615         * verify.c (do_invoke): fixed some TODOs.
4617         * verify.c (push_arg): set has_this_store for "ldarga 0".
4619 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
4621         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
4622         which belong to an inflated class. Fixes #356531.
4624 2008-01-26  Robert Jordan  <robertj@gmx.net>
4626         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
4627         which resort to FindFirstFile when a certain error condition
4628         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
4629         Code is contributed under MIT/X11 license.
4631 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
4633         * marshal.c (emit_marshal_string): Fix out string marshalling
4634         to use specified encoding. Fixes #323900.
4636         Code is contributed under MIT/X11 license.
4638 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
4640         * class.c (mono_class_inflate_generic_method_full): Don't modify
4641         iresult->context after cache check.
4643 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
4645         * class.c (mono_class_inflate_generic_method_full): Change the
4646         struct assignments to memcpy for better visibility and add some comments.
4648 2008-01-23  Dick Porter  <dick@ximian.com>
4650         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
4651         procedure, and make it work on windows.
4653 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
4655         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
4656         a MonoReflectionTypeBuilder since it is always of that type.
4658         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
4660         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
4662         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
4663         
4664         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
4666         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
4668         * reflection.c (mono_reflection_create_runtime_class): Remove already created
4669         instantiations from the type cache.
4671 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4673         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
4675         * verify.c (do_unbox_value): push a controled mutability managed pointer.
4677 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4679         * verify.c (do_ldstr): added, verifies if the #US token is valid.
4681         * verify.c (mono_method_verify): removed old TODO
4683 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4685         * verify.c (do_newobj): add visibility check.
4687 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4689         * verify.c (do_load_function_ptr): add visibility check.
4691 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
4692         *class.c:
4693         mono_generic_class_get_class: hook profiler events.
4694         mono_field_get_offset: added to support heap-shot in the new profiler.
4695         *class.h: exported mono_field_get_offset.
4696         * reflection.c:
4697         mono_reflection_setup_internal_class: hook profiler events.
4699 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
4701         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
4702         argument here too and use it to avoid checking for pending exceptions if 
4703         possible.
4705 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
4707         * assembly.c (build_assembly_name): add arg for passing the assembly
4708         flags. Do not consider a PublicKey with value "null" valid.
4709         (mono_assembly_name_parse_full): added boolean argument that will be
4710         set if the assembly name contains a PublicKeyToken spec. Added support
4711         for the Retargetable spec for which only Yes or No are allowed as valid
4712         value. Consider assembly name invalid if Retargetable spec is set, but
4713         either version, culture or public key (token) are not specified.
4714         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
4715         with implementation in assembly.c.
4716         * icall.c (fill_reflection_assembly_name): also copy assembly flags
4717         from MonoAssemblyName.
4718         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
4719         introduced argument for mono_assembly_name_parse_full to know if the
4720         assembly name has a PublicKeyToken spec, and if it has instruct
4721         fill_reflection_assembly_name to use default value for keyToken (if
4722         PublicKeyToken is null).
4724 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4726         * verify.c (mono_method_verify): fixed ovf ops with
4727         float values. They are unverifiable now.
4729 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4731         * class.c (set_failure_from_loader_error): add BadImageException to the
4732         list of exceptions that can cause a type to fail to load.
4734         * class.c (mono_class_get_exception_for_failure): same.
4736 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
4738         * verify.c (in_any_exception_block): added, check if offset
4739         is part of any exception handling clause.
4741         * verify.c (get_stack_type): added VAR and MVAR types.
4743         * verify.c (do_stobj): better error messages.
4745         * verify.c (do_cpobj): added, check cpobj.
4747         * verify.c (do_initobj): added, check initobj.
4749         * verify.c (do_sizeof): added, check sizeof.
4751         * verify.c (do_localloc): added, check localloc.
4753         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
4755 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
4757         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
4758         save_lmf/restore_lmf opcodes.
4760         * threads.c (mono_threads_install_notify_pending_exc): New function to
4761         install a callback notifying the JIT there is a pending exception on a thread.
4762         (mono_thread_request_interruption): Call the new callback.
4763         (mono_thread_get_and_clear_pending_exception): New function to return the
4764         exception pending on a thread.
4766         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
4767         to turn off checking for pending exceptions.
4768         (mono_marshal_get_native_wrapper): Ditto.
4770 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4772         * threads-types.h: Get rid of the unnecessary extern declarations.
4774 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
4776         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
4777         return field from parent class if not private.
4778         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
4779         returns fields from parent class if they are not private.
4780         (method_nonpublic): added function to determine if a given method
4781         should be considered non-public. Returns false for private methods
4782         on parent class, and internal methods from parent on the 1.0 profile.
4783         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
4784         use method_nonpublic function to determine whether method should be
4785         returned.
4786         (property_accessor_public): use newly introduced method_nonpublic
4787         function to determine whether accessor is non-public. 
4788         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
4789         event from parent class if not private. Only return static event if
4790         Static flag is set, and only return static event from parent class if
4791         FlattenHierarchy flag is set.
4792         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
4793         include non-private events from parent class.
4795 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4797         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
4798         warning.
4800 2008-01-16  Wade Berrier <wberrier@novell.com>
4802         * security.c: Add assembly.h header to appease some warnings
4804 2008-01-16  Dick Porter  <dick@ximian.com>
4806         * process.c (process_module_string_read): Remove trailing null
4807         when saving string.
4809 2008-01-16  Mark Probst  <mark.probst@gmail.com>
4811         * class-internals.h: A new data structure describing the layout of
4812         a runtime generic context (MonoRuntimeGenericContextTemplate).
4814         * metadata-internals.h: Added a hash table to MonoDomain that maps
4815         from open generic classes to their runtime generic context
4816         templates.
4818         * object.c: Building of the runtime generic context, including
4819         proper handling of generic type arguments of superclasses.
4820         Building of the runtime generic context according to the template.
4822 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
4824         * class.c (mono_class_setup_fields): Set field.count for generic instances.
4825         Fixes #350856.
4827         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
4828         mono_portability_find_file (). Fixes #325466.
4829         (mono_image_get_public_key): Fix a warning.
4831 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
4833         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
4834         Fixes #353550.
4835         (mono_class_from_name_case): Ditto.
4837 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
4839         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
4840           common storage for the tables used in the System/NumberFormatter class.
4842 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
4844         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
4846 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
4848         * verify.c (get_boxable_mono_type): check if the token is valid.
4850         * verify.c (set_stack_value): changed to add an error if an
4851         invalid type is set on stack. Changed all callers due to signature change.
4853         * verify.c (do_stobj): implement stobj validation.
4855 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
4857         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
4858         set container->is_method, it was set earlier.
4860         * metadata.c (type_in_image): Handle MVARs which belong to not finished
4861         generic methods.
4863         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4864         is_method of the generic container to TRUE for methods.
4866 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4868         * metadata.c (type_in_image): Handle type parameters properly.
4870         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
4871         memory ownership of this structure.
4873 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
4875         * verify.c (get_boxable_mono_type): make typedref types been just
4876         unverifiable. check for void type.
4878         * verify.c (do_unbox_any): added, verify opcode unbox.any.
4880         * verify.c (do_load_function_ptr): accept method spec tokens.
4882 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4884         * marshal.c (mono_class_native_size): Always set *align even if this is called
4885         recursively.
4887 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
4889         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
4890         out-of-date.
4892 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
4894         * verify.c: removed some old unused tables. A huge bunch of small fixes
4895         to things found while testing the verifier with mono basic.
4897         * verify.c (dump_stack_value): dump null literal flag to.
4899         * verify.c (verify_type_compatibility_full): fix comparison
4900         for types that have a generic super type.
4902         * verify.c (verify_stack_type_compatibility): fix compatibility
4903         between null literals and reference types. fix compatibility between
4904         boxed valuetypes and object. fix corner case test for enums.
4906         * verify.c (do_cmp_op): proper verification of cgt.un in case
4907         of reference types.
4909         * verify.c (do_invoke_method): fix error message.
4911         * verify.c (do_store_indirect
4913         * verify.c (check_is_valid_type_for_field_ops): proper verification
4914         of managed pointers to valuetypes and boxed valuetypes. proper verification
4915         of null literals.
4917         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
4918         allow token to be a reference type.
4920         * verify.c (do_cast): proper handling of boxes valuetypes.
4922         * verify.c (do_stelem): proper handling of storing a boxed valuetype
4923         in object[].
4925         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
4926         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
4927         fixed the decoding of unbox_any
4929 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
4931         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
4933 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
4935         * verify.c (do_newobj): do delegate verification.
4937         * verify.c (verify_delegate_compatibility): perform delegate
4938         verification.
4940         * verify.c (verify_ldftn_delegate): perform tests related to
4941         ldftn delegates.
4943         * verify.c (mono_delegate_signature_equal): perform the
4944         slightly diferent signature comparison required by delegates.
4946         * metadata.c (mono_metadata_type_equal_full): added and exported
4947         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
4948         allows signature only comparison.
4950         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
4951         as MONO_INTERNAL.
4953 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
4955         * verify.c: added a bunch of stack_slot_* functions to
4956         make access to stack slot type easier. This is required to
4957         allow optional flags, like null literal, boxed value and
4958         this pointer.
4959         All access paths to IlStackDesc::stype have been changed 
4960         to use these new funcions.
4961         Removed a bunch of unused functions and cleared all warnings.
4962         This patch introduces the usage of the this pointer and 
4963         boxed value flags.
4965 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
4967         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
4969 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
4971         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
4972         match managed version.
4974         * appdomain.c: Bump corlib version.
4975         
4976         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
4977         argument.
4979 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
4981         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
4982         Set public key token to zero-length byte array if assembly is not
4983         strongnamed.
4985 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4987         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
4988         writing a vtype array elem.
4990 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4992         * assembly.c (build_assembly_name): return FALSE if length of token is
4993         not 16 (if not "null").
4994         (mono_assembly_name_parse_full): return FALSE if value of version,
4995         culture, token or key is 0.
4996         * icall.c (fill_reflection_assembly_name): add boolean arguments to
4997         specify whether public key and public key token must be set to default
4998         value (zero-length byte array) if not available. Set versioncompat to
4999         SameMachine. If public key is available or the default is set, then
5000         set PublicKey flag.
5001         (ves_icall_System_Reflection_Assembly_FillName): if no public key
5002         is available, use empty byte array as default value. On the 2.0
5003         profile, use default value for public key token if not set.
5004         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
5005         profile, use default value for public key if not set. On the 2.0
5006         profile, use default value for public key token if not set.
5007         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
5008         default values for public key and public key token.
5010 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
5012         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
5013         field to keep it in synch with the managed object.
5015         * marshal.c (emit_marshal_object): Add support for byref marshalling of
5016         delegates. Fixes #351520.
5018         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
5019         contains defined memory.
5020         
5021         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
5023         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
5024         
5025         * sgen-gc.c (check_consistency): New helper function to do a consistency check
5026         of the GC data structures.
5028         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
5030         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
5031         
5032         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
5033         barrier.
5034         (mono_array_clone_in_domain): Ditto.
5035         (mono_array_clone_in_domain): Ditto.
5037         * threads.c (start_wrapper): Register the thread start argument as a GC root.
5038         (cache_culture): Use a write barrier.
5040         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
5041         (ves_icall_get_property_info): Ditto.
5043         * object.h (MONO_STRUCT_SETREF): New macro.
5045         * class-internals.h (MonoStats): Add some GC statistics.
5047         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
5049 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
5051         * exception.c (mono_exception_from_name_two_strings):
5052         Break from loop after method is found.
5054 2008-01-04  Dick Porter  <dick@ximian.com>
5056         * process.c (process_module_string_read): Rename variable to
5057         reflect correct usage, after fixing bug 345972.
5059 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
5061         * verify.c (mono_type_create_fnptr_from_mono_method): 
5062         created a MonoType function pointer instance to be used during
5063         verification. The verifier releases this memory at end.
5065         * verify.c (mono_method_is_constructor): extracted repeated
5066         checks for constructor into a single class.
5068         * verify.c (do_push_field): use new extracted method
5069         for constructor check.
5071         * verify.c (do_newobj): same.
5073         * verify.c (do_ldftn): renamed to do_load_function_ptr
5074         and make it verify ldvirtftn too.
5076         * verify.c (mono_method_verify: proper verification
5077         of ldvirtftn. release created MonoMethod instances.
5079 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5081         * verify.c (token_bounds_check): added.
5083         * verify.c (do_ldftn): added.
5085         * verify.c (mono_method_verify): proper verificartion of ldftn.
5087 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5089         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
5090         than the table row count. It's the resposibility of the caller to
5091         make the bounds check and raise the correct error.
5093         * metadata.c (mono_metadata_decode_row_col): Same.
5095         * loader.c (mono_get_method_from_token): perform bounds check
5096         on token for methoddef table.
5098 2007-12-29  Miguel de Icaza  <miguel@novell.com>
5100         * icall.c
5101         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
5102         assert into a negative result, the managed code already coped with
5103         that.
5105         Some folks on Windows reported this error. 
5107 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
5109         * appdomain.c: Bump corlib version.
5110         * icall.c:
5111         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
5112         CultureInfo.CreateCulture to create CultureInfo for name.
5113         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
5114         create CultureInfo for name. Fixes bug #347174.
5116 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5118         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
5119         flags.
5121         * verify.c (is_valid_branch_instruction): allow branching to the
5122         first instruction of the protected block.
5124         * verify.c (is_valid_cmp_branch_instruction): same.
5126         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
5127         avoid double initialization.
5129         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
5130         detect which cases the eval stack should just be copied.
5132         * verify.c (mono_method_verify): check if the eval stack
5133         is empty when entering a protected block.
5135 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5137         * verify.c: added is_clause_in_range, is_clause_inside_range,
5138         is_clause_nested and verify_clause_relationship. They perform
5139         the verifications stated in P1 12.4.2.7.
5141         * verify.c (mono_method_verify): remove some unused variables,
5142         add the new exception clause checks, add instruction border
5143         checks for protected block start/end, improved some error 
5144         messages and fixed a bug in the way invalid instruction access
5145         is detected.
5147 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
5149         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
5150         from GC 7.0 if available.
5152         * object.c: Remove an unused define.
5153         
5154         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
5156         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
5158         * null-gc.c (mono_gc_make_descr_for_array): Implement.
5160         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
5162         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
5163         to take the same arguments as the other make_descr functions.
5165         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
5167         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
5168         directly.
5170         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
5171         mini.c.
5173         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
5174         call to boehm-gc.c.
5176         * boehm-gc.c (mono_gc_register_root): Fix a warning.
5178         * null-gc.c (mono_gc_register_root): Fix a warning.
5180         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
5182         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
5183         (mono_gc_base_init): Call GC_init ().
5185         * null-gc.c: Define mono_gc_register_root () as a no-op.
5187         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
5189 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
5191         * verify.c: add prototype for merge_stacks at top
5193         * verify.c (do_switch): added.
5195         * verify.c (merge_stacks): on some cases the stack merging
5196         was not happening properly. Unequal stack sizes at merge
5197         points should be invalid.
5199         * verify.c (mono_method_verify): added more debug info on stack state.
5200         verify switch properly.
5202 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
5204         * method-builder.h: New file, moved the mono_mb_ declarations here from 
5205         marshal.h.
5207         * boehm-gc.c marshal.c: Include method-builder.h.
5209         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
5211         * marshal.c: Remove some code which is now in method-builder.c.
5213 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
5215         * method-builder.c: New file, extraction of the method builder functionality 
5216         from marshal.c.
5218         * marshal.c: Move the mb functions into method-builder.c.
5220         * marshal.h marshal.c: Export some mono_mb_... functions.
5222         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
5224         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
5225         the caller.
5227         * class.c (mono_class_get_full): Check the token type in the dynamic case.
5229         * loader.c (mono_field_from_token): Ditto.      
5231         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
5232         type as well.
5233         
5234         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
5235         Fixes #342565.
5237         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
5238         a helper function for setting it.
5240         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
5242         
5243         * assembly.c: Significally simplify code now that referenced assemblies are 
5244         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
5246         * threads.h: Don't include  the internal threads-types.h header file. Fixes
5247         #349952.
5249 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
5251         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
5252         instructions that were target of branches or are at protected block boundaries.
5254         * verify.c (in_same_block): handle filter clauses.
5256         * verify.c (is_valid_branch_instruction): added. checks the target of
5257         instructions br or brtrue/false.
5259         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
5260         binary branch instructions such as beq and bge.
5262         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
5263         and made it pin the instruction as been part of the exception block.
5265         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
5266         of in_same_block.
5268         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
5269         of in_same_block.
5271         * verify.c (do_ret): ret from a protected block is unverifiable and
5272         not invalid.
5274         * verify.c (do_static_branch): verify br and br.s instructions.
5276         * verify.c (merge_stacks): add extra param to support detection
5277         of branches in the middle of instructions.
5278         
5279         * verify.c (mono_method_verify): verify branches and exception blocks
5280         that target the middle of instructions. Proper verification of br and br.s.
5282 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
5284         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
5285         skip_visibility field.
5286         (reflection_methodbuilder_from_dynamic_method): Ditto.
5288         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
5289         registrations. Fixes #348193.
5291         * threads.h: Move the internal mono_thread_get_pending_exception () to
5292         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
5294 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
5296         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
5297         icall registration. Fixes #348193.
5299         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
5300         for corlib classes into object. Fixes #349621.
5302 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
5304         * icall.c (property_accessor_nonpublic): new function to determine
5305         whether an accessor allows a property to be considered non-public.
5306         Returns false for private accessor(s) from parent class, and internal
5307         accessor(s) from parent on 2.0 profile (and higher).
5308         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
5309         to determine whether property should be included if NonPublic flag
5310         is set. Fixes bug #349078.
5312 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
5314         * verify.c (init_stack_with_value): added.
5316         * verify.c (mono_method_verify): extracted common
5317         code for exception initialization into init_stack_with_value.
5319         * verify.c (mono_method_verify): initialize the exception
5320         for handler clauses as well.
5322         * verify.c (mono_method_verify): fix the exception clause
5323         ordering rules, it should use handler end offset and not
5324         start offset.
5326 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
5328         * rawbuffer.c: remove useless warning.
5330 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
5332         * threads.h, threads-types.h: move functions to the correct header
5333         (fixes bug#349952).
5335 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5337         * verify.c (mono_method_verify): proper verification
5338         of exception handling clauses ranges and fallthru in
5339         and out of protected blocks.
5341 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5343         * verify.c (mono_method_verify): fixed compilation issue.
5345 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5347         * verify.c (mono_method_verify): a printf slipped in, changed
5348         to use verifier debug macro.
5350 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
5352         * verify.c (is_correct_leave): check for filter clauses.
5354         * verify.c (do_filter): added.
5356         * verify.c (mono_method_verify): property verification of leave.
5359 2007-12-18  Mark Probst  <mark.probst@gmail.com>
5361         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
5362         Win32 build, until we figure out how to do the proper thing on
5363         Win32.
5365 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
5367         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
5368         by the previous patch.
5369         
5370         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
5371         the assembly resolve handler for refonly assemblies.
5373 2007-12-17  Mark Probst  <mark.probst@gmail.com>
5375         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
5376         Make sure only one thread is allowed to commence shutdown, and
5377         don't allow new threads to be started once shutdown is in
5378         progress.
5380 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
5382         * verify.c (is_correct_endfilter): added.
5384         * verify.c (is_unverifiable_endfilter): added.
5386         * verify.c (do_endfilter): added.
5388         * verify.c (mono_method_verify): property verification of endfilter
5389         and fixed a corner case or endfinally.
5391 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
5393         * verify.h: new flags to support fail fast of unverifiable code and
5394         do non-strict verification. Non-strict verification is required to
5395         have MS runtime compatibility. There are a huge amount of unverifiable
5396         code that it accepts as verifiable. The strict mode verifies the code
5397         as the specs says.
5398         Non-strict mode will be required in cases where code needs to be
5399         accepted as verifiable but fails under strict mode.
5401         * pedump.c: added support to fail fast and non-strict verification.
5403         * verify.c: added support for both fail fast and non-strict verification.
5405 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
5407         * verify.c (is_correct_endfinally): added.
5409         * verify.c (mono_method_verify): property verification of endfinally.
5411 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5413         * verify.c (in_any_block): check for filter clauses.
5415         * verify.c (is_correct_rethrow): added.
5417         * verify.c (mono_method_verify): property verification of rethrow.
5419         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
5421 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5423         * verify.c (do_throw): added.
5425         * verify.c (mono_method_verify): property verification of throw
5427 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
5429         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
5430         assemblies. Fixes #346425.
5432 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
5434         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
5435         FieldBuilders.
5437         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
5439         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
5440         prevent asserts when this is called with a token which might not be valid.
5442         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
5443         lookup_dynamic_token_class with valid_token == FALSE.
5445         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
5447         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
5449         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5450         
5451 2007-12-10  Mark Probst  <mark.probst@gmail.com>
5453         * gc.c: Don't delay threadpool thread finalization unless Mono is
5454         shutting down.
5456 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5458         * threads.c: turn an assert into a non-fatal warning.
5460 2007-12-09  Robert Jordan  <robertj@gmx.net>
5462         * icall.c (GetVirtualMethod): Add missing argument validation.
5464 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5466         * verify.c (do_cast): added.
5468         * verify.c (mono_method_verify): property verification of castclass and isinst.
5471 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5473         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
5475         * verify.c (do_stelem): added.
5477         * verify.c (mono_method_verify): property verification of stelem.X.
5479 2007-12-07  Mark Probst  <mark.probst@gmail.com>
5481         * class.c, class-internals.h: Introduce an environment variable
5482         (MONO_GENERIC_SHARING) through which the extent of generic code
5483         sharing can be controlled (share all classes, share only corlib
5484         classes, or share nothing).
5486         * object.c: Only create runtime generic context for classes for
5487         which sharing is enabled.
5489 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5491         * verify.c (do_ldelem): refactor it to work with ldelem.any.
5493         * verify.c (mono_method_verify): property verification of ldelem.any.
5495 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5497         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
5498         added ldelem.X opcodes.
5500         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
5502         * verify.c: proper verification of ldelem.X 
5504 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
5506         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
5508 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5510         * verify.c (mono_method_verify): null literal requires special handling,
5511         the value pushed on stack need to be flagged as so.
5513         * verify.c (do_ldelema): Verify ldelema properly.
5515 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5517         * verify.c: Verify ldlen properly.
5519 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
5521         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
5522         to the target object's type. Fixes #346160.
5524 2007-12-05  Dick Porter  <dick@ximian.com>
5526         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
5527         Solaris needs the same workaround as BSD-derived systems.  Fixes
5528         bug 323524, patch by Burkhard Linke
5529         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
5531 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
5533         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
5534         handle to use when error dialog is shown; otherwise, update mask
5535         to show no error dialog when an error occurs.
5537 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
5539         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
5541         * class.c (mono_class_get_field_default_value): New helper function to initialize
5542         field->def_type and field->data.
5544 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
5546         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
5547         the general one.
5549         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
5551         * marshal.c: Avoid depending on delegate->method_info being set.
5553         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
5554         
5555         * object.c (mono_delegate_ctor): Set delegate->method.
5557         * object-internals.h (struct _MonoDelegate): Add 'method' field.
5559         * appdomain.c: Bump corlib version.
5561 2007-11-27  Raja R Harinath  <harinath@gmail.com>
5563         * metadata.c (mono_generic_inst_equal_full): Short-circuit
5564         equality check if we're comparing canonicalized MonoGenericInsts.
5566 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
5568         * class.c (generic_array_methods): Call mono_class_setup_methods () before
5569         accessing class->methods.
5571 2007-11-22  Dick Porter  <dick@ximian.com>
5573         * threads.c: Ensure that the synch_cs is set before trying to use
5574         it.
5576 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
5578         * profiler.c: r89126 broke the statistial profiler, unbreak.
5580 2007-11-22  Martin Baulig  <martin@ximian.com>
5582         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
5584         * mono-debug.c
5585         (mono_debug_debugger_version): Bump to 3.
5586         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
5587         -> mono_debugger_class_initialized().
5589         * mono-debug-debugger.c
5590         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
5592         * class.c
5593         (mono_debugger_start_class_init_func): Removed.
5594         (mono_debugger_class_loaded_methods_func): Added.
5595         (mono_class_setup_methods): Call it here.
5597 2007-11-22  Martin Baulig  <martin@ximian.com>
5599         * mono-debug.c
5600         (mono_debug_add_delegate_trampoline): New public method.
5601         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
5603         * mono-debug.h
5604         (MonoSymbolTable): Added `global_data_table'.
5605         (MonoDebuggerTypeKind): Removed.
5607 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
5609         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
5610         these methods.
5612         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5613         
5614 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
5616         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
5618 2007-11-20  Martin Baulig  <martin@ximian.com>
5620         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
5622         * mono-debug-debugger.c
5623         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
5624         (mono_debugger_remove_breakpoint): Likewise.
5625         (mono_debugger_check_breakpoints): Likewise.
5626         (mono_debugger_register_class_init_callback): New public method.
5627         (mono_debugger_remove_class_init_callback): Likewise.
5628         (mono_debugger_add_type): Likewise.
5630         * mono-debug-debugger.h
5631         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
5633 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
5635         * class.c: more interface implementations needed for the
5636         array enumerator (fixes bug #341112).
5638 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
5640         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
5641         fix ParamName of ArgumentNullExceptions.
5643 2007-11-17  Miguel de Icaza  <miguel@novell.com>
5645         * reflection.c (mono_reflection_encode_sighelper): Generate the
5646         modopts and modreqs.   I have a useless test that crashes monodis,
5647         but that shows the code working.
5649 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
5651         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
5652         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
5654 2007-11-15  Dick Porter  <dick@ximian.com>
5656         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
5657         When joining a thread, it's the thread that's calling Join that
5658         gets WaitSleepJoin state not the target.  Fixes the standalone
5659         test case in bug 334740, and hopefully the whole bug too.
5661 2007-11-15  Dick Porter  <dick@ximian.com>
5663         * process.c: Read file version info from the files pointed at by
5664         process modules, not the current process.  Fixes bug 315969.
5666         Use windows typedef names in some places to fix warnings on the
5667         windows build.
5669 2007-11-15  Mark Probst  <mark.probst@gmail.com>
5671         * image.c, metadata-internals.h: Added a generic_class_cache hash
5672         to MonoImage for looking up generic classes when sharing generics.
5674 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
5676         * sgen-gc.c: warning cleanups.
5678 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
5680         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
5681         inherited properties.
5683 2007-11-14  Mark Probst  <mark.probst@gmail.com>
5685         * object.c, class-internals.h: Added more information to the
5686         runtime generic context.
5688 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
5690         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
5691         instead of just the target method. Generalize the abstract method handling to
5692         handle any non-static method.
5694         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5695         mono_marshal_get_delegate_invoke () signature change.
5697 2007-11-13  Mark Probst  <mark.probst@gmail.com>
5699         * class.c, class-internals.h: Made
5700         mono_type_get_basic_type_from_generic () public.  Fixed member
5701         access check for shared generics.
5703         * loader.c: Don't insert field into field cache if it's part of a
5704         non-inflated generic class.
5706         * domain.c, domain-internals.h: The generic sharing context is now
5707         part of the jit info data structure.  Added two accessor
5708         functions.
5710 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
5712         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
5713         the array Get/Set/Address methods, since the JIT inlines them.
5715         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
5717         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
5718         (mono_image_init): Initialize runtime_invoke_direct_cache.      
5720         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5721         mono_marshal_get_delegate_invoke signature change.
5723         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
5724         an additional argument. Add support for invoking abstract methods.
5726         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
5728         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
5730 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5732         * class.c: Do field layout for open generic classes as well.
5734 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5736         * gc.c, gc-internal.h: Don't finalize threadpool threads with
5737         other objects, because the threadpool is still around.  Put them
5738         in a list instead and after finalizing all other objects in the
5739         root domain shut down the thread pool and then finalize the
5740         threads.  Fixes bug #337383.
5742         * threads.c, thread-types.h: New mono_thread_create_internal()
5743         function for marking a thread with the threadpool flag before it
5744         started.  Set synch_cs to NULL after freeing it.
5746         * threadpool.c: Mark threadpool threads before they start.
5748 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
5750         * reflection.h, reflection.c: don't export random functions
5751         and lazy load dbnull and missing objects.
5753 2007-11-07  Jonathan Chambers <joncham@gmail.com>
5755         * class.c: Initialize COM types if COM interfaces
5756         are present (not just COM classes).
5757         
5758         Code is contributed under MIT/X11 license.
5760 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5761         * reflection.c:
5762         create_dynamic_mono_image: hook module profiler events (dynamic case).
5763         mono_image_basic_init: hook assembly profiler events (dynamic case).
5765 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5766         * profiler.c:
5767         simple_appdomain_unload: completely terminate the profiler
5768         instead of only processing the statistical samples.
5769         simple_shutdown: make sure this is really called exactly once,
5770         even in multithreaded applications, and always listen to
5771         appdomain events.
5772         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
5773         here, the "[un]load" functions will do it.
5774         Fixes bugs #333791 and #325261.
5776 2007-11-07  Geoff Norton  <gnorton@novell.com>
5778         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
5779         rather than depend on __APPLE__.
5781 2007-11-07  Mark Probst  <mark.probst@gmail.com>
5783         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
5785 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
5787         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
5788         UTF16 MonoString. Fix the crash from bug #335488
5790 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
5792         * marshal.c: Correct (for non-Win32 OS) length != size in 
5793         mono_string_from_bstr. Fix #339530.
5795 2007-11-06  Geoff Norton  <gnorton@novell.com>
5797         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
5798         to succeed
5800 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
5802         * process.c: Added run-time GetProcessId API detection for Windows.
5804 2007-11-04  Miguel de Icaza  <miguel@novell.com>
5806         * reflection.c  (mono_param_get_objects): If a parameter has the
5807         attribute [System.Runtime.InteropServices.Optional] we should
5808         set the DefaultValue of the ParameterInfo to be
5809         System.Reflection.Missing instead of DBNull.
5811         See bug #339013.
5813         (mono_get_reflection_missing_object): New method,
5814         returns the System.Reflection.Missing.Value singleton instance.
5816 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5818         * culture-info-table.h : regenerated.
5820 2007-11-02  Jonathan Chambers <joncham@gmail.com>
5822         * icall.c: Use GetEnvironmentStrings on windows
5823         so we are using the same environment block as 
5824         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
5825         #333740.
5826         
5827         Code is contributed under MIT/X11 license.
5829 2007-10-31  Martin Baulig  <martin@ximian.com>
5831         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
5833         * mono-debug-debugger.h
5834         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
5836 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
5838         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
5839         classes.
5841 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
5843         * culture-info-table.h : regenerated.
5845 2007-10-30  Robert Jordan  <robertj@gmx.net>
5847         * icall-def.h, icall.c:
5848         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
5850         Code is contributed under MIT/X11 license.
5852 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5854         * class.c (mono_class_setup_vtable): Find the inflated methods in the
5855         inflated class instead of inflating them again.
5856         
5857         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
5858         dynamic case.
5860         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
5861         Call setup_supertypes () after klass->parent is set.
5862         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
5864         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
5865         for inflated instances of not yet created dynamic generic classes.
5866         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
5867         times from inflated_method.
5868         (methodbuilder_to_mono_method): Ditto.
5870 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
5872         * gc.c: code cleanup and removed old untested option of not creating the
5873         finalizer thread.
5875 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5877         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5878         creating a jump trampoline for dynamic methods.
5880 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
5882         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
5883         generic TypeBuilders when called from another method of the same type (bug #335131).
5886 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
5888         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
5889         doesn't seem to work perfectly.
5890         
5891         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
5892         called multiple times.
5893         (methodbuilder_to_mono_method): Ditto.
5894         (resolve_object): Inflate FieldBuilder's.
5896 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5898         * string-icalls.c, string-icalls.h, appdomain.c: patch from
5899         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
5900         RemoveEmptyEntries in the string.Split implementation (bug #322375).
5902 2007-10-26  Dick Porter  <dick@ximian.com>
5904         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
5905         Thread initialisation changes
5907 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
5909         * verify.c: fix compatibility check between arrays and System.Array
5911 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
5913         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
5914         too. Fixes #336999.
5916 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
5918         * object.c (mono_value_box): Use typed allocation here.
5920 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
5922         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
5923         trampoline instead of compiling the method right away.
5925         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
5927 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
5929         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
5930         related fields for dynamic classes. Fixes #334493.
5932 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
5934         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
5935         
5936         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
5938         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
5939         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
5941         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
5943         * reflection.c (create_generic_typespec): Initialize klass->generic_container
5944         if needed.
5945         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
5947 2007-10-18  Jonathan Chambers <joncham@gmail.com>
5949         * marshal.c: Use correct key when removing item
5950         from ccw_hash.
5951         
5952         Code is contributed under MIT/X11 license.
5954 2007-10-17  William Holmes  <billholmes54@gmail.com>
5956         *marshal.c: Adding a case to marshal booleans to U1
5958         Code is contributed under MIT/X11 license.
5960 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
5962         * class.c (mono_class_from_name): Search the modules compromising dynamic
5963         assemblies. Fixes #331601.
5965 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
5967         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
5968         exception if the type name contains an assembly component. Fixes #334203.
5970         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
5971         modules inside dynamic assemblies. Fixes #334200.
5972         
5973         * reflection.c: Set image->public_key and image->public_key_length;
5975         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
5976         fields.
5978         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
5979         
5980 2007-10-16  Mark Probst  <mark.probst@gmail.com>
5982         * metadata.c: Implemented correct comparing of generic classes.
5983         An inflated generic class can be equal to a non-inflated one if it
5984         is inflated with generic type variables as type arguments.  Fixes
5985         bug #333798.
5987 2007-10-15  Dick Porter  <dick@ximian.com>
5989         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
5990         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
5991         81646.
5993         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
5994         instead of a monitor lock.  This means that monitor_try_enter and
5995         co can set the thread state safely.
5996         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
5997         thread_interrupt_requested, so interrupt actually works.
5999         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
6000         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
6001         state accessor function
6003 2007-10-15  Martin Baulig  <martin@ximian.com>
6005         * mono-debug.h
6006         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
6007         the debugger with the current runtime.
6009 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
6011         * object.c, object-internals.h: added the ability to set a single
6012         trampoline for all the slots in a vtable.
6014 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6016         * marshal.c: deal with a possible race condition during multicast
6017         delegate invocation.
6019 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6021         * class.c: ensure value type methods don't have the synchronized
6022         flag set.
6024 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
6026         * string-icalls.c, string-icalls.h: reverted unapproved patch that
6027         breaks the build.
6029 2007-10-11  Joel Reed  <joelwreed@comcast.com>
6031         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
6032         to take an options parameter so that empty entries can be removed during
6033         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
6035 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6037         * marshal.c: make sure we don't store the signature from a dynamic
6038         method into the runtime invoke cache (bug #327189).
6040 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6042         * marshal.c: make sure the wrapper methods are properly initialized.
6044 2007-10-11  Mark Probst  <mark.probst@gmail.com>
6046         * metadata.c, metadata-internals.h: Generalized
6047         mono_type_stack_size() to mono_type_stack_size_internal() which
6048         takes an additional argument specifying whether it allows open
6049         types.
6051 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6053         * verify.c (do_invoke_method): handle typedbyref params
6054         correctly and check for unverifiable return values.
6056         * verify.c (do_newobj): fix a warning.
6058 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6060         * verify.c: don't tread typedbyref as allways unverifable,
6061         so uses, like (ld/st)loc.0 are valid. verify for the cases
6062         that it matters, like boxing related operations.
6064 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6066         * verify.c: add verification of the newobj opcode. verification
6067         of delegate instantation still missing due ldftn and virldftn not
6068         pushing the function type on stack
6070 2007-10-08  Mark Probst  <mark.probst@gmail.com>
6072         * class-internals.h: Runtime generic context data structure
6073         definition.
6075         * object.c: Initialization of runtime generic context at runtime
6076         vtable creation time.
6078 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
6079         * class.c (mono_class_create_from_typedef,
6080         mono_class_from_generic_parameter, mono_ptr_class_get,
6081         mono_fnptr_class_get, mono_bounded_array_class_get)
6082         * domain.c (mono_domain_create, mono_domain_free)
6083         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
6084         * image.c (do_mono_image_load, mono_image_close):
6085         Hooked up load-unload profiler events.
6087 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
6089         * domain.c: track statistics about the actual amount of native code
6090         allocated.
6092 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6094         * class.c: the valuetype enumerators don't have the additional
6095         supertypes interfaces.
6097 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6099         * class.c: need more interfaces setup for the IEnumerator<T>
6100         object created for arrays (tests/ienumerator-interfaces.2.cs).
6102 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
6104         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
6106 2007-10-05  Alp Toker  <alp@atoker.com>
6108         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
6109         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
6110         #315863.
6112 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6114         * verify.c (verify_type_compatibility_full): verification of
6115         compatibility improved, validates correctly non-strict checks between
6116         native int and I4 types different than (unsigned)int32.
6118         * verify.c (do_store_indirect): added, do all verification of
6119         ldind.X opcodes. 
6121         * verify.c (get_load_indirect_mono_type): renamed to
6122         get_indirect_op_mono_type, as it now returns the MonoType for 
6123         ldind.X and stind.X opcodes.
6125 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6127         * reflection.c: Fix the encoding of generic type definition for
6128         TypeBuilders.
6130         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
6131         mono_image_typedef_or_ref but allows to specify if typespec lookups should
6132         be made. Typespec check is done prior to typeref cache lookup.
6134         * reflection.c (mono_image_typedef_or_ref): now just delegate to
6135         mono_image_typedef_or_ref_full.
6137         * reflection.c (encode_generic_class): encode the generic class
6138         directly instead of calling encode_type.
6140         * reflection.c (encode_type): encode the generic type definition
6141         MonoClass as a generic instantiation.
6143         * reflection.c (create_typespec): cache typespec tokens in
6144         the assembly->typespec cache. Don't create typespec for a generic
6145         instance MonoClass. Create typespec for the generic type defintion.
6147         * reflection.c (create_generic_typespec): encode the generic
6148         class directly instead of calling encode_type.
6150         * reflection.c (mono_image_create_token): encode the generic
6151         type definition not using a typespec for MonoType instances.
6154 2007-10-04  Raja R Harinath  <rharinath@novell.com>
6156         Fix #328812
6157         * class.c (mono_image_init_name_cache): Don't return nested
6158         'protected internal' classes.
6159         (mono_class_from_name_case): Likewise.
6161 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6163         * icall-def.h, icall.c : get_bundled_machine_config() is now the
6164           common function used by both DefaultConfig in System.dll and
6165           InternalConfigurationHost in System.Configuration.dll.
6167 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6169         * class.c: automatically add to vectors only a few essential explicit
6170         generic interfaces. The rest of the interfaces that arrays should
6171         provide are currently implicitly added (but still not lazily, see the
6172         design in the discussion of bug#325495 for the details of what is
6173         needed for that). Additionally, implicit interfaces are assigned the
6174         same vtable slot as the explicit interfaces (as they are compatible):
6175         this enables huge memory savings since we don't need to instantiate
6176         as many memthods and as large vtables anymore. Also, Since
6177         GetEnumerator<T> returns an instance of a type that is required to
6178         support a similarly large set of interfaces as arrays, we add
6179         implicit interfaces and interface offset sharing support to those
6180         types, too. This change adds all the required interfaces so that
6181         the anonarray.cs test case in the bug report works (we don't add
6182         all the interfaces to arrays of arrays 3-level deep and more because
6183         of the memory requirements explained in the bug and since they are much
6184         less common: the lazy-loading support will enabled them to work, too).
6186 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6188         * verify.c (merge_stacks): major clean up, all type compatibility
6189         checks are done by verify_type_compatibility. This fix my earlier lack
6190         of understanding of the CLR type system and merge_stacks no longer looks
6191         scary.
6193         * verify.c: fixed some bad spelling.
6195 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6197         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
6198         a given stack slock.
6199         
6200         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
6201         verify_type_compatibility_full. This removed a near indentical function and fixed
6202         handling of Int32 and IntPtr across all opcodes.
6204 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6206         * class.c: only vectors have the additional generic interfaces.
6208 2007-10-01  Jonathan Chambers <joncham@gmail.com>
6210         * mono-config.c: Use g_strcasecmp instead of
6211         strcasecmp like everywhere else to fix
6212         compilation with MSVC.
6213         
6214         Code is contributed under MIT/X11 license.
6216 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6218         * object.c, object-internals.h: refactored the IMT code to enable
6219         building a single slot at a time and lazily creating the IMT trampolines
6220         and thunks.
6222 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
6224         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
6226         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
6227         Fixes #328501.
6228         
6229 2007-09-29  Raja R Harinath  <harinath@gmail.com>
6231         * loader.c (method_from_methodspec): Rearrange to avoid
6232         un-necessary exposition.  Don't assert out if the method's
6233         declaring type is a generic type definition.
6235 2007-09-28  Martin Baulig  <martin@ximian.com>
6237         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
6239 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
6241         * class-internals.h: optimize field layout of MonoClass to
6242         requires less cachelines at runtime and save a few bytes on 64 bit
6243         systems.
6245 2007-09-28  Jb Evain  <jbevain@novell.com>
6247         * reflection.c: when encoding type names in custom attributes,
6248         if the type is a closed generic type, its generic arguments
6249         have to be serialized as AssemblyQualifiedName, so that when
6250         they are deserialized, it's possible to re-create them properly.
6251         Fixes #329450.
6254 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6256         * object.c, class-internals.h: added delegate-creation counter.
6258 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
6260         * class.c: cleanup of the code that synthetizes interfaces for
6261         arrays in 2.0: saves quit a bit of corlib mempool memory.
6262         Code to fix bug #325495 ifdeffed out for now until the issues
6263         with memory usage and O(n^2) behaviour are fixed.
6265 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6267         * marshal.c: when possible, do not duplicate the name of the methods
6268         in the method builder and in the generated MonoMethod.
6270 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6271         * verify.c: added support for type checking ldind_* opcodes.
6273 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6275         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
6276         which is used to distinguish the fully open instantiation of a TypeBuilder
6277         with the rest. This temporary hack is required to restore the property that
6278         the fully open instantiation is the same type of the generic type definition.
6280         * class-internals.h (mono_generic_class_is_generic_type_definition):
6281         new function as part of the internal API.
6283         * class.c (inflate_generic_type): return NULL when the generic inst is
6284         fully open. The fully open generic type is now the same as the generic type
6285         definition for non TypeBuilder types.
6287         * class.c (mono_generic_class_get_class): removed assert since it is
6288         no longer valid, gklass->cached_class can point to the generic type definition.
6290         * class.c (mono_generic_class_is_generic_type_definition): new.
6292         * metadata.c (mono_generic_class_hash): added is_tb_open field
6293         to the hash calculation.
6295         * metadata.c (free_generic_class): if the generic class is associated
6296         with the generic type definition, its field will come from the mempool and
6297         must not be freed.
6299         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
6300         new, this function identifies the corner case of a TypeBuilder fully open
6301         instantiation.
6303         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
6304         for lookup. Set gclass->cached_class to be the container class in case of
6305         the fully open instantiation of non TypeBuilder types.
6307         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
6308         to compare generic classes.
6310         * reflection.c (method_encode_methodspec): remove assert that
6311         no longer is valid.
6313         * reflection.c (mono_reflection_generic_class_initialize): add
6314         an aditional assert to ensure the proper type is used.
6316 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
6318         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
6319         to enjoy it.
6321 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6323         * verify.c (push_arg): Fixed support for ldarga
6324         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
6325         MonoType used as first arg in case of instance calls.
6327 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6329         * verify.c: Support for verifying VAR and MVAR types, 
6331 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
6333         * icall.c (ves_icall_get_property_info): Set the reflected type of the
6334         accessors correctly.
6336 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
6338         * threads.c: support OSX and other systems in
6339         mono_thread_get_stack_bounds (bug #328026).
6341 2007-09-25  Martin Baulig  <martin@ximian.com>
6343         * mono-debug.h
6344         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
6346 2007-09-24  Martin Baulig  <martin@ximian.com>
6348         * mono-debug.h
6349         (MonoDebugClassEntry): Moved the definition of this struct into
6350         mono-debug.c to make it private.
6352         * mono-debug.c
6353         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
6354         type table per symbol file, we don't need to store the symfile id
6355         any longer.
6357 2007-09-24  Martin Baulig  <martin@ximian.com>
6359         Create one type table per symbol file, since a `MonoClass *' gets
6360         invalid when its image is unloaded.
6362         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
6363         (MonoDebugHandle): Added `type_table'.
6365 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
6367         * mempool.c, mempool.h: added mono_mempool_new_size () API
6368         to be able to specify a smaller initial size for the pool.
6369         Adjusted the code to slowly increase pool size before using
6370         the previous default size.
6371         * image.c: use a small initial size for image mempools.
6373 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
6375         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
6376         Fixes ##320990.
6378         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
6379         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
6381 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
6383         * metadata.c (mono_type_create_from_typespec): Remove an invalid
6384         free. Fixes #327438.
6386 2007-09-21  Raja R Harinath  <harinath@gmail.com>
6388         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
6389         generic instantiations, etc.
6390         <MONO_TYPE_ARRAY>: Likewise.
6392 2007-09-21  Martin Baulig  <martin@ximian.com>
6394         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
6395         these structs were never defined.
6396         (MonoDebugHandle): Removed the `_priv' field, it was never used.
6398 2007-09-21  Martin Baulig  <martin@ximian.com>
6400         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
6402 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
6404         * image.c: removed the guid hash tables: we can get the same info
6405         without the additional memory usage hit (partially fixes also bug #327052).
6407 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6409         * profiler.h, profiler-private.h, profiler.c: add a new profiler
6410         event to handle unloading methods. After the event is called, the
6411         corresponding MonoMethod* must be considered invalid.
6412         * loader.c (mono_free_method): call the new mono_profiler_method_free
6413         event.
6415 2007-09-20  Mark Probst  <mark.probst@gmail.com>
6417         * domain-internals.h: New flag in MonoJitInfo which marks shared
6418         generic methods.  New hash table (shared_generics_hash) in
6419         MonoDomain to keep track of shared generic methods.  Prototypes
6420         for functions to register and lookup shared generic methods.
6422         * domain.c: Support for registering and looking up shared generic
6423         methods via a hash table (shared_generics_hash) in MonoDomain.
6425         * class-internals.h: New exception to signal failure of shared
6426         compilation of a generic method.  New counters for generics
6427         sharing in MonoStats.
6429 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
6431         * image.c, metadata-internals.h: don't keep a file descriptor open
6432         for loaded assemblies (bug#325988).
6434 2007-09-19  Raja R Harinath  <rharinath@novell.com>
6436         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
6437         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
6438         use the corresponding datatypes.
6439         (type_in_image): Update to changes.
6440         (CleanForImageUserData): Simplify.
6441         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
6442         Avoid quadratic behaviour in handling the "stolen" list by
6443         separating the filter predicate out, and by prepending the stolen
6444         items rather than appending them.
6445         (steal_ginst_in_image): Likewise.
6446         (mono_metadata_clean_for_image): Update to changes.
6448 2007-09-19  Martin Baulig  <martin@ximian.com>
6450         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
6452 2007-09-19  Martin Baulig  <martin@ximian.com>
6454         * mono-debug.c (mono_debug_cleanup): Don't call
6455         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
6457 2007-09-19  Raja R Harinath  <harinath@gmail.com>
6459         Fix crash on 'make run-test' in mcs/errors
6460         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
6461         Avoid more potential allocations in mono_class_from_mono_type.
6462         (ginst_in_image): Update to changes.
6463         (gclass_in_image): Rearrange slightly.
6465 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6467         * class.c (mono_class_init): Move the code that sets up class->methods to 
6468         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
6470         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
6471         canonical instance of an inflated generic signature.
6472         (mono_type_create_from_typespec): Remove an invalid free.
6474         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
6476 2007-09-18  Marek Habersack  <mhabersack@novell.com>
6478         * domain-internals.h: added a declaration of the
6479         mono_assembly_load_full_nosearch internal function.
6481         * assembly.c (mono_assembly_load_with_partial_name): use
6482         mono_try_assembly_resolve return value properly.
6483         (mono_assembly_load_full_nosearch): copied the function body from
6484         mono_assembly_load_full, without the code to invoke assembly
6485         search hooks.
6486         (mono_assembly_load_full): calls the above new function and if the
6487         assembly is not resolved, invokes the search hooks.
6489         * appdomain.c (mono_runtime_init): restore the global postload
6490         assembly search handlers.
6492 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6494         * class.c (mono_class_init): Make sure class->methods and class->properties
6495         are never NULL in the generics case.
6497         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
6499 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
6501         * metadata.c (free_generic_class): Disable some code to fix the build.
6503         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
6505         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
6506         from the image mempool.
6508         * metadata.c (free_generic_class): Free more data from the inflated class.
6510         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
6512         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
6513         mempool.
6514         (mono_type_create_from_typespec): Ditto.
6516         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
6517         MonoImage to the caller.
6518         (mono_init_internal): Save the opened image in a global variable.
6519         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
6521         * reflection.c (resolve_object): Fix a leak.
6523         * metadata.c: Fix the freeing of data in the generics caches.
6524         
6525         * metadata.c (free_generic_inst): Comment this out to fix the build.
6526         (free_generic_class): Ditto.
6528         * metadata.c: Free cached generic methods, instantinations and classes when
6529         they are removed from the caches.
6530         (mono_metadata_free_type): Free the type itself.
6532         * class.c: Free the result of mono_class_inflate_generic_type () in a few
6533         places.
6535 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6537         * boehm-gc.c: restrict managed allocs to __thread supporting
6538         architectures.
6540 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
6542         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
6543         (mono_generic_class_get_class): Fix a leak.
6545         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
6546         mono_metadata_free_type ().
6547         (mono_metadata_inflate_generic_inst): Fix a leak.
6549 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6551         * mono-debug.c (free_header_data): Fix a leak missed earlier.
6553         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
6554         mempool.
6556         * mono-debug.c (mono_debug_close_image): Fix call to 
6557         g_hash_table_remove ().
6559 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6561         * icall-def.h: redirect all the string ctor to the managed
6562         CreateString () methods.
6563         * string-icalls.c, string-icalls.h: removed dead code for string
6564         ctors and icalls.
6566 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6568         * mono-debug.c: Fix memory leaks.
6570 2007-09-14  Jonathan Chambers <joncham@gmail.com>
6572         * threads-types.h: Implement mono_hazard_pointer_set and 
6573         mono_hazard_pointer_clear macros using do/while(0) to fix
6574         compilation with MSVC.
6575         
6576         Code is contributed under MIT/X11 license.
6578 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6580         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
6581         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
6583 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6585         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
6586         icalls.
6588 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6590         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
6591         managed-code allocated as well.
6593 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6595         * class.c (mono_class_is_assignable_from): Add support for generic variance.
6597 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
6599         * boehm-gc.c: fixed the build after the AOT changes.
6601 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6603         * wrapper-types.h: Add an ALLOC wrapper type.
6605         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
6606         reference managed allocator methods.
6608 2007-09-12  Marek Safar  <marek.safar@gmail.com>
6610         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
6611         of Type array and not MonoType, a fix suggested by Hari.
6612         
6613 2007-09-12  Jonathan Chambers <joncham@gmail.com>
6615         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
6616         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
6617         
6618         Code is contributed under MIT/X11 license.
6620 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6622         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
6624 2007-09-12  Marek Habersack  <mhabersack@novell.com>
6626         * image.c (do_mono_image_open): if assembly file fails to open and
6627         MONO_IOMAP is in effect, try to find the path in a
6628         case-insensitive way.
6630         * appdomain.c (mono_runtime_init): do not install postload hooks -
6631         tests show that MS.NET doesn't use anything of that sort to
6632         trigger the AppDomain.AssemblyResolve event.
6633         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
6634         made non-static.
6635         (mono_runtime_init): init portability helpers here.
6637         * assembly.c (mono_assembly_load_with_partial_name): if other   
6638         attempts fail, trigger the AppDomain.AssemblyResolve event handler
6639         to resolve the assembly.
6641         * domain-internals.h: added mono_try_assembly_resolve and marked
6642         it as internal.
6644 2007-09-11  Jb Evain  <jbevain@novell.com>
6646         * object-internals.h (MonoReflectionDynamicMethod): add
6647         a `MonoReflectionType *owner` field. The owner is used
6648         * reflection.c:
6649         (mono_reflection_create_dynamic_method): use the owner of the dynamic
6650         method as the class declaring the dynamic method.
6651         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
6652         dynamic method to the declaring type of the methodbuilder.
6654 2007-09-11  Mark Probst  <mark.probst@gmail.com>
6656         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
6657         rules for calling methods via reflection.
6659 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
6661         * reflection.c (resolve_object): Add support for MonoGenericClass. 
6662         Inflate MonoType's.
6664 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
6666         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
6667         provide a managed method that does fast allocations without needing
6668         a managed->unmanaged transition. Boehm GC implementation currently
6669         enabled for ptrfree objects on sane architectures.
6671 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6673         * marshal.c, marshal.h: exported a couple of useful functions and
6674         added mono_mb_get_label () to easily handle backward branches.
6676 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
6678         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
6680 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6682         * loader.c (find_method): Fixed the regression introduced while
6683         fixing bug #81466.
6685 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
6687         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
6688         well.
6689         
6690         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
6691         icall.c reflection.c: Pass a MonoGenericContext argument to 
6692         mono_lookup_dynamic_token ().
6694         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
6695         #82744.
6696         
6697 2007-09-09  Robert Jordan  <robertj@gmx.net>
6699         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
6700         for generic methods.
6702         * object.c (mono_object_get_virtual_method): Handle generic methods.
6703         Fixes bug #78882.
6705         Code is contributed under MIT/X11 license.
6707 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6709         * image.c: fix locking in mono_image_load_file_for_image ().
6711 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
6713         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
6714         used only as a cache: added an icall to fill it.
6716 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
6718         * reflection.h: exposed mono_reflection_free_type_info
6719         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
6720         since mono_reflection_bind_generic_parameters makes a copy of it.
6721         * reflection.c (free_type_info): subinfos should be freed.
6722         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
6723         made non static.
6724         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
6725         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
6726         this fixes #82695 and #81726.
6727    
6729 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
6731         * process.h, process.c:  added support for user profile/info in
6732           ProcessStartInfo. For now only Windows works.
6734 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6736         * metadata.c: consider the generic arguments when comparing
6737         signatures (bug #82614).
6739 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6741         * cil-coff.h, image.c: updated assembly loader to cope with the
6742         PE32+ 64 bit file format.
6744 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6746         * assembly.c, class.c, domain.c, loader.c: remove useless
6747         inclusion of cil-coff.h.
6749 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
6751         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
6752         if interface is marked with CoClassAttribute. 
6753    
6754         Code is contributed under MIT/X11 license.
6756 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6758         * sgen-gc.c: ensure no object from the to space is copied again or finalized
6759         if it's seen twice in major collections.
6761 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6763         * sgen-gc.c: big objects are not copied to the gray area, but they
6764         need to be considered for scanning, too, if they are brought alive
6765         by an object ready for finalizations or a survived one.
6767 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6769         * sgen-gc.c: properly account the number of disappearing links when
6770         they are nullified.
6772 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6774         * sgen-gc.c: share the code to scan the registered roots between the
6775         different types of collections.
6777 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6779         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
6781 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6783         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
6784         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
6786 2007-08-28  Mark Probst  <mark.probst@gmail.com>
6788         * security-manager.c (mono_security_manager_get_methods):
6789         LinkDemandSecurityException now has 2 arguments instead of 3.
6791 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
6793         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
6794         platforms which need it.
6796 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6798         * sgen-gc.c: unregister thread data structures with a pthread_key_t
6799         dtor.
6801 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6803         * threads.c: free the thread static data on thread exit.
6805 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
6807         * class.c: walk the hierarchy to find the generic definition for
6808         a class (fixes runtime part of bug #82498).
6810 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6812         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
6813         ...
6815         * image.c (mono_image_close): Here. Hopefully fixes #82510.
6817 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6819         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
6821 2007-08-24  Robert Jordan  <robertj@gmx.net>
6823         * appdomain.c: don't perform the ':'->';' substitution on Win32.
6825 2007-08-24  Jb Evain  <jbevain@novell.com>
6827         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
6828         for byref types.
6830 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6832         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
6833         #82286.
6835 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6837         * assembly.c: Fix a warning.
6838         
6839 2007-08-23  Marek Habersack  <mhabersack@novell.com>
6841         * appdomain.c: parse the <runtime> section looking for the probing
6842         element with the 'privatePath' attribute, which sets additional
6843         directories in which the runtime should look for assemblies.
6845 2007-08-23  Robert Jordan  <robertj@gmx.net>
6847         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
6848         Fixes #82499.
6850 2007-08-23  Martin Baulig  <martin@ximian.com>
6852         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
6853         _mono_debug_init_corlib() and remove it from the header file.
6855 2007-08-23  Martin Baulig  <martin@ximian.com>
6857         * mono-debug-debugger.c
6858         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
6859         don't notify the debugger about it.
6861         * mono-debug-debugger.h
6862         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
6864 2007-08-23  Robert Jordan  <robertj@gmx.net>
6866         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
6867         Code is contributed under MIT/X11 license.
6869 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6871         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
6873 2007-08-22  Martin Baulig  <martin@ximian.com>
6875         * mono-debug.c: Store debugging info on a per-domain basis and
6876         free it on domain unload.  Add support for unloading symbol files.
6878         * mono-debug.h
6879         (MonoDebugList): New typedef.
6880         (MonoSymbolTable):
6881         - add `data_tables and `type_table'.
6882         - replace 'symbol_files' and `num_symbol_files' with a
6883           `MonoDebugList *'.
6884         (mono_debug_data_table): Removed.
6885         (mono_debug_list_add): New public function.
6886         (mono_debug_list_remove): New public function.
6887         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
6888         (mono_debug_init_2_memory): Renamed into
6889         mono_debug_open_image_from_memory().
6890         (mono_debug_close_image): New public function.
6891         (mono_debug_domain_create): Likewise.
6892         (mono_debug_domain_unload): Likewise.
6893         (MONO_DEBUGGER_VERSION): Bump to 60.
6895         * mono-debug-debugger.h
6896         (MonoDebuggerEvent):
6897         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
6898         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
6899         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
6900         - rename `THREAD_CREATED' and `THREAD_EXITED' into
6901           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
6902         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
6903           meaning.
6904         (mono_debugger_add_symbol_file): Removed.
6905         (mono_debugger_add_type): Removed.
6906         (mono_debugger_lookup_type): Removed.
6907         (mono_debugger_lookup_assembly): Removed.
6909         * domain.c
6910         (mono_domain_create): Call mono_debug_domain_create().
6911         (mono_init_internal): Call mono_debug_init_corlib().
6913         * assembly.c
6914         (mono_assembly_close): Call mono_debug_close_image().
6916 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
6918         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
6919         mmap call.
6921 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
6923         * sgen-gc.c: ensure section->pin_queue_end is initialized
6924         correctly when non pinning objects in the section have been found.
6926 2007-08-22  Marek Habersack  <mhabersack@novell.com>
6928         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
6929         containing a list of directories separated by ':'. MSDN docs say
6930         the directories should be separated with ';'. Part of a bugfix for
6931         bug #81446
6933 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
6935         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
6936         it should MonoType and not MonoClass.
6938 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
6940         * culture-info-table.h : regenerated.
6942 2007-08-20  William Holmes  <billholmes54@gmail.com>
6944         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
6945          to call ReplaceFile Kernel32 on windows or in io-layer.
6946         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
6947         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
6948          as an internal call.
6950         Code is contributed under MIT/X11 license.
6952 2007-08-20  Jb Evain  <jbevain@novell.com>
6954         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
6955         and MONO_EXCEPTION_FIELD_ACCESS.
6957         * debug-helpers.[c|h]: new mono_field_full_name function.
6959 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6961         * class.c: Removed class_security_level() and moved it to
6962         security-core-clr.c.
6964         * security-core-clr.c, security-core-clr.h: class_security_level()
6965         is now public and renamed to mono_security_core_clr_class_level().
6966         It also looks for security attributes in the classes a class is
6967         nested in.
6969 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6971         * security-core-clr.c, security-core-clr.h: CoreCLR security
6972         utility functions.
6974         * Makefile.am: Added security-core-clr.[ch].
6976         * security-manager.c, security-manager.h: Functions and enum for
6977         setting and getting the security mode.
6979         * class.c: CoreCLR security checks.
6981 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6983         * icall-def.h, process.c, process.h: implemented icall to get
6984         user/system processor times.
6986 2007-08-17  Mark Probst  <mark.probst@gmail.com>
6988         * domain.c, threads.c, class-internals.h, domain-internals.h: New
6989         reader-lock-free jit_info_table.
6991 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
6993         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
6995         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
6997         * object-internals.h (MonoException): Add missing _data member.
6999 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7001         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
7002         checking that only methods with matching qname or fqname are picked
7003         from implemented interfaces.
7005 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7007         * verify.c (do_newarr):added, do type verification of
7008         newarr ops, push the right value on the eval stack.
7009         * verify.c (mono_method_verify): use do_newarr
7012 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7014         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
7015         factored the common code into get_boxable_mono_type, which
7016         is now using mono_type_get_full, this fixed byref related tests.
7018 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7020         * class.c: added mono_type_get_full, this function has the same
7021         behavior of mono_class_get_full but the returned MonoType has
7022         all metadata of the associated token in case of a typespec token.
7023         * class.c: added mono_type_retrieve_from_typespec, used by 
7024         mono_type_get_full to retrieve the token type.
7025         * class.c (mono_class_create_from_typespec): changed to use
7026         mono_type_retrieve_from_typespec.
7027         * class.c (mono_ldtoken): changed to use mono_type_get_full
7028         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
7029         * class-internals.h: exported mono_type_get_full for internal use.
7031 2007-08-16  Jb Evain  <jbevain@novell.com>
7033         * domain.c (supported_runtimes): add entry for
7034         the 'moonlight' runtime version.
7036 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7038         * verify.c (mono_method_verify): small typo sliped in.  
7040 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7042         * verify.c (do_unbox_value): added, do type verification of
7043         unboxing ops
7044         * verify.c (mono_method_verify): use do_unbox_value
7047 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7049         * verify.c (dump_stack_value): fixed typo, was printing string
7050         instead of object on stack.
7051         * verify.c (do_box_value): moved the byref check up as it leads
7052         to invalid code and should be done earlier.
7053         * verify.c: improved error messages for and ldobj
7055 2007-08-15  William Holmes  <billholmes54@gmail.com>
7057         * marshal.c (emit_marshal_custom): Omit the call to 
7058           marshal_native_to_managed when calling native to managed 
7059           and the argument is specified as an out argument.
7061         Code is contributed under MIT/X11 license.
7063 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7065         * verify.c: fixed the type checks for generics, function pointers and vectors.
7066         Added type verification for ldobj and ldtoken. The verifier
7067         would segfault if header or signature of a method contained references
7068         to non-existant types.
7070 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7072         * marshal.c (cominterop_get_ccw): Patch from
7073         Bill Holmes to no walk up interface hierarchy. 
7074         All parent methods should be present in the interface for COM.
7075    
7076         Code is contributed under MIT/X11 license.
7078 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7080         * marshal.c (emit_marshal_com_interface): Patch from
7081         Bill Holmes to handle COM Interfaces as return values
7082         for native->managed calls.
7083    
7084         Code is contributed under MIT/X11 license.
7086 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
7088         * marshal.c (cominterop_get_idispatch_for_object): Implement
7089         for runtime callable wrappers.
7090    
7091         Code is contributed under MIT/X11 license.
7093 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
7095         * pedump.c (main): changed from mono_init to mono_init_from_assembly
7096         so 2.0 types are accessible
7099 2007-08-13  Miguel de Icaza  <miguel@novell.com>
7101         * domain.c (mono_init_internal): Call mono_assembly_load_friends
7102         once we load mscorlib.   Due to the order in which we initialize,
7103         the mono_assembly_load_full routine that loads mscorlib did not
7104         load friends.   We now load it once we load the
7105         mono_defaults.internals_visible_class class. 
7107         * assembly.c: Expose the mono_load_friend_assemblies method.
7109 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
7111         * verify.c: improved the handling of boxing, better
7112         type checking for unary ops and conversion. Fix bug
7113         regarding managed pointer compatibility checking
7115 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
7117         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
7119         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
7121 2007-08-09  Raja R Harinath  <rharinath@novell.com>
7123         * reflection.c (dup_type): Remove.
7124         * class.c (dup_type): Remove.
7125         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
7126         instead of the dodgy 'dup_type'.
7127         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
7128         handle the case where 'dup_type' needed the second argument.
7130 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
7132         * domain.c: Fix a warning.
7134 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7136         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
7137         checking that methods with the same fqname are not overridden
7138         with a method from an ancestor.
7140 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
7142         * threads.c (free_thread_static_data_helper): Avoid a crash if
7143         thread->static_data is not yet set.
7145 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
7147         * marshal.c: Use correct image when emitting
7148         native wrapper for COM calls.
7149    
7150         Code is contributed under MIT/X11 license.
7152 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
7154         * icall-def.h, security.c, security.h :
7155           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
7157 2007-08-07  Martin Baulig  <martin@ximian.com>
7159         * mono-debug-debugger.h
7160         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
7162         * domain.c (mono_domain_free): Call
7163         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
7165 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
7167         * verify.c (check_underflow, check_overflow): error message now returns IL offset
7168         * verify.c (in_same_block): code should test if either offset is inside the clauses
7169         * verify.c (mono_method_verify): push the exception into the eval stack of exception
7170         and filter blocks
7172 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7174         * image.c (mono_image_close): Fix a leak.
7176         * object.c (mono_runtime_invoke_array): Avoid using alloca.
7178         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
7180 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
7182         * domain.c, threads.c, threads-types.h: fix memory retention issue
7183         with thread static variables not being cleared on domain unload.
7184         Reuse thread static slots after domain unload.
7186 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7188         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
7189         nullable type.
7191         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
7192         now done in mono_runtime_invoke_array.
7194         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
7195         receiver is a nullable type.
7197         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
7198         generic parameter.
7200 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
7202         * marshal.c: Implement COM Objects as return type for 
7203         managed->unmanaged calls. Added Release calls for COM Object
7204         out/return values in managed->unmanaged calls.
7206         Code is contributed under MIT/X11 license.
7208 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
7210         * threads.h, threads-type.h: move the hazard pointer declarations
7211         to the private header.
7213 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
7215         * file-io.c, appdomain.c: memory leak fixes.
7217 2007-08-02  Dick Porter  <dick@ximian.com>
7219         * socket-io.c
7220         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
7221         SO_REUSEADDR setting into io-layer/sockets.c.
7223 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
7225         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
7226         from Object when called on a generic parameter. Fixes #82211.
7228 2007-08-01  Dick Porter  <dick@ximian.com>
7230         * file-io.c (convert_share): Test FileShare values bit-by-bit.
7231         Fixes bug 79250 yet again.
7233 2007-07-30  Martin Baulig  <martin@ximian.com>
7235         Merged the `debugger-dublin' branch.
7237         * mono-debug.h
7238         (MonoDebugDataTable): New typedef.
7239         (MonoDebugMethodAddressList): New typedef.
7240         (MonoDebugWrapperData): Removed.
7241         (MonoDebugSymbolTable): Removed `current_data_table',
7242         `current_data_table_size', `current_data_table_offset'.
7243         (MonoDebugDataItemType): Moved into mono-debug.c.
7244         (MonoDebugMethodJitInfo): Remove `address'.
7245         (mono_debug_data_table): New global variable.
7246         (mono_debug_lookup_method_addresses): New public function.
7247         (mono_debug_find_method): Take a `MonoMethod *', not a
7248         `MonoDebugMethodInfo *'.
7250         * mono-debug.c: Drop support for the old symbol tables.
7252 2007-06-28  Martin Baulig  <martin@ximian.com>
7254         * mono-debug.c (mono_debug_debugger_version): New public variable.
7256 2007-07-31  William Holmes  <billholmes54@gmail.com>
7258         * metadata.c Changed mono_type_create_from_typespec to not insert
7259           the type into the hash map until after
7260           do_mono_metadata_parse_type has completed.
7261         Fixes Bug #82194
7262         Code is contributed under MIT/X11 license.
7264 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
7266         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
7267         generic parameter. Fixes #82211.
7269 2007-07-27  Jb Evain  <jbevain@novell.com>
7271         * pedump.c (dump_metadata, dump_metadata_header): dump
7272         versions contained in the metadata header.
7274 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
7276         * threads.c: register small_id_table with the GC.
7278 2007-07-27  Mark Probst  <mark.probst@gmail.com>
7280         * threads.c, threads.h, class-internals.h, object-internals.h:
7281         Hazard pointers, to be used by lock-free parallel algorithms.
7283 2007-07-26  Dick Porter  <dick@ximian.com>
7285         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
7286         routine on non-windows platforms, as I've not managed to think of
7287         a non-kludgy way of doing this.  Finishes off bug 78739.
7289 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
7291         * object.c: properly setup interface_bitmap in proxy vtables.
7293 2007-07-25  Marek Habersack  <mhabersack@novell.com>
7295         * appdomain.c (get_shadow_assembly_location): do not use TickCount
7296         to create unique shadow copy target directories, use the domain's
7297         serial number instead. Each domain gets a unique target directory
7298         that way.
7300         * domain.c (mono_domain_create): added code to increment domain
7301         shadow copy serial number and cache the value in the current
7302         domain structure.
7304         * domain-internals.h (struct _MonoDomain): added a new field -
7305         shadow_serial to hold the serial number used in generation of
7306         shadow-copy directories. This is to make sure that the directory
7307         name is unique for each and every domain created. We avoid a race
7308         condition with overriding assemblies already in use by other app
7309         domains.
7311 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
7313         * class.c (mono_bounded_array_class_get): fixed memory leak when 
7314         binding generic parameters.
7316 2007-07-24  Raja R Harinath  <rharinath@novell.com>
7318         * metadata.c (do_mono_metadata_parse_generic_class): Use
7319         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
7320         error.
7322 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
7324         * loader.c, class-internals.h, reflection.c: removed the per-method
7325         generics hashtable: we use the global one through the call of
7326         mono_class_inflate_generic_method ().
7328 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7330         * class.c, metadata.c, class-internals.h: introduce yet another
7331         generics global cache for inflated methods (fixes 98% of the perf
7332         issue in bug #81806).
7334 2007-07-23  Raja R Harinath  <rharinath@novell.com>
7336         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
7337         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
7338         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
7339         return a MonoGenericInst containing (a copy) of those types.
7340         (mono_metadata_inflate_generic_inst): Update to changes.
7341         (mono_metadata_parse_generic_inst): Likewise.
7342         (mono_get_shared_generic_inst): Likewise.
7343         * reflection.c (mono_class_bind_generic_parameters): Likewise.
7344         (mono_reflection_bind_generic_method_parameters): Likewise.
7345         * metadata-internals.h: Likewise.
7346         * icall.c (free_generic_context): Kill.
7347         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
7349         * reflection.c (reflection_methodbuilder_to_mono_method): Use
7350         mono_metadata_type_dup.
7351         * marshal.c (mono_mb_create_method): Likewise.
7353         * metadata.c (mono_metadata_type_dup): Rename from
7354         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
7355         MonoImage.  Handle a few more cases, esp. when no mempool is given.
7356         * marshal.c, metadata-internals.h: Update to changes.
7358 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7360         * class.c: fixed a small leak for array classes and removed warning.
7362 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
7364         * loader.c (mono_method_get_param_token): Make this work on generic methods.
7365         Return 0x8000000 for return parameters. Fixes #82161.
7367 2007-07-21  Marek Habersack  <grendello@gmail.com>
7369         * appdomain.c (get_shadow_assembly_location): append the current
7370         ticks value to the path. Avoids overwriting the same assemblies by
7371         several threads at the same time.
7373 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7374         and Raja R Harinath  <rharinath@novell.com>
7376         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7377         Simplify slightly.
7378         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
7379         property for testing if a method is a generic method definition.
7381 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7383         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
7385 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7387         * verify.c: used function from private branch, reverted to the one in class.h 
7389 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7391         * verify.c: a typo slipped in and the code wont compile
7393 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7395         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
7396         disabled box instruction as it is doing the wrong thing
7397         improved stack dump messages, now it is easier to debug type related issues
7400 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
7402         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
7404 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7406         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
7407         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
7408         grouped with class and valuetype. This change will simply 
7409         the code as it should be handled just like unmanaged pointers.
7411 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7413         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
7415 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7417         * verify.c: several stack merge issues fixed, reference comparisons now
7418         check the type size. strict type check now works correctly.
7419         added more uses of IS_MANAGED_POINTER macro.
7420         fixed issues pointed by running the test suite against .net.
7421         
7423 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7425         * class.c, loader.c, class-internals.h: Removed the
7426         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
7427         defines.
7429         * icall.c: Better error checking in some internal reflection
7430         methods.
7432 2007-07-18  William Holmes  <billholmes54@gmail.com>
7434         * filewatcher.c : removed unused variable 'filename' in 
7435           ves_icall_System_IO_FSW_SupportsFSW
7437 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
7439         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
7440         obsolete, removed.
7442 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
7444         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
7445         
7446         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
7448 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
7450         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7451         Implement generics support.
7452         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7454         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
7455         type_args and method_args arguments.
7456         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
7457         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7458         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
7460 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
7462         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
7463           It adds a rootimage parameter to mono_reflection_get_type_internal,
7464           adds new function mono_reflection_get_type_with_rootimage and use
7465           the rootimage to resolve the types instead of the current image
7467 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7469         * culture-info-table.h: Forgot to update after r78304.
7471 2007-07-13  Raja R Harinath  <rharinath@novell.com>
7473         * class.c (mono_class_is_open_constructed_type)
7474         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
7476 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
7478         * class.c (mono_bounded_array_class_get):  method fails if used with
7479         an incomplete TypeBuilder enum (no basetype field), fixed it by 
7480         avoiding calculating the size for such array as it cannot be instantiated.
7481         Fix bug #82015
7483 2007-07-12  Raja R Harinath  <rharinath@novell.com>
7485         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
7486         field.
7487         * metadata.c, reflection.c: Update to changes.
7489 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
7491         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
7492         mono_class_is_valid_enum, they are used to valide a enum when loading.
7493         * reflection.c: used new functions to throw TypeLoadException when and
7494         invalid enum is build with TypeBuilder. Fixes #82018
7495   
7496 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7498         * object.c: forgot commit of mono_class_setup_methods () to access
7499         iface->methods.
7500         * object-internals.h: added a few more handy fields to
7501         MonoIMTCheckItem.
7503 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
7505         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
7506         iface->methods.
7508 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7510         * class-internals.h, object-internals.h, object.c: IMT-based
7511         interface invocation core from Massimiliano Mantione
7512         (massi@ximian.com) with a reworked arch-specific interface,
7513         bsearch implementation and a few bugfixes and memory savings by me.
7515 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
7517         * class.c (mono_class_create_from_typedef): mono would segfault if 
7518         an enum did not have a __value field. It now throws a TypeLoadException
7519         for such cases. Fix bug #82022
7521 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7523         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
7525 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7527         * class.c (mono_class_init): If a class is already inited but has
7528         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
7530 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7532         * class.c: Properly handle the case of an unimplemented interface
7533         method.  Fixes: 81673.
7535 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7537         * class-internals.h, object.c: cleanup patch from massi: use
7538         MonoVTable->interface_bitmap since the vtable interfaces offset array
7539         is going away.
7541 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7543         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
7544         GetMDStreamVersion icall instead.
7546 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
7548         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
7549         not use mono_dl_build_path() with a full library name: makes
7550         fallbacks to libgaim and libfam work.
7552 2007-07-06  William Holmes  <billholmes54@gmail.com>
7554         * assembly.c: Added a continue statement in probe_for_partial_name when
7555          parse_assembly_directory_name fails.  Fixes : 82002
7557 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
7559         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
7560         and added a verification  for TYPEDBYREF.
7561         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
7562         make native int interchangeable with int32 and some small cleanup and formating.
7563         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
7564         handle byref of byref.
7565         * verify.c (push_local): handle byref of byref.
7566         * verify.c (do_binop): invalid mix of values is unverifiable
7567         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
7568         added visibility checks
7569         * verify.c (field related method): added visibility checks
7570         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
7572 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
7574         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
7575         string.
7577 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
7579         * profiler.c (mono_profiler_load): Fix an off-by-one error.
7581         * marshal.c (emit_marshal_string): When returning a string from managed code,
7582         allways make a copy even for unicode strings. Fixes #81990.
7584 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
7586         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
7587         of byref generic inst types (bug #81997).
7589 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
7591         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
7592         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
7594 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
7596         * marshal.c (emit_marshal_string): Add support for unicode strings in
7597         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
7599 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
7601         * verify.c: field load/store are now verified, missing only access checks now
7603 2007-06-28  Martin Baulig  <martin@ximian.com>
7605         * mono-debug.c (mono_debug_debugger_version): New public variable.
7607 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
7609         * locales.c: When constructing DateTimeFormat or NumberFormat for
7610         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
7611         MonoCultureInfo contructed from the current locale is always
7612         read-only and has UseUserOverride set to true. All MonoCultureInfo
7613         instances returned for GetCultures have both IsReadOnly and
7614         UseUserOverride set to true. Fixes part of bug #81930.
7616 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
7618        * icall-def.h: Update System.__ComObject icalls
7619        * marshal.c: Avoid managed transition (and object creation)
7620        when looking up COM interface in RCW.
7621        * marshal.h: Ditto.
7622        
7623        Code is contributed under MIT/X11 license.
7625 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
7627         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
7628         to avoid crashes during assembly unloading.
7630 2007-06-22  Raja R Harinath  <rharinath@novell.com>
7632         Fix MethodInfo.IsGenericMethodDefinition
7633         * reflection.c (mono_reflection_bind_generic_method_parameters):
7634         Rearrange code to ensure we always uses a generic method definition.
7635         * class.c (mono_class_inflate_generic_method_full): Set
7636         'generic_container' field only for generic method definitions.
7637         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7638         Use presense of 'generic_container' field as indication of being a
7639         generic method definition.
7641 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
7643         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7645         * object-internals.h: Reflect changes in the layout of the managed Delegate
7646         class.
7647         
7648         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
7649         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
7650         runtime memory used by the dynamic method. Fixes #77146.
7652 2007-06-21  Dick Porter  <dick@ximian.com>
7654         * file-io.h: 
7655         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
7656         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
7657         81767.
7659 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7661         * reflection.c (method_encode_methodspec): Add a tripwire.
7662         * class.c (inflate_generic_type): The fully open generic type is
7663         not the same as the generic type definition.
7665 2007-06-21  Martin Baulig  <martin@ximian.com>
7667         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
7669         * mono-debug-debugger.h
7670         (MonoDebuggerBreakpointInfo): Removed.
7671         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
7672         (mono_debugger_remove_breakpoint): Likewise.
7673         (mono_debugger_breakpoint_callback): Likewise.
7674         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
7676 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7678         * metadata.c (mono_metadata_lookup_generic_class): The fully open
7679         generic type is not the same as the generic type definition.
7680         * class.c (mono_generic_class_get_class): Likewise.
7682 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
7684         * icall.c: The second argument to 
7685         System.Reflection.MethodBase.GetMethodFromHandleInternalType
7686         is a MonoType not a MonoClass.
7688 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7690         * verify.c: support for function pointers in the verifier
7692 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7694         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
7696 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
7698         * assembly.c: removed Mono.Data.SqliteClient from the list of
7699         forward-compatible assemblies as it breaks the ABI (bug #81899).
7701 2007-06-19  Raja R Harinath  <rharinath@novell.com>
7703         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
7704         lookup/update with the loader lock.
7705         * reflection.c (mono_class_bind_generic_parameters): No need to
7706         protect mono_metadata_lookup_* with the loader lock.
7707         * class.c (inflate_generic_type): Likewise.
7708         
7709         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
7710         on a generic instantiated type.
7712 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
7714         *verify.c: produce meanfull error messages on verification error
7715         *verify.c: fixed some cases of verification errors reported as validation errors
7716         *pedump.c: fixed the error name array, now it shows validation errors properly
7717         *verify.h: fixed the contant that should be used for verification errors
7719 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
7721         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
7722         for bug #77596, 81858 and 80743 (generics data structures on domain
7723         unload).
7725 2007-06-15  Raja R Harinath  <rharinath@novell.com>
7727         Avoid allocating 'MonoGenericContext' on the heap.
7728         * class-internals (_MonoMethodInflated::context): Make field
7729         inline, not a pointer.
7730         * loader.c (method_from_methodspec): Allocate 'new_context' on the
7731         stack.  Use the context embedded within the inflated method as the
7732         hash key, rather than 'new_context'.
7733         * class.c (inflate_generic_context): Simplify.  Return a struct
7734         rather than allocating on the heap.
7735         (mono_class_inflate_generic_method_full): Update to changes.  Now,
7736         doesn't salt away a copy of the context -- simplifying the
7737         lifetime rules of a 'MonoGenericContext *'.
7738         (mono_method_get_context): Return pointer to embedded context.
7739         (setup_generic_array_ifaces): Allocate temporary context on stack.
7740         * reflection.c (inflate_mono_method): Likewise.
7741         (mono_reflection_bind_generic_method_parameters): Likewise.
7742         Use the context embedded within the inflated method as the hash key.
7744         Avoid a source of allocation of 'MonoGenericContext'.
7745         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
7746         and 'cached_context' fields into embedded 'MonoGenericContext' field.
7747         * class.c: Update to changes.
7748         (mono_generic_class_get_context): Simplify drastically.  Now just
7749         returns a pointer to the field.
7750         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
7751         argument as a const pointer.
7752         (mono_metadata_generic_context_equal): Likewise.
7753         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
7754         Update to changes.
7756 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
7758         * verify.c improved the handling of brtrue/brfalse, factored out common code
7760 2007-06-14  Raja R Harinath  <rharinath@novell.com>
7762         Kill MonoGenericMethod.
7763         * class-internals.h (MonoGenericContext::method_inst): Rename from
7764         'gmethod' and convert to a MonoGenericInst.
7765         (MonoGenericMethod): Remove.
7766         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
7767         * loader.c (method_from_methodspec): Update to changes.  Use a
7768         MonoGenericContext as the key to the hashtable.
7769         * metadata.c (mono_metadata_generic_context_equal): Rename from 
7770         'mono_metadata_generic_method_equal' and take MonoGenericContext.
7771         (mono_metadata_generic_context_hash): Likewise from
7772         'mono_metadata_generic_method_hash'.  Change hash function.
7773         (mono_metadata_load_generic_params): Update to changes.
7774         (mono_get_shared_generic_method): Remove.
7775         * metadata-internals.h (mono_get_shared_generic_method): Remove.
7776         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
7777         (inflate_generic_context): Likewise.
7778         (mono_class_inflate_generic_method_full): Likewise.
7779         (setup_generic_array_ifaces): Likewise.
7780         (mono_class_create_from_typespec): Likewise.
7781         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
7782         (method_encode_methodspec): Update callsite.
7783         (reflection_methodbuilder_to_mono_method): Update to changes.
7784         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
7785         MonoGenericContext as the key to the hashtable.
7786         (inflate_mono_method): Update to changes.
7788         * class-internals.h (MonoGenericMethod::container): Remove.
7789         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
7791 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
7793         * profiler-private.h, profiler.c, profiler.h: added API to profile
7794         exception events.
7796 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7798         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
7800 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7802         * verify.c: method invocation is now validated, now we verify parameter types on stack.
7803         Fixed overflow and underflow not aborting the verification process.
7805 2007-06-13  Mark Probst  <mark.probst@gmail.com>
7807         * class-internals.h (MonoStats): Added stats entries for dynamic
7808         code allocations.
7810 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
7812         * loader.c (mono_free_method): Free header->locals and header->clauses.
7814         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
7815         dynamic case.
7817         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
7819         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
7821 2007-06-12  Raja R Harinath  <rharinath@novell.com>
7823         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
7824         the tables.
7826 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7828         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
7830 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7832         MonoGenericMethod on a diet
7833         * class-internals.h (_MonoMethodInflated::reflection_info): Move
7834         here ...
7835         (_MonoGenericMethod::reflection_info): ... from here.
7836         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
7837         Update to changes.
7838         * reflection.c (inflate_mono_method): Likewise.
7839         (mono_reflection_bind_generic_method_parameters): Likewise.
7841 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7843         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
7844         *verify.c: factored long ldarg forms to share code with short forms
7846 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7848         *verify.c: fixed code formating factored some duplicate code
7849         into a new function
7851         *verify.h: fixed binary incompatibility introduced earlier
7853         *pedump.c: fixed formating
7855 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7857         Fix assertion when disassembling Mono.C5.dll
7858         * loader.c (method_from_methodspec): Avoid inflating a method
7859         twice with the same context.  If the methodref is inflated, use
7860         the declaring method instead.
7862         * class.c (mono_class_from_generic_parameter): Fix case similar to
7863         bug #81830 handled below, but for method containers.
7865 2007-06-10  Raja R Harinath  <harinath@gmail.com>
7867         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
7868         get_shared_generic_class.  Directly inflate the instance.
7869         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
7870         (inflate_generic_class): Delete.
7871         (get_shared_generic_class): Delete.  Move setting of
7872         'cached_class' and 'cached_context' ...
7873         * metadata.c (mono_metadata_lookup_generic_class): ... here.
7875         * metadata.c (mono_metadata_lookup_generic_class): Change
7876         signature to take the components of a MonoGenericClass rather than
7877         an allocated MonoGenericClass.  Change semantics to be intern-like.
7878         * reflection.c (mono_class_bind_generic_parameters): Update to
7879         changes.  Make locking region tighter.
7880         * class.c (inflate_generic_class): Update to changes.
7881         (get_shared_generic_class): Likewise.
7882         * metadata-internals.h: Likewise.
7884         * reflection.c (mono_class_bind_generic_parameters): Take and
7885         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
7886         (mono_reflection_bind_generic_parameters): Use
7887         'mono_class_bind_generic_parameters' rather than duplicate the code.
7888         * class.c (mono_bounded_array_class_get): Update to changes.
7889         * object-internals.h: Likewise.
7891         * reflection.c (mono_class_bind_generic_parameters): Only support
7892         parameterizing generic type definitions.  Remove support for other
7893         open types.
7895 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
7897         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
7899         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
7900         in the dynamic case.
7902 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
7904         * threads.c: When cleaning up thread, reset the Background bit.
7905         Fixes bug #81720.
7907 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
7909        * metadata.c: Move variable declarations to top of scope.
7910        * verify.c: Move variable declarations to top of scope.
7912        Code is contributed under MIT/X11 license.
7914 2007-06-08  Raja R Harinath  <rharinath@novell.com>
7916         * reflection.c (mono_class_bind_generic_parameters): Replace
7917         open-coded loop with mono_metadata_inflate_generic_inst.
7919         * class.c (get_shared_generic_class): Don't call
7920         mono_get_shared_generic_inst.  Use the container's own
7921         'class_inst'.
7923         * metadata.c (mono_metadata_load_generic_params): Move
7924         initialization of 'context' field here from ...
7925         * class.c (mono_class_create_from_typedef): ... here, and ...
7926         * loader.c (mono_get_method_from_token): ... here.
7928         * class.c (get_shared_generic_class): Rename from
7929         mono_get_shared_generic_class and make static.
7930         (mono_get_shared_generic_inst): Move to metadata.c.
7931         * loader.c (mono_get_shared_generic_method): Likewise.
7932         * class-internals.h, metadata-internals.h: Update to changes.
7934         Fix #81830
7935         * class.c (mono_class_from_generic_parameter): Don't assume a
7936         generic container owner exists.  Generic containers from monodis
7937         don't have any.
7939 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
7941         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
7942         * verify.h: new typedefs to returns the non-verifiable status
7943         * verify.c: initial implementation of generics, stack merging and object compatibility check
7945 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7947         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7948         a MonoInternalHashTable again (fixed bug in internal hash table
7949         code).
7951 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7953         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7954         MonoInternalHashTable again (fixed bug in internal hash table
7955         code).
7957 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7959         * class.c, image.c, class-internals.h, domain.c,
7960         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
7961         changes.  Have to figure out what makes them break the SWF
7962         regression.
7964 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7966         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7967         a MonoInternalHashTable now.
7969 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7971         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7972         MonoInternalHashTable now.
7974 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
7976         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
7977         invoke_impl code.
7979         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
7981         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
7982         dependent trampoline.
7984         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7986         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
7988 2007-05-29  Robert Jordan  <robertj@gmx.net>
7990         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
7992 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
7994         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
7996 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
7998        * marshal.c: Fix interface lookup loops for
7999        cominterop_get_com_slot_for_method and 
8000        cominterop_get_method_interface. Only need to lookup
8001        if type is a class, else use interface type method is on.
8003        Code is contributed under MIT/X11 license.
8005 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
8007         * reflection.c: HasSecurity can be present even if no specially 
8008         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
8009         SecurityAttribute). Fix CAS regression tests on buildbot.
8011 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
8013        * appdomain.c: Add configure checks for header files.
8014        * image.c: Add configure checks for header files.
8015        * file-io.c: Add configure checks for header files.
8016        * debug-mono-symfile.c: Add configure checks for header files.
8017        * threadpool.c: Add configure checks for header files.
8018        * console-io.c: Add configure checks for header files.
8019        * profiler.c: Add configure checks for header files.
8020        * rawbuffer.c: Add configure checks for header files.
8021        * icall.c: Add configure checks for header files.
8022        * rand.c: Add configure checks for header files.
8023        * socket-io.c: Add configure checks for header files.
8025        Code is contributed under MIT/X11 license.
8027 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
8029         * reflection.c (mono_custom_attrs_from_builders): Remove the 
8030         assertion as it breaks the build.
8031         
8032         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
8034         * reflection.c (lookup_custom_attr): Make a copy here too.
8036         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
8037         dynamic images.
8039         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
8040         images.
8042         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
8043         info.
8045 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
8047         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
8048         (load_cattr_value): Ditto.
8050 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
8052         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
8054 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
8056         * threads.c: In "start_wrapper", set apartment_state to MTA if
8057         apartment_state is Unknown and we're running on 2.0 profile or
8058         higher.
8059         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
8060         to main method, then set apartment_state to Unknown on 1.0 profile,
8061         and MTA on 2.0 profile.
8063 2007-05-16  Jb Evain  <jb@nurv.fr>
8065         * class-internals.h (MonoDefaults): Add an attribute_class and
8066           customattribute_data_class.
8067         * domain.c (mono_init_internal): Populate them.
8068         * reflection.c: Use them to remove duplicates. Make a vew
8069         MonoClass variables `static'.
8071 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
8073         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
8074         step in implementing IMT, so that all isinst checks now can go
8075         through the bitmap.
8076         This was needed because vtables for TransparentProxy need to look
8077         like the vtable of the "target" class, so they need to point to
8078         its interface bitmap directly.
8080         * object.c: inside "mono_class_create_runtime_vtable" and
8081         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
8083 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8085         * object-internals.h
8086           culture-info.h : added territory field in MonoCulture and
8087           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
8088         * locales.c : fill territory field above too.
8089         * culture-info-table.h : regenerated.
8091 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
8093         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
8094         Fixes #81599.
8096 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
8098         * object.c: Always initialize apartment, even if 
8099         there is no custom attributes on entry point.
8100         
8101         Code is contributed under MIT/X11 license.
8103 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
8105         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
8106         * metadata.c: If no encoding is set, check for unicode
8107         on class.
8108         
8109         Code is contributed under MIT/X11 license.
8111 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8113         * threads.c: Handle if mono_thread_current returns NULL 
8114         
8115         Code is contributed under MIT/X11 license.
8117 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8119         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
8120         in start_wrapper. Added mono_thread_init_apartment_state and
8121         mono_thread_cleanup_apartment_state.
8122         * object.c: Initialize thread apartment state on main thread
8123         by checking for STAThreadAttribute on entry point.
8124         * object-internals.h: Add apartment_state field to MonoThread.
8125         * threads-types.h: Add unmanaged definition of 
8126         System.Threading.ApartmentState, MonoThreadApartmentState.
8127         
8128         Code is contributed under MIT/X11 license.
8129         
8130 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
8132         * class.c: Fix windows build.
8133         * class-internals.h: Fix windows build.
8134         
8135         Code is contributed under MIT/X11 license.
8137 2007-05-08  Robert Jordan  <robertj@gmx.net>
8139         * process.c (CreateProcess_internal):
8140         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
8141         .CreateNoWindow was specified. Fixes #81496.
8143 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8145         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
8146         step in implementing IMT, replaced it with two compact arrays
8147         (interfaces_packed and interface_offsets_packed) and a bitmap that
8148         is used for isinst checks (interface_bitmap).
8150         * class.c: (compare_interface_ids): compare function to pass to
8151         bsearch when looking for an interface with a given id.
8152         (mono_class_interface_offset): reimplemented using bsearch on
8153         interfaces_packed, getting the offset from interface_offsets_packed.
8154         (print_implemented_interfaces): utility debugging function.
8155         (setup_interface_offsets): reworked to initialize interfaces_packed,
8156         interface_offsets_packed and interface_bitmap.
8158         * object.c: replaced all accesses to "MonoClass.interface_offsets"
8159         with uses of interfaces_packed and interface_offsets_packed.
8161 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8163         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
8164         mono_class_interface_offset prototype to wrap all accesses to
8165         "MonoClass.interface_offsets".
8167         * class.c: Implemented mono_class_interface_offset, and wrapped all
8168         accesses to "MonoClass.interface_offsets".
8170         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
8171         "MonoClass.interface_offsets".
8173 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
8175         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
8176         GetMethodFromHandle overloads (bug #78637).
8178 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8180         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
8181         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
8183 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
8185         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
8186         #81498.
8188         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
8189         gracefully.
8190         (mono_custom_attrs_from_index): Ditto.
8192         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
8193         Fixes #81501.
8195 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
8197         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
8198         is now allocated from a mempool.
8200 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
8202         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
8203         caller holds threads_lock, leading to deadlocks. Fixes #81476.
8205 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
8207         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
8208         mono_loader_clear_error () too late. Fixes #81463.
8210 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
8212         * culture-info-table.h : regenerated.
8214 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
8216         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
8217         is missing.
8219 2007-04-25  Dick Porter  <dick@ximian.com>
8221         * Makefile.am: Put the mingw enforced-optimisation back into the
8222         PLATFORM_WIN32 section.
8224 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
8226         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
8227         patch.
8229         * image.c (mono_image_load_module): New API function to load a module reference.
8231         * image.c (load_modules): Load modules lazily. Fixes #80812.
8233         * class.c (mono_class_from_typeref): Use mono_image_load_module.
8234         
8235         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
8237         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
8238         to mono_image_load_module_dynamic.
8240 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
8242         * marshal.c: Fix calling convention for CCW on non-windows
8243         platforms. STDCALL on windows, CDECL everywhere else to work 
8244         with XPCOM and MainWin COM.
8245         
8246         Code is contributed under MIT/X11 license.
8248 2007-04-23  Martin Baulig  <martin@ximian.com>
8250         Fix #80969.
8252         * loader.c
8253         (method_from_memberref): Added `gboolean *used_context' argument.
8254         (mono_get_method_from_token): Likewise.
8255         (mono_get_method_full): Don't insert the method in the cache when
8256         `used_context' is true.
8258 2007-04-23  Raja R Harinath  <rharinath@novell.com>
8260         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
8262         * reflection.c (mono_reflection_bind_generic_parameters): Don't
8263         create new MonoTypes for returned types.
8264         * class.c (mono_generic_class_get_class): Export mono-internal.
8265         * class-internals.h: Update to changes.
8267 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
8269         * threadpool.c, threadpool.h, icall-def.h: patch from
8270         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
8272 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
8274         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
8275         
8276         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
8278         * threads.c (mono_thread_get_stack_bounds): New helper function.
8280         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
8281         Correctly compute stack bounds when attaching. Fixes #81394.
8283 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
8285         * reflection.c: fix handling of doubles in custom attributes
8286         for the arm-fpa format (bug #81368).
8288 2007-04-18  Raja R Harinath  <rharinath@novell.com>
8290         * reflection.c (assembly_add_win32_resources): Mildly relax an
8291         bounds check to let the end pointer point just past the end of the
8292         allocated buffer.  (may fix #81384)
8294 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
8296         * culture-info-table.h : regenerated.
8298 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
8300         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
8301         the thread is aborted early.
8303 2007-04-05  Dick Porter  <dick@ximian.com>
8305         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
8306         FindFirstFile()/FindNextFile() to find entries.  This lets the
8307         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
8308         81038.
8310         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
8311         the parameters of
8312         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
8314 2007-04-04  Martin Baulig  <martin@ximian.com>
8316         * debug-helpers.c
8317         (mono_method_desc_full_match): Add support for nested classes.
8319 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
8321         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
8323 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
8325         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
8326         waiting for too many threads.
8328 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
8330         * environment.c: Fix return value check on uname so we can get the 
8331         executing version on Solaris operating systems.
8333 2007-03-28  Jb Evain  <jbevain@gmail.com>
8335         * class.c (mono_type_get_name_recurse): Complete the
8336         fix for the creation of assembly qualified names for
8337         pointer types. Fixes #81208.
8339 2007-03-27  Dick Porter  <dick@ximian.com>
8341         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
8342         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
8343         changed.
8345         * threads.c
8346         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
8347         the value of ReleaseMutex().
8349 2007-03-27  Dick Porter  <dick@ximian.com>
8351         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
8352         in little-endian order, not network endian, so must be converted
8353         to host endian here.  Fixes bug 80593.
8355 2007-03-22  Jb Evain  <jbevain@gmail.com>
8357         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
8358         qualified names for pointer types. Fixes #81208.
8360 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
8362         * marshal.c: Add support for PreserveSigAttribute. 
8363         
8364         Code is contributed under MIT/X11 license.
8366 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
8368         * process.c: Fix endianness issues. Fixes #81126.
8370         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
8371         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
8373         * image.c (mono_image_lookup_resource): Make this work on big-endian
8374         machines.Change API contract so the caller needs to free the return value.
8375         
8376         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
8377         API change.
8378         
8379 2007-03-14  Martin Baulig  <martin@ximian.com>
8381         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
8382         mono_type_get_desc() as well.
8384 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
8386         * icall.c:  Fix environ access in VS.  
8387         
8388 2007-03-13  Alp Toker  <alp@atoker.com>
8390         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8391         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8392         #63841.
8394 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
8396         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
8397         circular references among dynamic methods. Fixes #81091.
8399         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
8401 2007-03-09  Martin Baulig  <martin@ximian.com>
8403         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
8405 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
8407         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
8408         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
8409         
8410         Code is contributed under MIT/X11 license.
8411         
8412 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
8414         * loader.c: Reapply patch for bug #79424.
8416 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8418         * metadata.c (mono_type_to_unmanaged): Only convert object to
8419         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
8421 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
8423         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
8424         (and incorrectly set) is_reference field from MonoGenericInst.
8426 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8428         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
8429         a little earlier.
8431         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
8433         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
8435 2007-03-05  Miguel de Icaza  <miguel@novell.com>
8437         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
8438         FileOptions.1 value to mean "temporary", map that to
8439         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
8441         Fixes 80688
8443 2007-03-03  Marek Habersack  <mhabersack@novell.com>
8445         * appdomain.c: implement MS .Net style shadow copying. Copies of
8446         the assemblies are made in a subdirectory of the dynamic base
8447         directory, the assembly names are preserved.
8448         Copy .mdb and .config files along with the assemblies being shadowed.
8450 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8452         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
8453         (emit_marshal_handleref): Ditto.
8455         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
8456         on Visual C++. Fixes #80671.
8458 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
8460         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
8461         for clone operations.
8463 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8465         * marshal.c: Fix warnings.
8467 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
8469         * loader.c: allow case-insensitive matching of the dll name
8470         in dllmap handling when prefixed with "i:".
8472 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
8474         * threads.c: Fix #ifdef for dummy_apc function for VS.
8476 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
8478         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
8480 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
8481         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
8482         giving precedence to the methods with a fully qualified name
8483         (InterfaceName.MethodName) when building the interface sections
8484         of the vtable.
8486 2007-02-16  Dick Porter  <dick@ximian.com>
8488         * threadpool.c (append_job): Fix fast-path array handling, so it's
8489         less likely the array will grow exponentially when the load is
8490         heavy.
8492 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8494         * metadata-internals.h, loader.c: fix dllmap lookup order
8495         for non-function maps, too, and prepare for fallback code.
8497 2007-02-12  Robert Jordan  <robertj@gmx.net>
8499         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
8500         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
8501         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
8502         GlobalFree. Fixes a part of bug #77075.
8504 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
8506         * loader.c: implemented typedef parent in field memberref.
8508 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
8510         * marshal.c: Fix warnings and remember to call Release on
8511         IUnknown of RCW.
8512         
8513         Code is contributed under MIT/X11 license.
8515 2007-02-10  Miguel de Icaza  <miguel@novell.com>
8517         * class-internals.h: Add MonoHandleRef definition, and
8518         handleref_class to mono_defaults. 
8520         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
8521         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
8523         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
8524         (do nothing on this stage)
8525         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
8526         (emit_marshal_handleref): New method, used for argument handling
8527         of HandleRefs. 
8529 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
8531         * class.c (mono_class_setup_parent): Lazily init com types.
8532         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
8533         init com types.
8534         * object.c (mono_remote_class_vtable): Lazily init com types.
8535         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
8536         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
8537         * domain-internals.h: Expose mono_init_com_types.
8538         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
8539         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
8540         Add support for COM Callable Wrapper marshalling.
8541         * marshal.h: Add icall definitions.
8542         * gc.c: Handle freeing of CCWs in finalizer code.
8543         
8544         Code is contributed under MIT/X11 license.
8546 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
8548         * reflection.c: changed all the signature encoding code to use
8549         a variable-sized buffer.
8551 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8553         * marshal.c: locking fixes: never take the loader lock
8554         or other runtime locks when holding the marshal lock
8555         (fixes bug#80664).
8557 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
8559         * marshal.c: make the delegate function pointer mapping
8560         work for the moving GC.
8562 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
8564         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
8565         for bug #80618.
8567 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8569         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
8570         gmodule.
8572 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
8574         * threadpool.c: made the code moving-GC safe.
8576 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8578         * assembly.c, boehm-gc.c, class-internals.h, class.c,
8579         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
8580         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
8581         warning cleanup.
8582         * reflection.c: warning cleanup, some threading and moving GC fixes.
8584 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
8586         * class.c, loader.c: create the needed Set/Get/Address array methods
8587         as well as the .ctors in mono_class_init (), fixes bug #80567.
8589 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
8591         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
8592         we doesn't decrease its alignment. Should fix the sparc build.
8594 2007-01-24  Dick Porter  <dick@ximian.com>
8596         * socket-io.c
8597         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8598         Create the returned object if we need to ignore an unsupported
8599         socket option.  Fixes a segfault reported by Atsushi.
8601 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8603         * class.c, object.c: restrict GC-tracked fields to
8604         UIntPtr fields used inside corlib, so we provide better
8605         type info to the GC and also allow broken packing as in
8606         bug #80580.
8608 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
8610         * sgen-gc.c: removed duplicated function.
8612 2007-01-19  Miguel de Icaza  <miguel@novell.com>
8614         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
8615         value that means that the value is not supported, but that we
8616         should not return a failure, but instead report this as a
8617         successful operation.
8619 2007-01-19  Raja R Harinath  <rharinath@novell.com>
8621         Fix tests/bug79956.2.il
8622         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
8623         (mono_generic_class_get_class): If the generic definition in an
8624         enum, copy over other fields related to it.
8626 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
8628         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
8629         genericinst enums (bug #79215).
8631 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
8632         * class.c: Fix bug 80307.
8634 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
8636         * image.c: if the file table is not present, try to load
8637         all the modules, since we don't have info about them
8638         having or not metadata (bug #80517).
8639         * assembly.c: allow mono_assembly_load_references () to
8640         work for netmodules.
8642 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8644         * image.c, metadata-internals.h, object.c: execute module
8645         cctors when running on the 2 runtime if present (bug #80487).
8647 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8649         * icall.c: optimized InitializeArray() on bigendian.
8651 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
8653         * icall.c: fix for the broken ARM FPA double format.
8655 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
8657         * icall.c: handle endian issues for r4 and r8 types, too, in
8658         the InitializeArray() icall.
8660 2007-01-15  Miguel de Icaza  <miguel@novell.com>
8662         * loader.c (mono_loader_error_prepare_exception): Clear the error
8663         once we have extracted the information from it, do this before we
8664         call into the JIT's class loading mechanisms.
8666         * object.c (mono_class_create_runtime_vtable): Do not clear the
8667         loader error before calling mono_class_get_exception_for_failure
8668         as the loader error is needed inside
8669         mono_class_get_exception_for_failure to throw the error (thinko).
8671         Fixes #80521
8672         
8673 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
8675         * reflection.c: align fields rva data so it's faster to load at
8676         runtime.
8678 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8680         Prepare to simplify GenericMethod handling.
8681         * class-internals.h (mono_method_get_context): New accessor function.
8682         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
8683         rather than directly accessing '->context' field.
8685         * class-internals.h (_MonoGenericParam.method): Move ...
8686         (_MonoGenericContainer): ... here.  Add into union with klass field.
8687         * class.c, icall.c, loader.c, metadata.c, reflection.c:
8688         Update to changes.
8690 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
8692         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
8693         the wrapper type enum and reduce relocations.
8695 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8697         * reflection.c (inflate_mono_method): Reuse method instantiation
8698         from the generic method, if available.
8700 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8702         * marshal.c (emit_marshal_variant): Fix conv_arg
8703         type in last commit, based on whether parameter is byref.
8704         
8705 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8707         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
8708         marshalling.
8709         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
8710         MONO_TYPE_OBJECT back for VARIANT support.
8712 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8714         * marshal.c, marshal.h, icall-def.h: Implement 
8715         Marshal.ReAllocCoTaskMem.
8717 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
8719         * marshal.c: memory retention fixes: use the proper
8720         image cache for runtime_invoke method lookups.
8722 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
8724         * mempool.c: added code to help debug mempool allocations.
8726 2007-01-11  Dick Porter  <dick@ximian.com>
8728         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
8729         support (experimenting with faking it with IP_MTU_DISCOVER for
8730         systems that don't have IP_DONTFRAGMENT.)
8731         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
8732         icall.
8734         * icall-def.h: new System.Net.Sockets.Disconnect icall.
8736         * socket-io.h: Add new fields to MonoSocketAsyncResult
8737         corresponding to the new ones in Socket.cs.
8739 2007-01-11  Raja R Harinath  <rharinath@novell.com>
8741         Fix IronPython regression mentioned in #80249
8742         * metadata.c (do_mono_metadata_parse_generic_class): Clear
8743         'cached_context' field, since it may have been initialized as a
8744         side-effect of metadata parsing.
8746         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
8747         (_MonoGenericClass.cached_class): Move here and rename from lone
8748         remaining field of ...
8749         (_MonoInflatedGenericClass): ... this.  Remove.
8750         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
8751         to changes.
8753         Fix mcs/tests/test-128.cs regression.
8754         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
8755         2007-01-10 change below.
8756         [MONO_TYPE_OBJECT]: Recurse into array case.
8758 2007-01-11  Raja R Harinath  <harinath@gmail.com>
8760         * class-internals.h (mono_get_inflated_generic_class): Remove.
8761         * class.c (mono_get_inflated_generic_class): Remove.
8762         (mono_generic_class_get_class): Rename from
8763         mono_class_create_generic.
8764         (mono_class_from_mono_type) [GENERICINST]: Use it.
8765         * reflection.c, metadata.c: Update to changes.  Use
8766         'mono_class_from_mono_type'.
8768 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
8770         * reflection.c: use passed type when encoding an array element
8771         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
8773 2007-01-09  Robert Jordan  <robertj@gmx.net>
8775         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
8776         result arguments (someDelegate.EndInvoke (unrelatedAres)).
8777         Fixes bug #80392.
8779 2007-01-09  Raja R Harinath  <rharinath@novell.com>
8781         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
8783         * object.c (set_value): Avoid aliasing between type->data.klass
8784         and type->data.generic_class.
8786         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
8788 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8790         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
8791         between type->data.klass and type->data.generic_class.
8793 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
8795         * marshal.c: In MS.NET, StringBuilder objects are not copied by
8796         value in out parameters.
8798 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8800         Simplify invariant for MonoGenericClass::klass field.
8801         * class.c (mono_class_create_generic): Verify 'klass' is null.
8802         * metadata.c (do_mono_metadata_parse_generic_class): Don't
8803         initialize 'klass' field.
8805 2007-01-05  Raja R Harinath  <rharinath@novell.com>
8807         Ongoing work to avoid redundant data and simplify invariants.
8808         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
8809         'generic_class', and change type to a GenericInst.
8810         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
8811         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8813 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8815         * class.c : skip io-layer under PLATFORM_WIN32.
8817 2007-01-03  Tor Lillqvist  <tml@novell.com>
8819         Fix #80305: In a bundled executable, look in the bundled exe
8820         assembly to determine the runtime version. Add the possibility to
8821         bundle also the machine.config file.
8822         
8823         * assembly.c (mono_assembly_open_from_bundle): Make
8824         non-static. Allow being called even if we have no bundled
8825         assemblies, and return NULL right away in that case.
8827         * domain-internals.h: Declare mono_assembly_open_from_bundle()
8828         here.
8830         * domain.c (app_config_parse): Take an assembly exe file name as
8831         parameter instead of a config file name. Check for a bundled
8832         config file for that assembly by calling
8833         mono_config_string_for_assembly_file() (see below) before looking
8834         for one in the file system.
8835         (get_runtimes_from_exe): Corrsponding change to call of
8836         app_config_parse().
8837         (get_runtimes_from_exe): Check for bundled assembly exe file first
8838         by calling mono_assembly_open_from_bundle(). If no bundled
8839         assembly exe file is found, call mono_image_open() as before to
8840         look it up in the file system.
8842         * mono-config.c: Add variable bundled_machinec_onfig.
8843         (mono_config_string_for_assembly_file): New function.
8844         (mono_config_for_assembly): Move code snippet that looks for a
8845         bundled assembly .config file into the above new function. Call
8846         it.
8847         (mono_register_machine_config, mono_get_machine_config): New
8848         functions to set and retrieve
8850         * assembly.h: Declare mono_register_machine_config().
8852         * mono-config.h: Declare mono_get_machine_config() and
8853         mono_config_string_for_assembly_file().
8855         * icall.c: No declaration of environ necessary on Win32. It is
8856         declared (as a macro expanding to a function call) in stdlib.h.
8857         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
8858         New internal mono function. Returns the value of
8859         mono_get_machine_config() as a Mono string.
8861         * icall-def.h: Add get_bundled_machine_config().
8863 2007-01-04  Raja R Harinath  <rharinath@novell.com>
8865         Remove redundant field
8866         * class-internals.h (_MonoGenericContext.container): Remove field.
8867         * loader.c (mono_method_get_signature_full): Don't parse a
8868         "container" for a signature parse when the signature is inflated
8869         immediately.
8870         (method_from_methodspec): Likewise, for a generic_inst.
8871         * class.c, metadata.c, reflection.c: Update to changes.
8873 2006-01-04  Raja R Harinath  <rharinath@novell.com>
8875         * class-internals.h (_MonoGenericClass): Rename 'context' field to
8876         'cached_context', and change semantics -- it starts off NULL, and
8877         is initialized on demand.
8878         * class.c (mono_generic_class_get_context): New accessor to
8879         replace 'context' field accesses.
8880         (mono_class_get_context): New helper.
8881         (*): Update to changes.
8882         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
8884 2007-01-03  Miguel de Icaza  <miguel@novell.com>
8886         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
8887         before the memcpy.   Fixes Marshal2 regression.
8889 2007-01-02  Jb Evain  <jbevain@gmail.com>
8891         * blob.h: add a MONO_TYPE_ENUM definition
8892         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
8893         fix the encoding of arrays of enums in custom attributes.
8895         Fixes #79666.
8897 2007-01-01  Miguel de Icaza  <miguel@novell.com>
8899         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
8900         string is null terminated, but only cut the string short if it
8901         overflows the buffer.   
8902         
8903         (mono_string_to_byvalstr): Also fix this routine.   The code here
8904         was not properly terminating a string (it was only terminated
8905         because of the previous catch-all memset). 
8907         I left the memset, because I do not know if applications expect
8908         the runtime to clear this region. 
8910         Fixes #79944.
8912         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
8913         Clear the error before returning to unmanaged code to prevent the
8914         runtime from being confused later on (fixes  80420).
8915         (ves_icall_type_from_name): Always call mono_loader_clear_error
8916         after parsing a type that could have failed.
8917         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
8919         * loader.c (mono_loader_clear_error): Fix indentation.
8921 2006-12-28  Martin Baulig  <martin@ximian.com>
8923         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
8925 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
8927         * reflection.c: patch from Rolf Bjarne Kvinge to fix
8928         getting a token for an EnumBuilder.
8930 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
8932         * reflection.c: be more careful in case resource generation
8933         fails to create the data array.
8935 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
8937         * sgen-gc.c: write barrier for clone and fix unregister handles.
8939 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
8941         * reflection.c: some fixes needed in the generics code for the moving GC.
8943 2006-12-22  Robert Jordan  <robertj@gmx.net>
8945         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
8946         account. Fixes bug #80299.
8948 2006-12-21  Raja R Harinath  <rharinath@novell.com>
8950         Fix WaitHandle usage in delegates.
8951         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
8952         * object.c (mono_wait_handle_new): Use the property set method to
8953         initialize the handle.
8954         (mono_wait_handle_get_handle): New.
8955         * threadpool.c (mono_async_invoke): Use it.
8956         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
8957         Likewise.
8958         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
8960 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
8962         * marshal.c (emit_marshal): Call emit_marshal_variant and
8963         emit_marshal_com_interface when applicable.
8964         (emit_marshal_variant, emit_marshal_com_interface): Add
8965         methods for this case and remove if's from emit_marshal_object.
8966         
8967 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
8969         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
8971 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
8973         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
8974         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
8975         and GlobalFree on Windows. Remove FIXME.
8977 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
8979         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
8980         implementation for managed objects.
8982 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
8984         * object.c: implemented code to be used for checking
8985         that no reference field overlaps with non-references.
8987 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8989         * threadpool.c: fix queue code to be compatible with the
8990         moving GC.
8992 2006-12-18  Miguel de Icaza  <miguel@novell.com>
8994         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
8995         in structures by throwing ArgumentNullException.
8997         (emit_marshal_safehandle): Also when they are null parameters.
8999         (emit_marshal_safehandle): Add support for ref
9000         SafeHandles parameters
9002 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
9004         * profiler.c: updated to use the mono-dl API instead of
9005         gmodule.
9007 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9009         * profiler.c: updated to use the mono-dl dynamic loading
9010         API instead of gmodule.
9012 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
9014         * profiler.c: use readlink, older versions of glib don't have
9015         g_file_read_link ().
9017 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9019         * profiler.c: try to detect the path to mono if libc fails to provide
9020         a useful name (bug #80286).
9022 2006-12-16  Raja R Harinath  <rharinath@novell.com>
9024         Fix #80242
9025         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
9026         instance, use the generic type definition instead.
9027         (ves_icall_Type_GetNestedTypes): Likewise.
9028         * class.c (mono_class_create_generic): Always set the
9029         nested_classes of a generic instance to NULL, even if the generic
9030         type definition has nested types.
9032 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
9034         * marshal.c (mono_string_from_bstr): Revert previous Windows change
9035         and fix on Linux.
9036         
9037 2006-12-15  Miguel de Icaza  <miguel@novell.com>
9039         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
9040         my arguments were in the wrong order.   I also fixed the Windows
9041         version which seems to have had the same issue.
9043         (mono_free_bstr): On Unix, this is g_free.
9044         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
9045         conversions (for the tests in corlib to pass).
9047 2006-12-14  Miguel de Icaza  <miguel@novell.com>
9049         * marshal.c (emit_ptr_to_object_conv): For now, ignore
9050         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
9051         exception if a ref SafeHandle in a struct has changed).
9052         
9053         (emit_struct_conv): Do not perform layout checks for classes
9054         derived from SafeHandle, as those are specially handled. 
9056         (emit_object_to_ptr_conv): Add support for
9057         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
9059         (emit_marshal_safehandle): Implement conversion of return values
9060         of safehandles (MARSHAL_ACTION_CONV_RESULT).
9061         
9062         * threads.c: WaitHandle now is compiled with two different handles
9063         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
9064         for 2.0.
9065         
9066         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
9067         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
9068         these routines to cope with both kinds of fields.
9070 2006-12-12  Miguel de Icaza  <miguel@novell.com>
9072         * metadata.c (mono_type_to_unmanaged): Handle the case where
9073         type->data.klass is a SafeHandle, and in that case, return the
9074         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
9075         MONO_MARSHAL_CONV_SAFEHANDLE. 
9077 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9079         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
9080         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
9081         calling emit_marshal_object.
9083         (emit_marshal_safehandle): Implement marshalling of
9084         SafeHandle parameters (no ref support yet).
9086         (MarshalAction): Document the defines as I implement
9087         them for SafeHandle.
9089         (emit_marshal_object): indentation police.
9091         * class-internals.h: Define MonoSafeHandle.
9092         Add safehandle_class to MonoDefaults type.
9094         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
9095         list of classes to check for fields. 
9097         * domain.c (mono_init_internal): Add SafeHandle to the list of
9098         mono_defaults loaded.
9100 2006-12-15  Raja R Harinath  <rharinath@novell.com>
9102         Fix #80253
9103         * reflection.c (mono_reflection_bind_generic_parameters): If the
9104         generic type definition is a type builder, ensure that it is fully
9105         initialized before instantiating it.  Kill some dead code.
9107 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
9109         * object.c: clear the loader_error () before loading
9110         more metadata stuff (bug #80258).
9112 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
9114         * icall.c, icall-defs.h: type modifiers icalls for
9115         parameters and properties.
9117 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
9119         * object.c, icall.c: fixed warnings.
9121 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9123         * marshal.c: fixed a couple of leaks and coding style in a few places.
9125 2006-12-08  Dick Porter  <dick@ximian.com>
9127         * process.c: Cope with NULL ProcessStartInfo arguments on windows
9128         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
9129         80173.
9131 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
9133         * process.c: ProcessStartInfo may have only filename set and
9134         arguments can be NULL.
9136 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9138         * icall.c: fix leak found by Robert Jordan.
9140 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9142         * marshal.c, marshal.h: generate managed method to access an element
9143         of a multi-dimensional array.
9145 2006-11-30  Paolo Molaro (lupus@ximian.com)
9147         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
9149 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9151         * icall.c: back out GetFields () fix until the serialization code is
9152         fixed to not depend on the incorrect behaviour.
9154 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
9156         * profiler.c: provide defaults if none are set.
9158 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
9160         * Makefile.am, attrdefs.h: new public header file with
9161         constants for attributes for use by embedders.
9163 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
9165         * icall.c: GetFields () fix for bug #80064.
9167 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
9169         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
9170         removed long unused icalls.
9172 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
9173   
9174         * marshal.c: 
9175                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
9176                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
9177                 can be generated without a delegate class.
9178                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
9179         
9180         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9182 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9184         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
9185         #80069.
9187 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
9189         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
9190         icall-def.h: added icalls needed by System.GC.
9192 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
9194         * loader.c: ensure the class in catch clauses is handled
9195         correctly for generics methods (fixes bug#79980).
9197 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
9199         * monitor.h, monitor.c: added mono_locks_dump () function
9200         to help debug deadlocks involving managed locks.
9202 2006-11-13  Dick Porter  <dick@ximian.com>
9204         * file-io.c (get_file_attributes): If the file is a symlink try
9205         and get the stat data for the target, but also add the
9206         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
9207         the specs for the windows symlink support, but will probably have
9208         to be reworked when I have test data from a vista machine.  Fixes
9209         bug 79887.
9211 2006-11-13  Dick Porter  <dick@ximian.com>
9213         * gc.c (mono_domain_finalize): 
9214         * marshal.c (mono_delegate_begin_invoke): 
9215         * threadpool.c (socket_io_init, mono_thread_pool_init)
9216         (mono_thread_pool_finish): 
9217         * monitor.c (mono_monitor_try_enter_internal): 
9218         * threads.c (mono_thread_resume, mono_thread_init)
9219         (mono_thread_suspend_all_other_threads)
9220         (mono_thread_execute_interruption): 
9221         * appdomain.c (mono_domain_unload): Check for NULL error returns
9222         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
9223         75733.
9225 2006-11-11  Miguel de Icaza  <miguel@novell.com>
9227         * process.c
9228         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
9229         Only close the handle if the value of the handle is not
9230         INVALID_HANDLE_VALUE.  This just makes the process a bit more
9231         robust.
9233         Improvement for #75733, so that we do not run into this problem. 
9235         
9236         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
9237         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
9238         internal variables.  Fixes #79462 
9239         
9241 2006-11-09  Dick Porter  <dick@ximian.com>
9243         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9244         Use poll() not select().  Fixes bug 79397.
9246 2006-11-09  Raja R Harinath  <rharinath@novell.com>
9248         Fix #79872
9249         * assembly.c (mono_assembly_load_from_full): Check that the given
9250         image has an assembly manifest.
9252 2006-11-09  Ankit Jain  <jankit@novell.com>
9254         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
9255         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
9256         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
9258 2006-11-07  Dick Porter  <dick@ximian.com>
9260         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9261         Put the old resolver behaviour back for pre-2.0 profiles.
9263 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
9265         * threadpool.c: precise GC and locking fixes.
9267 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
9269         * class.c: don't load types that have an explicit unaligned
9270         managed reference. Provide better info in the TypeLoad exception.
9271         Part of the fix for bug #79744.
9272         * object.c: use the correct check for class type load issues.
9274 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
9276         * class.c: enforce alignment of fields with managed references
9277         even when Pack=1 is forced by the user (bug #77788).
9279 2006-11-03  Dick Porter  <dick@ximian.com>
9281         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9282         If the address reverse lookup fails, return it as the hostname
9283         anyway.  Fixes bug 79721.
9285 2006-11-03  Dick Porter  <dick@ximian.com>
9287         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
9288         Fix build on Windows.
9290 2006-11-02  Dick Porter  <dick@ximian.com>
9292         * icall-def.h: 
9293         * object-internals.h: 
9294         * exception.c (mono_get_exception_thread_interrupted): 
9295         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
9296         Fixes bug 74525.
9298         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
9299         Check for pending Thread.Interrupt.
9301 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
9302         * loader.c: Fixed bug 79684.
9304 2006-10-27  Dick Porter  <dick@ximian.com>
9306         * file-io.c (get_file_attributes): Force symlinks to directories
9307         to be returned as a regular file.  Fixes bug 79733.
9308 2006-10-26  Dick Porter  <dick@ximian.com>
9310         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
9311         CreateFile to open a directory then we need to set the
9312         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
9314 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
9316         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
9317         friends.
9319 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9321         * sgengc.c: small cleanup of timer code.
9323 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
9325         * sgen-gc.c: fix some warnings and start adding support for
9326         complete object removal on domain unload.
9328 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
9330         * assembly.c: build_assembly_name should not consider a version
9331         number without build or revision number invalid. Fixes bug #79715.
9333 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
9335         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
9336         call kernel32 function OutputDebugString directly.
9337         
9338         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9339         
9340 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
9342         * reflection.c: small cleanup, using a function to insert a MonoString
9343         in the string heap.
9345 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
9347         * reflection.c: moving GC fixes.
9349 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
9351         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
9352         all the objects with finalizers belonging to an unloading appdomain.
9354 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
9356         * sgen-gc.c: added ability to allocate even when the nursery is fully
9357         pinned and fixed a couple of bugs.
9359 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9361         * threads.h: Revert the last change for now.
9363         * threads.h (mono_thread_get_pending_exception): Rename this to
9364         mono_thread_get_undeniable_exception ().
9366 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
9368         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
9369         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
9370         when fname does not refer to valid assembly. This result in a more
9371         meaningful error message.
9372         * exception.c: added mono_get_exception_bad_image_format2 which 
9373         constructs a BadImageFormatException using the ctor taking a custom
9374         message and the file name. Passing in a NULL msg results in a default
9375         message.
9376         * exception.h: define mono_get_exception_bad_image_format2 function.
9377         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
9378         when file name pointed to an invalid IL image. Use 
9379         mono_get_exception_file_not_found2 to construct FileNotFoundException,
9380         as this results in a more meaningful error message.
9382 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9384         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
9385         #79465.
9387 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
9389         * metadata.c (mono_type_size): Change the align parameter to guint32 for
9390         consistency with the other _size functions.
9391         (mono_type_stack_size): Ditto.
9393         * class.c object.c icall.c: Fix warnings caused by the above change.
9395         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
9397         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
9399         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
9401 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
9403         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
9404         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
9405         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
9406         threadpool.h, threads-types.h: mark more internal functions.
9408 2006-10-11  Dick Porter  <dick@ximian.com>
9410         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9411         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
9412         reproduce the bug even before applying the fix.)
9414 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
9416         * reflection.c: allow retrieving attributes for arguments in generic
9417         methods (bug #79241).
9419 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
9421         * debug-mono-symfile.c: properly check fopen () result (found by
9422         coverity).
9424 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
9426         * reflection.c: make error message clearer and fixed two
9427         issuelets found by Coverity.
9429 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
9431         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
9433 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9435         * object-internals.h, gc-internal.h, profiler-private.h:
9436         mark internal functions.
9438 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9440         * reflection.c: put data in the text section.
9441         * icall.c: recognize more types in type_from_typename ().
9442         * process.c, marshal.c: added some GC FIXMEs.
9444 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9446         * loader.c: check for NULL before initializing.
9448 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
9450         * gc.c (finalizer_thread): Use a non-alertable wait here.
9452         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
9453         until the correct solution is found.
9455 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9457         * reflection.c (mono_module_get_object): Avoid an assert when operating on
9458         modules with no metadata. Fixes #79596.
9460         * image.c (load_metadata_ptrs): Put back the error message when
9461         the #- heap is encountered since the support is not complete yet.
9463 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9465         * gc.c: do not allow the user to SuppressFinalize () a
9466         delegate because it would leak the trampoline if present.
9468 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9470         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
9471         PropertyPtr table.
9473 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
9475         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
9477         * metadata.c (mono_metadata_get_param_attrs): Ditto.
9479         * row-indexes.h: Add definitions for *Ptr tables.
9481         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
9483         * metadata.c (mono_metadata_translate_token_index): New helper function to
9484         translate table indexes used in uncompressed metadata.
9485         (mono_metadata_decode_table_row): Ditto.
9486         (mono_metadata_decode_table_row_col): Ditto.
9488         * metadata.c: Add table schema for *Ptr tables.
9490         * class.c loader.c: Use the new helper function to access the affected metadata
9491         tables.
9492         
9493         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
9494         #38532.
9495         
9496 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
9498         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
9499         sequences which can be unbounded in size. Fixes #79583.
9501 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
9503         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
9504         static initialization.
9506         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
9508         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
9510         * domain.c (mono_domain_free): Free up type_init_exception_hash.
9512         * object.c (mono_runtime_class_init): Implement correct semantics when a static
9513         ctor fails, i.e. throw the same exception on subsequent accesses.
9514         
9515 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
9517         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
9518         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
9519         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
9520         Handle marshalling of interfaces and VARIANTs contained in structs.
9521         
9522         Code is contributed under MIT/X11 license.
9523         
9524 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
9526         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
9527         
9528         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
9529         mempool.
9531 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9533         * console-io.c: ignore previous SIGINT handler.
9535 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
9537         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
9538         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
9539         #79460, #79461, #79485.
9541         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
9543         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
9544         #79217.
9546 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
9548         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
9549         could be generated from it.
9551 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
9553         * rand.c: fix read loop to correctly handle EINTR.
9555 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9557         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
9558         internal calls are defined to keep methods closer to the declaring
9559         type and allow a significant reduction in runtime relocations and
9560         memory usage.
9562 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
9564         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
9565         exception message to have FileNotFoundException use the default
9566         assembly load error message. Fixes bug #79426.
9567         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
9569 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9571         * threadpool.c: (start_thread_or_queue) use the root domain when
9572         creating the thread instead of the async object one.
9574 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
9576         * class.c, object.c, class-internals.h, reflection.c:
9577         for arrays, store element_size inside MonoClass (speedup
9578         for array object creation).
9580 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
9582         * icall.c: fixed CodeBase to use the file name and not the module
9583         name (bug #79365).
9585 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9587         * mono-debug.c, mono-debug.h: export find_method as
9588         mono_debug_find_method ().
9590 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9592         * debug-helpers.c, class-internals.h: added a few functions useful
9593         when debugging under gdb.
9595 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9597         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
9598         characters that need special handling.
9600 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
9602         * mono-config.c: make the os/cpu specification more flexible,
9603         allowing lists and negation.
9605 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
9607         * marshal.c: COM Interop fixes. Handle case where method->klass.
9608         is interface. Handle BSTR/MonoString when null. Use CDECL as 
9609         calling convention on non-windows platforms. This is for
9610         compatibility with XPCOM and MainWin COM.
9611         
9612         Code is contributed under MIT/X11 license.
9613         
9615 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
9617         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
9618         correctly. Fixes #79217.
9620         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
9622 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
9624         * mono-config.c: allow both an os and cpu attribute for dllmap
9625         and dllentry elemnets to enable a single config file to be used
9626         for multiple architectures.
9628 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
9630         * loader.c: MonoLoaderError was cleared too soon on load failure.
9631         Fixes bug #79424.
9633 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
9635         * icall.c: use the defining class vtable when accessing a
9636         static field, not a pobblibly derived class.
9638 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
9640         * icall.c string-icalls.c: Remove references to unicode.h.
9642         * unicode.h unicode.c Makefile.am: Remove these unused source files.
9644         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
9646         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
9647         indicating the image where custom marshaller types should be looked up.
9648         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
9649         custom marshallers, instead of corlib. Fixes #79425.
9651 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
9653         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
9655 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
9657         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
9658         Implement Environment.ProcessorCount.
9659         
9660         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
9661         Implement Environment.ProcessorCount.
9662         
9663         * icall.c: 
9664         Add Environment.ProcessorCount icall.
9665         
9666         Patch by Jason McFall.
9668 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9670         * assembly.c: don't append .exe/.dll when the filename already contains
9671         one of those extensions.
9673 2006-09-12  Martin Baulig  <martin@ximian.com>
9675         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
9676         to array interfaces.
9678 2006-09-11  Martin Baulig  <martin@ximian.com>
9680         * reflection.c (mono_image_build_metadata): Create the
9681         MethodImpl's after emitting all types and methods, so we don't
9682         need another fixup pass for them.
9684 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
9686         * class.c (mono_class_from_name_case): Fix regression introduced by the last
9687         change.
9689 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
9691         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
9692         unload.
9694 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
9696         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
9697         args is not set. Fixes #78926.
9699 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
9701         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
9703         * image.c (load_class_names): Move this to class.c, and rename it to 
9704         'mono_image_init_name_cache'.
9705         (load_modules): Fix a warning.
9707         * class.c icall.c image.c: Initialize image->name_cache lazily.
9709         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
9710         on its name using information in the AOT file.
9712         * class.c (mono_class_from_name): Use the new hook function.
9714 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
9716         * reflection.c (mono_param_get_objects): Handle enum default parameter values
9717         correctly.
9719         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
9720         Fixes #79289.
9721         
9722 2006-09-06  Martin Baulig  <martin@ximian.com>
9724         * icall.c (mono_lookup_internal_call): Small fix.
9726 2006-09-05  Raja R Harinath  <rharinath@novell.com>
9728         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
9729         double g_free.
9731 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
9733         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
9734         when --debug is specified.
9736 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
9738         * class.c (setup_generic_array_ifaces): Fix a warning.
9740 2006-09-04  Miguel de Icaza  <miguel@novell.com>
9742         * Temporarily remove the patch to assemly.c that checks the
9743         assembly versions as it breaks our gacutil.
9745 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
9747         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
9749         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
9750         a net 1.0 runtime.
9752         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
9753         created using the default ctor. Fixes #79152.
9754         (mono_string_builder_to_utf16): Ditto.
9756 2006-09-01  Martin Baulig  <martin@ximian.com>
9758         Fix handling of the generic array interfaces.
9760         * class-internals.h
9761         (MonoDefaults): Removed `generic_array_class' and added
9762         `generic_ilist' class.
9764         * class.c
9765         (mono_bounded_array_class_get): Add the new generic array interfaces.
9766         (setup_generic_array_ifaces): New static method; create vtable
9767         entries for each method in the generic array interfaces.
9769         * metadata.c
9770         (select_container): Allow "parent-less" generic methods.
9772         * marshal.c
9773         (mono_marshal_get_generic_array_helper): New public method.
9775         * icall.c
9776         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
9777         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
9778         moved the interncall into System.Array.
9780 2006-09-01  Raja R Harinath  <rharinath@novell.com>
9782         A few more cases of avoiding work on types with ->byref set.
9783         Has the real fix for #79238
9784         * icall.c (is_generic_parameter): New helper.
9785         (ves_icall_Type_GetGenericParameterPosition): Use it.
9786         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
9787         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9788         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
9789         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
9790         reference types.
9791         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
9792         reference types.
9793         (ves_icall_Type_get_IsGenericInstance): Likewise.
9794         (ves_icall_Type_get_IsGenericType): Likewise.
9796 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
9798         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
9799         class if possible.
9801         * mempool.h (mono_mempool_get_allocated): New helper function.
9803         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
9804         change.
9806         * mempool.c: Fix warnings and the calculation of stats.
9808         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
9810         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
9812         * loader.c (mono_get_method_from_token): Update method_count stat.
9814         * class-internals.h (MonoStats): Add some stats.
9816 2006-08-31 Robert Jordan  <robertj@gmx.net>
9818         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
9819         with managed variants.
9820         All code is contributed under the MIT/X11 license.
9821         
9822 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
9824         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
9825         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
9827         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
9829         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
9830         with cycles in classes.
9832         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
9834         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
9835         missing a [MarshalAs] directive. Fixes #79203.
9837         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
9838         klass->marshal_info. Fixes #79217.
9840 2006-08-30  Martin Baulig  <martin@ximian.com>
9842         Committing a patch from Joachim Ante <joe@otee.dk>:
9843         Add support for binary data symbol stores.
9845         * debug-mono-symfile.c
9846         (mono_debug_open_mono_symbol_file): Renamed into
9847         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
9848         arguments.
9850         * mono-debug.c
9851         (mono_debug_open_image): Added `raw_contents' and `size' args.
9852         (mono_debug_init_2_memory): New public function.
9854 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
9856         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
9858 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9860         * appdomain.c: implement support for ShadowCopyFiles.
9862 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
9864         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
9865         when value is NULL (and should remove CID #51).
9867 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9869         * image.c: moved 2 functions to ../utils.
9871 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
9873         * gc.c: cope with the target object of a GC handle being NULL
9874         (bug #78877).
9876 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
9878         * class.c: recursively check parent's explicit implementations
9879         of interface methods (fixes bug #79125).
9881 2006-08-19  Miguel de Icaza  <miguel@novell.com>
9883         * filewatcher.c: Avoid warnings when building, do not redefine
9884         constants that are defined.
9886         Remove warnings.
9888 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9890         * image.c: don't fail when the link points to an absolute path.
9892 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
9894         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
9895         Fix CID #3.
9897 2006-08-17  Miguel de Icaza  <miguel@novell.com>
9899         * image.c (full_path): A new method used to obtain the actual path
9900         of an assembly even in the presence of symbolic links.  
9902         This is necessary for the case where we are running a binary that
9903         has been GACed, but we are using the "published" path name
9904         ($prefix/mono/1.0/blah.exe) which happens to point to the real
9905         file in the GAC.
9907         This was the source of the failure for the `xsp' command with the
9908         recent AppDomain changes, as far as the runtime was concerned,
9909         there were two different assemblies: $prefix/mono/1.0/blah.exe and
9910         $prefix/mono/gac/blah/version/blah.exe.
9912         (do_mono_image_open): use full path
9914 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9916         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
9918 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
9920         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
9921         domain_id is supplied. Fix CID #241 and corlib's unit tests.
9923 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9925         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
9926         small structures. Fixes #78990.
9928 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9930         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
9932         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
9934 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9936         * appdomain.c:
9937         * marshal.c: don't load all the assemblies from a domain into newly
9938         created ones. The new domains might have different rules and load
9939         assemblies from different locations. Fixes bug #76757.
9941         Patch by Lluis. Conflicts resolved by Brian Crowell.
9943 2006-08-16  Alp Toker  <alp@atoker.com>
9945         * socket-io.c: First half of the fix for #79084.
9946         Set sa_size to the length of the content, not that of the struct.
9947         Don't add NULL suffix to the content, this should be done in
9948         managed code if needed.
9950 2006-08-14  Raja R Harinath  <rharinath@novell.com>
9952         Fix part of #79012
9953         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
9954         mono_metadata_parse_type returns NULL.
9956 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
9958         * normalization-tables.h : new file for string normalization data.
9959         * locales.c, locales.h, icall.c :
9960           added load_normalization_resource() for string normalization,
9961           and icall as well.
9962         * Makefile.am : added normalization-tables.h to the sources.
9964 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
9966         * marshal.c: Add more helper functions to reduce code duplication and use them
9967         everywhere.
9969 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
9971         * marshal.c: Fix non-x86 stdcall warnings.
9972         
9973         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
9974         them everywhere.
9976 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
9978         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
9979         type check on multi-dimensional arrays. Fixes #79000.
9981 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
9983         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
9984         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
9985         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
9986         * class-internals.h: add is_com_object to class structure.
9987         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
9988         null checks to COM object marshalling. Fix .ctor call on RCW.
9989         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
9990         
9991         All code is contributed under the MIT/X11 license.
9993 2006-08-09  Dick Porter  <dick@ximian.com>
9995         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
9996         racing mono_monitor_allocator_lock() somewhere, so don't delete
9997         the critical section for now.  Found by running and exiting
9998         monodevelop.
10000 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
10002         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
10003         (ves_icall_System_ComObject_FindInterface): Ditto.
10004         (ves_icall_System_ComObject_CacheInterface): Ditto.
10006         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
10007         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
10009 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10011         * threadpool.c: treat pipes from process asynchronous reads as sockets
10012         when reading from them, so we get select/poll or epoll to wait for
10013         data.
10015 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
10017         * loader.c: Fix a typo (CID #233) in the null check.
10019 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
10021         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
10022         Hopefully fixes #78949.
10023         
10024         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
10025         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
10026         bytes. Fixes #78972.
10028 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10030         * filewatcher.c: we need to set errno here.
10032 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10034         * filewatcher.c: let Win32Exception get the error value.
10036 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10038         * filewatcher.c: translate errno into win32 errors for Win32Exception
10039         to know what happened.
10041 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
10043         * threadpool.c: Fix more warnings.
10045         * assembly.c (search_loaded): Fix warnings.
10047         * threadpool.c (mono_thread_pool_finish): Fix warnings.
10048         (mono_async_invoke): Ditto.
10050 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
10052         * object.c (mono_remote_class_vtable): Need to create proxy vtable
10053         entries for __ComObject type in addition to ComImport types.
10054         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
10055         about hash table.
10056         
10057         All code is contributed under the MIT/X11 license.
10059 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
10061         * image.c: avoid tentative loading of modulerefs that contain
10062         no metadata (P/Invoke library names).
10064 2006-07-28  Dick Porter  <dick@ximian.com>
10066         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
10067         mono_loader_lock() somewhere, so don't delete the critical section
10068         for now.  Found by running and exiting monodevelop.
10070 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10072         * filewatcher.c: define the inotify syscalls when we're building on
10073         linux and have sys/syscall.h. The build system might not have support
10074         for inotify but the target system might have it.
10076 2006-07-26  Miguel de Icaza  <miguel@novell.com>
10078         * domain.c: Documentation updates.
10080         * loader.c (mono_free_method): Do not release the method
10081         information if we are being profiled, as profilers will use this
10082         information at shut down to present some data to the user.
10084         This is needed so that the profiler does not crash, as the
10085         profiler tends to keep MonoMethods around, and they might become
10086         invalid if we free these.
10088         (mono_get_method_constrained): Return the original CIL stream
10089         method as well, so verification can be performed against it.
10091 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10093         * filewatcher.[ch]: support for inotify file system watcher.
10094         * icall.c: add new internal calls for the inotify file system watcher.
10096 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10098         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
10099         #78888.
10101 2006-07-20  Dick Porter  <dick@ximian.com>
10103         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
10104         warning.
10106 2006-07-20  Dick Porter  <dick@ximian.com>
10108         * threads.c (start_wrapper): Do the thread cleanup while we still
10109         hold a reference to its object.  Fixes bug 78123.
10111 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
10113         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
10114         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
10115           "managed-to-managed".
10116         * icall.c: Redirect string constructors that take sbyte* to
10117           ves_icall_System_String_ctor_RedirectToCreateString.
10118         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
10119           to CreateString () methods with matching signature.
10120         * reflection.c: Use original security informations for
10121           MONO_WRAPPER_MANAGED_TO_MANAGED.
10122         * security-manager.c: Use original security informations for
10123           MONO_WRAPPER_MANAGED_TO_MANAGED.
10124         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
10125           that is a placeholder and only its address should be used.
10126         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
10127           that is a placeholder and only its address should be used.
10129 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
10131         Begin implementing COM Interop.
10132         * appdomain.c: Increment corlib version.
10133         * class.c: Set ComImport classes' parent to __ComObject.
10134         * loader.c: Mark cominterop methods as such.
10135         * domain.c: Add __ComObject class to MonoDefaults structure.
10136         * image.c: Add 2 hashtables to the image for COM Interop related methods
10137         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
10138         using the mempool allocator
10139         
10140         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
10141         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
10142         declaration for mono_metadata_type_dup_mp.
10143         
10144         * debug-helpers.c: Added strings for two additional wrapper types
10145         * object.c: Create proxy objects for ComImport classes
10146         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
10147         and added __ComObject class to MonoDefaults structure.
10148         
10149         * object-internals.h: Finish MonoRealProxy definition, and add definition of
10150         MonoComInteropProxy and MonoComObject.
10151         
10152         * marshal.c: Added support for COM Interop
10153         (signature_cominterop): Converts managed signature to corresponding
10154         unmanaged COM signature.
10155         (cominterop_get_function_pointer): gets unmanaged function pointer via
10156         COM object vtable
10157         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
10158         (cominterop_get_method_interface): returns interface type that method is defined on
10159         (mono_mb_emit_cominterop_call): emits native call to function pointer
10160         gotten from vtable
10161         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
10162         that matches signature of unmanaged function.
10163         (cominterop_get_native_wrapper): wrapper around adjusted method call.
10164         (cominterop_get_invoke): forwards call from proxy to __ComObject
10165         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
10166         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
10167         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
10168         
10169         * marshal.h: Added Marshal icall declarations.
10170         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
10171         so we can access them in finalizer
10172         
10173 2006-07-14  Dick Porter  <dick@ximian.com>
10175         * object.c (mono_type_initialization_cleanup): Fix a race
10176         condition by temporarily commenting out the critical section
10177         deletion.
10179 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
10181         * reflection.c (create_custom_attr): Fix some warnings.
10182         (create_custom_attr_data): Ditto.
10183         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
10184         types. Fixes #78855.
10186 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
10188         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
10190         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
10192 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
10194         * reflection.c (resolve_object): Add support for DynamicMethod.
10196         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
10197         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
10199 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
10201         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
10202         don't leak GPtrArray's pdata has we have no use (nor free) for it.
10204 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
10206         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
10207         Fixes #77888.
10209 2006-06-30  Raja R Harinath  <rharinath@novell.com>
10211         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
10212         slightly: remove a shadow local variable.
10214 2006-06-29  Raja R Harinath  <rharinath@novell.com>
10216         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
10217         definition that introduces the virtual function slot.
10218         Also fix Coverity #105.
10220 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
10222         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
10223         for dynamic assemblies. Fixes #78724.
10225 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
10227         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
10228         Fixes #78722.
10230 2006-06-21  Martin Baulig  <martin@ximian.com>
10232         * reflection.c
10233         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
10234         fixes #76484.
10236 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
10238         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
10240 2006-06-20  Raja R Harinath  <rharinath@novell.com>
10242         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
10243         nor TYPEREFs.
10244         * class.c (mono_class_create_from_typespec): Add 'context' argument.
10245         Inflate result if necessary.
10246         (mono_class_get_full): Remove old version.  Rename from
10247         'mono_class_get' and add 'context' argument.  Pass it to
10248         ..._create_from_typespec.
10249         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
10250         (mono_ldtoken): Revert change below.
10252 2006-06-20  Martin Baulig  <martin@ximian.com>
10254         * class.c (mono_ldtoken): Don't pass the generic context to
10255         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
10257 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
10259         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
10260         and later freeing it. Fixes #78638.
10262 2006-06-15  Miguel de Icaza  <miguel@novell.com>
10264         * icall.c (mono_class_get_throw): Revert over-zealous error
10265         throwing, the caller for mono_class_get_throw will cope with
10266         errors when classes are not properly initialized already.
10268         The code still copes with loader exceptions though.
10270         Fixes the regression in reftype1 and reftype3 from the CAS tests.
10271         
10272 2006-06-14  Miguel de Icaza  <miguel@novell.com>
10274         Fixes the `make run1' version of RuntimeAbort (to be commited,
10275         source is in Bugzilla).
10276         
10277         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
10278         FALSE on class loading failure instead of returning true.
10280         * class.c (mono_class_create_from_typedef): It is possible for
10281         mono_metadata_interfaces_from_typedef_full to fail if a class is
10282         not found, cope with this.
10283         
10285 2006-06-14  Dick Porter  <dick@ximian.com>
10287         * socket-io.c: 
10288         * process.c: Fix a bunch of signed/unsigned warnings from gcc
10289         4.1.1
10291 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
10293         * culture-info-table.h : oops, forgot to make it nsync with r61548.
10295 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10297         * icall.c: Another fix for building mono in Visual Studio.
10299 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10301         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
10302         
10303 2006-06-09  Martin Baulig  <martin@ximian.com>
10305         * debug-mono-symfile.c: Put this back and really fix it this
10306         time. Sorry for all the trouble.
10308 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
10310         * icall.c (mono_class_get_throw): Fix a warning.
10311         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
10312         ReflectionTypeLoadException if needed. Fixes #78606.
10314         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
10315         (mono_class_init): Ditto.
10317         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
10318         ref_only exceptions.
10319         (mono_loader_clear_error): Make this work even if there is no error.
10321 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
10323         * object-internals.h marshal.c marshal.h icall.c: Implement method 
10324         Marshal.GetComSlotForMethodInfo using internal call.
10326 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
10328         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
10329         a function for signalling it.
10331         * class.c (mono_class_from_typeref): Use the new kind of loader error when
10332         a referenced assembly is not found.
10334         * loader.c (mono_loader_error_prepare_exception): Add support for 
10335         LOADER_ERROR_ASSEMBLY. Fix formatting.
10337 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10339         * domain.c appdomain.c class-internals.h marshal.c: Add support 
10340         for VARIANT marshalling on windows and increment corlib version
10341         since Variant struct was added.
10343 2006-06-03  Miguel de Icaza  <miguel@novell.com>
10345         * debug-mono-symfile.c: Revert Martin's previous patch which broke
10346         stack trace line information:
10348         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
10349         (Martin) when looking up B which is between A and C, return A not C.
10351         Bug is #78573.
10353         Thanks to Alexander Olk for tracking this down.
10355 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
10357         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
10358         
10359         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
10360         avoid clobbering its value.
10361         (mono_string_to_lpstr): Fix a warning on windows.
10363 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10365         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
10367         * reflection.c loader.c: Removed references to 'dummy' flag.
10369         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
10371         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
10372         it gets GC tracking.
10374         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
10375         GC tracking.
10376         
10377         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
10379         * marshal.c threadpool.c: Update callers of mono_async_result_new.
10381         * appdomain.c: Bump corlib version.
10383 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10385         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10386         CEE_STIND_REF when working with object references.
10388 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10390         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
10391         Fixes #78539.
10393 2006-05-30  Miguel de Icaza  <miguel@novell.com>
10395         * loader.c (method_from_memberref): Fix argument value for
10396         mono_loader_set_error_method_load (I was passing the MonoClass
10397         instead of the class name char *).
10399 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10401         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10402         CEE_STIND_REF when working with object references.
10404 2006-05-30  Martin Baulig  <martin@ximian.com>
10406         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
10407         mono_method_full_name() change and replace the ':' with a '.'
10408         here.
10410 2006-05-30  Martin Baulig  <martin@ximian.com>
10412         * debug-mono-symfile.c
10413         (mono_debug_symfile_lookup_location): Fix the algorithm:
10414         when looking up B which is between A and C, return A not C.
10416 2006-05-29  Martin Baulig  <martin@ximian.com>
10418         * mono-debug.h
10419         (MonoDebugMethodInfo): Make the typedef public.
10420         (MonoDebugSourceLocation): New public struct.
10422         * mono-debug.c
10423         (mono_debug_source_location_from_address): Removed.
10424         (mono_debug_source_location_from_il_offset): Removed.
10425         (mono_debug_il_offset_from_address): Removed.
10426         (mono_debug_address_from_il_offset): Removed.
10427         (mono_debug_lookup_method): New public function.
10428         (mono_debug_lookup_source_location): New public function; replaces
10429         the old mono_debug_source_location_from_*() functions; see the
10430         inline documentation.
10431         (mono_debug_free_source_location): New public function.
10432         (mono_debug_print_stack_frame): New public function; see the
10433         inline documentation.
10435         * debug-mono-symfile.c
10436         (mono_debug_find_source_location): Renamed into
10437         mono_debug_symfile_lookup_location(); only take a
10438         `MonoDebugMethodInfo *' and an `offset' argument; added inline
10439         documentation.
10440         (mono_debug_find_method): Renamed into
10441         mono_debug_symfile_lookup_method().
10443 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
10445         * assembly.c (mono_assembly_open_full): Dont overwrite the status
10446         returned by mono_image_open_full ().
10448         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
10449         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
10450         #78517.
10452         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
10453         #78518.
10455 2006-05-27  Miguel de Icaza  <miguel@novell.com>
10457         * class.c (mono_class_from_typeref): handle missing images
10458         earlier, deals with bug #78418.   Refactor code; 
10460         Fix a warning introduced in my previous commit (some stale code
10461         from before I revisited my patch).
10463         * class.c (mono_class_create_from_typedef): On failure, remove the
10464         class from the MonoImage->class_cache as the class is not
10465         initialized;   Fixes the leak pointed out by Paolo.
10467 2006-05-25  Dick Porter  <dick@ximian.com>
10469         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
10470         DeleteCriticalSections until I figure out which one may still be
10471         sometimes locked when mono_thread_cleanup is called.
10473 2006-05-24  Dick Porter  <dick@ximian.com>
10475         * threads.c (mono_thread_cleanup): Move the threading cleanup out
10476         of mono_thread_manage and back into its own function, so it can be
10477         called after the finalizer thread has finished.
10479         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
10481 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
10483         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
10484         Fixes #78495.
10486         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
10487         with non-blittable elements.
10488         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
10490 2006-05-24  Martin Baulig  <martin@ximian.com>
10492         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10493         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
10495         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
10496         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
10497         `mono_debugger_event_handler' to NULL.
10499 2006-05-24  Martin Baulig  <martin@ximian.com>
10501         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
10503 2006-05-24  Martin Baulig  <martin@ximian.com>
10505         * mono-debug-debugger.h
10506         (mono_debugger_create_notification_function): Added
10507         `MonoCodeManager *' argument.
10509 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
10511         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
10513 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
10515         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
10516         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
10517         implementation.
10519 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
10521         * icall.c: precise GC support: objects can't be stored in unmanaged
10522         memory anymore, even if they are kept alive by other references: since
10523         they can move the GC needs to be able to always find them.
10525 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10527         * object.c: precise GC support for static fields. Support
10528         for moving GCs: write barriers and pinned allocation for interned
10529         strings.
10531 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10533         * domain.c, domain-internals.h: precise GC support for the MonoDomain
10534         structure.
10536 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10538         * class.c, gc.c: sgen and precise GC updates.
10540 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10542         * marshal.h, marshal.c: added write barrier wrapper and precise type
10543         fixes.
10545 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
10547         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
10548         support.
10550 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
10552         * reflection.c: precise and sgen GC updates.
10554 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10556         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
10558 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
10560         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
10562 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
10564         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
10565         MONO_TYPE_OBJECT. Fixes #78462.
10567 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
10569         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
10570         and blittable types.
10572 2006-05-17  Miguel de Icaza  <miguel@novell.com>
10574         * class.c (mono_class_get_exception_for_failure): Implement parts
10575         of a TODO: if the loader error is set (instead of the class
10576         error), we return a Loader exception that can be properly thrown
10577         elsewhere.
10579         This was exposed by some Winforms 2.0 code that I tried to run
10580         (Atsushi pointed me to it).
10582 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
10584         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
10585         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
10586         
10587         * marshal.c (emit_marshal_vtype): Add limited support for 
10588         UnmanagedType.LPStruct. Fixes #78427.
10590         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
10591         Applied a patch from kangaroo to fix #77523.
10593 2006-05-17  Martin Baulig  <martin@ximian.com>
10595         * threads.c
10596         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
10597         (debugger_thread_created): Removed.
10598         (debugger_thread_exited): Removed.
10600 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
10602         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10604         * object-internals.h (MonoReflectionResource): Sync with managed version.
10606 2006-05-12  Wade Berrier <wberrier@novell.com>
10608         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
10610 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
10612         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
10613         functions try to allocate from the image mempool.
10615 2006-05-12  Dick Porter  <dick@ximian.com>
10617         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
10619 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
10621         * object.c: The FieldGetter and FieldSetter methods require the full
10622         name of the class, not only the name. Fixes bug #78277.
10624 2006-05-11  Miguel de Icaza  <miguel@novell.com>
10626         * loader.c (method_from_memberref): Do not pass the NULL klass to
10627         mono_loader_set_error_() methods.  Pass the non-NULL value
10628         (class). 
10630 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
10632         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
10633         (mono_assembly_close): Null out assembly->image->references after freeing it.
10635         * image.c (mono_image_close): Free image->references.
10636         
10637         * reflection.c (mono_image_basic_init): Fix a small memory leak.
10639 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10641         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
10642         before checking if it's NULL (g_assert).
10644 2006-05-10  Martin Baulig  <martin@ximian.com>
10646         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
10647         I thought I already killed that two months ago, but now it somehow reappeared.
10649 2006-05-10  Martin Baulig  <martin@ximian.com>
10651         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
10653 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
10655         * reflection.c: Allocate memory for dynamically created methods in the image
10656         mempools.
10658 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10660         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
10661         don't use the ad pointer before checking if it's NULL (g_assert).
10663 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
10665         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
10666         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
10668         * marshal.c: Allocate all signatures from mempools.
10670         * marshal.c: Allocate some more signatures from mempools.
10672 2006-05-09  Miguel de Icaza  <miguel@novell.com>
10674         * object.c (mono_load_remote_field): The code used to provide a
10675         temporary variable for returning results if the user did not
10676         provide a result pointer.  But our temporary variable was allocted
10677         on the satck.
10679         Fix calling code to always pass a result area.   Coverity ID 103.
10681 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
10683         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
10684         value, not the old. Fixes #78312.
10685         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
10687         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
10688         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
10689         per-image cache.
10691         * assembly.c (mono_assembly_close): Free image->references.
10693         * assembly.c (mono_assembly_names_equal): Fix a warning.
10694         (mono_assemblies_cleanup): Cleanup more global data.
10696         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
10698         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
10699         ptr_cache and image->modules.
10701         * image.c (mono_image_init): Allocate array_cache lazily.
10702         
10703 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10705         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
10706         behavior was changed recently and has bad side effects.
10708 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
10710         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
10711         
10712         * assembly.c (mono_assembly_close): Remove a debug printf.
10714         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
10716         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
10717         to also allow for temporary references between mono_image_open ()/close ().
10719         * domain.c (get_runtimes_from_exe): Add a FIXME.        
10721 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
10723         * marshal.c: Fix support for dynamic methods.
10725         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
10727         * marshal.c (mono_marshal_cleanup): New cleanup function.
10729         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
10730         image mempools.
10732         * class.c (mono_class_init): Fix leaking class->nested_classes.
10734         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
10736         * image.c (mono_image_init): Initialize the new cashes.
10738         * image.c (mono_image_close): Destroy the new cashes.
10740         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
10742         * mempool.c (mono_mempool_strdup): New helper function.
10744         * class-internals.h: Add prototype for mono_loader_unlock ().
10746         * domain.c (mono_jit_info_table_find): Fix a warning.
10747         (mono_debugger_check_runtime_version): Ditto.
10749         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
10750         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
10751         functions to these modules.
10753         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
10754         metadata modules.
10755         
10756         * marshal.c (mono_free_bstr): Fix a warning.
10758         * assembly.c (mono_assembly_open_full): Fix another small leak.
10760         * object.c: Fix some unload leaks in the remoting code.
10762         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
10763         function.
10765         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
10767         * reflection.c: Fix some unload leaks in dynamic assemblies.
10769 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
10771         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
10772         * marshal.h: Add BSTR support on Win32
10773         * icall.c: Add BSTR icalls
10774         * metadata.h: Add BSTR enums
10776 2006-04-28  Miguel de Icaza  <miguel@novell.com>
10778         Work to catch the crash from #76795 and turn it into an
10779         exception.   As I stubbed out pieces of the VisualBasic support,
10780         I found a number of places where the code was failing and I added
10781         checks to those places. 
10782         
10783         * metadata.c (do_mono_metadata_parse_generic_class): Make this
10784         function return a status code.  If we fail to parse the signature
10785         from mono_metadata_parse_generic_inst, return FALSE.
10787         * loader.c (mono_get_method_from_token): If we fail to load the
10788         method (mono_class_get) return NULL.   
10790         * (method_from_memberref): Return NULL if we are unable to parse
10791         the method signature
10793         (mono_loader_error_prepare_exception): Since we now use the
10794         loader_error flag internally to stop processing, and obtaining
10795         exceptions that might be thrown will walk this code path the
10796         proper way of going from a MonoLoaderError into a
10797         MonoException was convoluted.   This new routine encapsulates the
10798         process of turning the error into an exception and *clearing* the
10799         error afterwards.
10800         
10801 2006-04-27  Miguel de Icaza  <miguel@novell.com>
10803         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
10804         with missing assemblies), and to cope with:
10806                 * Missing fieldref from a non-existing assembly.
10807                 * Missing methodref from a non-existing assembly.
10809         The first batch of work to address *some* of the issues from 76661.
10810         
10811         * object.c (mono_class_create_runtime_vtable): If we fail to
10812         initialize the class raise the exception here. 
10814         * metadata.c (mono_class_get_overrides_full): If any methods fail
10815         to load return the failure to the caller.
10817         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
10818         flagging assemblies that failed to load.   
10820         Do not crash if we are unable to load the assembly.
10822         (mono_assembly_close): Do nothing with REFERENCE_MISSING
10823         assemblies. 
10825         * loader.c (mono_loader_set_error_type_load): Change the
10826         convention to always pass unallocated strings, so we make our own
10827         copies (I know our own code had duplicated strings before, but
10828         this keeps the normal conventions).
10829         (method_from_memberref): Call mono_loader_set_error_method_load
10830         for all possible failures of loading the class. 
10831         Remove assert, turn into a loader error.
10833         (mono_loader_error_to_exception): Move this routine from mini
10834         (mini_loader_error_to_exception) there was no need to have that in
10835         mini. 
10837         * class.c (mono_class_from_typeref): If we were not able to load
10838         the assembly with mono_assembly_load_reference, call the
10839         mono_loader_set_error_type_load to register the problem.
10841         (mono_class_setup_fields): If we fail to load the type from
10842         mono_metadata_parse_type_full, call mono_class_set_failure and
10843         break from the loop.
10845         If class->exception_type is set, we do not layout the fields as
10846         that might crash the runtime, and instead return (from breaking
10847         from the previous loop).
10849         (mono_class_setup_vtable): This now returns a boolean indicating
10850         whether the table was properly setup.   The decision is driven by
10851         mono_class_get_overrides_full which might run into non-existing
10852         methods. 
10853         
10854         (mono_class_init): Returns TRUE on success or FALSE if there was a
10855         problem in loading the type (incorrect assemblies, missing
10856         assemblies, methods, etc).
10858         When we call mono_class_setup_fields we also check for a potential
10859         error inside this call (either a class exception or a general
10860         loader exception).
10862         (mono_class_create_from_typedef): If the parent fails to load
10863         (calling mono_class_get_full) return NULL.
10864         
10865         ** Important **
10867         calls to mono_metadata_parse_type_full should be checked
10868         everywhere and set the mono_class_set_failure
10869         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
10871         The current patch checks the places where my manually constructed
10872         tests show the errors are showing up, but we should do it
10873         everywhere. 
10875         ** Important2 **
10877         mono_class_init return values should be tested everywhere, like
10878         the previous case this is something that we should audit
10879         everywhere and not only on the cases exposed by the tests I
10880         created. 
10882 2006-04-26  Miguel de Icaza  <miguel@novell.com>
10884         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
10885         boolean parameter and instead pass the information on `options'
10886         parameter (FileOptions).
10888         * icall.c: Register the new signature for MonoIO.Open.
10890         * debug-helpers.c (dis_one): Trying to understand how coverity
10891         works.  Fix Run 5, item 78.
10893 2006-04-26  Dick Porter  <dick@ximian.com>
10895         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
10896         dereference.
10898 2006-04-25  Martin Baulig  <martin@ximian.com>
10900         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
10902         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
10903         debugger_thread_created().
10904         (debugger_gc_push_all_stacks): Don't handle the main thread in any
10905         special way.
10906         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
10907         (mono_debugger_finalize_threads): New function; undo the effects
10908         of mono_debugger_init_threads().
10909         (mono_debugger_create_all_threads): Removed.
10911 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
10913         * image.c (mono_image_close): Tidy up trace messages.
10915         * assembly.c (mono_assembly_close): Ditto.
10917         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
10918         no longer references an already freed assembly. Fixes #78168.
10920 2006-04-21  Dick Porter  <dick@ximian.com>
10922         * threads.c (mono_thread_detach): Fix reference counting when
10923         detaching threads.
10925 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
10927         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
10928         #78155.
10930 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
10932         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
10933         (mono_type_to_stind): Ditto.
10935         * marshal.c: Use the new helper functions to simplify code.
10937         * image.c (mono_image_close): Add some code for help debug assembly unloading
10938         problems.
10940         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
10941         image mempool.
10943         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
10944         assembly was already loaded in another appdomain. Fixes #78083.
10946 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
10948         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
10949         referenced assemblies.
10950         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
10952         * domain.c (mono_domain_free): Add a trace message.
10954         * appdomain.c (add_assemblies_to_domain): Ditto.        
10956         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
10957         field.  
10959 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10961         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
10963 2006-04-12  Martin Baulig  <martin@ximian.com>
10965         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
10966         `USE_INCLUDED_LIBGC'.   
10968 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10970         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
10971         the patch contains ../ and a small directory name later. Hopefully fixes
10972         #78035.
10974 2006-04-10  Martin Baulig  <martin@ximian.com>
10976         Clean up the debugger's thread-handling code.
10978         The debugger's thread-handling code has been moved from
10979         ../mini/debug-debugger.c to threads.c.  We now iterate directly
10980         over the `threads' hash, keep track of exiting threads and also
10981         use proper locking.
10983         We can now debug XSP and XSP based applications with the debugger.
10985         * object-internals.h (MonoThread): Added `gpointer end_stack'.
10987         * threads.h
10988         (MonoThreadCallbacks): Removed; this was only used by the debugger.
10989         (mono_install_thread_callbacks): Likewise.      
10991         * threads.c (mono_thread_callbacks): Removed.
10992         (debugger_thread_created, debugger_thread_exited): New static functions.
10993         (start_wrapper): Call debugger_thread_created().
10994         (thread_cleanup): Call debugger_thread_exited().
10995         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
10996         (mono_debugger_init_threads): New public function.
10997         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
10998         iterate directly over the `threads' hash and also use proper locking.
11000         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
11002         * mono-debug-debugger.h
11003         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
11005 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11007         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
11008         argument type=array. Fixes #78057.
11010 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
11012         * culture-info-table.h : regenerated. Fixed bug #69652.
11014 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
11016         * loader.c metadata.c: Reapply a variant r59116.
11017         
11018         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
11020         * class.c (mono_class_setup_interface_offsets): New internal function.
11022         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
11023         interfaces too. Fixes #77398.
11025         * reflection.c (encode_cattr_value): Add support for 
11026         parameter type=object, argument type=array.
11027         (load_cattr_value): Ditto. Fixes #77916.
11029         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
11030         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
11032         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
11033         a byval char array and CharSet is Ansi.
11035         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
11037 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
11039         * metadata.c: Add some locking comments.
11040         
11041         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
11042         mempool.
11043         (mono_metadata_free_method_signature): Don't free the signature itself.
11045         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
11047         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
11048         reference the same MonoImage.
11049         (mono_assembly_load_from_full): Add an assert.
11051 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
11053         * image.c (mono_image_close): Don't put the image we are about to free into the
11054         loaded_images_guid_hash.
11056         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
11057         to reduce code duplication.
11059         * marshal.c: Register the native functions called by this module as icalls, to
11060         somewhat centralize the creation of MonoMethodSignature's.
11062         * loader.c (mono_method_signature): Add a cache for method signatures.
11064         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
11065         the parameter attributes of a method.
11066         (mono_metadata_parse_method_signature_full): Refactored the computation of
11067         parameter attributes into a separate function. Also avoid one allocation in
11068         most cases.
11070         * assembly.c (mono_assembly_close): Ditto.
11072         * image.c (mono_image_close): Log trace messages with INFO level.
11074         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
11076         * image.c reflection.c: Correct reference counting of image modules.
11077         
11078         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
11079         of this function from the image mempool.
11080         
11081         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
11082         to allow more cached types to be used.
11084         * mono-debug.c (mono_debug_add_method): Appled patch from
11085         David S. Miller  <davem@sunset.davemloft.net>: Access 
11086         minfo->lexical_blocks[] entry elements using read32().
11088 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
11090         * loader.c (mono_free_method): No longer free the method header for non-dynamic
11091         methods as it is allocated from the mempool.
11093         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
11094         image mempool.
11096         * metadata-internals.h: Add comments describing the reference counting scheme
11097         used for MonoImage and MonoAssembly.
11099         * image.c assembly.c reflection.c: Rework reference counting of images and 
11100         assemblies so they are freed when the runtime is shut down. Free some 
11101         additional memory structures when an image is unloaded.
11102         
11103 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
11105         * class.c loader.c reflection.c: Allocate more data structures in
11106         the image mempool.
11108 2006-03-31  Miguel de Icaza  <miguel@novell.com>
11110         * icall.c
11111         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
11112         build on pre glib 2.4 systems.
11114 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
11116         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
11118         * icall.c: Fix some warnings.
11120 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
11122         * culture-info-table.h : regenerated.
11124 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
11126         * threads.c, object-internals.h, verify.c: changed the culture caching
11127         code to use a normal MonoArray for storage so the GC can keep track of
11128         them easily. Fixed bits of the cache logic, too and simplified the
11129         code.
11131 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
11133         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
11134         thread for non-Boehm GCs.
11136 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
11138         * domain.c, object.c, domain-internals.h: reduce the amount of memory
11139         needed to keep track of the data for static fields.
11141 2006-03-29  Raja R Harinath  <rharinath@novell.com>
11143         Fix #75172
11144         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
11145         for interface classes.  Use 'num_methods' instead.
11146         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
11147         before using '->vtable_size' field.
11149 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11151         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
11152         doesn't contain managed pointers, so use a normal hashtable.
11154 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
11156         * reflection.c, class-internals.h, domain.c: fixed handling of types
11157         used as values for objects in custom attributes (bug #77915):
11159 2006-03-24  Martin Baulig  <martin@ximian.com>
11161         * class.c (mono_class_setup_fields): Added support for generic
11162         instances; fixes #77580.
11164 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11166         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
11168 2006-03-24  Dick Porter  <dick@ximian.com>
11170         * file-io.c (get_file_attributes): More stat macro breakage.
11171         Fixes bug 77759.
11173 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
11175         * profiler.c: added the file=filename option in the default profiler
11176         to output the profile data to filename.
11178 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11180         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
11181         bug #77877.
11183 2006-03-22  Martin Baulig  <martin@ximian.com>
11185         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
11186         allocated `MonoClassField *' in `fb->handle'.
11188 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11190         * class.c, image.c, metadata-internals.h: implemented new mechanism to
11191         allocate interface ID to save memory and allow better ID reuse on
11192         appdomain unload. setup_generic_vtable () removal from Martin.
11194 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11196         * object.h, appdomain.c, domain.c, exception.c, icall.c,
11197         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
11198         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
11199         write barriers for reference stores with managed objects accessed with
11200         C structures in the runtime and in embedding programs.
11202 2006-03-20  Raja R Harinath  <rharinath@novell.com>
11204         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
11205         'interface_id' and 'max_interface_id' fields of MonoClasses
11206         representing open generic types.
11208 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
11210         * object.h, object.c, icall.c: added functions to deal with
11211         storing valuetypes that contain references in managed objects.
11212         * reflection.c, string-icalls.c, threads.c, marshal.c: small
11213         fixes and comments around uses of mono_array_addr ().
11215 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
11217         * object.h, icall.c, monitor.c: object.GetHashCode ()
11218         implementation that supports the moving garbage collector.
11220 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
11222         * icall.c, threads-types.h, threads.c: implemented finalizer for
11223         LocalDataStoreSlot.
11225 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
11227         * metadata.c (mono_type_size): Add a fixme.
11228         (mono_type_stack_size): Ditto.
11230         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
11231         'type_forwarders' field.
11233         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
11234         attribute from net 2.0.
11236         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
11237         from class.c.
11239         * class.c (mono_class_setup_fields): Fix a warning.
11240         
11241         * class.c (mono_class_from_name): Add support for assemblyref entries
11242         in the EXPORTEDTYPE table.
11244         * reflection.c: Add support for handling type forwarders under net 2.0.
11246         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
11247         
11248 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
11250         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
11251         overwriting entries in ModuleBuild->types, also clean up the code
11252         a little. Fixes #77774.
11254 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11256         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
11257         load friend assembly info when present.
11259 2006-03-14  Raja R Harinath  <rharinath@novell.com>
11261         Fix crasher on gtest-158.cs.
11262         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
11263         the return value if the MonoClass we want is yet in an
11264         inconsistent state.
11265         * class.c (mono_class_create_from_typedef): Add an comment
11266         explaining an order dependency between mono_class_setup_parent and
11267         mono_class_setup_mono_type.
11269 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
11271         * class.c: documentation updates and events bug fix.
11273 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11275         * class.c: some cleanup, locking fixes.
11277 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11279         * class.c: fix the generics code to setup nested
11280         type info to the instantiated type (bug #77770).
11282 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11284         * marshal.c: fixed a few type correctness issues.
11286 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11288         * loader.c: the Set/Get/Addrtess array methods should be public.
11290 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11292         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
11293         
11294         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
11295         info->wrapper.
11297 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
11299         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
11301         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
11303         * mempool.c (mono_mempool_alloc): Speed this up a bit.
11304         (mono_mempool_alloc0): Ditto.
11306 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11308         * socket-io.c:
11309         (create_object_from_sockaddr): it was allocating 4 extra bytes
11310         for the AF_UNIX data. Fixes bug #77747.
11312 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
11314         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
11316 2006-03-09  Dick Porter  <dick@ximian.com>
11318         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
11319         Fixes bug 76966 again.
11321 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
11323         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
11324         names from r57532
11325         * appdomain.c: Bumped corlib version to 48 (due to r57532)
11327 2006-03-07  Martin Baulig  <martin@ximian.com>
11329         * object.c
11330         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
11332 2006-03-07  Martin Baulig  <martin@ximian.com>
11334         * class.c
11335         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
11336         regression introduced in r56970; see gtest-252.cs.
11338         * loader.c (mono_get_method_constrained): Correctly handle generic
11339         methods; see gtest-253.cs.
11341 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
11343         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
11345 2006-03-04  Martin Baulig  <martin@ximian.com>
11347         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
11348         compute the parent type at runtime, just like we're already doing
11349         it for interfaces.
11351         * reflection.c
11352         (mono_reflection_bind_generic_parameters): Don't compute the
11353         parent type anymore.
11355         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
11357 2006-03-04  Martin Baulig  <martin@ximian.com>
11359         * mono-debug-debugger.h
11360         (mono_debugger_create_notification_function): Allocate memory at
11361         runtime and return a pointer to it.
11363 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
11365         * assembly.c: Fix windows build.
11366         
11367         * assembly.c: Fix build.
11369         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
11371         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
11372         
11373 2006-03-03  Dick Porter  <dick@ximian.com>
11375         * process.c
11376         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11377         Check parameters before dereferencing them.  Fixes Aaron's part of
11378         bug 77393.
11380 2006-03-03  Raja R Harinath  <rharinath@novell.com>
11382         Fix performance regression.
11383         * loader.c (find_method_in_class): Add 'from_class' argument.
11384         Rename 'klass' argument to 'in_class'.  The signature is compared
11385         against the method in 'in_class', and the corresponding method is
11386         returned from 'from_class'.
11387         (find_method): Walk both 'in_class' and 'from_class' in parallel.
11388         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
11389         type definition and generic instantiation in parallel.
11390         (mono_get_method_constrained): Update to changes.
11392 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11394         * threads.c: make sure the domain is correct, too when doing
11395         mono_thread_attach ().
11397 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
11399         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
11400         windows. Fixes #77683.
11402 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11404         * object.h, *: introduced specific way to set elements of an array
11405         of references to be used as write barrier. Still need to audit the
11406         uses of mono_array_addr.
11408 2006-03-01  Miguel de Icaza  <miguel@novell.com>
11410         * object-internals.h: New field to cache the assmebly name, patch
11411         from Tambet Ingo (tambet@ximian.com)
11413 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11415         * decimal.h, class-internals.h, metadata-internals.h,
11416         file-io.h: mark a few function declarations as internal, to
11417         reduce the number of PLT entries.
11419 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11421         * file-io.c: fix typo in warning message.
11423 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
11425         * loader.c: on unix, lookup the "*A" version of a function
11426         if charset is auto as a second option before failing.
11428 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11430         * class.h (mono_class_inflate_generic_method): Revert to two
11431         argument version.
11432         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
11433         (mono_class_inflate_generic_method_full): Add.
11434         * class.c (mono_class_inflate_generic_method_full): Rename from
11435         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
11436         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
11437         * loader.c, reflection.c: Update to changes.
11439 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11441         * icall.c: const fixes and small improvements.
11443 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11445         * threadpool.c: for asynchronous connect(), enable the same workaround
11446         for BSD 6 as for the Mac. Fixes bug #77637.
11448 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11450         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
11451         formatted classes. Fixes #77524.
11453 2006-02-24  Raja R Harinath  <rharinath@novell.com>
11455         * class.c (inflate_generic_type): Add a couple more
11456         micro-optimizations.
11457         (inflate_generic_context): Don't use the 'gmethod' from
11458         'inflate_with'.
11459         (mono_class_inflate_generic_method): If the method has generic
11460         parameters, but the passed-in context doesn't have a 'gmethod',
11461         create one.  Use the possibly simplified generic instantiation
11462         from the declaring class instead of the one passed in.
11464 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11466         Make generic method signature and method header handling lazy.
11467         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
11468         (inflate_generic_header): Likewise.
11469         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
11470         parameter to avoid inflating types.
11471         (mono_get_inflated_method): Empty out.
11472         * class.h (mono_class_inflate_generic_method): Update to changes.
11473         * loader.c (mono_get_method_from_token): Don't parse signature for
11474         generic methods, nor methods of generic classes.
11475         (mono_method_signature): Rename from 'mono_method_signature'.
11476         Inflate signature on demand.
11477         (mono_method_get_header): Inflate method header on demand.
11478         * reflection.c: Update to changes.
11480 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11482         * metadata.c (mono_metadata_inflate_generic_inst): If the
11483         instantiation is closed, don't bother expanding it in the new
11484         context.
11485         * class.c (inflate_generic_class): If the generic instantiation
11486         doesn't change after inflation, return the argument itself.
11487         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
11488         Add bounds checks.
11489         (inflate_generic_context): If neither the generic class nor the
11490         generic method instantiations change, return the original context.
11491         * reflection.c (mono_method_get_object): Do
11492         'mono_get_inflated_method' before accessing the ->klass field.
11493         (inflate_mono_method): Don't create a MonoGenericMethod unless
11494         necessary.
11495         (inflate_method): Don't pass a constructed type as the declaring
11496         type of a methodbuilder.
11498 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
11500         * object.c: fix memory overwrite.
11502 2006-02-22  Dick Porter  <dick@ximian.com>
11504         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
11505         it doesn't work any more.
11506         (mono_threads_request_thread_dump): Fix unused variable warnings.
11508 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11510         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
11511         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
11512         the public header file.
11514 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
11516         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
11518 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11520         * class-internals.h, object.c: reduce the size of MonoVTable
11521         and store the interface_offsets array at negative offsets.
11523 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11525         * metadata.c: tweak table descriptors data structures to reduce
11526         size and runtime relocations.
11528 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11530         * marshal.c: fix some types and opcodes to be type-safe
11531         in marshaling wrappers.
11533 2006-02-21  Ankit Jain  <jankit@novell.com>
11535         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
11537 2006-02-21  Raja R Harinath  <rharinath@novell.com>
11539         * metadata.c (get_constraints): Relax debugging checks for monodis.
11541 2006-02-21  Ankit Jain  <jankit@novell.com>
11543         * metadata.c (mono_metadata_load_generic_params): Move the code
11544         checking for ambiguous generic params from here to mono/dis/get.c
11545         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
11547 2006-02-21  Raja R Harinath  <harinath@gmail.com>
11549         Fix assertion triggered when compiling nemerle.
11550         * class.c (mono_get_shared_generic_inst): Rename from
11551         get_shared_inst and make non-static.
11552         * loader.c (mono_get_shared_generic_method): New.  Used to create
11553         the MonoGenericContext-equivalent of a MonoGenericContainer.
11554         (mono_get_method_from_token): Initialize the 'context' field of
11555         the created MonoGenericContainer.
11556         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
11557         * metadata.c (get_constraints): Add sanity check.
11558         * class-internals.h: Add new internal methods.
11560         * reflection.c (verify_safe_for_managed_space): New sanity check.
11561         Currently checks that owner-less generic parameters aren't allowed
11562         in managed space.
11563         (mono_type_get_object): Use it.
11564         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
11565         that are now in mono_type_get_object.
11566         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
11568 2006-02-19  Raja R Harinath  <harinath@gmail.com>
11570         * metadata.c (mono_type_create_from_typespec): Rename from
11571         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
11572         argument and caching of types in the generic container.
11573         (unwrap_arrays, find_generic_param): Remove.
11574         * metadata-internals.h: Update.
11575         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
11577 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
11579         * class.c (mono_class_get_exception_for_failure): Fix a warning.
11581         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
11582         return values. Fixes #77581.
11584         * class.c (mono_fnptr_class_get): Switch name and name_space.
11586         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
11587         classes and add support for [In, Out] attributes.
11588         (mono_marshal_free_asany): Ditto. Fixes #77524.
11590 2006-02-18  Raja R Harinath  <harinath@gmail.com>
11592         * class.c (mono_class_from_generic_parameter): Make more robust to
11593         incomplete MonoGenericContainers from monodis.
11595 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11597         * class-internals.h: added some more exception types.
11598         * class.c, metadata.c: added a few checks to handle missing
11599         types.
11601 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11603         Use owner-less generic-params some more.
11604         * class.c (my_mono_class_from_generic_parameter): Remove.
11605         (mono_class_from_generic_parameter): Handle null image,
11606         param->name and param->owner.
11607         (mono_class_from_mono_type): Update.
11608         (mono_class_create_from_typespec): Remove 'container' parameter.
11609         If that parameter is non-null, the result is always inflated by
11610         'mono_class_get_full' anyway.
11611         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
11612         parameter.
11613         (mono_class_get_full): Update.
11615         * class.c (inflate_generic_type) [GENERICINST]: If the generic
11616         instance is not open, don't bother inflating.
11617         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
11618         parse metadata for inflated classes.
11619         (_mono_class_get): Change GenericContext* parameter to
11620         GenericContainer*.
11621         (mono_class_create_from_typespec): Likewise.  Simplify, and
11622         implement trivially.  All the cases are handled in
11623         mono_class_from_mono_type.  Don't inflate returned class.
11624         (mono_class_get_full): Delegate GENERICINST optimization to
11625         inflate_generic_type.
11626         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
11628 2006-02-16  Dick Porter  <dick@ximian.com>
11630         * socket-io.c (create_object_from_sockaddr): Fix typo.
11631         (create_sockaddr_from_object): Check array lengths before
11632         potentially accessing items off the end.
11633         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
11634         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
11635         (ves_icall_System_Net_Sockets_Socket_Send_internal)
11636         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
11637         length checks to avoid wraparound overflows.
11638         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
11639         contents of the array of sockets
11640         (hostent_to_IPHostEntry2)
11641         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
11642         Check return value of inet_ntop ().
11643         (addrinfo_to_IPHostEntry): Fix typo
11645 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11647         Type metadata parsing doesn't use generic-instantiation information.
11648         * metadata.c (mono_metadata_parse_array_full): Change
11649         MonoGenericContext* parameter to MonoGenericContainer*.
11650         (mono_metadata_parse_type_full): Likewise.
11651         (mono_type_create_from_typespec_full): Likewise.
11652         (mono_metadata_parse_mh_full): Likewise.
11653         (mono_metadata_parse_generic_inst): Likewise.
11654         (do_mono_metadata_parse_generic_class): Likewise.
11655         (do_mono_metadata_parse_type): Likewise.
11656         * metadata-internals.h: Update to changes.
11657         * class.c (mono_class_find_enum_basetype): Likewise.
11658         (mono_class_setup_fields): Likewise.
11659         (mono_class_create_from_typespec): Likewise.
11660         * loader.c (method_from_methodspec): Likewise.
11661         (mono_get_method_from_token): Likewise.
11662         (mono_method_get_header): Likewise.
11664 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11666         * marshal.c: handle additional GENERICINST case (patch from
11667         Thong Nguyen <tum@veridicus.com>).
11668         Fix a few cases where LDIND_I/STIND_I was used for references.
11670 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11672         * reflection.c (mono_reflection_get_token): Remove unused variable.
11674 2006-02-16  Martin Baulig  <martin@ximian.com>
11676         * reflection.c (mono_reflection_get_token): Add support for fields
11677         in instantiated generic types.
11679         * icall.c
11680         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
11682 2006-02-15  Martin Baulig  <martin@ximian.com>
11684         * icall.c
11685         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
11686         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
11687         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
11688         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
11690 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11692         * class.c, metadata.c, metadata.h, object.c, icall.c,
11693         marshal.c: changed mono_type_get_underlying_type () to do
11694         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
11695         Fixed handling of instantiated generic valuetypes (bug #75479).
11697 2006-02-15  Raja R Harinath  <rharinath@novell.com>
11699         * metadata.c (mono_metadata_decode_signed_value): Simplify.
11700         Delegate to mono_metadata_decode_value, and work on the returned value.
11702         * icall.c (ves_icall_MonoType_GetGenericArguments):
11703         Add consistency check here too.
11704         
11705 2006-02-15  Ankit Jain  <jankit@novell.com>
11707         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
11708         char/short etc.
11710 2006-02-15  Ankit Jain  <jankit@novell.com>
11712         * metadata.c (mono_metadata_decode_signed_value): New function to decode
11713         signed values, used only for representing lower bounds of arrays.
11714         (mono_metadata_parse_array_full): Use new
11715         mono_metadata_decode_signed_value to decode lower bounds.
11717 2006-02-14  Martin Baulig  <martin@ximian.com>
11719         * reflection.c
11720         (mono_reflection_get_token): Support "MonoGenericMethod" and
11721         "MonoGenericCMethod" and allow generic instances / methods.
11723 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11725         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
11726         to obtain the terminal size using an ioctl.
11728         * object.c (mono_nullable_init): Revert this as nullable reference
11729         types are not valid.
11730         (mono_nullable_box): Ditto.
11732 2006-02-09  Dick Porter  <dick@ximian.com>
11734         * threads.c (mono_thread_detach): Drop a reference to the thread
11735         we're detaching.
11737 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11739         * object.c (mono_nullable_init): Handle nullable reference types.
11740         (mono_nullable_box): Ditto. Fixes #77446.
11742 2006-02-07  Martin Baulig  <martin@ximian.com>
11744         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
11746 2006-02-07  Ankit Jain  <jankit@novell.com>
11748         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
11749         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
11750         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
11751         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
11752         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
11753         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
11755 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
11757         * class.c (mono_class_create_generic): Set type_token as well.
11759         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
11760         compatible with MS.
11762 2006-02-02  Martin Baulig  <martin@ximian.com>
11764         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
11765         has never been used so far.
11767 2006-02-02  Martin Baulig  <martin@ximian.com>
11769         * mono-debug-debugger.h: Changed comment at the top of this file;
11770         the header is not installed, but it's safe to #include it from
11771         within the JIT.
11773         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
11774         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
11776 2006-02-02  Martin Baulig  <martin@ximian.com>
11778         * mono-debug.h
11779         (MonoSymbolTable): Removed the `metadata_info' field.
11781         * mono-debug.c
11782         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
11784         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11785         (mono_debugger_add_builtin_types): Removed.
11786         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
11787         (mono_debugger_create_notification_function): We now operate on a
11788         pre-allocated area; take a `gpointer' and return `void'.
11790         * mono-debug-debugger.c
11791         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
11792         (mono_debugger_add_builtin_types): Removed.
11794 2006-02-02  Martin Baulig  <martin@ximian.com>
11796         * threads.c (mono_debugger_create_all_threads): New public method.
11798 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11800         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
11801         breaks on several platforms.
11803 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
11805         * assembly.c: the VS.NET build doesn't supply default values for
11806         MONO_ASSEMBLIES and MONO_CFG_DIR.
11808 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
11810         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
11811         helper function.
11813         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
11815         * loader.c (method_from_memberref): Fix a warning.
11817         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
11819         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
11820         with explicit layout. Fixes #77433.
11822 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
11824         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
11825         max_interface_id is initialized before using it. Fixes #77398.
11826         (ves_icall_Type_GetInterfaces): Ditto.
11828 2006-01-30  Raja R Harinath  <rharinath@novell.com>
11830         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11831         allocate memory for parameter attributes when parsing memberref
11832         signatures.
11833         * loader.c (mono_loader_set_error_method_load): Don't warn.
11834         (method_from_memberref): Ensure MissingMethodException gets thrown
11835         if method is not found.  Make warning more informative.
11837 2006-01-29  Raja R Harinath  <harinath@gmail.com>
11839         Fix #77397
11840         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
11841         return true if is byref.
11842         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
11843         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
11844         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
11846 2006-01-27  Raja R Harinath  <rharinath@novell.com>
11848         Fix tests/find-method.2.il
11849         * loader.c (find_method, find_method_in_class): Remove is_inflated
11850         argument.  Revert 2006-01-18 change.
11851         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
11852         is generic, search for method in its generic definition.
11853         * class.c (mono_class_setup_vtable_general): Print generic
11854         arguments of generic types in debugging printf.
11856 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
11858         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
11860         * threads.c (mono_threads_request_thread_dump): New helper function.
11862 2006-01-25  Raja R Harinath  <rharinath@novell.com>
11864         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
11866 2006-01-25  Ankit Jain  <jankit@novell.com>
11868         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
11869         move definition to ..
11870         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
11871         
11872 2006-01-25  Ankit Jain  <jankit@novell.com>
11873             Raja R Harinath  <rharinath@novell.com>
11875         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
11876         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
11877         as necessary.
11879 2006-01-25  Martin Baulig  <martin@ximian.com>
11881         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
11882         `MonoDebuggerThread' into debug-debugger.c.
11884 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11886         * profiler.c: fix printing of data.
11888 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
11890         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
11891           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
11893 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11895         * object.c: fix deadlock related to string interning.
11897 2006-01-23  Martin Baulig  <martin@ximian.com>
11899         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11901         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
11903 2006-01-23  Martin Baulig  <martin@ximian.com>
11905         * mono-debug.h: Moved the prototypes of some functions which are
11906         used by the JIT here from mono-debug-debugger.h.
11908 2006-01-21  Martin Baulig  <martin@ximian.com>
11910         * Makefile.am: Don't install mono-debug-debugger.h.
11912 2006-01-21  Martin Baulig  <martin@ximian.com>
11914         * mono-debug-debugger.h: Enforce the private status of this header
11915         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
11916         Moved some stuff from mono-debugger-jit-wrapper.h here.
11918 2006-01-20  Raja R Harinath  <rharinath@novell.com>
11920         * class.c (mono_class_from_typeref): Add a sanity test to help
11921         catch lack of assembly load/search hooks.
11923 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
11925         * marshal.c (emit_struct_conv): Relax the fields with same offset
11926         check even more. Fixes #77230.
11928 2006-01-18  Martin Baulig  <martin@ximian.com>
11930         * loader.c (find_method_in_class): Added `gboolean is_inflated'
11931         argument; if false, we compare the uninstantiated signatures.
11932         (method_from_memberref): Compare the uninstantiated signatures;
11933         fixes #76417.
11935 2006-01-18  Robert Jordan  <robertj@gmx.net>
11937         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
11938         Clear the weak link. Fixes bug #77170.
11940         * gc.c (mono_gchandle_free):
11941         Reflect *-gc.c changes (tiny optimization).
11943 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
11945         * metadata.c (mono_metadata_signature_dup): Applied patch from
11946         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
11947         Fixes #77288.
11949 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
11951         * marshal.c (emit_struct_conv): Allow fields with the same offset when
11952         marshalling from native to managed code. Fixes #77230.
11954 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11956         * threadpool.c: fix problem (Mac only) when more than one asynchronous
11957         connect. Fixes bug #77020.
11959 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11961         * class.c: fixed id assignement for nested interfaces (bug #77275).
11962         Added also better info for --print-vtable debugging.
11964 2006-01-12  Martin Baulig  <martin@ximian.com>
11966         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
11967         interfaces on-the-fly; fixes #76625.
11969         * class-internals.h
11970         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
11971         don't need that anymore.
11973 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11975         * socket-io.c
11976         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11977         To avoid initing the nested_classes when not needed I turned the
11978         PeerCredData as a toplevel internal class, as it has to be shared
11979         anyways. 
11981         Fixes the CASA issue.
11983 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
11985         * domain.c: Accessors for MonoJitInfo
11987         * profiler-private.h: Add jitinfo to the end jit hook
11989         * profiler.[ch]: Define new hooks, called after jitting which give
11990         the MonoJitInfo that was compiled
11992 2006-01-10  Martin Baulig  <martin@ximian.com>
11994         * class.c (mono_class_setup_events): Add support for generic
11995         classes; fixes #76440.
11997 2006-01-06  Raja R Harinath  <rharinath@novell.com>
11999         Fix #77160.
12000         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
12001         on passed-in method.
12003 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12005         * object.c (mono_runtime_invoke_array): Add Nullable support.
12007         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
12009 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
12011         * file-io.c: Don't consider sockets as directory and avoid an endless
12012         loop. Fix bug #76966.
12014 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12016         * object.c (mono_nullable_init): New helper function.
12017         (mono_nullable_box): Ditto.
12019         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
12021         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
12023         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
12024         
12025 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
12027         * class.c (mono_class_is_assignable_from): Make T assignable to 
12028         Nullable<T>.
12030 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
12032         * appdomain.c: Bump corlib version to 46.
12033         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
12034         serialization purpose) and changed ves_icall_System_Reflection_
12035         Assembly_get_code_base signature to accept a boolean (to escape, or 
12036         not, the assembly code base).
12038 2005-12-23  Dick Porter  <dick@ximian.com>
12040         * icall.c: 
12041         * threads-types.h: 
12042         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
12043         CreateEvent icall now returns "created" boolean parameter.
12045 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
12047         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
12048         #76967.
12050         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
12051         when attr_klass is an interface. Fixes #77045.
12053 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
12055         * marshal.c (emit_struct_conv): Fix previous patch.
12056         
12057         * marshal.c (emit_struct_conv): Add a check for fields with the same
12058         offset.
12060 2005-12-20  Raja R Harinath  <rharinath@novell.com>
12062         Fix regression in Mono.C5.
12063         * class.c (mono_class_create_generic): If 'klass' is an interface
12064         set up the interface offsets.
12065         (mono_class_is_assignable_from): Don't throw away generic arguments.
12067 2005-12-19  Raja R Harinath  <rharinath@novell.com>
12069         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
12070         type parameters.
12072 2005-12-15  Raja R Harinath  <rharinath@novell.com>
12074         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
12075         dead store.
12076         (do_mono_metadata_parse_generic_class): Don't pass the current
12077         generic context when parsing the type being instantiated: it
12078         cannot use it, anyway.
12080         * loader.c (method_from_memberref): Don't inflate a signature if
12081         it doesn't contain any type parameters.
12083 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
12085         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
12087 2005-12-14  Martin Baulig  <martin@ximian.com>
12089         * class.c
12090         (mono_type_get_name_recurse): Don't return null for type
12091         parameters and open generic classes.
12092         (mono_class_setup_methods): Don't exclude generic instances.
12093         (mono_get_unique_iid): Use different IDs for different
12094         instantiations of the same generic type.
12095         (mono_class_setup_vtable): Only use setup_generic_vtable() for
12096         open generic instances; create a normal vtable for closed generic
12097         instances.
12098         (mono_class_setup_vtable_general): We're now also called for
12099         closed generic instances.
12101         * reflection.c
12102         (mono_reflection_bind_generic_parameters): Correctly use
12103         mono_metadata_lookup_generic_inst() everywhere.
12105 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
12107         * object.c (mono_class_create_runtime_vtable): Call 
12108         mono_class_setup_vtable ().
12110         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
12111         function.
12112         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
12113         #76959.
12115         * loader.c (mono_loader_set_error_type_load): Print the type load
12116         warnings to the console so they are more visible to the user.
12117         (mono_loader_set_error_method_load): Ditto.
12119         * reflection.c (ensure_runtime_vtable): Revert the last change as it
12120         is still broken.
12121         
12122         * reflection.c (ensure_runtime_vtable): Fix build.
12124         * reflection.c (ensure_runtime_vtable): Disable an optimization which
12125         doesn't work in all cases.
12127 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
12129         * object.c (mono_array_new_full): Treat a single dimensional array
12130         with 0 lower bounds as an szarray. Fixes #76973.
12132         * reflection.c (custom_attr_visible): Really fix this.
12134 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
12136         * reflection.c (custom_attr_visible): Allow nested public attributes
12137         as well.
12139         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
12140         interface check.
12142 2005-12-12  Raja R Harinath  <harinath@gmail.com>
12144         * class.c (set_generic_param_owner): Delete.
12145         (mono_class_create_from_typedef): Don't set ->owner field of
12146         generic parameters to "param containers" of enclosing classes.
12147         * reflection.c (mono_reflection_initialize_generic_parameter):
12148         Likewise.
12150 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
12152         * reflection.c (custom_attr_visible): Fix build.
12154 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
12156         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
12157         private attributes.
12158         
12159         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
12160         handling of null parameter defaults.
12162 2005-12-09  Raja R Harinath  <rharinath@novell.com>
12164         * class.c (mono_class_from_generic_parameter): Don't set
12165         klass->generic_container.
12166         (my_mono_class_from_generic_parameter): Likewise.
12168 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
12170         * reflection.c (load_public_key): Fix a warning.
12171         (method_encode_code): Fix unaligned accesses.
12173 2005-12-07  Martin Baulig  <martin@ximian.com>
12175         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
12177         * reflection.c
12178         (write_generic_param_entry): Encode our custom attrs.
12180         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
12182 2005-12-07  Martin Baulig  <martin@ximian.com>
12184         * reflection.c (encode_new_constraint): Removed; we don't use the
12185         `NewConstraintAttribute' anymore.
12187 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
12189         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
12190         not fire a TypeResolve event when Assembly.GetType () is called.
12192 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
12194         Beginning of support for nullable types in the runtime. Parts of
12195         this patch are from Martin.
12197         * appdomain.c (MONO_CORLIB_VERSION): Bump
12199         * domain.c (mono_init_internal): get the nullable type
12201         * class.c (mono_class_is_nullable): New method
12202         (mono_class_get_nullable_param): New mehod
12203         (mono_class_create_generic): In types T? set cast_class to T
12205         * class-internals.h (MonoDefaults): new nullable default class
12206         (mono_class_get_nullable_param, mono_class_get_nullable_param):
12207         new methods.
12209 2005-12-05  Raja R Harinath  <rharinath@novell.com>
12211         * metadata.c (select_container): New.  Refactor code to select the
12212         appropriate GenericContainer given the type of generic parameter
12213         we are looking for.
12214         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
12215         not a MonoGenericContext.  Use select_container.  Update parameters.
12216         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
12217         and MONO_TYPE_MVAR.
12218         (unwrap_arrays): Remove duplicate tests.
12219         (find_generic_param): Rename from 'has_same_context'.  Now walks a
12220         generic instantiated class to find any arguments that are generic
12221         parameters.
12222         (mono_type_create_from_typespec_full): Use find_generic_param to
12223         avoid evicting some generic instantiations from the typespec
12224         cache.
12226 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
12228         * reflection.c: fixed writing of doubles on ARM FPA.
12230 2005-12-02  Robert Jordan  <robertj@gmx.net>
12232         * icall.c: Fixed EventInfo.ReflectedType (#76829).
12234 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12236         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
12237         least on SUSE 10 they are not the same (on debian, they are just the
12238         same thing).
12240 2005-12-01  Raja R Harinath  <rharinath@novell.com>
12242         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
12243         DeclaringType for VARs and MVARs.
12244         * class.c (set_generic_param_owner): Fix initialization of owner
12245         fields.
12247 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
12249         * icall.c: fixed Enum.ToObject() to correctly convert the values.
12251 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12253         * threadpool.c: workaround for a bug that shows up on the Mac:
12254         select()+connect() on a blocking socket is not like it should
12255         be, so we proceed to connect() in that case, wasting the I/O
12256         threadpool thread until connect succeedes. Fixes bug #75436.
12258 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12260         * threadpool.c: fix typo when setting file descriptor states.
12262 2005-11-28  Raja R Harinath  <rharinath@novell.com>
12264         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
12265         * metadata.c (mono_metadata_parse_method_signature_full): Don't
12266         create a temporary signature container.
12267         (mono_metadata_parse_generic_param): Update to changes.
12268         (mono_type_create_from_typespec_full): Update to changes.
12269         * loader.c (method_from_memberref): Don't use a
12270         MonoGenericContainer while parsing a memberref signature.
12271         (method_from_methodspec): Remove dead-store of the 'container'
12272         variable.  It's overwritten before use.
12274         * metadata.c (mono_type_create_from_typespec_full): Make debugging
12275         checks tighter.
12276         (mono_metadata_parse_generic_param): Likewise.
12277         * loader.c (find_method_in_class): Does not need a
12278         MonoGenericContainer.  Use 'mono_method_signature' rather than
12279         'mono_method_signature_full'.
12280         (find_method, mono_get_method_constrained, method_from_memberref):
12281         Update to changes.
12283         * metadata.c (mono_type_create_from_typespec_full): Ensure that
12284         owner-less generic-parameters are never evicted from the typespec
12285         cache.
12287         * loader.c (method_from_memberref): Don't use the current context
12288         when parsing signatures.
12289         (method_from_methodspec, mono_get_method_from_token): Update to changes.
12291         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
12292         side-effects in g_assert.
12293         * loader.c (mono_get_method_from_token): Resolve klass earlier so
12294         that we don't potentially lose information.
12296 2005-11-26  Dick Porter  <dick@ximian.com>
12298         * icall.c:
12299         * threads.c: icalls to implement basic (ie, not named)
12300         System.Threading.Semaphore.
12302 2005-11-24  Dick Porter  <dick@ximian.com>
12304         * process.c
12305         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
12306         Use GetProcessId() if it's available.
12308 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
12310         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
12312 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12313             Ankit Jain  <jankit@novell.com>
12315         * loader.c (mono_get_method_from_token): Initialize 'method' field
12316         of all generic parameters before parsing the signature.  Remove
12317         code that "fixed"-up MVAR references.
12319 2005-11-23  Ankit Jain  <jankit@novell.com>
12321         * metadata.c (mono_metadata_has_generic_params):
12322         (mono_metadata_load_generic_param_constraints):
12323         (mono_metadata_load_generic_params): Move duplicate code ...
12324         (mono_metadata_get_generic_param_row): ... here. Returns the
12325         first row-id in GenericParam table for a given owner (token).
12326         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
12327         prototype.
12329 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12330             Ankit Jain  <jankit@novell.com>
12332         * metadata.c (mono_metadata_class_equal): Pass signature_only when
12333         comparing VARs too.
12334         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
12335         type->data.generic_param only if the type is an MVAR.
12336         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
12337         leak owner-less VARs and MVARs into managed space.
12339 2005-11-21  Martin Baulig  <martin@ximian.com>
12341         * class-internals.h
12342         (MonoMethod): Moved the `generic_container' here from
12343         `MonoMethodNormal' since we now also need it for
12344         `MonoMethodPInvoke';
12345         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
12346         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
12347         an union containing both `MonoMethodNormal' and
12348         `MonoMethodPInvoke'.
12350         * loader.c
12351         (mono_get_method_from_token): Allow implementing generic methods
12352         as interncalls.
12354         * threads.c
12355         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
12356         icall.
12358 2005-11-17  Dick Porter  <dick@ximian.com>
12360         * icall.c: 
12361         * process.h: 
12362         * process.c: Split the Process Start_internal icall into
12363         ShellExecuteEx_internal and CreateProcess_internal, which are
12364         called depending on whether UseShellExecute is true.  Fixes bug
12365         76670.
12367         * appdomain.c (MONO_CORLIB_VERSION): Incremented
12369 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
12371         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
12372         'msize' parameters, use the information in 'mspec' instead.
12373         (emit_object_to_ptr_conv): Ditto.
12375         * marshal.c (emit_struct_conv): Handle explicit layout structs with
12376         fields out of order. Fixes #76733.
12378 2005-11-17  Ankit Jain  <jankit@novell.com>
12380         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
12382 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
12384         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
12385           bug #76575.
12387 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12389         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
12390         for types with non-auto layout. Fixes #76717.
12392 2005-11-16  Ankit Jain  <jankit@novell.com>
12394         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
12395         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
12396         if generic_context is null.
12397           (mono_metadata_generic_param_equal): param->owner can be null.
12398           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
12399         null.
12401 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12403         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
12404         the correct value.
12406 2005-11-15  Martin Baulig  <martin@ximian.com>
12408         * object.c (set_value): Use mono_class_from_mono_type() instead of
12409         the hack for generic instances; fixes #76136.
12411 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
12413         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
12414         fields.
12416         * image.c (load_metadata_ptrs): Initialize the new fields.
12418         * reflection.c (create_dynamic_mono_image): Ditto.
12420         * reflection.c (build_compressed_metadata): Use the new fields.
12422         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
12423         icall.
12425         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
12426         icall.
12427         
12428 2005-11-15  Ankit Jain  <jankit@novell.com>
12429             Raja R Harinath  <harinath@gmail.com>
12431         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
12432         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
12433         new per-generic_container cache if the cached MonoType's context matches
12434         the current context.
12435           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
12436         to the expected context.
12437           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
12439 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12441         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
12442         we changed the signature of an icall.
12443         * icall.c: Modify to mono_double_ParseImpl return true/false 
12444         depending on the success, instead of throwing the exception. This will
12445         help us in Double.TryParse methods.
12446         
12447 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
12449         * marshal.c (emit_marshal_object): Throw an exception when
12450         marshalling 'object' instead of crashing. Fixes #76696.
12452 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12454         * class-internals.h: Add prototype for mono_type_get_full_name ().
12456 2005-11-11  Dick Porter  <dick@ximian.com>
12458         * threads.c (mono_thread_manage): Make sure the main thread has
12459         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
12461 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12463         * loader.c (mono_loader_set_error_type_load): Log a warning to the
12464         console about the missing type.
12465         (mono_loader_set_error_method_load): Ditto.
12467 2005-11-09  Miguel de Icaza  <miguel@novell.com>
12469         * mono-config.c (mono_get_config_dir): Set the system defaults if
12470         none is specified.
12472         * assembly.c (mono_set_dirs): New API entry point to set the
12473         assembly and the config directory in one call
12475 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
12477         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
12478         the ftnptr was created from a delegate in a domain other than the
12479         current domain. Fixes #75377.
12481         * exception.h exception.c: Add mono_get_exception_not_supported ().
12483 2005-11-08  Martin Baulig  <martin@ximian.com>
12485         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
12487 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
12489         * security-manager.h: Added definitions to deal with strongname key 
12490         pairs bigger (and smaller) than 1024 bits.
12491         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
12492         adjust wrt the public key length being used.
12494 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12496         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
12497           Windows build (r51396-51397).
12499 2005-11-03  Martin Baulig  <martin@ximian.com>
12501         * class.c (mono_class_setup_vtable_general): Also add generic
12502         methods to the vtable; fixes #76581.
12504 2005-11-01  Miguel de Icaza  <miguel@novell.com>
12506         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
12507         sure that we lookup GetString method from the System.Text.Encoding
12508         class, not the derived class or we get an empty method.
12510         Fixed class #76612.
12512 2005-10-25  Miguel de Icaza  <miguel@novell.com>
12514         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
12515         if it has been previously set (embedders). 
12517         Make mono_set_rootdir available also on Unix.
12519 005-10-24  Robert Jordan  <robertj@gmx.net>
12521         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
12523 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12525         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
12526         only calls which are made to native code use this flag.
12528         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
12530 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12532         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
12533         Add support for FieldBuilders.
12535 2005-10-29  Martin Baulig  <martin@ximian.com>
12537         * mono-debug.c
12538         (mono_debug_using_mono_debugger): New public method; returns
12539         whether we're running inside the debugger.
12541 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
12543         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
12544         for Method/Constructor/FieldBuilders.
12546 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12548         * reflection.c (module_add_cattrs): Save custom attributes for global methods
12549         and fields as well.
12551 2005-10-26  Martin Baulig  <martin@ximian.com>
12553         * mono-debug-debugger.c
12554         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
12556 2005-10-24  Raja R Harinath  <harinath@gmail.com>
12558         * icall.c (base64_to_byte_array): Don't pass an out-of-range
12559         integer to isspace.
12561 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12563         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
12564         when passing valuetypes byref. Fixes #76502.
12566 2005-10-19  Jackson Harper  <jackson@ximian.com>
12568         * profiler.c: Don't put a . in front of types that are not in a
12569         namespace.
12571 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12573         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
12575 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
12577         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
12578         #76436.
12579         (mono_marshal_get_ldflda_wrapper): Fix a warning.
12581 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12583         * assembly.c metadata-internals.h icall.c: Define an additional
12584         parameter for mono_assembly_name_parse_full, so we can avoid creating
12585         S.R.AssemblyName.Version when no version info wasn't passed.
12586         
12587 2005-10-09  Miguel de Icaza  <miguel@novell.com>
12589         * class.c (mono_type_get_full_name): Reimplement method that was
12590         removed. 
12592         * image.c: Some docs
12594 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12596         * profiler.c (output_newobj_profile): Fix printing of Total memory
12597         on x86.
12599 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12601         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
12603 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
12605         * threads.c: remove debug output.
12607 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12609         * threads.c (mono_thread_manage): Fix crashes if more than 64
12610         threads need to be aborted. Hopefully fixes #75899.
12612         * assembly.c (mono_stringify_assembly_name): New helper function.
12614         * class.c: Use mono_stringify_assembly_name instead of the similar
12615         static function.
12617         * assembly.h assembly.c: Add support for calling a postload search 
12618         hook if an assembly cannot be loaded.
12620         * appdomain.c: Register new search hooks which call the AssemblyResolve
12621         events in AppDomain. Fixes #75231
12623 2005-10-07  Martin Baulig  <martin@ximian.com>
12625         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
12626         methods without debug info.
12628 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12630         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
12631         wrappers.
12633 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12635         * file-io.c: now that we return symlinks, use lstat and, when the file
12636         is a symbolic link, stat, to get the file attributes. Also avoid the
12637         conversion to/from utf16/external.
12639 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
12641         * class.c (mono_class_layout_fields): Compute klass->has_references
12642         correctly if an embedded valuetype is not yet initialized. Fixes
12643         #76331.
12645 2005-10-04  Martin Baulig  <martin@ximian.com>
12647         * metadata.c
12648         (mono_metadata_load_generic_param_constraints): New public
12649         function; splitted the constraints loading out from
12650         mono_metadata_load_generic_params().
12652         * class.c (mono_class_create_from_typedef): Call
12653         mono_metadata_load_generic_param_constraints() after setting up
12654         the type and creating our parent; fixes #75329.
12656 2005-10-04  Martin Baulig  <martin@ximian.com>
12658         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
12659         non-dynamic parent classes.
12661 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12663         * file-io.c : win32 build fix (ETXTBSY seems not found).
12665 2005-10-04  Martin Baulig  <martin@ximian.com>
12667         * reflection.c
12668         (mono_image_get_methodspec_token): Make the cache actually work;
12669         fixes #75974.
12671 2005-10-04  Martin Baulig  <martin@ximian.com>
12673         * class.c (mono_class_name_from_token): Removed the unneccessary
12674         `MonoGenericContext *' argument.
12676 2005-10-04  Martin Baulig  <martin@ximian.com>
12678         * loader.c
12679         (method_from_methodspec): Make the caching work again; fixes the
12680         performance regression from #76262.
12682 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12684         * file-io.c:
12685         * file-io.h:
12686         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
12687         GetFileSystemEntries that performs the same work but without going
12688         into io-layer, locking, etc.
12690 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12692         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
12693         ThreadState_Stopped as well. Fixes #76047.
12695 2005-09-29  Martin Baulig  <martin@ximian.com>
12697         * class.c
12698         (inflate_generic_context): If the new context has a `gmethod', set
12699         its `container' that that gmethod's `container'.
12701         * metadata.c
12702         (mono_metadata_parse_generic_param): Simplify things;
12703         `generic_container = generic_context->container;' is just fine.
12705         * loader.c (method_from_methodspec): Code cleanups.
12707 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
12709         * decimal.c: fix warning (and let gcc generate correct
12710         code on ARM with optimizations).
12712 2005-09-28  Martin Baulig  <martin@ximian.com>
12714         * loader.c
12715         (method_from_memberref): Added `MonoGenericContext *class_context'
12716         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
12717         (method_from_methodspec): If we're a memberref, use the enclosing
12718         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
12720 2005-09-28  Martin Baulig  <martin@ximian.com>
12722         * object.c (mono_runtime_invoke_array): Added support for
12723         MONO_TYPE_GENERICINST; fixes #75917.
12725 2005-09-27  Martin Baulig  <martin@ximian.com>
12727         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
12728         `k->byval_arg.type' to determine the actual type.
12730         * loader.c (method_from_methodspec): Removed some hacks.
12732 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12734         * class-internals.h (mono_field_is_deleted): Do the test for
12735         rtspecialname before we check the actual name of the field. This
12736         prevents us from dereferencing a pointer into the string table,
12737         saving us from accessing a few pages
12739         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12740         macros. This will allow a deadlock debugger to easily be plugged
12741         in.
12743 2005-09-27  Martin Baulig  <martin@ximian.com>
12745         * loader.c (method_from_methodspec): Create a "signature"
12746         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
12748 2005-09-27  Martin Baulig  <martin@ximian.com>
12750         * class.c
12751         (inflate_generic_class): Correctly set the new context's
12752         container.
12754         * loader.c
12755         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
12756         instead of a `MonoGenericContext *'.
12757         (mono_method_signature_full): Take a `MonoGenericContainer *'
12758         instead of a `MonoGenericContext *'.
12760         * metadata.c
12761         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
12762         instead of a `MonoGenericContext *'.
12763         (mono_metadata_parse_method_signature_full): Likewise.
12765 2005-09-26  Martin Baulig  <martin@ximian.com>
12767         * class.c
12768         (mono_class_from_generic_parameter): Set `klass->generic_container'
12769         (mono_class_from_generic_parameter): Likewise.
12770         (mono_bounded_array_class_get): We inherit the generic container
12771         from the element class.
12773         * loader.c
12774         (find_method, find_method_in_class): Take a `MonoGenericContext *'
12775         argument rather than computing it here.
12776         (method_from_memberref): Correctly set the generic context before
12777         parsing the signature.  Fixes #75681.
12779 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12781         * object.c (mono_class_has_special_static_fields): Fix warnings.
12783 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12785         * assembly.c: Add parse_public_key function, to
12786         par the public keys. Also added mono_assembly_name_parse_full,
12787         to define it the parsed key should be freed or not.
12788         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
12789         to parse a long format assembly name.
12790         * metadata-internals.h: Keep mono_assembly_name_parse_full as
12791         private, since calling it to preserve the key requires
12792         freeing it manually.
12793         
12794 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
12796         * locales.c : removed HAVE_ICU part.
12798 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12800         * object.c (mono_class_create_runtime_vtable): Avoid calling 
12801         field_is_special_static if the klass has no special static fields.
12803         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
12804         (MonoCachedClassInfo): Likewise.
12806         * object.c (mono_class_has_special_static_fields): New helper function.
12808 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12810         * class.c (mono_class_create_from_typedef): Don't call 
12811         interfaces_from_typedef_full for enums.
12812         (mono_class_create_from_typedef): Compute the base types of enums directly
12813         without calling mono_class_setup_fields ().
12814         (mono_class_find_enum_basetype): New helper function.
12816         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
12817         one place inside the string heap.
12818         
12819 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
12821         * class.c: locking fixes, code cleanups, some docs added.
12822         Allocate some data structures in the image mempool.
12824 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12826         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12827         the example code.
12828         
12829 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
12831         * class-internals.h, class.c, reflection.c: reduce memory taken by
12832         MonoClass.
12834 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
12836         * metadata.c, metadata.h, loader.h: documentation updates, code and
12837         API cleanups.
12839 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12841         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12842         the example code.
12844         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
12845         page faults caused by the runtime while reading metadata.
12847 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12849         * socket-io.c: the field names were changed 3 months ago and no one
12850         realized until bug #76077 got filed!
12852 2005-09-20  Martin Baulig  <martin@ximian.com>
12854         * icall.c (assembly_icalls): Removed some unused debugger icalls.
12856 2005-09-20  Martin Baulig  <martin@ximian.com>
12858         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
12859         write the rank into the class entry.
12861 2005-09-20  Martin Baulig  <martin@ximian.com>
12863         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
12865 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
12867         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12869         * icall.c (custom_attrs_defined_internal): New icall.
12871         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
12872         function.
12873         (mono_custom_attrs_construct_by_type): New helper function.
12875 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
12877         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
12878         terminate the resulting string. Fixes #76123.
12880 2005-09-16  Martin Baulig  <martin@ximian.com>
12882         * mono-debug.c
12883         (mono_debug_add_method): Ignore inflated methods for the moment.
12885 2005-09-14  Martin Baulig  <martin@ximian.com>
12887         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
12889 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
12891         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
12892         return a success/failure indication.
12893         (mono_metadata_interfaces_from_typedef_full): Ditto.
12894         (get_constraints): Ditto.
12896 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12898         * marshal.c (emit_marshal_array): Fix handling of null arrays.
12899         
12900         * marshal.c (emit_marshal_array): Add support for returning string
12901         arrays from delegates. Fixes #76063.
12903         * marshal.c: Use the emit_ldloc/stloc macros where possible.
12905 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12907         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
12908         icall.
12910 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12912         * reflection.c icall.c: Fix after mono_get_exception_type_load
12913         signature change.
12915         * assembly.c (mono_assembly_get_assemblyref): New helper function.
12916         (mono_assembly_load_reference): Use the new helper.
12918         * class-internals.h (MonoLoaderError): New structure containing 
12919         information about type loading errors.
12921         * class-internals.h loader.c: Add APIs to store per-thread loader
12922         error information.
12924         * loader.c class.c: Set the loader error if needed.
12926         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
12928 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
12930         * decimal.c: fixed to handle the broken ARM fp format.
12932 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
12934         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
12935         broken.
12937 2005-09-06  Martin Baulig  <martin@ximian.com>
12939         * domain.c (supported_runtimes): Added v2.0.50727.
12941 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
12943         * culture-info.h: reduce the size of some structures.
12945 2005-09-05  Martin Baulig  <martin@ximian.com>
12947         Reflect latest API changes in the August CTP.
12949         * icall.c
12950         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
12951         ("MonoType.HasGenericArguments"): Removed.
12952         ("MonoMethod.BindGenericParameters"): Renamed to
12953         "MakeGenericMethod".
12954         ("MethodBuilder.BindGenericParameters"): Renamed to
12955         "MakeGenericMethod".    
12957 2005-09-05  Martin Baulig  <martin@ximian.com>
12959         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
12961 2005-09-05  Martin Baulig  <martin@ximian.com>
12963         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12965         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
12966         generic_container is non-NULL.
12968 2005-09-05  Martin Baulig  <martin@ximian.com>
12970         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12972         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
12974 2005-08-29  Michal Moskal  <malekith@nemerle.org>
12976         * reflection.c (encode_locals,
12977         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
12978         for large generic types.
12980 2005-09-05  Martin Baulig  <martin@ximian.com>
12982         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12984         * class.c (mono_dup_array_type): New public method.
12985         (mono_metadata_signature_deep_dup): New public method.
12986         (dup_type): Correctly duplicate array and function types.
12988 2005-09-05  Martin Baulig  <martin@ximian.com>
12990         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12992         * reflection.c (get_default_param_value_blobs): Handle generic types
12993         and generic methods.
12995 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
12997         * class.c: Fixed error reporting (method/class were inversed) for 
12998         inheritance demands.
12999         * security-manager.c|h: Added the AppDomain when calling the managed
13000         System.Security.SecurityManager.InheritanceDemand method.
13002 2005-09-01  Raja R Harinath  <rharinath@novell.com>
13004         * reflection.c (encode_marshal_blob): 'marshaltype' and
13005         'marshaltyperef' are alternate sources for the custom marshaler
13006         name.
13008 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
13010         * class.c: fix creation of array classes with rank == 1
13011         (patch by Ankit Jain <jankit@novell.com>).
13013 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
13015         * object.c: fix check for creating the bound data for arrays vs
13016         szarrays.
13018 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13020         * object.c: configuration file name is now based on the executable name,
13021         not the image name. Fixes bug #75931.
13023 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
13025         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
13026         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
13028 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
13030         * rand.c: Use wincrypt.h instead of WinCrypt.h.
13032 2005-08-24  Ankit Jain  <jankit@novell.com>
13033             Raja R Harinath  <rharinath@novell.com>
13035         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
13036           called by it recursively.
13037           (mono_class_init): Remove special case in pending_init handling, since it's
13038           superseded by the fix to mono_class_from_typeref.
13040 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13042         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
13043         BROKEN_THREAD_START stuff.
13045 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
13047         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
13048         trampoline.
13050         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
13051         
13052         * object.c (mono_delegate_ctor): Replace the original function address with
13053         a delegate trampoline.
13055 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
13057         * icall.c: add boolean argument to base64_to_byte_array and 
13058         InternalFromBase64String to control whether a whitespace-only string
13059         is allowed (or should casue a FormatException to be thrown). We need
13060         this as the behavior has changed between MS.NET 1.x and 2.0, and we
13061         to match the MS behaviour in both profiles.
13062         * appdomain.c: Bump corlib version.
13064 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13066         This patch implements a big portion of publisher policy
13067         support, used to bind assembly versions and redirect
13068         one assembly from version A to version B.
13070         * assembly.c:
13071         New GSList loaded_assembly_bindings, for storing the cached
13072         assembly bindings.
13073         (assembly_binding_maps_name): New static function for checking if a 
13074         assembly binding information maps an assembly name.
13075         (mono_assembly_binding_info_free): New function for freeing
13076         assembly binding information resources.
13077         (get_publisher_policy_info): New static function for retrieving 
13078         assembly binding information from a MonoImage.
13079         (compare_versions): New static function for comparing an assembly
13080         binding information data and the version of an assembly name.
13081         (check_policy_versions): New static function for checking if an
13082         assembly binding info mapping an assembly name is valid for it.
13083         (mono_assembly_load_publisher_policy): New static function for
13084         loading the 'policy.major.minor.MyAssembly' image for an assembly
13085         with an assembly name 'aname'.
13086         (mono_assembly_bind_version): New static function for updating
13087         assembly redirection.
13088         (mono_assembly_apply_binding): New static function for applying
13089         assembly binding.
13090         (search_binding_loaded): New static function for searching 
13091         loaded assembly binding infos in the cache domain.
13092         (mono_assembly_load_full): Don't apply assembly binding for
13093         reflection only assemblies.
13095         * metadata-internals.h: Add MonoAssemblyBindingInfo,
13096         which contains information about assembly binding. Also
13097         declare signature for mono_config_parse_publisher_policy ()
13098         function, used to retrieve pub policy info.
13099         
13100         * mono-config.c:
13101         (publisher_policy_start): New static function used to parse publisher 
13102         policy config files.
13103         (publisher_policy_parser): New static MonoParseHandler containing 
13104         the functions used when parsing config files.
13105         (mono_config_parse_publisher_policy): New function for parsing
13106         publisher policy files.
13107         
13108 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
13110         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
13112         * marshal.c (mono_delegate_free_ftnptr): Ditto.
13114         * object.c (mono_get_addr_from_ftnptr): New helper function.
13116         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
13118         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13120 2005-08-19  Dick Porter  <dick@ximian.com>
13122         * threads.c, threads.h, appdomain.c, appdomain.h,
13123         profiler-private.h, monitor.c, object.c, object-internals.h,
13124         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
13125         store the thread ID, so it can hold a 64 bit value if needed.
13127 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
13129         * reflection.c (mono_reflection_create_dynamic_method): Store the
13130         handle class into the method references as well so ldtoken works in
13131         dynamic methods.
13133         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
13134         types.
13136 2005-08-19  Ankit Jain <jankit@novell.com>
13138         Fix #75847.
13139         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
13140           here rather than using the method signature of a arbitrary function
13141           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
13142           two arguments.
13143           Hack done with Harinath.
13145 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13147         * threadpool.c: disable printing stack traces when we get a exception
13148         in a threadpool thread. I need to do more testing to figure out which
13149         cases actually print this. Fixes bug #75828.
13151 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13153         * icall.c: there might be ignored whitespace after the last '='. This
13154         fixes length computation and bug #75840.
13156 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
13158         * assembly.c (mono_assembly_load_full): Consider .exe extension as
13159         well. Fixes #75809.
13161         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
13162         #75784.
13163         
13164         * reflection.c (create_custom_attr_data): Ditto.
13166 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
13168         * locales.c, culture-info.h : removed RegionLCIDMap.
13169         * culture-info-tables.h : regenerated.
13171 2005-08-16  Martin Baulig  <martin@ximian.com>
13173         * class.c (mono_type_get_name_recurse): Small fix.
13175 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13177         * locales.c : indentation fixie.
13179 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
13181         * object-internals.h,
13182           locales.h,
13183           locales.c,
13184           culture-info.h,
13185           icall.c : added RegionInfo table support.
13186         * culture-info-table.h : regenerated for region support.
13188 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
13190         * reflection.c (resolve_object): handle all kinds of MonoMethod
13191         including generic ones
13193 2005-08-12  Ankit Jain <jankit@novell.com>
13195         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
13196           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
13198 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
13200         * process.c: Don't close a thread handle when it's NULL. This is a
13201         workaround for bug #75733.
13203 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
13205         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
13207 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
13209         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
13211 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13213         * threadpool.c: if a work item in the thread pool has a callback that
13214         catches a exception, don't propagate it after invoking the callback.
13215         Fixes bug #75336.
13217 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
13219         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
13221         * class-internals.h (MonoCachedClassInfo): Add some new fields.
13223         * class.c (mono_class_init): Load field info lazily in the AOT case.    
13225         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
13227 2005-08-03  Ankit Jain  <jankit@novell.com>
13229         Fix #75683.
13230         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
13231           PInvoke calling convention is 0.
13233 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
13235         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
13236         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
13238 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
13240         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
13241         to handle threads not started by the GC (patch by Michael Meeks
13242         <michael.meeks@novell.com>).
13244 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
13246         * reflection.c: Make buffer used in emitting types larger for some
13247         big generic types (patch by Michal Moskal).
13249 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
13251         * mono-debug.c: Fix some (not all) alignment problems.
13253 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13255         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
13256         Invoke mono_image_load_from_data_full passing the refonly
13257         parameter.
13259         * assembly.c
13260         (mono_assembly_open_from_bundle): Add the refonly argument, 
13261         in order to pass it to other methods it calls to.
13262         (do_mono_assembly_open): Add the refonly argument, in order 
13263         to pass it to other methods it calls to.
13264         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
13265         the refonly parameter to it.
13267         * image.c: Add loaded_images_refonly_hash and
13268         loaded_images_refonly_guid_hash to cache the reflection
13269         only loaded images.
13270         (mono_images_init): Initialize the hash tables used for
13271         caching the reflection only images.
13272         (load_modules): Invoke mono_image_open_full passing the refonly
13273         parameter to load the modules the correct way.
13274         (build_guid_table): Add the refonly argument, to re-build the 
13275         correct hash table.
13276         (do_mono_image_open): Added the refonly argument, in order to
13277         define it for the loaded image.
13278         (mono_image_loaded_full): New function, which receives an
13279         additional parameter to look for the image in the refonly or
13280         non-refonly section.
13281         (mono_image_loaded): Updated, using mono_image_loaded_full.
13282         (mono_image_loaded_by_guid_full): The same case that happens
13283         with mono_image_loaded_full.
13284         (mono_image_loaded_by_guid): Likewise.
13285         (register_image): Use the ref_only variable inside MonoImage
13286         to decide in which hash table store the current image.
13287         (mono_image_open_from_data_full): Rename
13288         mono_image_open_from_data to mono_image_open_from_data_full,
13289         adding the refonly argument, to define the ref_only variable 
13290         inside MonoImage.
13291         (mono_image_open_from_data): Return 
13292         mono_image_open_from_data_full.
13293         (mono_image_open_full): Rename mono_image_open to
13294         mono_image_open_full, receiving the new refonly argument,
13295         to pass it to inner methods.
13296         (mono_pe_file_open): Update this function, to open
13297         a MonoImage as a non-refonly image.
13298         (mono_image_close): Use the refonly variable inside
13299         MonoImage to remove the image from the correct caches.
13301         * image.h: Add the signatures of mono_image_open_full,
13302         mono_image_open_from_data_full, mono_image_loaded_full,
13303         mono_image_loaded_by_guid_full.
13305         * metadata-internals.h: Add the ref_only field to 
13306         MonoImage.
13307         
13308 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13310         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
13311         Fix the last behavior, which used to load the assemblies and
13312         extract MonoReflectionAssemblyName information, instead of
13313         extract it from the metadata tables. Needed for Reflection
13314         Only assemblies.
13315         
13316 2005-07-29  Martin Baulig  <martin@ximian.com>
13318         * mono-debug-debugger.c
13319         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
13320         not initialized.
13322         * mono-debug.c
13323         (mono_debug_address_from_il_offset): Check whether we have
13324         debugging support before attempting to take the lock.
13325         (mono_debug_source_location_from_address): Likewise.
13326         (mono_debug_source_location_from_il_offset): Likewise.
13327         (mono_debug_il_offset_from_address): Likewise.
13328         (mono_debug_address_from_il_offset): Likewise.
13330 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
13332         * class.c (mono_class_from_name_case): Add support for dynamic images.
13333         Fixes #75650.
13335         * object.c (mono_class_compute_gc_descriptor): Add a workaround
13336         for #75479.
13338 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13339         
13340         * reflection.c (mono_method_get_object): Fix warning.
13342 2005-07-28  Martin Baulig  <martin@ximian.com>
13344         * mono-debug.c
13345         (mono_debug_add_wrapper): Also write the wrapper type.
13347 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13349         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
13350         
13351         * class.c (mono_class_init): Avoid reading nested classes if the AOT
13352         data indicates the class has none.
13354 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
13356         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
13357         loader lock with the debugger lock. Prevents deadlocks for beagle.
13359         Beagle can now run on an smp box for a weekend without any
13360         issues. Woohoo!
13362 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
13364         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
13365         in a module. Fixes #75629.
13367 2005-07-26  Martin Baulig  <martin@ximian.com>
13369         * mono-debug.c (mono_debug_add_wrapper): New static method.
13370         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
13371         interncall or a wrapper.
13373         * mono-debug.h (MonoDebugWrapperData): New public typedef.
13374         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
13375         (MONO_DEBUGGER_VERSION): Bump to 51.
13377         * mono-debug-debugger.c
13378         (mono_debugger_add_type): Removed this empty function.
13379         (mono_debugger_add_method): Likewise.
13381 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
13383         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
13384         before accessing method->slot.
13386 2005-07-21  Jb Evain  <jbevain@gmail.com>
13388         * reflection.c (method_encode_clauses/class): Handle filters clauses.
13389         Fixes #75010.
13391 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13393         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
13394         #75587.
13396 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13398         * image.h image.c: Add mono_image_get_guid () API function.
13400 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
13402         There were issues when multiple threads tried to load
13403         assemblies. A deadlock was created between assemblies_mutex and
13404         mono_domain_assemblies_lock. This fixes the issue by making the
13405         assembly ref counting be lock free. See bug 75586.
13406         
13407         * image.c (mono_image_close): The add ref function here was using
13408         Interlocked operations while the unref was using a mutex and a
13409         --. I don't think this was ever a bug that would be exposed in a
13410         non-pendantic way (ie, by an embedder doing a ref on one thread
13411         and an unref on another), but for the sake of correctness, this is
13412         now Interlocked.
13414         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
13415         (mono_assembly_load_reference): Call mono_assembly_addref rather
13416         than touching the refcount ourselves.
13417         (mono_assembly_close): Use InterlockedDecrement to unref the
13418         assembly. Don't acquire the lock unless it is actually needed.
13420 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13422         * class.c (mono_class_layout_fields): Fix calculation of has_references
13423         for generic types.
13425 2005-07-12  Martin Baulig  <martin@ximian.com>
13427         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13429         * metadata.c
13430         (mono_type_hash): Provide better hashing for generic instances.
13431         (mono_generic_inst_hash): Improve hashing.
13432         (mono_generic_class_hash): Likewise.
13434         * reflection.c (mymono_metadata_type_hash): Improve hashing for
13435         generic instances.
13437 2005-07-12  Martin Baulig  <martin@ximian.com>
13439         * reflection.c (mono_reflection_create_runtime_class): Remove the
13440         hack for generic type definitions and non-`Run' assemblies.
13441         (mono_reflection_bind_generic_parameters): Also use
13442         `klass->wastypebuilder' to check for TypeBuilders.
13444 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13446         * class.c (mono_class_layout_fields): Fix calculation of has_references
13447         for generic types.
13449         * class.c (inflate_generic_class): Fix a leak.
13450         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
13451         for generic types.
13453 2005-07-11  Martin Baulig  <martin@ximian.com>
13455         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
13456         on error.
13458 2005-07-11  Martin Baulig  <martin@ximian.com>
13460         * loader.c (find_method): Also lookup in
13461         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
13463 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13465         * appdomain.c (mono_domain_unload): Don't free the error message
13466         before passing it to mono_get_exception_...
13468         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
13469         
13470 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
13472         * threads.c: try to better guess an available RT signal (bug #75387).
13474 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13476         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
13477         and CACHE_OBJECT.
13479 2005-07-07  Martin Baulig  <martin@ximian.com>
13481         * class.c (mono_type_get_name_full): Return NULL for
13482         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
13483         fixes #75408.
13485 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13487         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
13488         exit the appdomain as well being aborted.
13490         * threadpool.c: Create all threadpool threads inside the root appdomain, and
13491         change back to the root domain after calling managed code. This enables
13492         appdomains using threadpools to be unloaded.
13494 2005-07-07  Martin Baulig  <martin@ximian.com>
13496         * class-internals.h
13497         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
13498         into `MonoDynamicGenericClass' since we only need it for dynamic
13499         types.
13501         * reflection.c (mono_class_bind_generic_parameters): We don't need
13502         to compute the `parent' here.
13504 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
13506         * culture-info-table.h : regenerated.
13508 2005-07-06  Martin Baulig  <martin@ximian.com>
13510         * icall.c
13511         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
13513         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
13515 2005-07-06  Martin Baulig  <martin@ximian.com>
13517         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
13518         we're doing a signature-only comparision; fixes #74945.
13520 2005-07-06  Martin Baulig  <martin@ximian.com>
13522         * class-internals.h (MonoGenericClass): Moved some things out into
13523         a new `MonoInflatedGenericClass' type.  
13524         (MonoInflatedGenericClass): New type; the `klass' of a
13525         `MonoGenericClass' is now computed lazyly in
13526         mono_get_inflated_generic_class().      
13528         * class.c (mono_get_inflated_generic_class): New public function.
13529         (mono_class_inflate_generic_method): Removed the unused
13530         `MonoClass *' argument.
13531         (setup_generic_vtable): Don't call mono_get_inflated_method() on
13532         all the methods.
13533         (mono_class_create_generic): Make this static and merge it with
13534         mono_class_create_generic_2(); we're now called automatically from
13535         mono_get_inflated_generic_class().
13537         * loader.c (mono_method_signature): Call
13538         mono_get_inflated_method() here.
13540 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
13542         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
13543         type of fields with RVA.
13545         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
13546         for this pseudo class.
13547         (my_mono_class_from_generic_parameter): Likewise.
13548         (mono_class_init): Allow interfaces to have cctors.
13550 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13552         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
13553         lazily for AOT methods.
13555 2005-07-05  Martin Baulig  <martin@ximian.com>
13557         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
13558         returns FALSE for a successful match, not TRUE.
13560 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13562         * loader.c (mono_method_get_index): Optimize this a bit.
13564 2005-07-04  Martin Baulig  <martin@ximian.com>
13566         * class.c
13567         (class_compute_field_layout): Move the check for generic type
13568         definitions into mono_class_layout_fields().  Fixes #74684.
13569         (mono_class_from_generic_parameter): Correctly compute
13570         `klass->parent'; fixes #75457.
13572         * reflection.c (register_assembly, register_module): Make sure
13573         `domain->rejobject_hash' is already created.
13575 2005-07-02  Martin Baulig  <martin@ximian.com>
13577         * class-internals.h
13578         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
13579         `MonoDynamicGenericClass'.      
13581 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
13583         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
13584         returned by a field getter is null, since null is a valid value.
13586 2005-07-01  Martin Baulig  <martin@ximian.com>
13588         * reflection.c (mono_reflection_generic_class_initialize): Update
13589         the `dgclass->fields [i].parent' to the correct class.
13590         (mono_image_get_fieldref_token): Use the declaring type, not the
13591         reflected type.
13593 2005-07-01  Martin Baulig  <martin@ximian.com>
13595         * loader.c (find_method): Also look in the interfaces; fixes #75429.
13597 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
13599         * threads.c (thread_cleanup): assert that thread != NULL
13600         (wait_for_tids_or_state_change): We were using the wrong variable
13601         when accessing wait->threads. `i' was always out of the bounds of
13602         the array.
13604 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13606         * loader.c: map user32 and kernel32 to libMonoSupportW
13608 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13610         * appdomain.c (unload_thread_main): Mark this as WINAPI.
13612 2005-06-28  Martin Baulig  <martin@ximian.com>
13614         * loader.c (method_from_methodspec): Fix #75334.
13616 2005-06-28  Martin Baulig  <martin@ximian.com>
13618         Fix #74953 - Arrays now implement the generic IList<T> interface
13619         on the 2.0 platform.
13621         * class-internals.h (MonoDefaults): Added `generic_array_class'.
13623         * reflection.c (mono_class_bind_generic_parameters): New public
13624         function; similar to mono_reflection_bind_generic_parameters(),
13625         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
13627         * domain.c (mono_init_internal): Try to initialize.
13628         `mono_defaults.generic_array_class' here; this'll only succeed if
13629         we're using the 2.0 corlib.
13631         * icall.c
13632         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
13633         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
13634         (mono_lookup_internal_call): Added support for nested classes.
13636         * loader.c
13637         (mono_get_method_from_token): Set `result->signature->pinvoke' if
13638         we're an interncall and have generic arguments.
13640         * class.c
13641         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
13642         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
13643         instance of System.Array.InternalArray<T> for arrays, so they
13644         implement the generic IList<T> interface.
13646 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
13648         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
13649         (chastamar@yahoo.com). Fixes #75374.    
13651 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
13653         * culture-info-table.h: regenerated.
13655 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13657         * icall.c: handle spaces correctly for base64 strings.
13659 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13661         * *.c: Kill some warnings.
13663 2005-06-23  Duncan Mak  <duncan@novell.com>
13665         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
13666         that this builds on Solaris 10 (x86).
13668 2005-06-23  Martin Baulig  <martin@ximian.com>
13670         * class.c
13671         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
13672         generic type definitions.
13674 2005-06-23  Martin Baulig  <martin@ximian.com>
13676         Fix #75331.
13678         * metadata.c (mono_class_get_overrides): Renamed to
13679         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
13680         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
13681         pass it to mono_get_method_full().
13683 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
13685         * reflection.c (mono_reflection_create_runtime_class): take the
13686         mono_domain_lock in this method. Prevents deadlocks
13688 2005-06-22  Martin Baulig  <martin@ximian.com>
13690         * loader.c (method_from_methodspec): Fix #75330.
13692 2005-06-22  Martin Baulig  <martin@ximian.com>
13694         * reflection.c (type_get_qualified_name): Use
13695         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
13696         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
13697         argument; use it if we don't have an assembly name.
13699 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
13701         * object.c: In mono_message_init, set "copy out" flag for in
13702         parameters with the [Out] flag.
13704 2005-06-21  Martin Baulig  <martin@ximian.com>
13706         * class.c
13707         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
13708         and MONO_TYPE_PTR.
13710 2005-06-21  Martin Baulig  <martin@ximian.com>
13712         * class.c (mono_class_init): Don't initialize `class->fields' for
13713         generic instances since they're initialized again in
13714         compute_field_layout(). 
13715         (compute_field_layout): Set the field's `generic_info' here; fix
13716         #75320. 
13718 2005-06-21  Martin Baulig  <martin@ximian.com>
13720         * class-internals.h
13721         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
13723         * metadata.c (mono_metadata_generic_method_equal): Also
13724         distinguish the `generic_class'; fixes #75334.
13726 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13728         * domain.c:
13729         * appdomain.c:
13730         * domain-internals.h:
13731         * reflection.c: 'domain_assemblies' field is now protected by its own
13732         lock. Don't call into managed code to run the AssemblyLoad event if we
13733         now there are no registered delegates for it.
13735 2005-06-20  Martin Baulig  <martin@ximian.com>
13737         * class.c (mono_class_is_assignable_from): Use a custom version of
13738         mono_class_has_parent() to make things work for generic instances;
13739         fix #75300.
13741 2005-06-20  Martin Baulig  <martin@ximian.com>
13743         * loader.c (method_from_methodspec): Apply a patch from
13744         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
13746 2005-06-20  Martin Baulig  <martin@ximian.com>
13748         * class.c (mono_class_init): Reverted Zoltan's last change; it
13749         breaks generics.
13751 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13753         * threads.c (wait_for_tids_or_state_change): Add missing locking.
13755 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13757         * socket-io.c: fix the index in the socket array for writable/error
13758         sockets. Fixes bug #75306.
13760 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13762         * class.c (mono_class_init): Allow interfaces to have static ctors.
13764 2005-06-17  Martin Baulig  <martin@ximian.com>
13766         * loader.c (method_from_methodspec): Use `context->container' when
13767         parsing the `gmethod->inst'.
13769 2005-06-17  Martin Baulig  <martin@ximian.com>
13771         * class.c (mono_type_get_name_recurse): Don't add the assembly
13772         name for type arguments.
13774 2005-06-15  Martin Baulig  <martin@ximian.com>
13776         * reflection.c (mono_image_get_inflated_method_token): Encode
13777         correct klass; fixes #75260.
13779 2005-06-13 Michal Moskal <malekith@nemerle.org>
13781         * icall.c: Make GetCorrespondingMethod/Constructor take
13782         MonoReflectionMethod method not MonoMethod. Removed
13783         MonoType.GetCorrespondingField, and make
13784         MonoGenericType.GetCorrespondingField take name not
13785         MonoClassField.
13787 2005-06-13  Michal Moskal <malekith@nemerle.org>
13789         * reflection.c (field_encode_signature, encode_locals):
13790          Make sizes of buffers for types larger (for big generic types).
13791          (create_generic_typespec,
13792          mono_reflection_sighelper_get_signature_local,
13793          mono_reflection_sighelper_get_signature_field):
13794          Add asserts for too small buffers.
13796 2005-06-15  Martin Baulig  <martin@ximian.com>
13798         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
13799         if our parent is not a dynamic type.
13801 2005-06-15  Martin Baulig  <martin@ximian.com>
13803         * class-internals.h (MonoTypeNameFormat): New enum.
13805         * class.c
13806         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
13807         (mono_type_get_full_name): Removed.
13808         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
13809         argument instead of the boolean's.
13811         * icall.c (ves_icall_System_MonoType_getFullName):
13812         Added `gboolean assembly_qualified'.    
13814         * reflection.h
13815         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
13817         * reflection.c (mono_reflection_parse_type): Parse the new type
13818         name format.
13820 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13822         * icall.c: no need to convert from utf16 to utf8 and then back again
13823         after the call to GetLogicalDrives.
13825 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13827         * icall.c: frombase64. Fix problems exposed by new tests.
13829 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13831         * icall.c: added internal calls for converting char [] and strings in
13832         base64 into byte [].
13834 2005-06-10  Martin Baulig  <martin@ximian.com>
13836         * class.c (mono_class_create_generic_2): Read the nested classes
13837         from the metadata rather than from `gklass->nested_classes' since
13838         `gklass' might not be initialized yet.
13840 2005-06-09  Duncan Mak  <duncan@novell.com>
13842         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
13843         all public headers. Fixes #74919.
13845 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
13847         * domain.c: The key for proxy_vtable_hash is now a pointer
13848         array. Added new GHashFunc and GCompareFunc functions for this.
13850         * class.h: The list of interfaces in MonoRemoteClass is known in
13851         advance and can't grow (we create a new MonoRemoteClass if needed),
13852         so now the interface array can be allocated together with
13853         MonoRemoteClass.
13854         
13855         * object.c: Added a new method create_remote_class_key.
13856         Fixed mono_remote_class so it does not depend on
13857         mono_upgrade_remote_class.
13858         Removed extend_interface_array.
13859         Added new method clone_remote_class(), which makes a copy of a remote
13860         class and adds a new interface or class to it.
13861         mono_upgrade_remote_class() now creates a new remote class (or gets
13862         it from the cache) if an vtable upgrade is needed. In this way
13863         we make sure that other objects sharing the same remote class
13864         don't get the new vtable with unwanted interfaces.
13865         
13866         * object-internals.h:
13867         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
13868         
13869         * marshal.c: Track changes in mono_upgrade_remote_class().
13871 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
13872         * icall.c: Add runtime methods for obtaining members of inflated
13873         class, which were created from supplied non-inflated members. It
13874         is used in internal Get{Method,Constructor,Field} methods in
13875         System.Type
13877 2005-06-09  Martin Baulig  <martin@ximian.com>
13879         * reflection.c
13880         (mono_reflection_bind_generic_method_parameters): Fix #75169.
13882 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13883         * reflection.c (mono_image_basic_init): Define
13884         Version in MonoDynamicAssembly. 
13885         
13886 2005-06-08  Martin Baulig  <martin@ximian.com>
13888         Fix #75136.
13890         * loader.c
13891         (mono_method_signature_full): New public method; takes a
13892         `MonoGenericContext *'.
13893         (find_method): Use mono_method_signature_full() and pass the
13894         klass'es context to it.
13896         * class.c (mono_class_is_inflated_method): Use
13897         mono_method_signature_full() and pass the context to it.
13899 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
13901         * object.c: add proper locking in mono_remote_class_vtable(),
13902         fixes possible memory corruption.
13904 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
13906         * marshal.c (mono_remoting_marshal_init): set
13907         initialized after initialization.
13909 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13911         * locales.c : hush.
13913 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
13915         * object.c (extend_interface_array): fix really silly
13916         memory corrupting / comparison bug.
13918 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13920         * reflection.c: Functions added to support the creation
13921         of CustomAttributeData, which includes Attribute data
13922         used by ReflectionOnly methods.
13924         * reflection.h:  mono_reflection_get_custom_attrs_data and
13925          mono_custom_attrs_data_construct added (functions exposed).
13927          * icall.c: Added mono_reflection_get_custom_attrs_data
13928          as icall.
13929         
13930 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13932         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
13933         lupus's request.
13935 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
13937         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
13939         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
13940         dynamic DllImportAttribute.
13942         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
13943         dynamic DllImportAttribute.
13945         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
13946         Fixes #75162.
13948 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13950         * threads.c: avoid segfault when an unstarted thread is aborted.
13952 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
13954         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
13955         Returns the name and version of the runtime for reporting.
13957 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13959         * appdomain.c: bump corlib version.
13960         * object-internals.h: new field in MonoReflectionAssembly.
13962 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13964         * object-internals.h: Carlos forgot to add this field.
13966 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13968         * icall.c: Added create_version to create instances
13969         of Version of MonoReflectionAssemblyName. This change helps
13970         the AssemblyName tests to keep running fine.
13971         
13972 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
13973   
13974         * object.c (mono_method_return_message_restore): A somehow less
13975         intrusive fix for #75138.
13977 2005-06-03  Raja R Harinath  <rharinath@novell.com>
13979         * object.c (mono_method_return_message_restore): Fix computation
13980         of expected number of out args.
13982 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13984         * reflection.c (mono_image_get_method_info): Fix the case when the
13985         charset is empty.
13987 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
13989         * object.c: Added missing null check in
13990           mono_method_return_message_restore.
13992 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13994         * reflection.c (mono_image_get_method_info): Handle the case when
13995         dllentry is empty.
13997 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
13999         * object.c: When creating the vtable for a proxy, take into account
14000         all inherited interfaces, not only the ones registered in
14001         iclass->interfaces. This fixs bug #74996.
14002         Also, in mono_method_return_message_restore, verify that the array
14003         of out args has the expected lengh.
14005 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14007         * socket-io.c: update the timeout in Poll when the call is interrupte.
14009 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14011         * socket-io.c: support abort/suspend in Select_internal after last
14012         change.
14014 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14016         * threadpool.c: remove warning.
14018 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14020         * icall.c:
14021         * socket-io.[ch]: Select_internal uses poll() now when available, thus
14022         removing the 1024 limit from select(). Runtime part of the fix for
14023         bug #71203.
14025 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14027         * socket-io.c: when resolving the addresses for the same
14028         host returned by gethostname(), get the local IPs from the interface
14029         list. Loopback addresses are discarded if the are interfaces up with
14030         non-loopback ones. Fixes bug #63265.
14032 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
14034         * appdomain.c, verify.c, object-internals.h, reflection.c:
14035         bumped corlib number to 36, and added new extra_flags field
14036         to ReflectionMethodBuilder and friends.  Fixes #75060.
14038 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
14040         * gc.c: register a new weak link only if the object is non-null
14041         (fixes bug#75047).
14043 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14045         * culture-info.h : short time pattern too.
14047 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14049         * culture-info.h : expand long time pattern string length.
14051 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14053         * culture-info-table.h : update (more French date format; #72788).
14055 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
14057         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
14058         the method is static. Fixes #75029.
14060 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
14062         * reflection.c: Update the table_idx field of method builders after
14063         saving the module, since it can change. This is a workaround for
14064         bug #74914. 
14066 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14068         * culture-info-table.h : update (additional French date format).
14070 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
14072         * icall.c (ves_icall_type_Equals): Revert last change.
14073         
14074         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
14076         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
14078 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
14080         * class-internals.h: Added executioncontext_class field to 
14081         MonoDefaults structure.
14082         * domain.c: Cache System.Threading.ExecutionContext class in 
14083         mono_defaults.
14084         * object.c: Capture the ExecutionContext for asynchroneous calls in
14085          mono_async_result_new.
14086         * object-internals.h: Added execution_context and original_context 
14087         fields to MonoAsyncResult. Added execution_context to MonoThread.
14088         * security-manager.c|.h: Added mono_get_context_capture_method to 
14089         return the capture method (if required by the security manager or by
14090         the framework version used).
14091         * threadpool.c: Apply capture (if present) ExecutionContext in 
14092         mono_async_invoke and revert to original context after it completes.
14094 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
14096         * culture-info-table.h : updated (real hacky solution for zh-CHT).
14098 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
14100         * culture-info-table.h : zh-CHT related workaround.
14102 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14104         * marshal.c (emit_marshal_custom): Add some error checking and call the
14105         methods in the ICustomMarshaler interface. Fixes #74875.
14106         
14107         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
14108         native->managed wrappers.
14110 2005-05-12  Martin Baulig  <martin@ximian.com>
14112         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
14113         here and use the loader lock.
14115         * mono-debug.c: Properly lock when the debugger is not attached.
14116         (mono_debug_init): Release the initial lock if we're not running
14117         in the debugger.
14119 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14121         * marshal.c (emit_marshal_custom): Pass through NULL values without
14122         calling the custom marshalling routines.
14124         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
14125         conversion in structures. Fixes #74882.
14127 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
14129         * culture-info-table.h : zh-* cultures were missing.
14131 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
14133         * threads.c: Added a new event background_change_event which is signaled
14134         when a thread changes its background mode.
14135         Moved here several checks previously done in managed code. The checks
14136         require the thread lock, and using the thread lock in managed code
14137         can result in deadlocks.
14138         Merged Start_internal and Thread_internal into a single method. Now 
14139         Thread_internal does all work of creating and starting a thread.
14140         Added icalls for setting and getting the state of the object. Moved from
14141         managed code to avoid locking there.
14142         Added wait_for_tids_or_state_change() which is called instad of
14143         wait_for_tids when waiting for non-backround threads to end. This method
14144         will return if one of the threads ends or the background_change_event
14145         is signaled.
14146         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
14147         the background mode. This method signals the background_change_event
14148         event.
14149         * icall.c:
14150         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
14151         removed Start_internal.
14152         
14153 2005-05-11  Martin Baulig  <martin@ximian.com>
14155         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
14156         to order of some fields to get proper alignment on 64-bit machines.
14158 2005-05-11  Martin Baulig  <martin@ximian.com>
14160         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
14161         changes as they're broken and completely fuck up the debugger.
14163         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
14165 2005-05-10  Martin Baulig  <martin@ximian.com>
14167         * reflection.c (mono_reflection_generic_class_initialize): Don't
14168         call mono_class_setup_parent() here.
14170 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14172         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
14173         send/receive timeout use an integer in milliseconds. We were using a
14174         struct timeval.
14176 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14178         * locales.c:
14179         (internal_get_cultures): reserve the first slot of the array for the
14180         InvariantCulture, which will be filled in managed code.
14182 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
14184         * reflection.c (mono_image_fill_module_table): Initialize the
14185         GENERATION field as well.
14187 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14189         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
14190         Monitor.Enter on the object.
14192 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
14194         * threads.c: Enable the wait for running threads when exiting.
14195         * icall.c: Suspend all threads before exiting.
14197 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
14199         * assembly.c (mono_assembly_load_reference): Fix warning.
14201 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14203         * threadpool.c: changed the default number of threads per cpu. From now
14204         on, the default will be 20 + (5 * number of cpus) instead of 50.
14206 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
14208         * loader.c (mono_method_get_signature_full): Add locking here.
14210 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
14212         * appdomain.c: Moved methods for parsing and freeing assembly
14213         names to assembly.c.
14214         * assembly.c, domain-internals.h: Created public methods for parsing
14215         assembly names. Fixed mono_assembly_load_with_partial_name:
14216         it now finds the best match, taking into account the version,
14217         token and culture specified in the partial name. Also return
14218         the latest version if no version information is specified.
14220 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
14222         * threadpool.c: replace check for SocketAsyncCall class.
14224 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14226         * threadpool-internals.h:
14227         * Makefile.am: added threadpool-internals.h
14229         * threadpool.c: call mono_unhandled_exception on exceptions not handled
14230         that happen in threadpool threads (tested on MS).
14231         (mono_thread_pool_remove_socket): new function that dispatch any pending
14232         AIO call on a socket that is closing. By now only epoll really needs it,
14233         as select/poll wake up when the socket closes.
14236         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
14238 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
14240         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
14242 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
14244         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
14246 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
14248         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
14249         has an abort request, convert it into a suspend request.
14251 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
14253         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
14254         warning for the usage of `UnmanagedFunctionPointerAttribute' which
14255         is not supported yet.
14257 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14259         * image.c: register assemblies loaded from data (bundles) in the loaded
14260         assemblies hash. Fixes bug #74772.
14262 2005-04-29  Martin Baulig  <martin@ximian.com>
14264         * class.c (mono_type_get_name_recurse): Update to the new naming
14265         schema from the latest .NET 2.x beta2.
14266         (mono_class_setup_vtable_general): If we're a generic instance,
14267         copy the vtable from our generic type definition and inflate all
14268         the methods in it.
14270         * loader.c (find_method): Update to the new naming schema from the
14271         latest .NET 2.x beta2.
14273 2005-04-29  Raja R Harinath  <harinath@gmail.com>
14275         * class.c (mono_class_init): Add a mono_loader_unlock to the
14276         #74734 fix.
14278 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
14280         * icall.c (ves_icall_System_Environment_Exit): Remove the 
14281         suspend_all_other_threads () call for the time being, since it can hang.
14283         * threads.c (mono_thread_manage): Similarly, disable the waiting for
14284         the background threads to exit, since it can also hang.
14286         * class.c (mono_class_init): Applied patch from Ankit Jain 
14287         (radical@gmail.com). Avoid pending init errors when a field refers
14288         to a nested class using a typeref. Fixes #74734.
14290         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
14291         this for dynamic modules.
14293 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14295         * threads.c: don't wait for threads that are in the process of aborting
14296         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
14297         and waiting for background threads to finish. This makes xsp and
14298         mod-mono-server exit without random length delays and/or hangs.
14300 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14302         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
14304 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
14306         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
14307         dynamic types to prevent infinite loops. Fixes #74727.
14309         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
14310         ..._is_assignable_to.
14312 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
14314         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
14316 2005-04-25  Martin Baulig  <martin@ximian.com>
14318         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
14320         * domain.c
14321         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
14323         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
14325         * reflection.c (build_compressed_metadata): Set metadata header
14326         version to 2.0.
14328 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
14330         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
14331         number into an integral and a decimal part. Fixes #70473.
14333         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
14335 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
14337         * culture-info-table.h : reflected the latest locale-builder output.
14339 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14341         * threadpool.c: check for SuspendRequested too when deciding if
14342         mono_thread_interruption_checkpoint should be called.
14344 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14346         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
14347         * threads.c: remove interruption_mutex and use Interlocked instead. When
14348         suspending all the threads, wait for all the suspended events at once.
14349         If we're shutting down and get an APC that is going to be queued,
14350         call mono_thread_execute_interruption immediately, as the thread might
14351         be sleeping on a pthread condition or mutex.
14353         * icall.c: call mono_runtime_set_shutting_down before suspending the
14354         threads.
14356         Fixes bug #74693. And now xsp is happier when exiting.
14358 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
14360         * loader.c (mono_stack_walk): Fix #74690.
14362 2005-04-22  Martin Baulig  <martin@ximian.com>
14364         * mono-debug.h (MonoDebugMethodJitInfo): Added
14365         `MonoDebugMethodJitInfo *jit'.
14367         * mono-debug.c (mono_debug_read_method): Cache the
14368         MonoDebugMethodJitInfo in `address->jit'.
14369         (mono_debug_free_method_jit_info): New public method.
14371 2005-04-22  Martin Baulig  <martin@ximian.com>
14373         * class.c (mono_class_is_assignable_from): Disallow
14374         type parameter -> interface.
14376 2005-04-21  Dick Porter  <dick@ximian.com>
14378         * threads.c (mono_thread_create): Turn an assertion into an error.
14380 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
14382         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
14383         
14384         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
14385         Fix some gcc 4.0 warnings.
14387 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
14389         * file-io.c: fix alt dir separator char on unix systems
14390         and cleanup (fixes bug #71214).
14392 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
14394         * marshal.c: Use CALLVIRT instead of CALL when dispatching
14395         a call to a remote domain, since the method may be an
14396         interface method in the client domain. This fixes bug #74192.
14398 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14400         * threadpool.c: recv/send are now performed before going back to managed
14401         code to save one transition.
14403 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14405         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
14407         * metadata/threadpool.c: removed hack to workaround the bug above.
14409         Fixes bug #74618.
14411 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
14413         * reflection.c reflection.h: Fix handling of parameter defaults in
14414         dynamic methods. Also fixes handling of parameter attributes.
14415         Fixes #74609.
14417         * mono-debug.c (mono_debug_close_image): Fix warning.
14419 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14421         * socket-io.h: replaced old unused field with new 'blocking'.
14422         * threadpool.c: restore socket blocking state on windows(tm).
14424 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
14426         * icall.c: don't return the codebase in the AssemblyName[] returned by
14427         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
14428         * object-internals.h: Removed FIXME (fields were presents) and fixed
14429         versioncompat declaration.
14431 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14433         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
14434         not closed, so don't cleanup when it happens.
14436 2005-04-13  Chris Toshok  <toshok@ximian.com>
14438         * mono-debug-debugger.h: change prototype for
14439         mono_debugger_lookup_type.
14441         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
14442         this function, although it should probably be named
14443         mono_debugger_init_type.
14445 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14447         * threadpool.c: fix non-AIO case.
14449 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
14451         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
14452         the built-in profiler to measure just JIT compilation times.
14454 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14456         * threadpool.c: the epollfd might be closed by another thread at
14457         any time, so ignore EBADF at treat it as a "we're closing" sign.
14459 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14461         * threadpool.c: release the semaphores with a count equals to the number
14462         of working threads in both IO and regular pools. Fixed typo that messed
14463         up the count of IO pool threads. Don't initialize the pipe handles if
14464         we're using epoll.
14466 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14468         * threadpool.c: some systems don't like a NULL when deleting the socket
14469         from epoll.
14471 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14473         * threadpool.c: fix semaphore allocation.
14475 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14477         * threadpool.c: added epoll() based implementation for asynchronous IO
14478         that is used instead of the default poll() when available.
14479         It can be disabled by setting MONO_DISABLE_AIO.
14481 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14483         * threadpool.c: windows needs 'closesocket' and instead of returning
14484         0 when the stream is closed while in select, it returns -1. Fixes bug
14485         #74573.
14487 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
14489         * class.c (class_compute_field_layout): Fix the regression caused by
14490         the previous try.
14492 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14494         * threadpool.c: separate pool for socket async. IO.
14495         * threadpool.h: mono_max_worker_threads is not a global any more.
14497 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
14499         * class.c (class_compute_field_layout): Fix #74549.
14501 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14503         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
14504         use 2 connected sockets instead.
14506 2005-04-08  Miguel de Icaza  <miguel@novell.com>
14508         * mono-config.c: Add new entry point for mkbundle
14509         mono_config_parse_memory. 
14511 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14513         * threadpool.c: removed another unused function.
14515 2005-04-08  Ankit Jain  <radical@corewars.org>
14517         * reflection.c (get_default_param_value_blobs): Add 'types'
14518         parameter to get the types encoded in the constant table.
14519         (mono_param_get_objects): Use the type from the constant table,
14520         not the type of the parameter, when creating default values.
14521         Handle null default values correctly.
14523 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14525         * file-io.c:
14526         * file-io.h:
14527         * threadpool.c:
14528         * threadpool.h:
14529         * icall.c:
14530         * socket-io.c: removed dead code for async IO.
14532 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14534         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
14536         * threadpool.c: intercept socket async. calls and pass them to a thread
14537         that is polling and dispatching the job items to the threadpool as
14538         socket become ready. Fixes bugs #71217, #71933.
14540         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
14541         between char and short/ushort arrays.
14543         * socket-io.c: remove dead code.
14545 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14547         * locales.c,
14548           icall.c : removed InternalToUpper_Comp() and
14549           InternalToLower_Comp().
14551 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14553         * char-conversions.h : The tables were incorrectly generated. Should
14554           be generated against invariant culture.
14556 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
14558         * object.c (mono_runtime_invoke_array): Fix return value when 
14559         passing pre-created valuetype objects to ctors.
14561         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
14562         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
14563         Fixes #74338.
14565 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
14567         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
14568         only used with --security and hides the wrong corlib version error.
14570 2005-03-30  Joshua Tauberer  <tauberer@for.net>
14572         * class.c: Changed mono_class_name_from_token so that types
14573         outside of a namespace don't have an initial period.  Improved
14574         the g_warning message used in _mono_class_get when loading
14575         fails.
14576         * assembly.c: In mono_assembly_load_reference, when an assembly
14577         can't be found, "No such file or directory" is misleading and
14578         unhelpful because a few paths were checked for the presence of
14579         the assembly.  When that happens (ENOENT), display a nicer
14580         message indicating the directories that were searched.  In all
14581         cases, the warning is made easier to read for non-hackers.
14583 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
14585         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
14586         project/solution.
14587         * appdomain.h|domain.c: Removed inline from functions.
14588         * appdomain.c: Reduced warnings when compiling on windows.
14589         * icall.c: Fixed output_debug declaration to gunichar2*.
14590         * mono-config.c: Reduced warnings when compiling on windows.
14591         * rand.c: Added missing "windows.h". Added missing return value.
14592         * rawbuffer.c: Added missing winsock2.h for windows.
14593         * sysmath.h: Added mono-compiler.h header to allow/ease 
14594         compilation with non-GCC compilers.
14595         * threads.c: Fixed declarations to compile with VS.NET C compiler.
14596         Removed cast warnings.
14598         Adapted from the work of J Lothian (for VC6).
14600 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
14602         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
14603         from default_path.
14605 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
14607         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
14608         the 2.0 profile.
14610 2005-03-27  Raja R Harinath  <harinath@gmail.com>
14612         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
14613         has to be in $(exec_prefix).  $(prefix) is for arch-independent
14614         stuff, and it would probably use $(prefix)/share rather than
14615         $(prefix)/lib.
14617 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14619         * console-io.c: added 2 includes that might be missing.
14621 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
14623         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
14624         profile.
14626         * reflection.c (create_custom_attr): Allocate the params array using
14627         alloca so it gets GC tracking.
14629 2005-03-23  Chris Toshok  <toshok@ximian.com>
14631         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
14632         out some spew.
14634 2005-03-24  Raja R Harinath  <rharinath@novell.com>
14636         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
14637         changes to pick up any changes in prefix, etc.
14639 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14641         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
14642         
14643         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
14644         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
14646 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14648         * class-internals.h object-internals.h class.c reflection.c: Extend the
14649         mono_lookup_dynamic_token () function to return the class of the
14650         token as well. 
14652         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
14653         well. Fixes #73848.
14655 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
14657         * security-manager.c: Skip inheritance checks for intra-corlib
14658         class inheritance and method overrides. This skips a lot of checks
14659         and (anyway) permissions cannot work until corlib is loaded.
14661 2005-03-23  Martin Baulig  <martin@ximian.com>
14663         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
14664         MONO_TYPE_GENERICINST.  
14666 2005-03-23  Martin Baulig  <martin@ximian.com>
14668         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
14670 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14672         * class.c: added locking comments to some functions.
14673         Cache the interface offsets arrays (saves about 20 KB
14674         of runtime memory in a typical app).
14675         Reduce the time overhead in mono_class_setup_supertypes ().
14677 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
14679         * icall.c: speedup and fix leaks in GetMethodsByName and
14680         GetPropertiesByName.
14682 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14684         * reflection.c: some locking fixes.
14686 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14688         * metadata.c: added missing break in case statement.
14690 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
14692         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14693         typedbyref return values. Fixes #73941.
14695 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
14697         * security-manager.c|h: Added demandunmanaged method and 
14698         suppressunmanagedcodesecurity class to MonoSecurityManager.
14699         Renamed aptc class to allowpartiallytrustedcallers.
14701 2005-03-17  Martin Baulig  <martin@ximian.com>
14703         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
14705 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14707         * file-io.c: disabled file async. IO using aio_*. It uses the
14708         threadpool now. Workaround for bug #73718.
14710 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14712         * assembly.h, mono-config.c: added code to deal with bundled configs
14713         for bundled assemblies.
14715 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
14717         * *.c, private.h: cleanup, removing old private.h header file.
14719 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
14721         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
14722         and throw_on_unmappable_char attributes.
14724 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
14726         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
14727         _ProcessName_internal.
14729 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
14731         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
14732         #73631.
14734         * icall.c threads.c threads-types.h: Remove slothash icalls as they
14735         are no longer used.
14737 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
14739         * object.c (compute_class_bitmap): Add support for generics. Fixes
14740         #73527.
14742 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14744         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
14746 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14748         * filewatcher.c: commented out the code for windows watcher, as we don't
14749         use it (we use the managed implementation instead).
14751 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14753         * object-internals.h (MonoThread): Remove 'unused1' field.
14755         * appdomain.c: Bump corlib version.
14757         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
14759         * reflection.c (mono_reflection_create_runtime_class): Remove the
14760         AssemblyBuilder.Save optimization since it causes too many problems.
14762 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
14764         * exception.c|h: Added mono_get_exception_reflection_type_load to
14765         create a ReflectionTypeLoadException object.
14766         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
14767         to return NULL is a InheritanceDemand fails during reflection. Updated
14768         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
14769         ReflectionTypeLoadException if an InheritanceDemand fails during 
14770         reflection. Added icall mapping for GetLinkDemandSecurity.
14771         * security-manager.c|h: Added ves_icall_System_Security_
14772         SecurityManager_GetLinkDemandSecurity internal call to return the
14773         class and methods permissions set for a LinkDemand. Removed unused
14774         fields in MonoSecurityManager.
14776 2005-03-10  Martin Baulig  <martin@ximian.com>
14778         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
14779         it's a generic instance.
14781 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
14783         * reflection.c (mono_get_object_from_blob): Applied patch from
14784         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
14786         * class.c (mono_class_is_assignable_from): Another try at fixing 
14787         #73469 without breaking anything.
14789 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
14791         * class.c: (mono_class_is_assignable_from): Revert the last changes
14792         since they don't work with generics.
14793         
14794         * class.c (mono_class_is_assignable_from): Fix build bustage.
14796         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
14797         the managed IsAssignableFrom method. Fixes #73469.
14799         * reflection.c (mono_reflection_call_is_assignable_from): New helper
14800         function.
14802 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
14804         * object.c (mono_load_remote_field_new): Fix returning uninitialized
14805         memory when the remoting callback does not sets the out arguments.
14806         Fixes #73007.
14808         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
14809         by mistake.
14811         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
14813         * object-internals.h (MonoStackFrame): Sync with managed object layout.
14815         * appdomain.c: Bump corlib version.
14817 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
14819         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
14820         function.
14822         * threads.c (mono_thread_attach): Detect threads which are not started
14823         by the GC pthread wrappers.
14825 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
14827         * icall.c: Added new icall for RNG.
14828         * rand.c|h: Added new icall to open the RNG. This allows to share a 
14829         single handle on Linux to access /dev/urandom and fix #73183.
14831 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
14833         * object.c: setting the new vtable in a transparent proxy object must
14834         not change the GC descriptor.
14836 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14838         * object.c: fixed compilation without GCJ support.
14839         * reflection.c: for runtime-created types ensure klass->has_references
14840         is correct (bug #73215).
14842 2005-03-02  Martin Baulig  <martin@ximian.com>
14844         * class.c (mono_class_is_assignable_from): Make this work if
14845         `oklass' is a generic instance; fixes #72831.
14847 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14849         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
14850         with hasthis set.
14851         
14852         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
14854         * marshal.c: Reorganize native->managed marshalling code to also use
14855         the emit_marshal_... functions.
14857 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14859         * object.c: typed allocs have issues with bitmap sizes > 30,
14860         so check for max_set >= 30.
14862 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14864         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
14865         managed code. Fixes #73012.
14867         * metadata.h (MonoMarshalSpec): Add elem_mult field.
14869         * metadata.c reflection.c: Load/Emit elem_mult as well.
14870         
14871         * metadata.h (MonoMarshalSpec): Add comment.
14873         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
14875         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
14876         num_elem to -1 if not given.
14878         * object-internals.h (MonoReflectionMarshal): Add has_size field.
14880         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
14881         given values.
14883 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
14885         * null-gc.c (mono_gc_free_fixed): Was not compilable.
14887 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
14889         * reflection.c (encode_marshal_blob): Encode param_num field as well.
14891         * object-internals.h (MonoReflectionMarshal): Add param_num field.
14893 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14895         * object.c: generalized the reference bitmap creation
14896         and added hooks for the new GC.
14897         * class-internals.c: removed the gc_bitmap field from MonoClass.
14899 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14901         * domain.c: help the compiler to produce better code
14902         in mono_jit_info_table_find ().
14904 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14906         * object.c: make all allocations look typed.
14908 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14910         * socket-io.c: load Mono.Posix if it's not loaded already
14911         (fixes bug#73033).
14913 2005-02-24  Martin Baulig  <martin@ximian.com>
14915         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
14916         * reflection.c (dup_type): Likewise.
14918 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
14920         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
14921         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
14923 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14925         * domain.c, threads.c, object-internals.h: make the critical thread
14926         local vars use the fast access mode (even when we're compiled in
14927         a lib). Provide accessors to be used by the jit during codegen.
14929 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14931         * appdomain.c: Changed hook functios behavior to include
14932         support for the reflection only assemblies. Some icalls were changed
14933         to support the mentioned assemblies too. Signatures of static methods
14934         try_assembly_resolve and real_load now have an additional parameter:
14935         refonly.
14937         * assembly.c: General changes to mono_assembly_ methods to support
14938         reflection only api. Functions mono_assembly_open, mono_assembly_load,
14939         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
14940         suffix, to support an additional gbool parameter to specify whether
14941         the assembli is reflection only or not. Created some new hook functions 
14942         to add support for reflection only assemblies. Signatures of static 
14943         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
14944         have now an additional parameter: refonly.
14946         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
14947         indicating whether the assembly is reflection only or not.
14949         * exception.c: Add mono_get_exception_invalid_operation.
14951         * icall.c: Throw an InvalidOperationException when trying to invoke
14952         a property/method/event, or trying to set/get the value of a field.
14953         Also add an icall to retrieve the ref_only flag to the
14954         MonoReflectionAssembly.
14956 2005-02-23  Chris Toshok  <toshok@ximian.com>
14958         Part of fix for #72827.
14959         * mono-debug.c (mono_debug_add_method): add lexical block data to
14960         the info we write.  Kind of a hack at the moment - we copy the
14961         lexical block info from the MonoDebugMethodInfo to the
14962         MonoDebugMethodJitInfo here, before writing it.
14963         (mono_debug_read_method): read the lexical block info.
14965         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
14967         * debug-mono-symfile.h: add lexical block support.
14969         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
14970         support.
14972 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14974         * loader.c (mono_lookup_pinvoke_call): Fix warning.
14976         * object.c (mono_runtime_free_method): Call mono_free_method () and
14977         put the TODOs there.
14979         * loader.c (mono_free_method): Free up most memory allocated for 
14980         dynamic methods.
14982 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14984         * reflection.c: properly flag a Type argument to a
14985         named custom attr value (bug #72248).
14987 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14989         * reflection.c: reduce code duplication in named custom
14990         attribute encoding.
14992 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
14994         * reflection.c: properly encode custom attrs of type object
14995         (bug #72649).
14997 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14999         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
15001 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
15003         * socket-io.c: load System.dll if it's not loaded already
15004         (bug #72850 and #70477).
15006 2005-02-21  Martin Baulig  <martin@ximian.com>
15008         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
15009         generic instances.
15011 2005-02-21  Martin Baulig  <martin@ximian.com>
15013         * reflection.c (mono_image_build_metadata): We also need to
15014         "fixup" the MethodImpl table after we computed the final method
15015         indices.  Call fixup_methodimpl() to do that.
15016         (fixup_methodimpl): New private method.
15018 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
15020         * assembly.c: special case mscorlib.dll (bug#72536),
15021         patch from Carlos Alberto Cortez.
15023 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
15025         * threads-types.h threads.c: Fix build bustage.
15027         * threads.c: Use a union for long<->double conversions.
15029         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
15030         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
15032         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
15033         containing the checkpoint call with NOT_TAKEN.
15034         
15035         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
15036         checkpoint before pushing the arguments, so they won't have to be
15037         spilled to stack.
15039 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15041         * domain.c, assembly.c, domain-internals.h: make some data
15042         const and relocation-free.
15044 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
15046         * object.c, appdomain.c, class-internals.h: introduce the
15047         MonoClassRuntimeInfo structure to hold the info needed to
15048         use a class at runtime. Made mono_class_vtable() lock-free
15049         for all the appdomains.
15051 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
15053         * metadata-internals.h, image.c: introduce a per-image mempool to
15054         be used for memory that has the same lifetime as the image.
15056 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
15058         * domain.c: In mono_init_internal(), instead of selecting the first
15059         runtime version supported by an executable, get a list of all
15060         supported versions and select the one for which an mscorlib exists
15061         (since even if the runtime supports a given version, it doesn't mean
15062         that the framework for that version is installed).
15063         Modified get_runtimes_from_exe to support this behavior.
15064         In supported_runtimes, added information about additional system
15065         assembly versions.
15066         
15067         * assembly.c: Added support for more than one system assembly version
15068         per runtime version. Updated the assembly list.
15069         In mono_assembly_remap_version, removed the initial version check,
15070         since we don't know to which version we need to compare until we
15071         get the version set on which the assembly is based.
15072         Moved the code for loading corlib into the new method
15073         mono_assembly_load_corlib(), so it can be used by the initialization
15074         code.
15075         
15076         * domain-internals.h: Updated data structures and added declaration
15077         for mono_assembly_load_corlib.
15079 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15081         * reflection.c (resolve_object): Fix the creation of the signature in 
15082         the SignatureHelper case.
15084         * assembly.c (mono_assembly_remap_version): Fix binary search.
15085         
15086 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
15088         * class.c: Added inheritance check when a method is overloaded (from a
15089         virtual method or when implementing an interface) and when a class is
15090         inherited. Added functions to set a failure for a class and to 
15091         retreive the exception from a failure.
15092         * class-internals.h: Added fields to MonoClass to keep the exception
15093         information status for inheritance (or other exceptions) to be thrown
15094         later (i.e. not at load time).
15095         * object.c: Throw the inheritance SecurityException when a type is to 
15096         be created with either class or method inheritance violations.
15097         * reflection.c|h: Fix when getting declsec from a class. Removed 
15098         unrequired code for class. Improved sanity in parameter naming.
15099         * security-manager.c|h: Added functions to check for class and method
15100         inheritance.
15102 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15104         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
15105         and has_finalize in dynamic types as well.
15107 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
15109         * culture-info-table.h : fixed currency format for en-GB (and so on).
15111 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
15113         * gc.c: ensure the GC handles never have 0 as a value.
15115 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15117         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
15118         a pointer to a struct to unmanaged code. Fixes #72625.
15120 2005-02-16  Martin Baulig  <martin@ximian.com>
15122         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
15124 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15126         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
15128 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15130         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
15132         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
15133         UnmanagedFunctionPointerAttribute, use it for determining calling convention
15134         etc. Fixes #71471.
15136         * reflection.c (mono_custom_attrs_get_attr): New helper function.
15138         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
15140 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
15142         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
15143         changes to make the current context a field in MonoThread.
15145 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15147         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
15148         the last change.
15149         
15150         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
15151         extracted from mono_marshal_get_native_wrapper.
15153         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
15154         to create wrappers around native functions.
15156         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
15157         delegates for arbitrary function pointers. Fixes #71472.
15159 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15161         * threads.c: cleaned up the code a little.
15163 2005-02-15  Martin Baulig  <martin@ximian.com>
15165         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
15166         the data table.
15168         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
15169         allocate larger chunks if needed.
15171 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15173         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
15174         in by mistake.
15176 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
15178         * domain.c: keep the domains in an array and ensure the domain ids
15179         are kept small, so they can be used as indexes to domain-specific data
15180         with a small memory overhead.
15182 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15184         * icall.c: Handle byref types in Type icalls. Fixes #72544.
15186 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
15188         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
15190 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
15192         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
15194         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
15195         values.
15197         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
15198         
15199 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
15201         * domain-internals.h: add the hashtable here.
15203         * class-internals.h: Remove `info' from MonoMethod
15205         * domain.c: Add a new hashtable, jit_trampoline_hash
15207 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15209         * object.c: don't set the value of static fields
15210         (fixes bug#72494).
15212 2005-02-11  Martin Baulig  <martin@ximian.com>
15214         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
15215         (mono_debug_add_method): Silently ignore the method if it's too big.
15216         (mono_debug_add_type): Likewise.
15218 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
15220         * threads.c, appdomain.c: remove #ifdefs from the code.
15222 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
15224         * metadata-internals.h: Added flags to MonoAssembly to cache the most
15225         common security informations. This allows us to stay in unmanaged code
15226         when doing LinkDemand and it's special cases (except for the first 
15227         time for initialization). The flags a very much used with --security.
15228         * reflection.c|h: Added code to get declarative security attributes 
15229         for LinkDemand and InheritanceDemand. This required to refactor the
15230         existing code for Demand.
15231         * security-manager.c|h: Added new method fields for the special cases
15232         of LinkDemand.
15234 2005-02-10  Martin Baulig  <martin@ximian.com>
15236         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
15237         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
15239 2005-02-10  Martin Baulig  <martin@ximian.com>
15241         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
15242         debugging code; this is almost a complete rewrite.
15244         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
15246 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15248         * domain.c, object.h: expose mono_string_equal () and 
15249         mono_string_hash ().
15250         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
15251         it's implemented in managed code.
15253 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15255         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
15256         lo leak objects between appdomains.
15258 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15260         * assembly.c: old compilers compilation fix from 
15261         robertj@gmx.net (Robert Jordan).
15263 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
15265         * class-internals.h: Little reminder for the future.
15267         * debug-helpers.c: Fix up wrapper_type_names
15269 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15271         * image.c, metadata-internals.h: when loading an image from a file,
15272         mmap all of it and use the same codepaths as when using a
15273         in-memory image: the code is simpler and we use less memory
15274         (both writable and readonly).
15276 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15278         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
15279         API to alloc runtime data structures that need to be tracked by the
15280         GC and contain pointers.
15281         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
15282         make the code more readable and eventually use a different GC.
15284 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
15286         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
15287         for out arguments.
15288         
15289 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
15291         * object.c: In release_type_locks(), don't release the cctor lock
15292         if it has already been released. This fixes a crash in the
15293         thread5 test.
15295 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15297         * gc.c, marshal.c, icall.c: register a delegate for finalization
15298         only when the native function pointer has been allocated for it.
15300 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15302         * object.c: cleaned up some code, allocate objects that are
15303         pointer free with the atomic malloc variant. Allocate memory
15304         for static data from the mempool if it's pointer-free.
15305         Allocate the bounds array at the end of the array data, when needed.
15306         * object-internals.h, object.h: move a private function in a private
15307         header.
15308         * class.c: handle missing case in tracking references in fields.
15310 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15312         * class.c, class-internals.h: keep track if a type has
15313         reference fields in either the instance or static fields.
15315 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
15317         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
15318         and renamed to MonoRuntimeInfo. Added fields to store the expected
15319         framework assembly version. Changed mono_get_framework_version and
15320         mono_get_runtime_version for a single mono_get_runtime_info method.
15321         
15322         * assembly.c: Added method to remap system assembly versions to the
15323         current executing runtime version. Removed old mapping code.
15324         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
15325         
15326         * icall.c, reflection.c: Track api changes.
15328 2005-02-06  Miguel de Icaza  <miguel@novell.com>
15330         * loader.c (method_from_memberref): Improve error reporting,
15331         produce the class name instead of the typeref/typedef index. 
15333 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
15335         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
15337 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15339         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
15340         stdcall and charset name mangling.  Reorganize the code and add
15341         some tracing stuff.
15343 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15345         * monodiet.c: More iters!
15347         * marshal.c: Iter usage.
15349         * icall.c: Iter usage.
15351         * object.c: Use iters.
15353         * debug-helpers.c: More iters
15355 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15357         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
15358         under win32.
15360 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15362         * mono-debug-debugger.c: use iters
15364         * class.c, class-internals.h: mono_class_setup_events is static
15365         now
15367         * All callers: use iters
15369 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15371         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
15372         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
15374 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15376         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
15378         * marshal.h: Add prototypes for ldfld/stfld_remote.
15380         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
15381         this is called during startup.
15382         
15383 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
15385         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
15386         MonoThreadsSync struct private in monitor.c. Changed the way
15387         MonoThreadsSync is allocated so it's faster and there is no
15388         need to keep track of it with a finalizer and it uses less memory.
15389         This also finally allows us to allocate mono objects as ptrfree when
15390         there are no reference fields.
15392 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
15394         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
15395         disappearing link to the GC interface and use them to simplify
15396         the gchandles code.
15398 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15400         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
15401         stfld_remote which call mono_load/store_field_new. This allows methods
15402         calling ldfld/stfld wrappers to be AOTed.
15404         * console-io.c: Include sys/filio.h under solaris.
15405         
15406         * console-io.c: Include curses.h if needed correctly.
15408 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15409         
15410         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
15411         method->klass as well.
15413         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
15415         * class.c (mono_class_init): Switch on lazy initialization of 
15416         methods.
15418         * class.c (mono_class_get_finalizer): Handle the case when the 
15419         finalizer is inherited.
15421 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15423         * console-io.c: <curses.h> is needed by term.h on solaris.
15425 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
15427         * icall.c, class-internals.h, monodiet.c, class.c: Remove
15428         mono_class_setup_properties where possible. Remove this ftn from
15429         the header file, and make it static.
15431 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15433         * loader.c: Add missing setup_... call.
15435         * class.c: Add missing setup_... calls.
15437         * class.c (mono_class_init): Switch on lazy initialization of 
15438         the generic vtable.
15439         
15440         * class.c (mono_class_init): Fix generics broken by the recent changes.
15442         * monodiet.c (handle_type): Add missing setup_... calls.
15444         * class.c: Back out garbage in previous patch.
15445         
15446         * class.c: Add missing setup_... calls.
15448         * class.c (mono_class_get_method_from_name_flags): Avoid calling
15449         mono_class_setup_methods () if possible.
15451         * class-internals.h (MonoClass): Add 'has_cctor' flag.
15453         * class-internals.h (MonoCachedClassInfo): New structure.
15455         * class.c: Initialize properties and events fields of MonoClass lazily.
15457         * class.c: Add infrastructure for lazily initializing the methods and
15458         vtable fields of MonoClass. Not yet used.
15460         * class.c (mono_class_get_finalizer): New helper function.
15462         * class.c: Add infrastructure for loading some class related data from
15463         an AOT file.
15465         * object.c: Add infrastructure for initializing the vtable from data
15466         in the AOT file.
15468         * gc.c (run_finalize): Use mono_class_get_finalizer ().
15470         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
15471         appropriate initialization function before accessing parts of the
15472         MonoClass structure.
15474         * marshal.c: Fix warnings.
15475         
15476         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
15478         * mono-debug-debugger.c (get_exception_message): Use 
15479         mono_class_get_method_from_name_flags ().
15481 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
15483         * reflection.c, appdomain.c: Replace a few manual searches that
15484         Zoltan missed. (Paolo approved this part of my initial patch).
15486 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
15488         * profiler.c: disable recording statistical events at report time.
15490 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15492         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
15493         to byteswap arrays of enum values, too (bug #72080).
15495 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15497         * appdomain.c (set_domain_search_path): Allow this to be called if
15498         domain->setup is not yet set.
15500         * loader.c (mono_method_get_index): New helper function.
15502         * loader.c reflection.c: Use mono_method_get_index ().
15504         * class.c (mono_class_get_method_from_name_flags): New helper method.
15506         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
15507         this.
15509         * class.c (mono_class_get_cctor): New helper method.
15511         * string-icalls.c object.c class.c marshal.c reflection.c: Use
15512         mono_class_get_method () to look up methods.
15514 2005-02-01  Miguel de Icaza  <miguel@novell.com>
15516         * console-io.c: Fix the build, this should work on Windows.
15518 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
15520         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
15521         be set to null to keep things valid
15523 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15525         * icall.c: added Console 2.0 icalls.
15526         * Makefile.am: added console-io.[ch]
15527         * console-io.[ch]: internal calls for Console 2.0 API.
15529 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15531         * class.c: make sure we consider all the interfaces
15532         when calculating max_interface_id (bug found by
15533         Jeroen Frijters running ikvm).
15535 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15537         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
15538         valuetype fields to null.
15540         * object.c (set_value): Ditto. Fixes #71669.    
15542 2005-01-31  Martin Baulig  <martin@ximian.com>
15544         * metadata.c (mono_metadata_has_generic_params): New public
15545         function; checks whether something is a generic method.
15547 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15549         * appdomain.c: fix infinite recursion when adding assemblies.
15551 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
15553         * object.c: Fix small typo to return all items for Environment.
15554         GetCommandLineArgs.
15556 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15558         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
15559         reflection.c: more domain and assembly-unload related fixes
15560         and memory leaks plugs.
15562 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15564         * 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.
15566 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15568         * loader.c (mono_method_signature): Make this method lazy
15569         (mono_get_method_from_token): Don't computate the signature here.
15571         Doing this saves quite a bit of memory. I got 90 kb on starting up
15572         monodoc. It should also save some disk reads on startup.
15574         * *: MonoMethod->signature might be NULL now. You *MUST* use
15575         mono_method_signature.
15577 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
15579         * object.c (mono_runtime_get_main_args): Return an array from the
15580         current domain here. Fixes #71938.
15582 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
15584         * monitor.c: formatting changes to comply with the
15585         mono coding style and remove #ifdefs from the code.
15587 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15589         * metadata.c, private.h: remove some unneeded data
15590         and use a more compact representation for table schemas.
15592 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
15594         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
15595         to get a better distribution in hash tables.
15596         * *.c: use mono_aligned_addr_hash() where appropriate.
15597         * assembly.c: make var static.
15599 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15601         * domain-internals.h: Put MonoJitInfo on a diet.
15603         * domain.c: Fix a warning.
15605 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15607         * gc.c: rework the gc handles code to reuse handles
15608         when freed.
15610 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15612         * domain.c: fixed long standing bug in mono_string_equal() which
15613         was brought to light with the ldstr changes.
15615 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
15617         * reflection.c: Remove warning by adding missing include for marshal.h
15619 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15621         * domain.c, object.c: change the ldstr_table to hold
15622         MonoString* as keys: makes the runtime isinterned lookup
15623         faster and simplifies memory management.
15625 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
15627         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
15628         possible to add imperative security checks before calling the icall.
15629         * reflection.c: Return security attributes on the original MonoMethod
15630         (and not the wrapped one). This fix permissions on icalls.
15632 2005-01-25  Dick Porter  <dick@ximian.com>
15634         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
15635         the check for mktime() support actually test the mktime() return
15636         value.  "Fixes" bug 71682, though the output is still different to
15637         MS.
15639 2005-01-25  Martin Baulig  <martin@ximian.com>
15641         * class.c (mono_class_is_assignable_from): Make this work for
15642         generic instances.
15644 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
15646         * marshal.c (mono_string_utf8_to_builder)
15647         (mono_string_builder_to_utf16): We might not have ownership of the
15648         string. In thise case, we need to create a new buffer.
15650         * object-internals.h (mono_stringbuilder_capacity): sb->str might
15651         be null, in which case, use the default capacity.
15653 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15655         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
15656         GC events to the profiler.
15658 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15660         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
15661         if you don't want the GC to run.
15663 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
15665         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
15666         start providing a GC API and keeping different implementations in
15667         their own file.
15668         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
15670 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
15672         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
15673         mmap rather than allocating a huge buffer.
15674         (mono_debug_close_mono_symbol_file): Free the buffer allocated
15675         above.
15677 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
15679         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
15680         and CheckExecutionRights.
15681         * reflection.c|h: Keep the index of the declarative security to be 
15682         used, instead of the pointer, when AOT compiler is used. Also add 
15683         class initialization when requesting demands.
15684         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
15685         CheckExecutionRights. Both properties are now FALSE by default, and
15686         unmodifiable, unless the --security option is used.
15688 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15690         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
15691         reflection.c: properly refcount images and assemblies, many leaks fixed.
15693 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15695         * threadpool.c: increase the timeout for threads in the thread pool to
15696         10s.  Fixes bug #67159.
15698 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
15700         * class-internals.h: Sun's compiler insists on explicit
15701         signed on bit fields to handle then correctly.
15703 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15705         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
15706         Make the size of the array fit only the number of invalid path
15707         chars that we have.
15709         * class.c (_mono_class_get): Improve the error reporting when a
15710         class referenced is not found, to assist debugging. 
15712 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
15714         * threads.c: fix off-by-one error.
15715         * domain.c: free data allocated in the domain.
15717 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15719         * reflection.c (mono_method_body_get_object): Fill out exception info
15720         as well.
15722         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
15723         structure.
15724         
15725 2005-01-19  Martin Baulig  <martin@ximian.com>
15727         * loader.c (mono_get_method_constrained): Make this work again.
15729 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15731         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
15732         guint16 to match the managed side.
15734         * reflection.c (mono_reflection_body_get_object): Fill out local
15735         variables array.
15737         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
15738         as well.
15740         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
15741         'local_var_sig_token'.
15743 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
15745         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
15746         System.Drawing.
15748         * reflection.c (mono_method_body_get_object): Handle abstract and
15749         runtime methods.
15751 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
15753         * marshal.c, loader.c, class-internals.h, reflection.c:
15754         store the emthod data for a wrapper in an array instead of a list.
15756 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
15758         * marshal.c: change the code to allocate memory more
15759         conservatively for method wrappers.
15761 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
15763         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
15764         fields from MonoClass to the marshal info structure where they belong.
15766 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15768         * class.c, object.c, class-internals.h, marshal.c: rearrange
15769         some fields and tweak some types to lower memory usage.
15771 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
15773         * threads.c (signal_thread_state_change): Handle the case when the
15774         target thread is the current thread.
15776         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
15778         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
15779         emit_ptr_to_object_conv. 
15781         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
15782         marshalling. Fixes #71352.
15784 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15786         * metadata.h, blob.h: move table enum to blob.h so it can be included
15787         in any header.
15788         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
15789         cut the size of MonoImage/MonoDynamicImage.
15791 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
15793         * profiler.c (mono_profiler_install_simple): Fix default arguments.
15795 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
15797         * reflection.c, reflection.h, icall.c: add a function to check
15798         if an attribute type is defined for a metadata object.
15800 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
15802         * object-internals.h: Added some needed fields from StringBuilder class.
15803         * marshal.c: Set the maxCapacity when creating a StringBuilder.
15805 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
15807         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
15808         threads before shutting down the runtime.
15810         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
15812 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15814         * object-internal.h, threads.c: implement stacksize and 
15815         parameterized thread start functionality (requires
15816         matching corlib). Marked broken code for later removal.
15818 2005-01-12  Martin Baulig  <martin@ximian.com>
15820         * class-internals.h (MonoGenericClass): Moved the `initialized'
15821         flag to MonoDynamicGenericClass, removed `init_pending'.
15822         (MonoGenericInst): Added `is_reference' flag.
15824 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
15826         * reflection.c (mono_image_create_pefile): Only set the pe_offset
15827         inside the MSDOS header. Fixes #71201.
15829         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
15830         gc thread.
15831         (mono_domain_finalize): Ditto.
15833 2005-01-12  Martin Baulig  <martin@ximian.com>
15835         * class.c (mono_get_shared_generic_class): Use the cache for
15836         non-dynamic generic classes.
15838         * class-internals.h (mono_class_create_generic_2): Removed
15839         function prototype, this function is now static inside class.c.
15841         * class.c (mono_class_create_generic_2): Made this static, only
15842         call it from mono_class_init() and mono_class_setup_parent().
15843         (collect_implemented_interfaces_aux): Call mono_class_init() on
15844         the interfaces we collect.
15845         (mono_class_setup_vtable): Call mono_class_init (class->parent).
15847 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15849         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
15850         it a real thread handle.
15852         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
15853         MonoJitExceptionInfo, since each catch clause needs its own variable.
15854         
15855 2005-01-11  Dick Porter  <dick@ximian.com>
15857         * image.c (mono_pe_file_open): New variant on mono_image_open()
15858         that does not set up the CLI metadata; used for FileVersionInfo so
15859         it can get the data for windows binaries too.
15860         
15861         * process.c (process_read_string_block): Don't read off the end of
15862         the StringTable block.
15864         These both fix bug 70766.
15866 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
15868         * gc.c: set some fields to NULL at GC cleanup time.
15869         * threads.c: if we quit the main thread, call exit ().
15871 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15873         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
15875 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
15877         * threads.h, threads.c, object.c: added accessor and settor for
15878         main_thread. Handle it specially when exiting from it: wait
15879         for other foreground threads to exit.
15881 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
15883         * process.c, verify.c: remove some bloat.
15885 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
15887         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
15888         the calling convention to cdecl under win32.
15890 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
15892         * object.c (mono_object_get_size): New function to get the size of
15893         an object instance.
15895         * profiler.c (simple_allocation): Use above.
15897 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
15899         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
15900         ves_icall_System_AppDomain_getRootDomain (as it's not required to
15901         get an appdomain by it's id and we can't assume the root's id is 0).
15902         * domain-internals.h: Change the function prototype to match.
15903         * icall.c: Change the icall table for AppDomain.
15905 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
15907         * locales.c (string_invariant_compare_char): Only compute
15908         GUnicodeTypes in the case where we need them.  Test for ordinality
15909         first and return if so.
15911         From the commit:
15913                 /*
15914                  * FIXME: here we must use the information from c1type and c2type
15915                  * to find out the proper collation, even on the InvariantCulture, the
15916                  * sorting is not done by computing the unicode values, but their
15917                  * actual sort order.
15918                  */
15920 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15922         * loader.c: for P/Invoke methods, allow the "Internal" shared
15923         library name to refer to the calling process symbol namespace.
15925 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
15927         * Makefile.am: Add the security manager to the build.
15928         * security-manager.c|h: New. Initialization of the security manager.
15930 2005-01-07  Dick Porter  <dick@ximian.com>
15932         * threads.c: 
15933         * monitor.c: Update thread state during Monitor and WaitHandle
15934         waits.  Fixes bug 71031.
15936 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
15938         * reflection.c (property_encode_signature): Correctly handle when the
15939         property has no methods.
15941 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
15943         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
15944         
15945         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
15946         fields from mb, not rmb. Fixes #71017.
15948         * marshal.c (emit_ptr_to_str_conv): Add support for 
15949         ByValTStr -> string conversion. Fixes #71015.
15951         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
15953         * mempool.c (mono_mempool_contains_addr): New helper function.
15955 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15957         * metadata.c (mono_metadata_compute_size): Fix size calculation of
15958         HasSematics encoded fields.
15959         
15960         * metadata.c (mono_type_to_unmanaged): Improve error message for 
15961         invalid string marshalling.
15963         * metadata.c: Fix warnings.
15964         
15965 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15967         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
15968         profiler support.
15970 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15972         * domain.c object.c domain-internals.h: Revert part of r38077 since the
15973         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
15974         tests.
15976 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
15978         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
15979         so methods containing these can be AOTed.
15981 2005-01-03  Martin Baulig  <martin@ximian.com>
15983         * loader.c (find_method): Removed the hack for generic instances.
15984         (method_from_memberref): If our parent is a generic instance, pass
15985         its generic type definition to find_method() and then inflate the
15986         method.
15987         (mono_get_method_constrained): Pass the generic type definition to
15988         find_method() and inflate the method later.
15990         * class-internals.h (MonoStats): Added `generic_class_count'.
15992         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
15993         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
15995         * reflection.c (mono_custom_attrs_from_params): Don't ignore
15996         generic type definitions.
15998 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
16000         * loader.c icall.c: Fix warnings.
16002 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
16004         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
16005         blittable types. Fixes #70864.
16007 2004-12-29  Martin Baulig  <martin@ximian.com>
16009         * icall.c
16010         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
16012         * reflection.c (mono_method_get_object): Create a
16013         "System.Reflection.MonoGenericMethod" for inflated methods; don't
16014         call mono_get_inflated_method().
16016         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
16018 2004-12-27  Martin Baulig  <martin@ximian.com>
16020         * class-internals.h (MonoMethod): Added `is_inflated' flag.
16021         (MonoMethodInflated): Added `inflated' field.
16023         * class.c (mono_class_inflate_generic_method): Don't really
16024         inflate the method here; just set the `is_inflated' flag in the
16025         MonoMethod.
16026         (mono_class_get_inflated_method): Actually inflate the method here
16027         if it's not already inflated; we use the MonoMethodInflated's new
16028         `inflated' field as a cache.
16030 2004-12-26  Martin Baulig  <martin@ximian.com>
16032         * class.c
16033         (inflate_generic_class): Moved some code out of inflate_generic_type().
16034         (mono_class_inflate_generic_method): If we're already inflated,
16035         inflate the context and use the declaring method; ie. make sure
16036         the declaring method of an inflated method is always the generic
16037         method definition.
16038         (mono_class_create_from_typedef): Create
16039         `class->generic_container->context->gclass'.
16041 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
16043         * metadata-internals.h, marshal.c, reflection.c: More
16044         MonoGHashTable->GHashTable.
16046         * domain-internals.h, class.c: Change MonoGHashTable's into
16047         GHashTables for some cases where no gc stuff is used
16049         All users: update apis
16051 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
16053         * metadata.c (builtin_types): Make this `const'. Makes this get
16054         put into the shareable section.
16055         (mono_metadata_init): Casts to make gcc happy.
16057 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
16059         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
16061 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
16063         * icall.c: Added an internal call to retrieve the position and length
16064         of assembly-level declarative security attributes (RequestMinimum, 
16065         RequestOptional and RequestRefuse). This is used by the Assembly class
16066         to re-create the corresponding permission sets.
16068 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
16070         * marshal.c: fix the stelemref wrapper to be type correct
16071         (and faster).
16073 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
16075         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
16076         to do key & 0x7fffffff. Hashtable already does this. It just
16077         results in longer code.
16079 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
16081         * appdomain.c: Bump corlib version.
16082         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
16083         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
16084         * reflection.c|h: Add functions to get declarative security infos
16085         (blob position and length) for assemblies, classes and methods.
16087 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
16089         * reflection.c: sort the constant table (bug #70693).
16091 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
16093         * object-internals.h, threads.c, domain.c: add accessors for
16094         the MonoThread and MonoDomain tls keys.
16096 2004-12-18  Martin Baulig  <martin@ximian.com>
16098         * class.c (inflate_generic_type): If we're inflating a generic
16099         instance, set `ngclass->context->container = context->container';
16100         ie. the container we inflated into.
16102         * metadata.c (mono_metadata_parse_generic_param): Reflect above
16103         inflate_generic_type() changes.
16105 2004-12-17  Martin Baulig  <martin@ximian.com>
16107         * class-internals.h
16108         (MonoGenericClass): Replaced `MonoType *generic_type' with
16109         `MonoClass *generic_class'.  Removed `dynamic_info'; if
16110         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
16111         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
16113 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
16115         * exception.c (mono_exception_from_token): New helper function.
16117 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
16119         * assembly.c (mono_assembly_load_with_partial_name): Call 
16120         mono_assembly_loaded before invoking the preload hooks. Fixes
16121         #70564.
16123         * object-internals.h (MonoThread): Change culture_info and 
16124         ui_culture_info into an array.
16126         * threads.c: Cache culture info objects from more than one appdomain.
16128         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
16129         current UI culture.
16131 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
16133         * threads.h threads.c appdomain.c: Clear the culture_info field of
16134         all threads during unloading if they point to an object in the dying
16135         appdomain.
16137 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
16139         * culture-info.h (TextInfoEntry): New struct
16140         * object-internals.h: sync with managed
16141         * locales.c: fill the `text_info_data' field
16142         * culture-info-tables.h: update
16144 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
16146         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
16147         collector.
16149 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
16151         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
16152         (ves_icall_ModuleBuilder_getMethodToken): Ditto
16154 2004-12-12  Martin Baulig  <martin@ximian.com>
16156         * mono-debug-debugger.c (write_type): If we're an enum and the
16157         builtin types have already been initialized, call mono_class_init().
16159 2004-12-11  Martin Baulig  <martin@ximian.com>
16161         * metadata.c (mono_metadata_load_generic_params): Added
16162         `MonoGenericContainer *parent_container' argument; automatically
16163         compute `container->is_method'; pass the correct owner to
16164         get_constraints().      
16166         * reflection.c (compare_genericparam): Sort the GenericParam table
16167         according to increasing owners. 
16169 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
16171         * profiler.c: allow disabling the default profiler.
16173 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
16175         * decimal.c, icall.c: allow disabling System.Decimal support.
16177 2004-12-09  Marek Safar <marek.safar@seznam.cz>
16179         * reflection.c: Add support for null attribute arguments.
16181 2004-12-09  Martin Baulig  <martin@ximian.com>
16183         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
16184         names to get rid of compiler warnings.
16186 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16188         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
16189         mono_marshal_load_type_info (). Fixes #69625.
16190         (mono_marshal_get_ptr_to_struct): Likewise.
16192 2004-12-08  Martin Baulig  <martin@ximian.com>
16194         * mono-debug.h: Bumped version number to 47.
16196         * mono-debug-debugger.c
16197         (mono_debugger_event_handler, mono_debugger_event): Take two
16198         guint64 arguments insteed of a gpointer and a guint32.  
16200 2004-12-08  Martin Baulig  <martin@ximian.com>
16202         * debug-mono-symfile.h
16203         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
16204         `address' to `native_offset'.
16206 2004-12-08  Martin Baulig  <martin@ximian.com>
16208         * class.c (mono_class_create_from_typespec): Only inflate if we
16209         either have `context->gclass' or `context->gmethod'.
16211 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16213         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
16215         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
16217         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
16219         * reflection.c (mono_assembly_get_object): Remove the workaround put
16220         in for the release.
16221         
16222         * appdomain.c: Use the corlib_internal field from MonoAssembly.
16224         * appdomain.c: Bump corlib version.
16226         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
16227         be visible in other appdomains.
16229 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
16231         * threads.c: Interlocked inc and dec for longs were messed up,
16232         use a KISS based impl for this. Fixes 70234
16234 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
16236         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
16238 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16240         * icall.c: fix to follow policy not to allow struct
16241         arguments in icalls.
16243 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16245         * process.c: make the patch that handles spaces in file paths work
16246         on mono/windows too.
16248 2004-12-06  Martin Baulig  <martin@ximian.com>
16250         * class.c (mono_class_create_generic): Call
16251         mono_class_setup_supertypes() if we're dynamic.
16252         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
16254 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
16256         * object-internals.h: Add new fields to MonoThread.
16258         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16260         * icall.c threads-types.h threads.c: Add new icalls.
16262         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
16264         * object-internals.h (MonoReflectionAssembly): Sync object layout with
16265         managed side.
16267         * appdomain.c: Bump corlib version.
16269         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
16270         internal assemblies. Fixes #69181.
16272 2004-12-05  Martin Baulig  <martin@ximian.com>
16274         * class.c (mono_class_inflate_generic_signature): Make this a
16275         no-op if `context' is NULL or we don't have any type parameters;
16276         also copy `sentinelpos'.        
16278 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
16280         * image.c: Add unbox_wrapper_cache.
16282         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
16284         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
16285         function generator.
16286         
16287         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
16288         Fixes #70173.
16290         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
16291         
16292 2004-12-04  Martin Baulig  <martin@ximian.com>
16294         * loader.c (mono_method_get_signature_full): New public function;
16295         like mono_method_get_signature(), but with an additional
16296         `MonoGenericContext *' argument.
16298         * class.c (mono_class_inflate_generic_signature): Formerly known
16299         as inflate_generic_signature(); make this public.
16301 2004-12-04  Martin Baulig  <martin@ximian.com>
16303         * metadata.c
16304         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
16305         instead of a `MonoGenericContainer *'.  
16306         (mono_metadata_parse_array_full): Likewise.
16307         (mono_metadata_parse_signature_full): Likewise.
16308         (mono_metadata_parse_method_signature_full): Likewise.
16309         (mono_metadata_parse_generic_inst): Likewise.
16310         (mono_metadata_parse_generic_param): Likewise.
16311         (mono_metadata_parse_mh_full): Likewise.
16312         (mono_type_create_from_typespec_full): Likewise.
16314 2004-12-03  Martin Baulig  <martin@ximian.com>
16316         * class-internals.h (MonoGenericContainer): Replaced the
16317         `MonoGenericContext * pointer with a `MonoGenericContext'
16318         structure and made it the first element.
16320 2004-12-03  Martin Baulig  <martin@ximian.com>
16322         * class.c
16323         (inflate_generic_type): Set the `context->container' when creating
16324         a new MonoGenericContext.
16325         (mono_class_inflate_generic_method): Likewise.
16326         (mono_class_create_from_typespec): Just use `context->container'
16327         to get the container.
16329         * loader.c (method_from_methodspec): Set `context->parent' from
16330         `context->container' - and if that's a method container, use its
16331         parent.  Also set the `context->container' when creating a new
16332         MonoGenericContext.
16333         (mono_get_method_from_token): Use just `context->container' to get
16334         the container.
16336         * metadata.c (do_mono_metadata_parse_generic_class): Also set
16337         `gclass->context->container'.
16339         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
16340         the `context->container' when creating a new MonoGenericContext.
16342 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
16344         * reflection.c (compare_genericparam): Sort params with identical
16345         owner by their number. Fixes gen-111 on sparc.
16347 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16349         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
16350         around the domain changes.
16352         * appdomain.c (mono_domain_unload): Handle the case when the thread
16353         calling Unload is itself being aborted during unloading. Fixes #70022.
16355         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
16357         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
16358         checkpoint_func as an icall so it gets a wrapper.
16359         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
16360         in the cross-appdomain wrappers too.
16362         * threads.c (mono_thread_has_appdomain_ref): Make this public.
16364         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
16366         * reflection.c: Fix some memory leaks.
16367         
16368 2004-12-02  Martin Baulig  <martin@ximian.com>
16370         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
16372         * metadata.c (generic_class_cache): New static hashtable.
16373         (mono_metadata_lookup_generic_class): New public method.
16375 2004-12-02  Martin Baulig  <martin@ximian.com>
16377         * class.c (mono_class_create_from_typedef): Call
16378         mono_class_setup_parent() and mono_class_create_mono_type() before
16379         parsing the interfaces.
16381 2004-12-02  Martin Baulig  <martin@ximian.com>
16383         * metadata.c (generic_inst_cache): New static hashtable.
16384         (mono_metadata_lookup_generic_inst): New public function.
16385         (mono_metadata_inflate_generic_inst): New public function.
16386         (mono_metadata_parse_generic_inst): New public function.
16387         (do_mono_metadata_parse_generic_class): Use the new
16388         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
16389         since this'll also use the cache.
16391         * reflection.c (mono_reflection_bind_generic_method_parameters):
16392         Use mono_metadata_lookup_generic_inst() to use the new cache.
16394         * class.c (inflate_mono_type): Use
16395         mono_metadata_inflate_generic_inst() to inflate a generic
16396         instance; this'll also use the new cache.
16398         * loader.c (method_from_methodspec): Use
16399         mono_metadata_parse_generic_inst() and
16400         mono_metadata_inflate_generic_inst() rather than parsing it
16401         manually, so we can use the new cache.
16403 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16405         * threads.c (wait_for_tids): Do not incorrectly free threads when 
16406         the wait times out.
16408 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16410         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
16411         iter->args based on whether parameters are passed in registers (i.e.
16412         MONO_ARCH_REGPARMS is defined)
16414 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
16416         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
16417         the exception message. Fixes #70070.
16418         (method_from_methodspec): Fix warnings.
16420 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16422         * process.c: (complete_path) return the path quoted
16424 2004-12-01  Martin Baulig  <martin@ximian.com>
16426         * class-internals.h (MonoGenericInst): New structure.
16427         (MonoGenericClass): Replaced `type_argc', `type_argv' and
16428         `is_open' with `MonoGenericInst *inst'.
16429         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
16430         `is_open' with `MonoGenericInst *inst'.
16432 2004-11-30  Martin Baulig  <martin@ximian.com>
16434         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
16436         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
16437         to `generic_class_cache'.
16439         * metadata.c
16440         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
16441         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
16442         (mono_generic_inst_is_valuetype): Renamed to
16443         mono_generic_class_is_valuetype().
16445         * class-internals.h
16446         (MonoGenericInst): Renamed to MonoGenericClass.
16447         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
16448         (MonoClass): Renamed `generic_inst' to `generic_class'.
16449         (MonoGenericContext): Renamed `ginst' to `gclass'.
16451         * object-internals.h
16452         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
16454         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
16455         mono_reflection_generic_class_initialize().
16457         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
16458         now known as "System.Reflection.MonoGenericClass".
16459         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
16461 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
16463         * class-internals.h: Added a flag field to MonoClass to cache the
16464         declarative security attributes actions associated with the class.
16465         * domain-internals.h: Added booleans to MonoJitInfo to cache the
16466         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
16467         applicable to the JITted method.
16468         * reflection.c|h: Added functions to extract (as flags) which security
16469         actions are available (declaratively) for a method, class or assembly.
16470         * metadata.c|h: Added functions to search the declarative security
16471         table in the metadata.
16472         
16473 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
16475         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
16476         EXPORTEDTYPES are already in the class name cache, so there is no
16477         need to add extra code here to look at them. Just removes a bit of
16478         cruft.
16480         (ves_icall_System_Environment_get_TickCount): No need for #if
16481         WINDOWS. We already have the code in io-layer.
16483 2004-11-28  Martin Baulig  <martin@ximian.com>
16485         * loader.c
16486         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
16487         Fixes gen-112.cs.
16489 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
16491         * assembly.c (do_mono_assembly_open): Instead of having a
16492         conditional WITH_BUNDLE, incorporate support for bundles here, by
16493         having a global `bundles' variable holding a pointer to the actual
16494         bundles. 
16496         (mono_register_bundled_assemblies): New API call used by the
16497         bundle code. 
16499         See mkbundle.1 for details.
16500         
16501 2004-11-27  Martin Baulig  <martin@ximian.com>
16503         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
16504         the vtable for generic methods.
16506 2004-11-26  Martin Baulig  <martin@ximian.com>
16508         * metadata.c
16509         (mono_metadata_generic_method_hash): New public function.
16510         (mono_metadata_generic_method_equal): Likewise.
16512         * class-internals.h
16513         (MonoGenericContainer): Added `GHashTable *method_hash'.
16515         * reflection.c (ReflectionMethodBuilder): Added
16516         `MonoGenericContainer *generic_container'.
16517         (reflection_methodbuilder_to_mono_method): Don't create a new
16518         MonoGenericContainer each time we're called.
16519         (mono_reflection_bind_generic_method_parameters): Use
16520         `container->method_hash' to cache the results so we don't create a
16521         different method if we're called several times with the same
16522         arguments.
16524         * loader.c (method_from_methodspec): Use the new
16525         `container->method_hash' here, too.
16527 2004-11-26  Martin Baulig  <martin@ximian.com>
16529         * class.c (inflate_generic_signature): Correctly compute
16530         `res->has_type_parameters'.
16531         (mono_class_vtable): Use the `has_type_parameters' flag to
16532         determine whether we're a generic method.
16534         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
16536 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16538         * object.c (mono_runtime_run_main): Fix a small memory leak.
16540 2004-11-25  Martin Baulig  <martin@ximian.com>
16542         * class.c (set_generic_param_owner): Fixed the loop.
16544 2004-11-25  Martin Baulig  <martin@ximian.com>
16546         * object.c (mono_class_vtable): Don't create any JIT wrappers for
16547         generic methods.
16549 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16551         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
16552         names. Fixes #69787.
16554 2004-11-24  Martin Baulig  <martin@ximian.com>
16556         * class.c (mono_class_create_generic_2): If we don't have a
16557         `ginst->parent', inflate `gklass->parent' to get our parent.
16559 2004-11-24  Martin Baulig  <martin@ximian.com>
16561         * reflection.c (compare_genericparam): Correctly sort the
16562         GenericParam table; fixes #69779.
16564 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
16566         * reflection.c: When writing a PE file, don't create a huge
16567         buffer in memory. Just write the arrays we have to the file.
16568         This reduces memory usage.
16570         * metadata-internals.h: MonoDynamicStream pefile is no longer used
16571         globally.
16573 2004-11-17  Martin Baulig  <martin@ximian.com>
16575         * class.c (mono_class_init): Don't setup `class->parent' for
16576         dynamic instances; moved this to mono_class_generic_2().
16577         (mono_class_create_generic): Also set `klass->inited' for dynamic
16578         generic instances.
16579         (mono_class_create_generic_2): Don't do anything for dynamic
16580         generic instances.  Set `klass->parent' here and also call
16581         mono_class_setup_parent() here. 
16583         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
16584         `MonoType *parent' argument; set `ginst->parent' before calling
16585         mono_class_create_generic_2(), so we set the correct parent.
16587 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
16589         * reflection.c: allow getting attributes from ModuleBuilder
16590         (used by ikvm).
16592 2004-11-17  Martin Baulig  <martin@ximian.com>
16594         * class.c (mono_class_create_from_typedef): If a type parameter is
16595         inherited from an outer class, set its owner to that class.
16597 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
16599         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
16600           for (int*) written size. This fixes bug #69592.
16602 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
16604         * icall.c: Added IsAuthenticodePresnet internal call.
16605         * image.c|h: New function that check a MonoImage for an Authenticode
16606         signature in the certificate PE data directory.
16607         * security.c|h: New internal call to ask the runtime if an 
16608         Authenticode signature seems referenced in the PE header.
16610 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
16612         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
16614         * reflection.c (mono_image_create_pefile): Free the assembly streams
16615         after writing out the assembly file.
16617         * object.c (mono_runtime_run_main): Fix small memory leak.
16619         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
16620         property access modifiers. Fixes #69389.
16622 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
16624         * domain.c, object.c, object-internals.h, domain-internals.h,
16625         object.h, marshal.c: keep dynamic code info per domain.
16627 2004-11-15  Martin Baulig  <martin@ximian.com>
16629         * class.c (mono_type_get_name_recurse): Put type arguments in
16630         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
16631         see bug #68387.
16633 2004-11-15  Martin Baulig  <martin@ximian.com>
16635         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
16636         (mono_class_setup_vtable): When computing `the_cname' for a
16637         generic instance, don't include the namespace since we'd otherwise
16638         add it twice.
16640 2004-11-15  Martin Baulig  <martin@ximian.com>
16642         * class.c (mono_class_create_generic): Changed return type to void.
16643         (mono_class_create_generic_2): New public function; setup
16644         `class->method', `class->field' and `class->interfaces' here
16645         instead of in mono_class_init().
16647         * class.h (mono_class_create_generic): Moved to class-internals.h.
16649 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
16651         * reflection.c (mono_image_create_pefile): take a file HANDLE.
16652         rather than writing to memory, write to this file. Right now,
16653         we are just writting into a buffer, and copying that. However
16654         we can avoid the buffer later.
16656         (mono_dynamic_stream_reset): new function
16658         * icall.c, object-internals.h: update for the above.
16660 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
16662         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
16663         have been using gc'd memory. First it is slower, unlikely
16664         the comment in the source code said, secondly, it increases
16665         our footprint to do it in the gc.
16667         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
16668         the method so that it does not have to copy to managed code.
16670 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
16672         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
16674 2004-11-12  Martin Baulig  <martin@localhost>
16676         * reflection.c (mono_image_create_token): Allow generic method
16677         definitions here, since they may appear in an `.override'; see
16678         gen-98/gen-99 for an example.
16680 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
16682         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
16683         #69365.
16685         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
16686         descriptive.
16688 2004-11-11  Martin Baulig  <martin@ximian.com>
16690         * class.c (mono_class_setup_vtable): In an explicit interface
16691         implementation, the method name now includes the arity.
16693 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
16695         * object.c (mono_array_full_copy): Fix warning.
16697 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
16699         * appdomain.c: Removed look_for_method_by_name(). Use the new method
16700         mono_class_get_method_from_name() instead.
16701         
16702         * class-internals.h: Added two new types of wrappers. 
16703         Added MonoRemotingTarget enum. Added new trampoline function type, which
16704         takes an additional MonoRemotingTarget value as parameter, so it is
16705         possible to request a trampoline for a specific target.
16706         
16707         * class.c: Added new mono_class_get_method_from_name() method.
16708         
16709         * class.h: In MonoRemoteClass, we can have now to vtables, one for
16710         general remoting sinks and one specific for cross domain calls.
16711         
16712         * debug-helpers.c: Added new wrapper names.
16713         
16714         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
16715         of a remote class.
16716         
16717         * image.c: Porperly delete value objects form the remoting invoke hashtable.
16718         
16719         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
16720         with several other methods (mono_marshal_get_xappdomain_dispatch,
16721         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
16722         and others) can generate a fast remoting wrapper for cross domain calls.
16723         More information can be found in docs/remoting.
16724         Other changes: Removed mono_find_method_by_name, and used
16725         mono_class_get_method_from_name instead.
16726         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
16727         is stored in the remoting invoke hashtable.
16728         
16729         * marshal.h: published the new method for getting the xdomain wrapper,
16730         and also added a method for getting the adequate wrapper for a given
16731         method and target.
16732         
16733         * object-internals.h, object.c: Added a couple of methods for capying and
16734         cloning arrays.
16735         Modified mono_install_remoting_trampoline, which takes the new remoting
16736         trampoline that has a remoting target as parameter.
16737         mono_class_proxy_vtable now also takes a remoting target as parameter, and
16738         will return the most suitable vtable for the target.
16739         Added mono_remote_class_vtable, which returns the vtable of a remote class
16740         (which can be the normal remoting vtable or the xdomain vtable).
16741         
16742         * threads.c: the xdomain invoke and dispatch wrappers must also be
16743         protected against interruptions.
16745 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16747         * icall.c: use memmove in BlockCopyInternal when the source and
16748         destination arrays are the same.
16750 2004-11-09  Martin Baulig  <martin@ximian.com>
16752         * class-internals.h (MonoGenericContainer): Removed `method' and
16753         `signature', replaced them with `is_method' and `is_signature'
16754         flags.  Added `context'.
16756         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
16757         instead of a `MonoGenericContainer *'.
16759         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
16760         for dynamic type parameters.
16761         (mono_metadata_load_generic_params): Setup `container->context'.
16763         * reflection.c (mono_reflection_setup_generic_class): Setup
16764         `tb->generic_container->context'.
16765         (do_mono_reflection_bind_generic_parameters): Use
16766         mono_class_inflate_generic_type() to correctly inflate types,
16767         rather than using our own hack just for MONO_TYPE_VAR.
16769 2004-11-09  Martin Baulig  <martin@ximian.com>
16771         * class.c (mono_class_inflate_generic_method): Small fix; don't
16772         crash here.
16774         * icall.c
16775         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
16776         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
16777         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
16778         (ves_icall_Type_BindGenericParameters): Likewise.
16779         (ves_icall_Type_get_IsGenericInstance): Likewise.
16780         (ves_icall_Type_GetGenericParameterPosition): Likewise.
16781         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
16782         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16783         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
16785 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
16787         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
16788         assembly versions and public key tokens. Fixes #69113.
16790 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
16792         * metadata.c: fix bug introduced with the type cache changes
16793         on 2004-11-06.
16795 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
16797         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
16798         the MonoClass pointer instead of the token in exception clauses.
16799         * reflection.c: updates for the above and make the code not depend
16800         on the structure of MonoExceptionClause.
16802 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
16804         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16805         Add support for dynamic assemblies. Fixes #69114.
16807         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
16809 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
16811         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
16812         since most only those methods use it. the code member of
16813         MonoMethodPInvoke was dead, so that can be removed too. Also,
16814         remove inline_count (again, not used), and move slot so that it
16815         can share bits with some other flags. This saves 8 bytes in the
16816         structure and gives us about 50 kb back for mcs helloworld.cs
16818         * *.[ch]: Do naming changes for the above.
16820         * loader.c (mono_method_get_header): Lazily init the header
16821         on first access.
16822         (mono_get_method_from_token): don't init the header here
16823         (mono_free_method): the header may never be allocated
16825         Overall, this saves 150 kb of unmanaged allocations
16826         for mcs helloworld.cs. That accounts for 10% of the unmanaged
16827         memory at runtime.
16828         
16829         * loader.c, loader.h (mono_method_get_header): new accessor.
16831         * *.[ch]: use the above method. Prepares us to lazily load
16832         the header.
16834         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
16835         three warnings, which are actual bugs (see 69206).
16837         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
16838         unused. Saves a cool 4 bytes / method.
16840 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
16842         * metadata.c (builtin_types): Add types for System.Object here.
16843         (mono_metadata_parse_type_full): Cache MonoType*'s that are
16844         for a class or valuetype from klass->this_arg or klass->byval_arg.
16846         On mcs for a hello world, this gets us down from 21836 MonoType's
16847         to 14560.
16849         (mono_metadata_free_type): Account for the above change.
16851 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
16853         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
16854         exception instead of asserting if name is null.
16855         (ves_icall_System_AppDomain_GetData): Ditto.
16857 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
16859         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
16860         EnumBuilder.
16862         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
16863         Return NULL when the domain does not have entry_assembly set.
16865         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
16866         Add a 'resource_modules' argument.
16867         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
16869         * reflection.c (mono_reflection_create_runtime_class): Move setting
16870         of wastypebuilder here, so mono_get_type_object () returns a MonoType
16871         for enums too.
16873         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
16874         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
16875         Throw an ArgumentNullException if 'ptr' is null.
16877         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
16878         assemblies here. Fixes #69020.
16880 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
16882         * reflection.c (build_compressed_metadata): Fix the previous patch for
16883         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
16884         the stack.
16886 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
16888         * assembly.c (mono_assembly_names_equal): Allow a match if one of
16889         the cultures is false. Fixes #69090.
16891         * reflection.c (build_compressed_metadata): Fix invalid memory read 
16892         detected by valgrind.
16893         
16894         * reflection.c (mono_reflection_get_type): Avoid triggering a 
16895         TypeResolve multiple times for the same type. Fixes #65577.
16897 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
16899         * marshal.c: Avoid using ldftn to call managed functions. It is
16900         much slower than just a call.
16902         * reflection.c (mono_module_get_object): free the basename we
16903         allocate here from glib.
16904         
16905         * reflection.c (ensure_runtime_vtable): make sure to free
16906         overrides.  Also, we were allocating an array of MonoMethod not an
16907         array of MonoMethod*.
16909         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
16911         * image.c (mono_image_close): free image->guid here.
16913 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
16915         * reflection.c: Fix some spec conformance issues with the PE file
16916         structures so mcs compiled apps run on the Net 2.0 beta.
16918 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
16920         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
16921         Implement this. Fixes #67264.
16923         * debug-helpers.h debug-helpers.c marshal.c: Move 
16924         mono_find_method_by_name to debug-helpers.c.
16926 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
16928         * object.c (mono_release_type_locks): type_initialization_hash is
16929         a GHashTable.
16931         * reflection.c object.c object-internals.h: Fix warnings.
16933         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
16934         without accessors. Fixes #61561.
16936         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
16937         application base from the root domain if not set. Fixes #65641.
16938         (mono_runtime_init): Fix warning.
16940 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16942         * appdomain.c: call mono_thread_pool_init.
16943         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
16944         of worker threads based on the number of CPUs and the environment
16945         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
16946         for non-windows (windows) systems.
16948 2004-10-27  Chris Toshok  <toshok@ximian.com>
16950         * mono-debug-debugger.c (write_class): don't call mono_class_init
16951         here, as even with the check for (!klass->init_pending), we get
16952         into a situation where we're hitting cycles in class
16953         initialization.  Fixes #68816.
16955 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
16957         * image.c: Avoid overwriting values in the loaded_images_hash when an
16958         assembly is loaded multiple times. Fixes #61152.
16960         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
16961         so multiple satellite assemblies for the same name can be loaded.
16962         Fixes #68259.
16964         * mono_domain_assembly_preload: Actually return the loaded assembly, 
16965         not NULL.
16967         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
16968         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
16970         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
16971         pending finalizers are not invoked after the appdomain has been 
16972         unloaded. Fixes #67862.
16974 2004-10-22  Martin Baulig  <martin@ximian.com>
16976         * mono-debug-debugger.c
16977         (mono_debugger_runtime_invoke): Don't box valuetypes.
16979 2004-10-22  Chris Toshok  <toshok@ximian.com>
16981         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
16982         don't hide private methods.
16984 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
16986         * icall.c: Allows the runtime to "share" (when known) the public key
16987         token of an assembly. This avoid the need to recalculate the token 
16988         (from the public key) in managed code.
16990 2004-10-21  Chris Toshok  <toshok@ximian.com>
16992         * debug-helpers.c (append_class_name): argh, revert last patch.
16993         
16994 2004-10-21  Chris Toshok  <toshok@ximian.com>
16996         * debug-helpers.c (append_class_name): use '+' as the delimiter,
16997         not '/', so that it matches what the debugger uses to look up
16998         methods.
17000 2004-10-21  Martin Baulig  <martin@ximian.com>
17002         * mono-debug-debugger.c (mono_debugger_throw_exception): New
17003         public method; this is called each time an exception is thrown and
17004         allows the debugger to use exception catch points.
17006 2004-10-21  Martin Baulig  <martin@ximian.com>
17008         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
17009         the stack pointer and the exception object in some struct and pass
17010         that to the debugger.
17012 2004-10-21  Chris Toshok  <toshok@ximian.com>
17014         * mono-debug-debugger.c (do_write_class): add instance/static
17015         event support.  We don't expose "raise" or "other" yet.
17016         (event_is_static): new method.
17018 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
17020         * mono-debug-debugger.c
17021         (mono_debugger_handle_exception): Remove
17022         bogus return value for fussy compilers.
17024 2004-10-20  Martin Baulig  <martin@ximian.com>
17026         * mono-debug-debugger.c
17027         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
17028         (mono_debugger_handled_exception): Likewise.
17030 2004-10-20  Martin Baulig  <martin@ximian.com>
17032         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17033         MONO_DEBUGGER_EVENT_EXCEPTION.
17035         * mono-debug-debugger.c (mono_debugger_handle_exception): New
17036         public function to send the debugger a notification for an
17037         exception and inform it about a catch/finally clause.
17039 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
17041         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
17042         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
17043         fix 2.95 build. 
17045         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
17047 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
17049         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
17050         marshalled as [In,Out]. Fixes #58325.
17052 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
17054         * reflection.c (mono_method_body_get_object): Implement some fields.
17056 2004-10-12  Martin Baulig  <martin@ximian.com>
17058         * reflection.c (mono_reflection_bind_generic_parameters): Small
17059         fix, correctly retrieve our parent from a generic instance.
17061 2004-10-12  Martin Baulig  <martin@ximian.com>
17063         * metadata.c (mono_metadata_generic_param_equal): We always have
17064         an owner.
17066         * class.c
17067         (mono_class_from_generic_parameter): We need to have an owner.
17068         (my_mono_class_from_generic_parameter): Likewise.
17070         * reflection.c (mono_reflection_setup_generic_class): Renamed to
17071         mono_reflection_create_generic_class() and added a new
17072         mono_reflection_setup_generic_class().  
17073         (mono_reflection_initialize_generic_param): If we're a nested
17074         generic type and inherited from the containing class, set our
17075         owner to the outer class.
17077 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
17079         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
17081         * reflection.c (mono_method_body_get_object): New function to create
17082         a MethodBody object.
17084         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
17086 2004-10-11  Martin Baulig  <martin@ximian.com>
17088         * metadata.c (_mono_metadata_type_equal): Renamed to
17089         do_mono_metadata_type_equal() and made static.
17091 2004-10-11  Martin Baulig  <martin@ximian.com>
17093         * appdomain.c: Bump corlib version number to 28.
17095 2004-10-10  Martin Baulig  <martin@ximian.com>
17097         * class-internals.h
17098         (MonoGenericInst): Added `MonoGenericContainer *container'.
17099         (MonoGenericMethod): Likewise.
17100         (MonoGenericContext): Likewise.
17101         (MonoGenericParam): Added `MonoGenericContainer *owner'.
17103         * metadata.c
17104         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
17105         (do_mono_metadata_parse_generic_inst): Likewise.
17106         (mono_metadata_parse_type_full): New public method.  This is the actual
17107         mono_metadata_parse_type() implementation - with an additional
17108         `MonoGenericContainer *' argument.
17109         (mono_metadata_parse_array_full): Likewise.
17110         (mono_metadata_parse_signature_full): Likewise.
17111         (mono_metadata_parse_method_signature_full): Likewise.
17112         (mono_metadata_parse_mh_full): Likewise.
17113         (mono_type_create_from_typespec): Likewise.
17114         (mono_metadata_interfaces_from_typedef_full): New public method;
17115         this is similar to the other _full() methods, but we take a
17116         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
17117         (mono_metadata_parse_generic_param): Take an additional
17118         `MonoGenericContainer *' argument and lookup the MonoGenericParam
17119         from that container.
17120         (mono_metadata_generic_param_equal): New static method to compare
17121         two type parameters.
17122         (_mono_metadata_type_equal): New static method; takes an
17123         additional `gboolean signature_only' argument - if true, we don't
17124         compare the owners of generic parameters.
17125         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
17126         with a TRUE argument - do a signature-only comparision.
17128         * loader.c: Use the new _full() methods and pass the
17129         MonoGenericContainer to them.
17131         * object-internals.h (MonoReflectionTypeBuilder): Added
17132         `MonoGenericContainer *generic_container' field.
17133         (MonoReflectionMethodBuilder): Likewise.
17135 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
17137         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
17138         case initial images of dynamic assemblies.
17140         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
17142         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
17144         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
17145         length of event->other array.
17146         (typebuilder_setup_events): Ditto.
17148         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
17149         'assembly_by_name' and add an 'assemblies' list.
17151         * assembly.h assembly.c: Add a new search hook for determining whenever
17152         an assembly is already loaded. Use this instead of searching in the
17153         loaded_assemblies list.
17155         * domain.c appdomain.c: Implement the new search hook so loaded 
17156         assemblies are now scoped by appdomain. Fixes #67727.
17158 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
17160         * threads.c (mono_thread_attach): Initialize synch_lock field so
17161         mono_thread_detach works again.
17163         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
17164         'lib' too. Fixes #63130.
17166 2004-10-06  Jackson Harper  <jackson@ximian.com>
17168         * culture-info-tables.h: regenerated.
17170 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
17172         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
17173         implemented by other interfaces in the result. Fixes #65764.
17174         
17175         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17176         Handle unloadable modules without crashing.
17178         * image.c (load_modules): Revert the previous patch since modules must
17179         have a fixed index inside the array.
17180         
17181         * image.c (load_modules): Don't include native modules in the modules
17182         array.
17184 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
17186         * reflection.h: Add param_defaults field.
17188         * reflection.c: Add support for parameter defaults in dynamic methods.
17189         Fixes #64595.
17191         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
17192         an empty string when a type has no namespace. Fixes #64230.
17194 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
17196         * tabledefs.h: Added "internal" security actions to support non-CAS
17197         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
17198         Note: they do not seems to be used anymore in 2.0 (new metadata format)
17200 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
17202         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
17203         constructor of abstract class. Fixes #61689.
17205 2004-10-04  Martin Baulig  <martin@ximian.com>
17207         * class-internals.h (MonoGenericContainer): New type.
17208         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
17209         `MonoGenericContainer *generic_container'.
17210         (MonoClass): Replaced `gen_params' and `num_gen_params' with
17211         `MonoGenericContainer *generic_container'.
17213         * metadata.c (mono_metadata_load_generic_params): Return a
17214         `MonoGenericContainer *' instead of a `MonoGenericParam *';
17215         removed the `num' argument.
17217 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
17219         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
17220         for dynamic images.
17222         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
17223         machine fields.
17225         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
17227         * reflection.c: Save pe_kind and machine values into the generated
17228         image file.
17230         * appdomain.c: Bump corlib version number.
17232         * object-internals.h: Reorganize layout of LocalBuilder.
17234         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
17235         New helper function.
17237         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
17238         created MonoType for dynamic types. Fixes #66180.
17240 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
17242         * threadpool.c: the ares hashtable needs a critical section around it.
17243         this prevents some nasty segfaults
17245 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
17247         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
17248         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
17249         bug 67324).
17250         
17251 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17253         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
17254         
17255 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
17257         * image.c: Always canonicalize image file names, to avoid loading
17258         the same assembly twice when referenced using a relative path.
17260 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17262         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
17264         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
17266         * marshal.c: Fix warnings.
17268 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
17270         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
17271         attempting to marshal the delegate_trampoline as the method_addr.
17272         This patch has a static hashtable of marshalled delegates so that 
17273         we can map delegate_trampoline addresses back to delegates.  This
17274         allows a delegate passed to managed code to be passed back into native
17275         code.  Fixes #67039
17277 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17279         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
17281         * reflection.c (method_encode_code): Align method headers properly.
17282         Fixes #66025.
17284 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17286         * marshal.c: In the runtime invoke wrapper, reset the abort
17287         exception if it is cached. This avoids the automatic rethrowal of 
17288         the exception after the catch of the wrapper. Also check for pending
17289         interruptions before calling the managed method. This is done using
17290         the new method emit_thread_force_interrupt_checkpoint, since the
17291         normal checkpoint method is ignored when running the invoke wrapper.
17292         * object.c: If the abort exception is rethrown, set the abort_exc
17293         field of the thread, so it will be rethrown aftere every catch.
17294         * threadpool.c: Only run an interruption checkpoint if what has been
17295         requested is a stop of the thread (aborts will be ignored).
17296         * threads.c: By default, a thread will now never be interrumped while
17297         running the runtime invoke wrapper (this ensures that runtime_invoke
17298         will always return to the caller if an exception pointer is provided).
17299         There is a new special method mono_thread_force_interruption_checkpoint()
17300         to force an interruption checkpoint even if running a protected
17301         wrapper, which is used by the same runtime invoke wrapper to do a check
17302         at a safe point.
17304 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17306         * object.c, object-internals.h: Implemented mono_release_type_locks,
17307         which releases the cctor locks held by a thread.
17308         * threads.c, threads.h: In thread_cleanup, release cctor locks held
17309         by a thread. Added mono_thread_exit() method to be used to safely stop
17310         a thread.
17312 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17314         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17315         Move null check before dereference.  Avoid indexing beyond the end
17316         of the 'modules' array.
17318 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17320         * metadata-internals.h (MonoImage): Add module_count field.
17321         * image.c (load_modules): Set image->module_count.
17322         (mono_image_load_file_for_image): Use image->module_count.
17323         * reflection.c (mono_image_load_module): Append to image->modules array 
17324         of dynamic assembly.
17325         (mono_module_get_object): Fix loop to actually increment index.
17326         Use image->module_count.
17327         * assembly.c (mono_assembly_load_references): Use image->module_count.
17328         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
17329         Likewise.
17331 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17333         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
17334         Avoid assert on generic types.
17336 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
17338         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
17340         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
17342         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
17343         function to convert a MarshalSpec structure to its managed counterpart.
17345         * reflection.c: Fix warnings.
17346         
17347         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
17348         field.
17350         * icall.c (mono_create_icall_signature): Fix build.
17352 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
17354         * icall.c: Add MakePointType icall.
17356         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
17357         warnings.
17359 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17361         * threadpool.c: reuse allocated slots in the queue.
17363 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
17365         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
17367         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
17369         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
17370         previous change.
17372         * tabledefs.h: Add constants for pinvoke attributes BestFit and
17373         ThrowOnUnmappableChar.
17375         * icall.c (ves_icall_Type_GetPacking): New icall.
17377 2004-09-24  Martin Baulig  <martin@ximian.com>
17379         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
17381 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17383         * appdomain.c:
17384         (mono_domain_set): allow setting a domain that is being unloaded.
17385         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
17386         being unloaded.
17388 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17390         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
17391         the GetCustomAttributes icall.
17393 2004-09-23  Martin Baulig  <martin@ximian.com>
17395         * object-internals.h (MonoReflectionGenericParam): Replaced
17396         'has_ctor_constraint', `has_reference_type' and `has_value_type'
17397         with `guint32 attrs'.
17399 2004-09-23  Martin Baulig  <martin@ximian.com>
17401         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
17403 2004-09-23  Martin Baulig  <martin@ximian.com>
17405         * object-internals.h (GenericParameterAttributes): New enum.
17407 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17409         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
17410         
17411         * class.c (init_events): Fill out event->other field.
17413         * class.c: Fix warnings.
17415         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
17417 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17419         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
17420         walk which doesn't supply the IL offset.
17422 2004-09-22  Martin Baulig  <martin@ximian.com>
17424         * reflection.c (mono_reflection_setup_internal_class): If we're
17425         System.ValueType, System.Object or System.Enum, set
17426         `klass->instance_size' and create the vtable.
17427         (mono_reflection_create_internal_class): If we're an enum type,
17428         get the base class from our current corlib.
17430 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
17432         * reflection.h (MonoResolveTokenError): New type.
17434         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
17435         icall.
17437         * icall.c: Add an 'error' argument to the ResolveToken icalls.
17439 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
17441         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
17442         Support also calling constructors, but only for already allocated objects.
17444 2004-09-17  Geoff Norton <gnorton@customerdna.com>
17446         * reflection.c (type_get_qualified_name): If the klass is null
17447         return the typename to avoid a NullRefEx.
17448         (encode_cattr_value): Get the qualified name of the boxed type,
17449         not the underlying enumtype.  Fixes #62984.
17451 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
17453         * marshal.c: Fix problems with previous checkin.
17455 2004-09-21    <vargaz@freemail.hu>
17457         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
17458         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
17460         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
17462 2004-09-21  Geoff Norton <gnorton@customerdna.com>
17464         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
17465         should only return a type for pointers, arrays, and passbyref types.
17466         Fixes bug #63841.
17468 2004-09-21  Martin Baulig  <martin@ximian.com>
17470         * domain.c (mono_debugger_check_runtime_version): New public
17471         function.
17473         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
17475 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
17477         * reflection.c: Added missing sort to the declarative security 
17478         attributes table. MS implementation stops seeing the attributes if the
17479         token number regress in the table (as shown by ildasm and permview).
17481 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
17483         * object-internals.h (MonoReflectionModule): Add 'token' field.
17484         
17485         * reflection.c (mono_reflection_get_token): Add support for Module
17486         and Assembly.
17487         (mono_module_get_object): Set 'token' field.
17488         (mono_module_file_get_object): Set 'token' field.
17490         * icall.c: Add new Assembly and Module icalls.
17492         * appdomain.c: Bump corlib version.
17494 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
17496         * loader.h loader.c class.h class.c: Add helper functions for obtaining
17497         tokens of metadata objects.
17499         * reflection.h reflection.c (mono_reflection_get_token): New function
17500         to obtain the token of a metadata object.
17502         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
17504 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17506         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
17507         
17508         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
17510 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
17512         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
17513         * object-internals.h: Added 3 MonoArray* members to MonoReflection
17514         AssemblyBuilder to access the permissions set in the class lib.
17515         * reflection.c: Added security attributes encoding step in 
17516         mono_image_build_metadata.
17517         * tabledefs.h: Added new security actions defined in 2.0:
17518         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
17520 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17522         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
17523         macro parameter.
17525 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17527         * locales.c: nullify the ICU_collator member of CompareInfo when it is
17528           finalized. There where random SIGSEVs at program termination, when
17529           an object being finalized was trying to do a string comparison and
17530           the current culture was already finalized.
17532 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17534         * threads.c: call thread_cleanup before finishing the thread if we get
17535         there.
17537 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
17539         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
17540         assemblies from the parent. Fixes #65665.
17542 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
17544         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
17545         modifiers.
17547 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
17549         * reflection.h: add prototype for mono_get_dbnull_object
17550         * reflection.c: add prototypes for get_default_param_value_blobs 
17551         and mono_get_object_from_blob for fussier compilers
17553 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
17555         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
17556         false deadlock checks in class initialization.
17558 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17560         * image.c (mono_image_addref): Fix comment.
17562         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
17563         possible.
17565 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
17567         * reflection.c (mono_param_get_objects): Modified to return
17568         ParameterInfo.DefaultValue object.
17570         (get_default_param_value_blobs):
17571         (mono_get_object_from_blob):
17572         (mono_get_dbnull_object): New helper routines. 
17574         * object.c (mono_get_constant_value_from_blob): New helper routine
17575         carved out from get_default_field_value ()
17577         * object-internals.h (mono_get_constant_value_from_blob): Added
17578         function declaration.
17580 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17582         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
17583         referenced assemblies. Fixes #62135.
17585         * exception.h exception.c (mono_get_exception_file_not_found2): New
17586         helper function.
17588 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17590         * class.h class.c: Add mono_type_get_underlying_type ().
17592 2004-09-09  Geoff Norton <gnorton@customerndna.com>
17594         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
17595         Fix GetTypes() to support dynamically created assemblies.
17597 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
17599         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
17600         
17601         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
17602         previous patch.
17604         * reflection.h reflection.c loader.c: Allow dynamic construction of
17605         pinvoke methods. Fixes #65571.
17606         
17607         * reflection.c (mono_reflection_get_type): Revert previous change since
17608         it causes regressions.
17610 2004-09-08  Martin Baulig  <martin@ximian.com>
17612         * class.c (class_compute_field_layout): Don't call
17613         mono_class_layout_fields() for open generic instances.
17615 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
17616         * threads.c appdomain.c: fix typo in GC macro
17618 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17620         * threads.c: don't call mono_thread_detach() in start_wrapper(),
17621         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
17623 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
17625         * image.c (mono_image_close): Applied patch from 
17626         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
17627         assembly is loaded multiple times from data.
17628         
17629         * image.c (mono_image_open): Fix warning.
17631 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17633         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
17634         once. Fixes #58334.
17635         
17636         * reflection.c (mono_reflection_create_runtime_class): Initialize
17637         klass->nested_classes. Fixes #61224.
17639 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17641         * threads.c: sched_yield() on exit, to allow threads to quit.
17643 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17645         * object.c (mono_unhandled_exception): Remove leftover debug code.
17647 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
17649         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
17651 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17653         * marshal.c (emit_marshal_array): Really null terminate string arrays.
17654         
17655         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
17657 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17659         * marshal.c (emit_marshal_array): Null terminate string arrays.
17660         
17661         * marshal.c (raise_auto_layout_exception): Fix warning.
17663         * reflection.c (mono_param_get_objects): Initialize the default value
17664         with DBNull.Value, not null. Fixes #62123.
17666 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
17668         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
17669         throw an exception with a cute explanation.
17671 2004-09-06  Dick Porter  <dick@ximian.com>
17673         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
17674         Close the new process's thread handle, as we don't use it.  The
17675         handle stays around forever otherwise.
17677 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17679         * object.c (arith_overflow): Fix warning.
17681         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
17682         calling conventions in method refs. Fixes #65352.
17684         * reflection.c: Fix warnings.
17686 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17688         * icall.c: Add a new icall for Array.Clear
17690 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17692         * object.c: When allocating an array, we have to throw
17693         an overflow exception if any of the lengths are < 0.
17695 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17697         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
17698         properly. Also move implementation of string array marshalling to 
17699         managed code. Fixes #42316.
17701 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17703         * assembly.c: provide more information when loading an assembly fails.
17705 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17707         * filewatcher.c: don't expect the development fam package to be
17708         installed.
17710 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
17712         * marshal.c: Make a copy of the signature cookie since it will be
17713         freed by the caller.
17714         
17715         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
17717         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
17719         * metadata.c (mono_metadata_free_marshal_spec): New function to free
17720         marshal specs.
17722         * marshal.c: More refactoring.
17723         
17724         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
17725         smaller functions.
17727 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
17729         * object.c: In mono_message_invoke, fill the output parameter array after
17730           calling the managed method (it was done before the call). This fixes
17731           bug #59299.
17733 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17735         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
17736         as well.
17738 2004-09-02  Martin Baulig  <martin@ximian.com>
17740         * class.c (mono_class_instance_size): Don't allow generic type
17741         definitions or open generic instances.
17742         (mono_class_array_element_size): If we're a value type, call
17743         mono_class_instance_size() on the original class.
17745         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
17746         handle generic instances.
17748         * mono-debug-debugger.c (write_type): Handle generic instances
17749         like classes.
17751 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17753         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
17754         the allocation request fails. Fixes #65089.
17756         * object.c (mono_runtime_free_method): Do not call mono_free_method.
17757         
17758         * object.c (mono_runtime_free_method): New function to free a dynamic
17759         method.
17761         * marshal.c (mono_delegate_free_ftnptr): New function to free the
17762         delegate trampoline.
17764         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
17765         with hasthis as dynamic,
17767         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
17769         * domain.c (mono_jit_info_table_remove): New function to remove an
17770         entry from the jit info table.
17772         * class-internals.h (MonoMethod): Add 'dynamic' field.
17774         * loader.c: Fix warnings.
17776 2004-09-01  Martin Baulig  <martin@ximian.com>
17778         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
17779         instead of mono_debugger_lock() because the latter one is a no-op
17780         unless running in the debugger.
17782 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17784         * class.c (class_compute_field_layout): Classes with auto-layout or
17785         reference fields are not blittable.
17786         
17787 2004-09-01  Dick Porter  <dick@ximian.com>
17789         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
17790         mono_image_get_filename() to get the assembly location.
17792         * icall.c:
17793         * metadata.h: Fix compile warnings
17795 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17797         * class.c (class_compute_field_layout): System.Object is blittable.
17799         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
17800         as in/out. Fixes #59909.
17802 2004-09-01  Martin Baulig  <martin@ximian.com>
17804         * metadata.h (MONO_TYPE_ISREFERENCE): Call
17805         mono_metadata_generic_inst_is_valuetype() if we're a generic
17806         instance to check whether our underlying type is a reference type.
17808 2004-09-01  Martin Baulig  <martin@ximian.com>
17810         * metadata.c (mono_type_size): If we're a generic instance, call
17811         mono_class_value_size() for value types.
17813 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
17815         * marshal.c: Implement more custom marshalling functionality. Fixes
17816         #64915.
17818 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17820         * mono-debug.c, debug-mono-symfile.c: add some locking love.
17822 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
17824         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
17826         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
17828         * icall.c: Fix some warnings.
17830         * threads.c (abort_appdomain_thread): Fix unref errors.
17831         (mono_thread_current): Fix THREAD_DEBUG define.
17833 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
17835         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
17837         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
17839 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
17841         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
17842         string arrays.
17844 2004-08-28  Martin Baulig  <martin@ximian.com>
17846         * metadata.c
17847         (mono_metadata_generic_inst_is_valuetype): New public function.
17849         * metadata.h (MONO_TYPE_ISSTRUCT): Call
17850         mono_metadata_generic_inst_is_valuetype() if we're a generic
17851         instance to check whether our underlying type is a valuetype.
17853 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
17855         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
17856         #63768.
17858 2004-08-25  Martin Baulig  <martin@ximian.com>
17860         * loader.c (mono_get_method_from_token): Abstract methods can also
17861         be generic and thus have type parameters.
17863         * metadata-internals.h
17864         (MonoDynamicImage): Added `GPtrArray *gen_params'.
17866         * reflection.c (mono_image_get_generic_param_info): Don't create a
17867         metadata row, just add an entry to the `gen_params' array.
17868         (build_compressed_metadata): Sort the `gen_params' array and then
17869         actually create the metadata.
17871 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17873         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
17875 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
17877         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
17879 2004-08-24  Martin Baulig  <martin@ximian.com>
17881         * class.cs (mono_class_is_subclass_of): Like an interface, a
17882         generic instance also derives from System.Object.
17884 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
17886         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
17887         custom modifiers to be in any order. Fixes #61990.
17889 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
17891         * object.c: Register mono_object_new_fast icall.
17892         
17893         * object.c (mono_class_get_allocation_ftn): Return to calling
17894         mono_object_new_fast, since it seems faster to compute the object 
17895         size in unmanaged code than passing it as a parameter.
17897         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
17899         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
17900         this function with Boehm as the oom handler, so we don't have to check
17901         the result of GC_malloc.
17903         * object.c: Remove checks for oom.
17905         * object.h object.c (mono_class_get_allocation_ftn): New function to
17906         return the icall which can be used to allocate an instance of a given
17907         class. 
17909         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
17911         * class-internals.h: Add 'enabled' field.
17913 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
17915         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
17917 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
17918         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
17919         value 0x0010.
17921 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17923         * appdomain.c: use the Tls function for appdomain too,
17924         at Zoltan's request. Actually return in mono_context_get
17926         * appdomain.c, profiler.c, threads.c: use __thread
17928 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
17930         * appdomain.c threads.c: Call GC_CreateThread on windows.
17932         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
17933         multiple libraries since this don't work on windows.
17935 2004-08-18  Martin Baulig  <martin@ximian.com>
17937         * class-internals.h
17938         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
17939         MonoMethodHeader.
17941         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
17942         MonoMethodNormal since we also need it for abstract and interface
17943         methods.
17945         * reflection.c
17946         (build_compressed_metadata): Sort the GenericParam table.
17947         (mono_image_create_token): Added `gboolean create_methodspec'
17948         argument; this is false when generating a MethodImpl token.
17949         (reflection_methodbuilder_to_mono_method): Abstract and interface
17950         methods may also have generic parameters.
17952 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17954         * appdomain.c: thread local alloc
17956 2004-08-17  Martin Baulig  <martin@ximian.com>
17958         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
17960         * icall.c
17961         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
17962         argument.
17964         * class.c (mono_type_get_full_name): New public function.
17965         (mono_type_get_name): Don't include the type arguments.
17967 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
17969         * Makefile.am: Build static versions of libmetadata and libmonoruntime
17970         for inclusion into the mono executable.
17972 2004-08-16  Martin Baulig  <martin@ximian.com>
17974         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
17975         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
17977 2004-08-14  Martin Baulig  <martin@ximian.com>
17979         * class.c (dup_type): Also copy the `byref' field.
17981 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
17983         * reflection.c (create_dynamic_mono_image): Revert the last change 
17984         since it breaks bootstrap.
17986 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17988         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
17990         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
17991         not free them with g_free.
17993 2004-08-11  Martin Baulig  <martin@ximian.com>
17995         * reflection.c (mono_reflection_setup_internal_class): Also call
17996         mono_class_setup_mono_type() if we already have a `tb->type.type'.
17998 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
18000         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
18001         called during default (first) AppDomain creation. Keep track of
18002         Evidence when loading assemblies.
18004 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18006         * opcodes.c, opcodes.h: reduce runtime relocations.
18008 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
18010         * culture-info.h, locales.c: fixes and chages to sue the new
18011         optimized format of the locale data.
18012         * culture-info-tables.h: regenerated.
18014 2004-08-06  Geoff Norton <gnorton@customerdna.com>
18015         
18016         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
18018 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
18020         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
18021         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
18022         * domain-internals.h: icall declaration.
18023         * icall.c: icall registration.
18024         * object-internals.h: New fields in MonoAssembly for CAS.
18026 2004-08-05  Duncan Mak  <duncan@ximian.com>
18028         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
18029         CEE_LDELEM_ANY.
18031 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18033         * reflection.c: fix to deal with object[] arrays in custom ctors
18034         (bug #62550).
18036 2004-08-05  Martin Baulig  <martin@ximian.com>
18038         * class.c (mono_class_array_element_size): Added support for
18039         generic instances and correctly handle "recursive" types.
18041 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
18043         * assembly.c: Fix warnings.
18045 2004-08-04  Martin Baulig  <martin@ximian.com>
18047         * class.c
18048         (mono_type_get_name_recurse): Added `gboolean include_arity'
18049         argument specifying whether or not we should include the generic
18050         arity in the type name.
18051         (_mono_type_get_name): New static function.
18052         (mono_class_setup_vtable): If we're a generic instance, don't
18053         include the generic arity in the names of explicit method
18054         implementations.        
18056 2004-08-03  Martin Baulig  <martin@ximian.com>
18058         * class.c (mono_type_get_name_recurse): Enclose the generic type
18059         arguments in `<', '>'.
18061 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18063         * gc.c: make GC warning messages use the trace API, they are just
18064         noise to most of the users.
18066 2004-08-03  Martin Baulig  <martin@ximian.com>
18068         * debug-mono-symfile.c (read_string): Correctly read the string.
18070 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
18072         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
18073         
18074         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
18075         icalls.
18076         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
18078 2004-07-30  Martin Baulig  <martin@ximian.com>
18080         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
18081         Reflect latest symbol writer changes.   
18083 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18085         * object.c: always create an object if null is passed
18086         to Invoke() where a valuetype is expected.
18088 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
18090         * marshal.c (mono_marshal_init): make managed
18091         signatures match native ones better for 64bits.
18093 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18095         * appdomain.c: hack to build correctly the private bin path on windows.
18096         Fixes bug #61991.
18098 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
18100         * assembly.c: Load mscorlib from the correct framework directory
18101           (mono/<version>/mscorlib.dll).
18102         * appdomain.h: Added prototypes for new functions.
18103         * internals.h: Added some prototypes.
18104         * domain.c: When initializing the runtime, get from the executable and
18105           the configuration files the runtime version that the app supports.
18106           Added support methods for reading app.exe.config. Added list of versions
18107           supported by the JIT. Added two new methods: mono_init_from_assembly,
18108           which initializes the runtime and determines the required version from
18109           the provided exe file, and mono_init_version, which initializes
18110           the runtime using the provided version.
18111         * icall.c: Get machine.config from version-specific directory.
18112         * reflection.c: When generating an image, embed the version number
18113           of the current runtime.
18115 2004-07-28  Dick Porter  <dick@ximian.com>
18117         * socket-io.c
18118         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
18119         returned sockaddr size before creating the remote address object.
18120         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
18121         61608.
18123 2004-07-28  Dick Porter  <dick@ximian.com>
18125         * locales.c (string_invariant_compare_char): Fix invariant char
18126         compares between upper and lower cases.  Fixes bug 61458.
18128 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
18129         
18130         * marshal.c: actually cache stelem.ref wrappers.
18131         
18132 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
18134         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
18135         sections and remove the mono_cli_rva_map () function.
18137 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18139         * debug-mono-symfile.c: fix one more endianess issue, from a patch
18140         by Geoff Norton (<gnorton@customerdna.com>).
18142 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18144         * class.c: fix class loads for pointer types (typeof(int) !=
18145         typeof(int*)).
18147 2004-07-27  Martin Baulig  <martin@ximian.com>
18149         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
18150         reading the debugging information from an external ".mdb" file.
18152 2004-07-24  Martin Baulig  <martin@ximian.com>
18154         * reflection.c (mono_image_get_type_info): Only write a class
18155         layout entry if we actually have a size or a packing size.
18157 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18159         * reflection.c (type_get_fully_qualified_name): 
18160         insert cast to get type checking of ?: with non-gcc compilers
18162 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18164         * rand.c: use g_getenv for both lookups of
18165         MONO_EGD_SOCKET
18167 2004-07-17  Martin Baulig  <martin@ximian.com>
18169         * reflection.c (mono_reflection_bind_generic_method_parameters):
18170         Set `gmethod->reflection_info'.
18172 2004-07-17  Martin Baulig  <martin@ximian.com>
18174         * class.c (mono_class_create_from_typedef): Insert the newly
18175         created class into the hash table before computing the interfaces
18176         since we could be called recursively.
18178 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
18180         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
18181         function to implement stelem.ref in managed code
18182         * class-internals.h, debug-helpers.c: a new wrapper type
18183         for the above.
18185 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18187         * gc.c: allow GC handles to work even when no GC is compiled in.
18188         Fix part of bug #61134 (GetAddrOfPinnedObject).
18190 2004-07-13  Peter Williams  <peter@newton.cx>
18192         * process.c (complete_path): Make sure we don't attempt to execute
18193         directories.
18195 2004-07-12  Geoff Norton <gnorton@customerdna.com>
18197         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
18198           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
18199           and will add/subtract the hour if needed
18201 2004-07-12  Martin Baulig  <martin@ximian.com>
18203         * reflection.c (mono_field_get_object): If we have
18204         `field->generic_info', take the attributes from
18205         `field->generic_info->generic_type'.    
18207 2004-07-12  Martin Baulig  <martin@ximian.com>
18209         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
18210         This function must be called before initializing the runtime.
18211         (mono_debug_init_1): New function; call this after initializing
18212         the runtime, but before loading the assembly.  It tells the
18213         debugger to load corlib and the builtin types.
18215         * mono-debug-debugger.c: Did some larger changes in the debugging
18216         code; support recursive class declarations, make sure we actually
18217         add all classes.
18219 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18221         * debug-helpers.c: undo my previous patch and fixed the real issue in
18222         ../mini/exceptions-x86.c
18224 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18226         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
18227         when no HOME env. variable was set and a NullRef was thrown in a .cctor
18228         called from other .cctors.
18230 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18232         * loader.c: Removed the mono_loader_wine_init hack now that we are
18233         doing a managed version of Windows.Forms.
18235 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
18237         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
18238         threadpool.c, threads.c: remove static data from rootset.
18240 2004-07-09  Dick Porter  <dick@ximian.com>
18242         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
18243         Don't do any more processing if the matched length was 0.  It was
18244         increasing the size of the string before.  Fixes bug 61167.
18246 2004-07-09  Dick Porter  <dick@ximian.com>
18248         * socket-io.h:
18249         * socket-io.c
18250         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18251         Add support for SO_PEERCRED if its available.
18253 2004-07-09  Peter Bartok <pbartok@novell.com>
18254         * loader.c: winelib.exe.so error message is now only displayed if
18255         MONO_DEBUG is set. To help us avoid questions when people are trying
18256         out the new Managed.Windows.Forms.
18258 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
18260         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
18261         for isinst and castclass wrappers.
18263         * class-internals.h icall.c: Move registration and lookup of JIT icalls
18264         to libmetadata from the JIT, so they could be used by the marshalling
18265         code and the interpreter.
18267         * marshal.c: Register marshalling related JIT icalls here instead of
18268         in mini.c. Use CEE_MONO_ICALL instead of the family of 
18269         CEE_MONO_PROC<x> opcodes to call marshalling functions.
18271         * metadata.h: Remove unneeded marshalling conversions.
18273         * opcodes.c: Update for new opcodes.
18274         
18275 2004-07-08  Martin Baulig  <martin@ximian.com>
18277         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
18278         (mono_debug_get_domain_data): Make this function static.
18280 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18282         * gc.c, object.h: add nice GC handle API for embedders.
18284 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
18286         * reflection.c: more changes for the new api
18288         * object.c: When we reflect on a field w/ a constant value, it
18289         will not have a memory location, so we must access metadata. Also,
18290         allow easier reading of strings so that we can read them from
18291         the constant data.
18293         * class.c (mono_class_layout_fields): no need for literal fields here.
18295         * class-internals.h: api changes for const fields
18297         * icall.c (ves_icall_get_enum_info): use new apis for const fields
18299 2004-07-06  Martin Baulig  <martin@ximian.com>
18301         * mono-debug.h: Increment version number to 44.
18303         * mono-debug.c (mono_debug_add_wrapper): The second argument is
18304         now a gpointer, rewrote this whole method.
18306         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
18307         function.  Add information about the wrapper in a new "misc table".
18309         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
18310         for the new misc table.
18312 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
18314         * metadata-internals.h image.c: Add a cache for helper signatures.
18316         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
18318 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
18320         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
18321         delegates from a delegate. Fixes #61033.
18322         
18323         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
18324         marshalling of stringbuilder arrays. Fixes #59900.
18326 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
18328         * icall.c: Add EnumBuilder:setup_enum_type icall.
18330 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
18332         * icall.c: Added a new icall for the property version of
18333         OffsetOfStringData.
18335 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
18337         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
18338         it has a constant size across platforms.
18340         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
18341         stack trace.
18343 2004-06-29  Martin Baulig  <martin@ximian.com>
18345         * mono-debug.c (mono_debug_add_method): Protect the whole function
18346         in mono_debugger_lock(), not just parts of it.
18348 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
18350         * reflection.c: make sure padding bytes in heaps are zeroed.
18352 2004-06-24  David Waite  <mass@akuma.org>
18354         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
18355         image.c, loader.c, locales.c, marshal.c, metadata.c,
18356         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
18357         string-icalls.c, threads.c: change to C90-style comments from C99 /
18358         C++ -style
18360 2004-06-24  Dick Porter  <dick@ximian.com>
18362         * threads.c
18363         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
18364         return createdNew.  Fixes bug 60412.
18366         * threads-types.h: 
18367         * icall.c: Add createdNew parameter to CreateMutex icall
18369 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18371         * reflection.c, object-internals.h: save default value in params.
18373 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18375         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
18376         no need to build a new path combining that with the application base.
18377         Fixes bug #60442.
18379 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
18381         * reflection.c: fixed minor standard compliance issues.
18383 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18385         * reflection.c: fixed issue with encoding some custom attributes
18386         (arrays in properties and fields, bug #60411).
18388 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18390         * reflection.c: fix start address when copying the public key token.
18392 2004-06-23  Martin Baulig  <martin@ximian.com>
18394         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
18395         the `exc' object in a static object to put it into the GC's root set.
18397 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
18399         * reflection.c: make mono_reflection_setup_internal_class ()
18400         callable a second time to setup a new parent class.
18402 2004-06-23  Dick Porter  <dick@ximian.com>
18404         * threads.c: Check for WAIT_IO_COMPLETION return values.
18406 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
18408         * appdomain.c: Removed the g_free on the public key token. Now copy 
18409         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
18410         * assembly.c: Added public key token string value when loading 
18411         assemblies. Fix bug #60439.
18412         * icall.c: Added missing informations (like public key) in 
18413         GetReferencedAssemblies. Fix #60519.
18414         * image.h: Changed definition for public key token from const char*
18415         public_tok_value to guchar public_key_token [17];
18416         * reflection.c: Updated for changes to public key token.
18418 2004-06-22  Lluis Sanchez Gual
18420         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
18421         for the field in base classes.
18423 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18425         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
18426         mark headers as not supported, they are installed only for use by the
18427         debugger.
18429 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
18431         * *.c, *.h: avoid namespace pollution in public headers.
18433 2004-06-21  Martin Baulig  <martin@ximian.com>
18435         * exception.c (mono_get_exception_security): It's in
18436         "System.Security", not in "System".
18438         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
18439         the exception classes.
18441 2004-06-21  Martin Baulig  <martin@ximian.com>
18443         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
18444         Protect the exception object from being finalized.
18446 2004-06-21  Martin Baulig  <martin@ximian.com>
18448         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
18449         public function.
18451 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
18453         * reflection.c: Load the assembly in mono_reflection_type_from_name,
18454         if it was not loaded before. Fix parts of #60439.
18456 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
18458         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
18459         code that was broken since Ben's change: wrappers are now
18460         dependent on the method signature only again.
18462 2004-06-21  Martin Baulig  <martin@ximian.com>
18464         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
18465         added interface support.
18467 2004-06-21  Martin Baulig  <martin@ximian.com>
18469         * class.c (mono_vtable_get_static_field_data): New public method.
18471 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
18473         * filewatcher.c : Windows build fix to be compliant with API changes.
18475 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18477         * class.h, class.c: more accessors.
18478         * metadata.h, metadata.c: prepare for hiding MonoType and
18479         MonoMethodSignature: people should use the accessors from now on
18480         outside of the tree.
18482 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18484         * *.c, *.h: more API cleanups.
18486 2004-06-18  Jackson Harper  <jackson@ximian.com>
18488         * assembly.c: Trace loading assemblies.
18489         * loader.c: Trace loading native libraries.
18490         * mono-config.c: Trace loading config files.
18491         
18492 2004-06-18  Dick Porter  <dick@ximian.com>
18494         * locales.c: Tell ICU the lengths of strings, it can cope with
18495         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
18497 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18499         * image.c: swapped name/filename;
18501 2004-06-18  Martin Baulig  <martin@ximian.com>
18503         * mono-debug-debugger.c (write_class): Write the parent class at
18504         the end of the header.
18506 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18508         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
18510 2004-06-17  Raja R Harinath  <rharinath@novell.com>
18512         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
18513         (bundle_obj): New conditional define.
18514         (BUILT_SOURCES): Remove.
18515         ($(bundle_srcs)): Make parallel-make safe.
18516         (libmonoruntime_la_LIBADD): Make unconditional.
18517         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
18518         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
18520 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
18522         * culture-info-tables.h: It was inconsistent with the latest
18523           supp info files.
18525 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
18527         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
18528         be loaded.
18530         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
18531         with gcc 2.95.
18533 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18535         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
18536         cleaned up public header threads.h.
18538 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18540         * Makefile.am, *.c, *.h: more API cleanups.
18542 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18544         * Makefile.am: removed monosn from compilation.
18545         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
18546         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
18547         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
18548         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
18549         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
18550         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
18552 2004-06-15  Jackson Harper  <jackson@ximian.com>
18554         * assembly.c: Make locales lower case when searching the GAC for
18555         assemblies. gacutil will always make locales lowercase when
18556         installing so this effectively makes them case insensitive.
18557         
18558 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
18560         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
18561         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
18562           parameter which allows to choose whether the wait can be interrupted or 
18563           not. Also added the method mono_monitor_enter(), which locks the monitor
18564           using an infinite wait and without allowing interruption.
18565           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
18566           interrupted.
18567         * object.h: Added new fields in MonoThread. suspend_event holds the event
18568           used to susped/resume the thread. synch_lock is the lock object to use for
18569           modifying the thread state.
18570         * threads.c: Use the new synch_lock object for locking, instead of "this",
18571           which can generate deadlocks.
18572           Moved thread state change in Thread.Sleep and Thread.Join from managed
18573           to unmanaged code. This avoids a deadlock when the thread was suspended
18574           just after acquiring the thread lock.
18575           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
18576           Implemented Thread.Suspend using an event instead of ThreadSuspend,
18577           which is not fully implemented in the io-layer.
18578         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
18580 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
18582         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
18583         threads-types.h: more API cleanups.
18585 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18587         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
18588         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
18589         threadpool.c, threads.c: first pass at the exported API cleanup.
18591 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
18593         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
18595 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18597         * icall.c: added internalGetHome.
18599 2004-06-14  Dick Porter  <dick@ximian.com>
18601         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
18602         possible to return successfully when '.' or '..' were the only
18603         entries in a directory, but were skipped.  The MonoIOStat was not
18604         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
18605         Fixes bug 59574.
18607 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18609         * reflection.c: make binaries run on .Net 1.1 by default.
18611 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18613         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
18615 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
18617         * marshal.c: keep track of struct size with explicit layout
18618         (bug #59979).
18620 2004-06-12  Martin Baulig  <martin@ximian.com>
18622         * mono-debug-debugger.c: Comment out a debugging g_message().
18624 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18626         * reflection.c, reflection.h: do not free custom attrs that are cached.
18627         * icall.c: use braces to make code clearer.
18629 2004-06-11  Martin Baulig  <martin@ximian.com>
18631         * class.h (MonoInflatedField): New type.
18632         (MonoClassField): Replaced `MonoType *generic_type' with
18633         `MonoInflatedField *generic_info'.
18635         * icall.c
18636         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
18638 2004-06-11  Martin Baulig  <martin@ximian.com>
18640         * reflection.c (mono_image_create_method_token): Correctly encode
18641         varargs methods.
18643 2004-06-11  Martin Baulig  <martin@ximian.com>
18645         * metadata.c (mono_metadata_parse_method_signature): When parsing
18646         a MethodDef which has VarArgs, also set sentinelpos if we don't
18647         have any parameters.
18649 2004-06-11  Martin Baulig  <martin@ximian.com>
18651         * verify.c (mono_method_verify): In CEE_CALL, use
18652         mono_method_get_signature() to get the method's signature, unless
18653         we're a PInvoke method.
18655 2004-06-10  Jackson Harper  <jackson@ximian.com>
18657         * assembly.c: Use <path>/lib/mono/gac for the extra paths
18658         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
18659         logical name as the supplied path is just a prefix to the gac not
18660         the direct path to it.
18661         
18662 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
18664         * reflection.c: make the token for a created method match
18665         the token of the MethodBuilder it was created from
18666         (IKVM requires this behaviour now).
18668 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
18670         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
18671         reflection.c, socket-io.c: leak fixes.
18673 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
18675         * icall.c: handle sentinel pos in vararg methods in position different
18676         from 0.
18678 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18680         * culture-info-tables.h: freshly generated.
18682 2004-06-09  Martin Baulig  <martin@ximian.com>
18684         * loader.c (mono_get_method_constrained): Call `mono_class_init
18685         (constrained_class)'.   
18687 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
18689         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
18690         any methods. Fixes #59629.
18692 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18694         * culture-info-tables.h: reflecting locale-builder updates.
18696 2004-06-08  Dick Porter  <dick@ximian.com>
18698         * object.h:
18699         * locales.c: Fixed compile warnings, including a real bug in
18700         CompareInfo_internal_compare.
18701         
18702 2004-06-08  Dick Porter  <dick@ximian.com>
18704         * locales.c
18705         (ves_icall_System_Globalization_CompareInfo_internal_index):
18706         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18707         Double-check the resuls of usearches, because ICU currently
18708         ignores most of the collator settings here.  Fixes bug 59720.
18709         
18710 2004-06-08  Dick Porter  <dick@ximian.com>
18712         * locales.c
18713         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18714         Fix memory leak and segfault-causing typo.  No idea how this one
18715         lasted so long without being noticed.
18717 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
18719         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
18720         any methods. Fixes #59629.
18722 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18724         * assembly.c:
18725         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
18726         own the critical section before). Removed dead code (that's done
18727         in the preload hook).
18729         (mono_assembly_load_with_partial_name): call the preload hook.
18731 2004-06-08  Martin Baulig  <martin@ximian.com>
18733         * metadata.c (mono_metadata_signature_alloc): Default
18734         `sentinelpos' to -1.
18736         * reflection.c (mono_image_get_array_token): Likewise.
18738 2004-06-08  Martin Baulig  <martin@ximian.com>
18740         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
18742         * metadata.c (mono_metadata_parse_method_signature): When parsing
18743         a MethodDef which has VarArgs, set sentinelpos.
18745         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
18746         `gint16' since we're using -1 for non-varargs methods.
18748         * reflection.c
18749         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
18750         (method_encode_signature): Added varargs support.
18751         (method_builder_encode_signature): Likewise.
18752         (mono_image_get_varargs_method_token): New static method.
18753         (mono_image_create_method_token): New public method; this is
18754         called via an icall instead of mono_image_create_token() when
18755         calling a varargs method.       
18757 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
18759         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
18761 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18763         * culture-info-tables.h : Reflecting the latest locale-builder that
18764           fixed empty array representation ({} to {0}).
18766 2004-06-07  Jackson Harper  <jackson@ximian.com>
18768         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
18769         looking up extra gac paths. This allows MONO_GAC_PATH to act
18770         exactly like a prefix.
18771         
18772 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18774         * reflection.c (mono_reflection_type_from_name): Make a copy of the
18775         type name before modifying it. Fixes #59405.
18777 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18779         * culture-info.h: added fields for "all datetime patterns".
18780         * locales.c: (  ves_icall_System_Globalization_CultureInfo
18781           _construct_datetime_format ()): fill xxx_patterns fields.
18782         * object.h: added fields for "all datetime patterns" to
18783           MonoDateTimeFormatInfo.
18784         * culture-info-tables.h: reflecting locale-builder updates.
18786 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18788         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
18789         the event has no add and remove methods. Fixes #59629.
18791 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
18793         * object.c: Fixed possible integer overflow when allocating large
18794         strings.
18796 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18798         * culture-info-tables.h: reflecting locale-builder updates.
18800 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18802         * culture-info-tables.h: reflecting locale-builder updates.
18804 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
18806         * culture-info-tables.h: reflecting locale-builder updates.
18808 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
18810         * threads.c: Made Thread.Sleep abortable.
18812 2004-06-02  Martin Baulig  <martin@ximian.com>
18814         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
18816         * debug-mono-symfile.h: Bumped symbol file version number to 37.
18818 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
18820         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
18822 2004-05-30  Jackson Harper  <jackson@ximian.com>
18824         * reflection.c: Do not hardcode assembly versions or public key
18825         tokens anymore. All of this except the corlib section was dead
18826         code anyways.
18827         
18828 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
18830         * object.c (mono_runtime_invoke_array): Automatically create boxed
18831         objects for byref valuetypes if needed. Fixes #59300.
18832         
18833         * object.c (mono_method_return_message_restore): Handle 
18834         MONO_TYPE_OBJECT as well.
18836 2004-05-28  Jackson Harper  <jackson@ximian.com>
18838         * reflection.c: The modified type encoding was causing build
18839         problems. Reverted for now.
18840         
18841 2004-05-28  Jackson Harper  <jackson@ximian.com>
18843         * reflection.c/h: Take an assembly ref so that we dont create
18844         fully qualified names when encoding types in the same assembly as
18845         the custom attribute being emitted.
18846         * appdomain.c: Increment version number.
18847         
18848 2004-05-26  Duncan Mak  <duncan@ximian.com>
18850         * icall.c
18851         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18852         Set the full version number (major, minor, build, revision).
18854 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
18856         * marshal.c (emit_struct_conv): increment src/dst after blit
18857         (mono_marshal_get_managed_wrapper,
18858         mono_marshal_get_native_wrapper): make sure we have marshalling
18859         info before marshalling params (info computation affects
18860         blittable)
18862         * class.c (class_compute_field_layout): correctly deal with
18863         blittable
18864         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
18865         value types (as per what windows dows by default)
18866         (mono_class_setup_mono_type): System.ValueType is blittable
18867         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
18868         blittable
18870         * marshal.c (mono_marshal_load_type_info): flag types  as
18871         non-blittable if the native layout doesn't match the managed
18872         layout
18874 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18876         * appdomain.c: don't add stuff in the private search path that is
18877         above the application base. If application base is not set, there's
18878         no private search path.
18880 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
18882         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
18883         byref struct arguments in native->managed marshalling.
18885 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
18887         * marshal.c (mono_marshal_get_runtime_invoke): correctly
18888         cache methods using signature (special case for methods
18889         that are value type or string class)
18890         
18891         * image.c (mono_image_close): clean up allocated GSList's
18892         in runtime_invoke_cache.
18894 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18896         * mono-config.c: set the correct path for mono_cfg_dir on windows when
18897         there's no MONO_CFG_DIR environment variable defined.
18899 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18901         * threads.c: windows version must be >= 0x0500 to include OpenThread.
18903 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
18905         * threadpool.c: Really wait for 500ms after the async call, even if the wait
18906           is interrumped.
18907         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
18908           before waiting for it, and call CloseHandle after the wait to unref it.
18909           This will make sure that handles are not disposed too early.
18911 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18913         * appdomain.c:
18914         * appdomain.h:
18915         * icall.c: removed
18916         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
18917         needed now.
18919         * object.c: se the application_base only for the domain that runs
18920         Main. Fixes bug #59216,
18922 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18924         * appdomain.c:
18925         * object.c: only the domain in which Main is run have
18926         SetupInformation.ConfigurationFile set, so moved a few lines from
18927         appdomain.c to object.c.
18929 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18931         * appdomain.c: we tried to load [name].(dll|exe), but according
18932         to bug #57710, we must also try [culture]/[name].(dll|exe) and
18933         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
18934         There's a test case attached to bug #58922.
18936 2004-05-27  Dick Porter  <dick@ximian.com>
18938         * icall.c:
18939         * file-io.c: Implemented icalls for locking and unlocking regions
18940         in a file.
18941         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
18942         FALSE on error (fixes both compiler warning and real bug.)
18944 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
18946         * culture-info-tables.h: reflecting locale-builder updates.
18948           (Added missing ChangeLog entry for 05/26)
18950 2004-05-27  Jackson Harper  <jackson@ximian.com>
18952         * locales.c: Fix some cut and paste errors.
18953         
18954 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18956         * mono-config.c: set the correct path for config. directory on windows.
18958 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18960         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
18961           on win32.
18963 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18965         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
18966         from pinvoke functions.
18967         
18968         * marshal.c (mono_ftnptr_to_delegate): Implement this.
18970 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18972         * culture-info-tables.h: reflecting locale-builder updates.
18974 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18976         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
18977         #59086.
18979 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
18981         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
18982         * icall.c: Modified icalls for RNG.
18983         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
18984         Windows (CryptoAPI).
18986 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18988         * locales.c: Fix build.
18990 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
18992         * culture-info-tables.h: reflecting locale-builder updates.
18994 2004-05-25  Jackson Harper  <jackson@ximian.com>
18996         * locales.c: When creating the current culture use the $LANGs
18997         specific culture. So DateTimeFormat and NumberFormat entries are created.
18998         
18999 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
19001         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
19002         a char array as parameter.
19004 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
19006         * image.c: In mono_image_open(), always use an absolute path name to
19007           look for already loaded images.
19009 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
19011         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
19012         missing in the windows build (like older cygwin include files).
19014 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
19016         * icall.c: Fixed check for possible integer overflow in Buffer_
19017         BlockCopy icall. Replaced comments style // by /* */.
19019 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
19021         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
19022         
19023         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
19024         check after MONO_VTADDR. Fixes pinvoke2.exe.
19026         * marshal.h marshal.c metadata.h: Add beginnings of support for
19027         ftnptr -> delegate marshalling.
19029 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
19031         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
19032         * threads.c: Fix warnings.
19034 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
19036         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
19037         * icall.c: Registered icalls for Suspend and Resume.
19038         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
19039           Thread.Abort.
19040         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
19041         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
19042         * process.c: Use WaitForSingleObjectEx.
19043         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
19044           checkpoints.
19045         * threads.c, threads.h: Make use of new Ex wait methods. Improved
19046           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
19047           for Suspend and Resume. Added new mono_thread_stop, used for stoping
19048           background threads. Added basic support for Abort in Windows.
19049           Start new threads using a managed delegate invoke wrapper. This wrapper
19050           has an interruption checkpoint that is needed since an interruption
19051           can be requested before the thread leaves the unmanaged code that starts 
19052           the thread.
19053         * marshal.c: Added interruption checkpoint after every native call, and
19054           also before managed calls for wrappers called from unmanaged code to
19055           go into managed code.
19056         * object.h: Added new field in MonoThread to keep track of interruption
19057           requests.
19059 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
19061         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
19062         calls.
19064 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19066         * appdomain.c:
19067         * assembly.c:
19068         * gc.c:
19069         * locales.c:
19070         * mono-config.c:
19071         * rand.c: getenv -> g_getenv (windows!)
19073         * process.c: complete_path is also used on non-windows platforms.
19075 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19077         * icall.c: new signature for Process_Start.
19079         * process.[ch]: new signature for Process_Start. If we're on windows
19080         and UseShellExecute is false, we have to search for the program by
19081         ourselves if we don't get a full path.
19083 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
19085         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
19086         marshalling and call CleanUpNativeData if needed. Fixes #58646.
19088 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19090         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
19091         Fixes bug #58373.
19093 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19095         * process.c: use double quotes to quote program name and arguments on
19096         windows. Fixes bug #58575.
19098 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19100         * file-io.c: don't return "." and ".." when using windows Find*File.
19102 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
19104         * marshal.c: Don't pass wrappers to message init because method 
19105         addressed used to lookup metadata. part of remoting[2|3] fix.
19107 2004-05-15  Jackson Harper  <jackson@ximian.com>
19109         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
19110         path is essentially the same as MONO_PATH except that it points to
19111         GACs instead of lib directories.
19112         * loader.h: The user gac is gone so we dont need function to
19113         enable/disable it.
19114         * mono-config.c: user gac option is now gone.
19115         
19116 2004-05-15  Jackson Harper  <jackson@ximian.com>
19118         * culture-info.h: Make defines more consistent, add calendar data
19119         to the culture info table.
19120         * culture-info-tables.h: Add basic calendar data. Basically
19121         everyone gets default gregorian until all the data is
19122         updated.
19123         * locales.c: Use the new consistent defines. Set calendar data for
19124         culture info objects.
19125         * object.h: add a field for calendar data to CultureInfo
19126         
19127 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
19129         * image.c: image->runtime_invoke_cache is keyed on signatures now.
19130         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
19131         a signature.
19132         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
19133         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
19134         an extra param that is the pointer of the method to invoke. The IL for
19135         the invoke method is no longer specific to the method, but to the
19136         signature of the method. Thus, we can share the same code for multiple
19137         methods. This reduces the number of methods that have to be compiled.
19139 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
19141         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
19143         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19145         * icall.c: Optimize Buffer.BlockCopy.
19147 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19149         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
19150         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
19151         quote). Changed them to "MMMM yyyy".
19153 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
19155         * rand.c
19156         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
19158 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
19160         * reflection.h: Updated after changes to managed structures.
19162         * appdomain.c: Bump corlib version.
19164 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19166         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
19167         windows.
19169 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19171         * Makefile.am: link to ../os/libmonoos.la on windows.
19173         * assembly.c:
19174                 -If MONO_DEBUG, warn about non-existing directories in
19175                 MONO_PATH.
19176                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
19177                 compile time variable.
19178                 -Removed init_default_path and call mono_set_rootdir from
19179                 libmonoos.a instead (windows only).
19181         * assembly.h: declare mono_assembly_getrootdir().
19183         * domain.c:
19184         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
19186         * loader.c: s/getenv/g_getenv/
19188 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
19190         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
19192         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
19194         * metadata.h: Add new marshalling conversions.
19196         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
19197         function.
19199         * reflection.c (mono_reflection_get_type): Lookup the type in all
19200         modules of a multi-module assembly. Fixes #58291.
19202 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
19204         * threads.c: Before aborting a background, set the StopRequested
19205         state.  This avoids throwing the Abort exception.
19206         In mono_thread_manage, don't continue with the shutdown until all
19207         aborted threads have actually stopped.
19209 2004-05-10  Jackson Harper  <jackson@ximian.com>
19211         * locales.c: Remove the modifier from culture names.
19212         
19213 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19215         * Makefile.am: monosn is not installed any more. It has been deprecated
19216         in favor of sn.
19218 2004-05-07  Jackson Harper  <jackson@ximian.com>
19220         * locales.c
19221         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
19222         Fix array construction, add bailout if the length is 0.
19224 2004-05-07  Dick Porter  <dick@ximian.com>
19226         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
19227         machine doesn't have a DNS entry.  Patch by Urs Muff
19228         (umuff@quark.com), fixes bug 57928.
19230 2004-05-06  Jackson Harper  <jackson@ximian.com>
19232         * reflection.c: Handle null PublicTokens properly. alloc mem for
19233         assembly names culture so we dont crash when freeing it.
19234         
19235 2004-05-06  Jackson Harper  <jackson@ximian.com>
19237         * assembly.c: Check the usergac when loading with partial names.
19238         
19239 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19241         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
19242         does nothing for now (not required for Linux/Windows) but the class
19243         library can call it (and a newer or modified runtime could need it).
19244         * icall.c: Registred icall.
19246 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19248         * loader.c: prints a message on module loading error we set MONO_DEBUG
19249         environment variable.
19251 2004-05-05  Jackson Harper  <jackson@ximian.com>
19253         * appdomain.c: Handle PublicKeyToken=null properly.
19254         
19255 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19257         * environment.c|h: Added icall ves_icall_System_Environment_
19258         GetOSVersionString to get the current OS version as a string.
19259         * icall.c: Registred icall.
19261 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
19263         * object.c: in mono_object_get_virtual_method(), take into account that
19264         non-virtual methods don't have a slot in the vtable. Check needed when
19265         the object is a proxy.
19267 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
19269         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
19270         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
19272         * object.c (mono_class_compute_gc_descriptor): Fix warning.
19274         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
19275         passed when a valuetype is expected.
19277         * object.c (mono_unhandled_exception): Only set the exit code if the
19278         exception happens in the main thread. Fixes thread5.exe.
19280         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
19281         invalid names. Fixes #58047.
19283 2004-05-03  Jackson Harper  <jackson@ximian.com>
19285         * assembly.c: This line was committed accidently and is unneeded.
19286         
19287 2004-05-03  Jackson Harper  <jackson@ximian.com>
19289         * icall.c: Add new icall for Assembly::LoadWithPartialName
19290         * assembly.c/.h: new function that probes the GAC to load partial
19291         assembly names by Paolo Molaro.
19292         
19293 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19295         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
19296         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
19297         (type_get_fully_qualified_name): Added PublicKeyToken when building a
19298         full type name.
19300 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19302         * appdomain.c: fixed check for 'neutral' culture and removed warning.
19303         * reflection.c: fix bug when parsing a full type name and Version is not
19304         the last thing in the string.
19306 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
19308         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
19309         crashes when it is freed.
19311 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19313         * assembly.c: print the compat warning to stderr.
19315 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
19317         * assembly.c (mono_assembly_load_references): Add a compatibility
19318         hack to run old applications that might be still referencing the
19319         3300-based assemblies, only do this for System.xxx.
19321 2004-05-01  Jackson Harper  <jackson@ximian.com>
19323         * appdomain.c: If the culture is neutral we set it to "".
19324         
19325 2004-04-29  Jackson Harper  <jackson@ximian.com>
19327         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
19329 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
19331         * string-icalls.c: added low overhead function for copying chars
19332         * icall.c: added needed icall for the above function
19334 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19336         * icall.c: fix return value of get_global_assembly_cache.  Implemented
19337         Environment.GetLogicalDrives.
19339 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
19341         * rand.c: try and talk to egd or prngd
19342         for random bytes if opening devices fail.
19344 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
19346         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
19347         alignment for the type using the native alignment of its members 
19348         instead of using klass->min_align.
19350         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
19352 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19354         * file-io.c:
19355         * socket-io.c: added check for sys/aio.h.
19357 2004-04-28  Dick Porter  <dick@ximian.com>
19359         * threads.c: Don't abort a thread thats already aborting, when
19360         terminating everything.
19362 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19364         * icall.c: added 2 new async calls for Socket.
19366         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
19367         IO on *nix systems.
19369         * threadpool.c: removed unused variable.
19371 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
19373         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
19375 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
19377         * locales.c: put back string_invariant_tolower () and
19378         string_invariant_toupper ().
19380 2004-04-26 David Waite <mass@akuma.org>
19382         * file-io.h:
19383         * socket-io.h:
19384         * threads.h:
19385         * unicode.h: remove comma from end of enumeration declarations
19387 2004-04-26 David Waite <mass@akuma.org>
19389         * debug-mono-symfile.h:
19390         * decimal.c:
19391         * mono_debug.h:
19392         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
19395 2004-04-26  Jackson Harper  <jackson@ximian.com>
19397         * appdomain.c: Increment version number.
19398         
19399 2004-04-26  Jackson Harper  <jackson@ximian.com>
19401         * appdomain.c: Set assembly references public token value when
19402         PublicKeyToken is specified, not the hash_value. Free public token
19403         values when free assembly name data. Previously the public key
19404         token was hex decoded, however we are using hex encoded public key
19405         tokens, so this is not neccasary.
19406         * assembly.c: Lookup assemblies in the gac if their public token
19407         value is set. Add function to allow enabling user gac
19408         lookups. Specify whether or not the assembly was loaded from the
19409         GAC. Compare full assembly names when checking the cache for
19410         assemblies (Temporarily disabled see comment in code). Remove
19411         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
19412         specifies trace-loader they get extra info to stdout on the
19413         loading of assemblies.
19414         * image.h: Add a field for an assembly references public token
19415         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
19416         whether an assembly has been loaded from the GAC.
19417         * image.c: Remove a corlib -> mscorlib name mapping.
19418         * loader.h: Add function to enable/disable the user gac.
19419         * mono-config.c: Check if the usergac is enabled in the config
19420         file.
19421         * icall.c: New icall to determine whether or not an assembly has
19422         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
19423         * tabldefs.h: Add constant for assemblyref flag that specifies a
19424         full public key is used instead of a public token.
19425         * reflection.c: Remove mscorlib -> corlib mappings. Set
19426         PublicTokenValue instead of hash value. This value is a hex
19427         string so it does not need to be expanded.
19429 2004-04-26  Martin Baulig  <martin@ximian.com>
19431         * mono-debug-debugger.c (mono_debugger_initialize): Set
19432         `mono_debugger_initialized' before calling mono_debug_lock().
19434 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
19436         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
19437           InternalToUpper/InternalToLower.
19438         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
19439           removed invariant culture shortcut.  This is now done in managed code.
19440         * locales.c: (string_invariant_toupper/tolower) removed.
19442 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19444         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
19445         Added Poll internal call.
19447         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
19448         call for Poll. Select was too heavy for polling a single socket.
19450         * threadpool.[ch]: added mono_threadpool_cleanup.
19451         * threads.c: use it. Don't use Thread_Abort on windows.
19453 2004-04-23  Martin Baulig  <martin@ximian.com>
19455         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
19457 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
19459         * icall.c: Registred new icalls for key pair protection and added an
19460         icall for Environment.GetFolderPath on Windows.
19461         * security.c|h: Added new icalls for key pair protection.
19463 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19465         * socket-io.c: don't display the non-supported family warning for known
19466         families. Now this is not displayed on windows when checking support
19467         for IPv4/IPv6.
19469 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19471         * class.c: don't display the layout warning for static fields.
19473 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
19475         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
19476         * locales.c, locales.h: Added new icalls for culture-specific
19477         Char.ToLower and Char.ToUpper.
19479 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19481         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
19482         by David Waite.
19484 2004-04-20  Martin Baulig  <martin@ximian.com>
19486         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
19487         of the type name before passing it to mono_reflection_type_from_name().
19489 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
19491         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
19492         encodings here. Fixes #56965.
19494 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
19496         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19497         fix test on strstr result not that I can see anything that
19498         relies on the result.
19500 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
19502         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
19503         Fixes #57081.
19505         * marshal.c (mono_marshal_get_string_encoding): New helper function.
19507         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
19508         function to determine which marshalling to use for strings. Fixes
19509         #56965.
19511         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
19513         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
19515 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
19517         * icall.c: #include mono-config.h
19519 2004-04-15  Jackson Harper  <jackson@ximian.com>
19521         * culture-info-tables.h: Fix date formats for en-US culture.
19522         
19523 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
19525         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
19526         ThreadPool.SetMinThreads.
19527         * threadpool.c: Implemented ThreadPool.GetMinThreads and
19528         ThreadPool.SetMinThreads.
19530 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19532         * mono-config.c: also load the .config file in the directory
19533         where the assembly was found.
19535 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
19537         * assembly.c: load per-assembly config files.
19538         * icall.c: decrapified code to get the config dir and moved to
19539         mono-config.c.
19540         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
19541         per-assembly config files. When doing a dll map lookup give precedence
19542         to the per-assembly data.
19544 2004-04-14  Martin Baulig  <martin@ximian.com>
19546         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
19547         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
19548         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
19550         * mono-debugger-debugger.c: While the debugger is locked, remember
19551         whether the symbol tables have changes and send one single
19552         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
19554 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
19556         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
19558         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
19559         function.
19561         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
19562         account when marshalling string arrays. Fixes #56965.
19564 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
19566         * icall.c: Add new icalls mapping for security.
19567         * security.c|h: Add internal calls for WindowsIdentity,
19568         WindowsImpersonationContext and WindowsPrincipal.
19570 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
19572         * class.c: Added comment to ensure the System.MonoDummy class
19573         is removed when no longer necessary
19575 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
19577         * appdomain.c: Pass arguments to the bootstraping exceptions to
19578         minimize JITed methods at boot
19580         * metadata.c (mono_exception_from_name_two_strings): Allow for the
19581         second string to be null.
19583         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19584         Change the protocol to minimize the JIT methods at startup.  Now
19585         it Returns the internal codepage, if the value of "int_code_page"
19586         is 1 at entry, and we can not compute a suitable code page
19587         number, returns the code page as a string.
19589 2004-04-13  Jackson Harper  <jackson@ximian.com>
19591         * culture-info-tables.h: Fix number of decimal digits for all
19592         english locales.
19594 2004-04-13  Jackson Harper  <jackson@ximian.com>
19596         * icall.c: Clairfy out of sync error message. It is not always
19597         your corlib that is out of sync.
19599 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
19601         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
19602         properties when only the set accessor is overriden. Fixes #55874.
19604 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
19606         * assembly.c (mono_assembly_load_references): Make this thread safe.
19607         Fixes #56327.
19609 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
19611         * monosn.c: Add missing initialization calls.
19613 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
19615         * locales.c:
19616         ves_icall_System_Globalization_CultureInfo_construct_number_format
19617         Fix g_assert so it compiles on fussier compilers re int/ptr
19618         mismatch
19620 2004-04-08  Dick Porter  <dick@ximian.com>
19622         * socket-io.h:
19623         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
19624         53992.  Also rearrange the code so that the internal calls return
19625         an error value and exceptions are thrown from managed code.
19627         * icall.c: Add type info to the socket icalls.
19629 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19631         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
19632         owes me a beer.
19634 2004-04-07  Martin Baulig  <martin@ximian.com>
19636         * class.c (mono_class_from_generic_parameter): Don't default
19637         `klass->parent' to `mono_defaults.object_type'.
19639 2004-04-07  Martin Baulig  <martin@ximian.com>
19641         * reflection.c (mono_reflection_initialize_generic_parameter): Set
19642         `param->pklass->reflection_info'.       
19644 2004-04-07  Jackson Harper  <jackson@ximian.com>
19646         * culture-info-tables.h: Fix date separator symbol.
19647         
19648 2004-04-07  Martin Baulig  <martin@ximian.com>
19650         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
19651         from System.Type to System.MonoType.
19653 2004-04-07  Martin Baulig  <martin@ximian.com>
19655         * reflection.h
19656         (MonoReflectionGenericParam): Added `has_reference_type' and
19657         `has_value_type' fields.
19659         * reflection.c (mono_image_get_generic_param_info): Encode the
19660         correct flags if we have the `class' or `struct' constraint.
19662 2004-04-07  Martin Baulig  <martin@ximian.com>
19664         * reflection.h
19665         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
19667 2004-04-07  Jackson Harper  <jackson@ximian.com>
19669         * appdomain.c: Revert extra patches, just wanted to bump the
19670         version number.
19671         
19672 2004-04-07  Jackson Harper  <jackson@ximian.com>
19674         * Makefile.am: Add culture-info private headers.
19675         * icall.c: Add new icalls for contructing locales.
19676         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
19677         * locales.h: Declare new culture info construction methods.
19678         * object.h: Add new fields used to avoid the CultureMap to
19679         MonoCultureInfo.
19680         * culture-info.h: Definition of structs used in the culture info
19681         tables.
19682         * culture-info-tables.h: Autogenerated tables that contain culture
19683         info data. This file was generated with the locale-builder tool.
19684         * appdomain.c: Incement corlib version number.
19685         
19686 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
19688         * appdomain.c: (mono_runtime_init) move mono_thread_init
19689         to before mono_object_new calls so critical sections
19690         are initialized before use.
19692 2004-04-07  Martin Baulig  <martin@ximian.com>
19694         * icall.c
19695         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
19696         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
19697         (ves_icall_MonoGenericParam_initialize): Removed.
19698         (monogenericparam_icalls): Removed.
19699         (generictypeparambuilder_icalls): Added new table for
19700         System.Reflection.Emit.GenericTypeParameterBuilder.
19702         * reflection.c
19703         (mono_reflection_define_generic_parameter): Removed.
19704         (mono_reflection_initialize_generic_parameter): This is now called
19705         from GenericTypeParameterBuilder's .ctor.
19707 2004-04-06  Martin Baulig  <martin@ximian.com>
19709         * class.c (mono_class_init): Don't inflate nested classes in a
19710         generic instance.
19711         (mono_type_get_name_recurse): Include the generic arguments for
19712         generic instances and generic type declarations.
19713         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
19714         (_mono_class_get_instantiation_name): Removed.
19715         (mono_class_create_generic): Always use `gklass->name' as our name.
19717         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
19719         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
19720         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
19721         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
19722         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
19723         closed generic methods here.
19725         * reflection.c
19726         (mono_reflection_generic_inst_get_nested_types): Removed.
19727         (inflate_mono_method): Copy the generic parameters from the
19728         MonoMethodHeader into out MonoGenericMethod.
19730 2004-04-06  Martin Baulig  <martin@ximian.com>
19732         * row-indexes.h
19733         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
19735         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
19737         * reflection.c (build_compressed_metadata): If we have any entries
19738         in the GenericParam, MethodSpec or GenericParamConstraint tables,
19739         set the header version to 1.1.
19741 2004-04-06  Martin Baulig  <martin@ximian.com>
19743         * class.c (mono_class_init): If we're a generic instance,
19744         initialize our nested classes, too.
19745         (_mono_class_get_instantiation_name): Deal with the new `!%d'
19746         suffix. 
19748 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19750         * process.c: quote the argument passed to the shell on windows.
19752 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
19754         * threads.c (mono_alloc_special_static_data): Allow this to be
19755         called during startup.
19757 2004-04-02  Martin Baulig  <martin@ximian.com>
19759         * icall.c
19760         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
19762 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
19764         * icall.c: Fix build.
19766 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
19768         * Makefile.am: Added security.c|h.
19769         * icall.c: Added icall for get_UserName;
19770         * security.c: New file for security related icalls. Added function
19771         get_UserName for System.Environment (fix #56144).
19772         * security.h: New. Header file for security.c
19774 2004-04-02  Dick Porter  <dick@ximian.com>
19776         * icall.c: Deleted the icalls that were obsoleted some time ago
19777         by the ICU string code, and which were mixed into the icall
19778         rearranging.  Fixes bug 55969.
19780         * string-icalls.h: 
19781         * string-icalls.c: Deleted the code that those icalls reference.
19783 2004-04-01  Martin Baulig  <martin@ximian.com>
19785         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
19787         * class.c (mono_class_from_generic_parameter): Don't set 
19788         TYPE_ATTRIBUTE_INTERFACE.
19789         (my_mono_class_from_generic_parameter): Likewise.
19791 2004-04-01  Martin Baulig  <martin@ximian.com>
19793         * loader.c (find_method): Added an optional `MonoClass *ic'
19794         argument to search in a specific interface.
19795         (mono_get_method_constrained): New public function.
19797 2004-04-01  Martin Baulig  <martin@ximian.com>
19799         * reflection.c (mono_image_get_generic_field_token): Use the
19800         `handleref' cache here.
19802 2004-04-01  Martin Baulig  <martin@ximian.com>
19804         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
19806         * reflection.c (create_generic_typespec): Use the `typespec' hash
19807         here, not the `typeref' one.    
19809 2004-04-01  Martin Baulig  <martin@ximian.com>
19811         * class.c (mono_class_inflate_generic_type): Moved the
19812         functionality into a new static inflate_generic_type() which
19813         returns NULL if it didn't do anything.  Only increment the
19814         `mono_stats.inflated_type_count' if we actually inflated
19815         something.
19816         (mono_class_get_full): Check the classes type to see whether we
19817         need to inflate it; also inflate MONO_TYPE_(M)VAR.
19819 2004-04-01  Jackson Harper  <jackson@ximian.com>
19821         * reflection.c: Set culture for assembly references.
19822         
19823 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
19825         * reflection.[ch], icall.[ch], Fix support for pinning variables.
19827 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19829         * assembly.c:
19830         (do_mono_assembly_open): the critical section also covers
19831         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
19833 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19835         * threads.c:
19836         (mono_manage_threads): abort the background threads when finishing.
19837         Fixes bug #47232.
19839 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19841         * gc.c: only close the done_event handle if there was no timeout.
19842         C-ified comments.
19844 2004-03-30  Martin Baulig  <martin@ximian.com>
19846         * icall.c (icall_entries): It's called "System.Activator", not
19847         "System.Activation".    
19849 2004-03-30  Martin Baulig  <martin@ximian.com>
19851         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
19852         (mono_class_create_from_typespec): Likewise.
19854 2004-03-30  Martin Baulig  <martin@ximian.com>
19856         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
19857         `has_ctor_constraint' and `initialized'.
19859 2004-03-30  Martin Baulig  <martin@ximian.com>
19861         * reflection.c (encode_new_constraint): New static function to add
19862         the constructor constraint attribute to a type parameter.
19863         (encode_constraints): Call encode_new_constraint() if necessary.
19865         * reflection.h
19866         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
19868         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
19869         
19870 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
19872         * reflection.c, icall.c: add support for pinning variables. 
19874 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
19876         * marshal.c (mono_marshal_get_managed_wrapper):
19877         init bool local with zero rather than null.
19879 2004-03-29  Martin Baulig  <martin@ximian.com>
19881         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
19882         the "official" behavior here.
19883         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
19885 2004-03-29  Martin Baulig  <martin@ximian.com>
19887         * icall.c: Reflect latest API changes.
19889 2004-03-29  Martin Baulig  <martin@ximian.com>
19891         * loader.c (mono_get_method_from_token): Also call
19892         mono_metadata_load_generic_params () for abstract and interface
19893         methods; replace the type arguments in the method signature with
19894         the ones which are loaded from the metadata.
19896 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
19898         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
19899         of the lock is not the current thread. MS.NET don't do it, in spite of
19900         what the documentation says. See bug #56157.
19902 2004-03-28  Martin Baulig  <martin@ximian.com>
19904         * class.c (mono_class_init): Don't call init_properties() and
19905         init_events() for generic instances; set `prop->parent' when
19906         inflating properties.
19908         * reflection.c (mono_generic_inst_get_object): Call
19909         `mono_class_init (ginst->klass)'.
19910         (mono_type_get_object): Only create a MonoGenericInst if your
19911         generic type is a TypeBuilder.
19912         (do_mono_reflection_bind_generic_parameters): Only set
19913         `ginst->is_dynamic' if our generic type is a TypeBuilder.
19915 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
19917         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
19918         Fixes #56091.
19920 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19922         * icall.c: added Kill_internal icall.
19923         * process.[ch]: added Kill_internal icall.
19925 2004-03-25  Martin Baulig  <martin@ximian.com>
19927         * class.h (MonoStats): Added `generic_instance_count',
19928         `inflated_method_count', `inflated_type_count' and
19929         `generics_metadata_size'.       
19931 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19933         * reflection.c: no warnings now.
19935 2004-03-25  Martin Baulig  <martin@ximian.com>
19937         * class.c (mono_class_get_full): New public function; does a
19938         mono_class_get(), but also takes a `MonoGenericContext *'.
19940         * loader.c (mono_field_from_memberref): Renamed to
19941         `field_from_memberref', made static and added `MonoGenericContext *'
19942         argument.
19943         (mono_field_from_token): Added `MonoGenericInst *' argument.
19944         (method_from_memberef): Likewise.
19945         (mono_get_method_from_token): Likewise.
19946         (mono_get_method_full): New public function; does a
19947         mono_get_method(), but also takes a `MonoGenericContext *'.
19949         * verify.c (mono_method_verify): Get the method's generic context
19950         and pass it to mono_field_from_token(), mono_get_method_full() and
19951         mono_class_get_full().
19953 2004-03-25  Martin Baulig  <martin@ximian.com>
19955         * class.c (mono_class_inflate_generic_type): Take a
19956         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
19957         `MonoGenericMethod *'.
19959 2004-03-25  Martin Baulig  <martin@ximian.com>
19961         * loader.h (MonoMethodInflated): Store the MonoGenericContext
19962         instead of the MonoGenericMethod here.
19964 2004-03-25  Martin Baulig  <martin@ximian.com>
19966         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
19967         each time we create a new MonoGenericInst, we also create a new
19968         context which points back to us.
19970         * class.c (inflate_method): Use `ginst->context' instead of
19971         creating a new context.
19973         * loader.c (method_from_memberref): Use
19974         `klass->generic_inst->context' instead of creating a new context.
19976 2004-03-25  Martin Baulig  <martin@ximian.com>
19978         * class.h (MonoGenericContext): New struct.
19979         (MonoGenericMethod): Removed `generic_inst'.
19981         * class.c (mono_class_inflate_generic_method): Take a
19982         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
19984 2004-03-25  Martin Baulig  <martin@ximian.com>
19986         * loader.h (MonoMethodInflated): New typedef.
19988         * metadata.h (MonoMethodSignature): Removed `gen_method', make
19989         `generic_param_count' consume just 30 bits, added `is_inflated'
19990         and `has_type_parameters' flags (one bit each).
19992         * class.c (mono_class_inflate_generic_method): Create a
19993         MonoMethodInflated instead of a MonoMethodNormal and set
19994         `is_inflated' in the method signature.
19996         * class.h (MonoGenericMethod): Removed `generic_method'.
19998 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
20000         * image.c: Make sure the name of a MonoImage is always an absolute path.
20001           This fixes bug #54415.
20003 2004-03-24  Martin Baulig  <martin@ximian.com>
20005         * class.c (mono_class_setup_vtable): If we're a generic instance,
20006         use our generic type's vtable size.
20008 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
20010         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
20011         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
20012         problems.
20014 2004-03-23  Martin Baulig  <martin@ximian.com>
20016         * class.h (MonoDynamicGenericInst): Added `int count_events' and
20017         `MonoEvent *events'.
20019         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
20020         (typebuilder_icalls): Added "get_event_info"; calls
20021         mono_reflection_event_builder_get_event_info(). 
20023         * reflection.c (mono_reflection_generic_inst_initialize): Added
20024         `MonoArray *events'.
20025         (mono_reflection_event_builder_get_event_info): New function.
20027 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
20029         * object.h: add mono_type_initialization_init
20031         * object.c (mono_runtime_class_init): 
20032         implement class constructor synchronization rules
20033         to cope with threading issues.  
20034         add mono_type_initialization_init
20036         * appdomain.c (mono_runtime_init): call 
20037         mono_type_initialization_init
20039         * class.h: removing initializing field from MonoVTable
20041 2004-03-23  Martin Baulig  <martin@ximian.com>
20043         * class.c (my_mono_class_from_generic_parameter): Use
20044         `param->name' if it's not NULL. 
20046 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
20048         * class.c: do not insert non-virtual methods in the vtable.
20049         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
20050         that means the method is non-virtual. This never would have
20051         happened before.
20053 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
20055         * profiler.c: Added lock for accessing coverage_hash.
20057 2004-03-22  Martin Baulig  <martin@ximian.com>
20059         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
20060         `method->method->signature->generic_param_count != 0' to make it
20061         work for interface methods.
20063 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20065         * process.c: quote the string passed to the shell using g_shell_quote.
20067 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20069         * threads.c:
20070         (mono_threads_manage): don't remove the finalizer thread and self
20071         from the threads hash table so that mono_thread_manage can be called
20072         more than once.
20074 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20076         * process.c: quote the arguments when UseShellExecute is true. Fixes
20077         bug #55790.
20079 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20081         * threads.c: set mono_thread_detach as a cleanup routine for every
20082         thread. This way it's always executed upon thread termination, either
20083         aborted or finished normally. No more xsp hangs!
20085 2004-03-17  Martin Baulig  <martin@ximian.com>
20087         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
20088         `int count_nested' and a `MonoType **nested'.
20090         * reflection.c (mono_reflection_bind_generic_parameters): Moved
20091         most of the functionality into a new static
20092         do_mono_reflection_bind_generic_parameters() and don't take a
20093         `MonoType *nested_in' argument any more.  Don't compute nested
20094         types here.
20095         (mono_reflection_generic_inst_get_nested_types): New public method
20096         to get nested types.
20098         * class.c (mono_class_create_generic): Set `klass->nested_in' if
20099         we're a nested class.
20101         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
20102         mono_reflection_generic_inst_get_nested_types() to compute the
20103         nested types.
20105 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20107         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
20108         descriptive error message under windows.
20109         
20110 2004-03-17  Martin Baulig  <martin@ximian.com>
20112         * class.c (dup_type): Added `const MonoType *original' argument;
20113         copy the attrs from the original type.
20115 2004-03-17  Martin Baulig  <martin@ximian.com>
20117         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
20118         `m->generic_inst_cache' here.
20120 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20122         * exception.h exception.c: Add stack_overflow_exception.
20124 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20126         * threadpool.c:
20127         (overlapped_callback): call SetEvent *after* invoking the callback.
20128         No need to call CloseHandle.
20130 2004-03-16  Martin Baulig  <martin@ximian.com>
20132         * reflection.c (mono_image_get_fieldref_token): Take a
20133         `MonoReflectionField *' instead of a `MonoClassField *' and a
20134         `MonoClass *'; store the `MonoReflectionField *' in the hash.
20136 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20138         * appdomain.c: don't add the culture to the filename we're looking for
20139         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
20141 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20143         * locales.c: don't ignore symbols when doing case insensitive compares.
20144         Thanks Dick! Fixes bug #54046.
20146         * threads.c: surround 'threads' usage with enter/leave in
20147         mono_thread_manage.
20149 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
20151         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
20152         implicitly marshalled as [Out]. Fixes #55450.
20154         (mono_marshal_get_runtime_invoke): Zero out the result if there is
20155         an exception.
20157 2004-03-16  Martin Baulig  <martin@ximian.com>
20159         * class.c (mono_class_from_generic_parameter): Use the actual
20160         parameter name. 
20162 2004-03-16  Martin Baulig  <martin@ximian.com>
20164         * reflection.c (type_get_signature_size): New static function.
20165         Compues the size of the type in a method signature.
20166         (method_get_signature_size): New static function; calls
20167         type_get_signature_size() to compute the actual size of the
20168         method's signature.
20169         (method_encode_signature): Use method_get_signature_size() to get
20170         the signature's size rather than using `nparams * 10'.
20172 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20174         * file-io.h: define here WapiOverlapped on windows. I don't want the
20175         regular OVERLAPPED one.
20177         * file-io.c:
20178         * threadpool.c: somehow, BindIoCompletionCallback is not found.
20179         Disabling AIO on windows.
20181 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20183         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
20184         bug #55385.
20186 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20188         * appdomain.c: upgraded corlib version.
20190         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
20191         and BeginWrite. Allow opening files for asynchrnous operations.
20193         * file-io.h: new struct that maps FileStreamAsyncResult.
20194         * icall.c: added new icalls.
20195         * process.[ch]: support setting child process environment variables
20196         and use the SHELL or COMSPEC when UseShellExecute is true.
20198         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
20199         callback for async. IO is here and also BindHandle.
20201         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
20202         from here.
20204 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
20206         * reflection.c (create_custom_attr): Allow len == 0.
20208         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
20209         computation on big-endian machines.
20211 2004-03-13  Martin Baulig  <martin@ximian.com>
20213         * class.h (MonoGenericInst): Added `int count_ifaces'.
20215         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
20216         `ginst->count_ifaces' instead `klass->interface_count' since we
20217         may get called before the vtable is created.
20219         * loader.c (mono_method_get_param_names): If we're a generic
20220         instance, return and don't initialize the class.
20222         * reflection.c (mono_reflection_setup_generic_class): Don't call
20223         ensure_runtime_vtable().
20224         (mono_reflection_bind_generic_parameters): Set
20225         `ginst->count_ifaces'.
20227 2004-03-11  Jackson Harper <jackson@ximian.com>
20229         * icall.c:
20230         * unicode.c:
20231         * unicode.h: Remove unused System.Char icalls.
20232         
20233 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
20235         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
20236         code when we P/Invoke the first library in Windows.Forms, instead
20237         of when we first open the assembly.
20239         * assembly.c: Drop the lookup from here.
20241 2004-03-10  Martin Baulig  <martin@ximian.com>
20243         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
20244         class for properties, fields and events.  Finally fixes #54945.
20246 2004-03-10  Martin Baulig  <martin@ximian.com>
20248         * metadata.c (mono_metadata_class_equal): New static function;
20249         checks whether two generic instances or two generic parameters are
20250         equal.
20251         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
20252         compare classes.        
20254 2004-03-10  Martin Baulig  <martin@ximian.com>
20256         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
20258         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
20259         argument and write it into the `reflection_info' field.
20261         * icall.c
20262         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
20263         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
20265 2004-03-09  Jackson Harper  <jackson@ximian.com>
20267         * char-conversions.h: use 8 bits for numeric data its all we need
20268         * icall.c: numeric data is only 8 bits now.
20270 2004-03-09  Martin Baulig  <martin@ximian.com>
20272         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
20274         * class.c (init_properties, init_events): Initialize the new
20275         `parent' field.
20277         * reflection.c (typebuilder_setup_properties): Likewise.
20278         (typebuilder_setup_events): Likewise.
20280         * reflection.h (MonoEventInfo): Replaced `parent with
20281         `declaring_type' and `reflected_type'.
20283         * icall.c (ves_icall_get_property_info): Distinguish between
20284         declaring and reflected type.
20285         (ves_icall_get_event_info): Likewise.
20287 2004-03-09  Martin Baulig  <martin@ximian.com>
20289         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
20290         (ves_icall_Type_GetField): Correctly set field->klass.
20292 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
20294         * loader.h: Fix warning.
20296 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
20298         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
20299         library routine if present.  Notice that it will still continue
20300         executing even if its missing, for those working on the Gtk#
20301         edition of Windows.Forms.
20303         * assembly.c (do_mono_assembly_open): If loading the
20304         System.Windows.Forms call mono_loader_wini_init.
20306 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
20308         * class.h: Added MonoRemoteClass struct.
20309         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
20310         function for MonoStrings.
20311         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
20312         Added internal call for getting the proxy type.
20313         * marshal.c: Get the type of transparent proxies from its remote_class.
20314         Added methods that generate the IL for type checks and casts:
20315         mono_marshal_get_isinst, mono_marshal_get_castclass, 
20316         mono_marshal_get_proxy_cancast.
20317         * marshal.h: Declaration of the previous new methods.
20318         * object.c: Added new moethods for creating and updating MonoRemoteClass
20319         instances: mono_remote_class, mono_upgrade_remote_class, 
20320         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
20321         * verify.c: FIx transparent_proxy_fields layout.
20322         * appdomain.c: Bump corlib version.
20324 2004-03-04  Jackson Harper  <jackson@ximian.com>
20326         * icall.c: Add icall to access char conversion tables.
20327         * char-conversions.h: Character conversion tables.
20328         * Makefile.am: Add char-conversions.h private header file.
20329         
20330 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
20332         * appdomain.c (unload_thread_main): Increase unloading timeout to
20333         10 sec as a temporary workaround for Nant problems.
20335 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
20337         * gc.c: Add checks for GC_enable and GC_disable.
20339         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
20340         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
20341         (bug #54988).
20342         
20343 2004-02-27  Martin Baulig  <martin@ximian.com>
20345         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20346         `MonoReflectionType *' instead of a `MonoType *'.
20348 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
20350         * gc.c (run_finalize): Avoid finalizing the object representing the
20351         finalizer thread.
20352         (finalizer_thread): Fix warning.
20354 2004-02-25  Martin Baulig  <martin@ximian.com>
20356         * class.c (_mono_class_get_instantiation_name): Added `int offset'
20357         argument for nested types.
20358         (mono_class_create_generic): Added support for nested generictypes.
20360         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
20361         `GList *nested'.
20363         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
20365         * reflection.c (method_encode_signature): Increase the minimum
20366         value of `size' from 10 to 11.
20367         (mono_reflection_bind_generic_parameters): Take `int type_argc'
20368         and `MonoType **types' arguments instead of the `MonoArray
20369         *types'; added `MonoType *nested_in'.  Recursively instantiate
20370         nested classes. 
20372 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
20374         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
20375         stack_overflow_ex members which are used by exception handling.
20377         * appdomain.c (mono_runtime_init): Initialize the new members.
20379         * gc.c (mono_gc_enable): New helper function.
20380         * gc.c (mono_gc_disable): New helper function.
20382 2004-02-23  Martin Baulig  <martin@ximian.com>
20384         * icall.c: I must have been really stupid - make it actually work
20385         this time ;-)
20387 2004-02-23  Martin Baulig  <martin@ximian.com>
20389         * loader.c (method_from_memberref): Only inflate the method if
20390         it's in another klass.
20392 2004-02-23  Martin Baulig  <martin@ximian.com>
20394         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
20395         (mono_class_init): If we're a generic instance and an interface,
20396         compute `class->interface_id'; also create `class->interfaces'
20397         here and inflate them.
20399         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
20400         `ginst->is_open'.
20401         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
20403         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
20405 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
20407         * reflection.c (method_encode_code): Improved the error message
20408         generated by the exception.
20410 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20412         * icall.c: Martin did not do what he said in the ChangeLog for
20413         2004-02-18, but put back the changes for properties and events.
20414         Commenting those changes out again and adding comment to bug #54518.
20415         
20416         * process.c: removed warning.
20418 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
20420         * marshal.c (emit_struct_conv): Print an error message instead of
20421         asserting when a type does not have the StructLayout attribute.
20423 2004-02-20  Martin Baulig  <martin@ximian.com>
20425         * reflection.c (mono_type_get_object): Also use the cache for
20426         generic instances.
20427         (mono_reflection_bind_generic_parameters): Always compute
20428         `ginst->ifaces'.        
20430 2004-02-20  Martin Baulig  <martin@ximian.com>
20432         * class.h (MonoGenericMethod): Removed `klass'.
20434         * class.c (mono_class_inflate_generic_method): Added `MonoClass
20435         *klass' argument.
20437 2004-02-20  Martin Baulig  <martin@ximian.com>
20439         * reflection.c (method_encode_methodspec): Actually use the
20440         uninflated signature for the memberref.
20442 2004-02-20  Martin Baulig  <martin@ximian.com>
20444         * class.h (MonoGenericMethod): Removed `declaring'.
20446         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
20447         is NULL, compute it here.
20449 2004-02-20  Martin Baulig  <martin@ximian.com>
20451         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
20453         * metadata.c (mono_metadata_generic_inst_hash): New method.
20454         (mono_metadata_generic_inst_equal): New method.
20456         * reflection.c (mono_reflection_bind_generic_parameters): Use the
20457         `klass->image->generic_inst_cache' cache to avoid creating
20458         duplicate MonoGenericInst's.
20460         * class.c (mono_class_inflate_generic_type): Use the cache.
20462 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20464         * object.c: fixed gc descriptor calculation for embedded valuetypes.
20466 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20468         * icall.c: added Socket.WSAIoctl icall.
20470         * socket-io.[ch]: implemented
20471         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
20473 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
20475         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
20477 2004-02-18  Urs C Muff  <umuff@quark.com>
20479         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
20480         this work on PPC and other big-endian architectures.
20482         * debug-mono-symfile.h: Prepended the names of all the `guint32'
20483         fields with an underscore to make sure they're only accessed by
20484         the read32() macro.
20486 2004-02-18  Martin Baulig  <martin@ximian.com>
20488         * icall.c: Put the klass->refclass changes back for methods and
20489         fields, but not for properties and events.  We're currently not
20490         distinguishing between DeclaringType and ReflectedType for
20491         properties and events, that's what caused the regressions.
20493 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20495         * object.c:
20496         (mono_async_result_new): the handle can be NULL.
20498         * threadpool.c: Use an event instead of a semaphore, don't initialize
20499         it until needed. This saves quite a few semaphores from being created
20500         when using the threadpool.
20502 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
20504         * object.c (mono_string_is_interned_lookup): Fix interning of long
20505         strings. Fixes #54473.
20507         * domain.c (ldstr_equal): Optimize if the two strings are equal.
20509         * icall.c: Revert the klass->refclass changes since they introduce
20510         regressions (bug #54518).
20512 2004-02-18  Martin Baulig  <martin@ximian.com>
20514         * class.c (mono_class_init): If we're a generic instance and don't
20515         come from a TypeBuilder, inflate our members here.
20516         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
20517         (mono_class_create_generic): New public method.
20518         (mono_class_initialize_generic): Removed.
20519         (get_instantiation_name): Renamed to
20520         _mono_class_get_instantiation_name() and made it public.
20522 2004-02-18  Martin Baulig  <martin@ximian.com>
20524         * class.c (mono_class_inflate_generic_type): Clear the new
20525         instance's `nginst->klass' when inflating a generic instance.
20526         (mono_class_is_subclass_of): Added (basic) support for generic
20527         instances.
20529 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
20531         * appdomain.h, domain.c: use a MonoCodeManager instead of a
20532         MonoMempool to hold compiled native code.
20534 2004-02-17  Martin Baulig  <martin@ximian.com>
20536         * class.h (MonoDynamicGenericInst): Added `count_properties' and
20537         `properties'.
20539         * reflection.c (mono_reflection_generic_inst_initialize): Added
20540         `MonoArray *properties' argument.
20542         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
20544 2004-02-17  Martin Baulig  <martin@ximian.com>
20546         * icall.c (ves_icall_Type_GetFields): Renamed to
20547         ves_icall_Type_GetFields_internal() and added a
20548         `MonoReflectionType *rtype' argument; pass it to
20549         mono_field_get_object() to set the field's "reflected" type.
20550         (ves_icall_Type_GetConstructors): Likewise.
20551         (ves_icall_Type_GetEvents): Likewise.
20552         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
20553         argument; pass it to mono_method_get_object() to set the method's
20554         "reflected" type.       
20556 2004-02-17  Martin Baulig  <martin@ximian.com>
20558         * class.h (MonoDynamicGenericInst): New type.
20559         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
20561         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
20562         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
20563         (ves_icall_MonoGenericInst_GetFields): New interncall.
20565         * class.c (mono_class_from_generic): Don't call
20566         mono_class_initialize_generic() if this is a dynamic instance;
20567         ie. it's being created from a TypeBuilder.
20568         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
20569         `class->byval_arg.type'.
20571         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
20572         to `inflate_method' and made static.
20573         (mono_reflection_inflate_field): Removed.
20574         (mono_reflection_generic_inst_initialize): New public method.
20576         * reflection.h (MonoReflectionGenericInst): Removed `methods',
20577         `ctors' and `fields'; added `initialized'.
20579 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
20581         * debug-helpers.c (mono_method_full_name): Fix output for empty
20582         namespaces.
20584 2004-02-12  Martin Baulig  <martin@ximian.com>
20586         * class.h (MonoClassField): Added `MonoType *generic_type'.
20588         * reflection.c (mono_image_get_fieldref_token): Added support for
20589         instantiated generic types.
20590         (field_encode_inflated_field): Removed.
20591         (mono_image_get_inflated_field_token): Removed.
20592         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
20594         * reflection.h (MonoReflectionInflatedField): Removed.
20596 2004-02-12  Martin Baulig  <martin@ximian.com>
20598         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
20599         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
20601         * reflection.c (mono_image_get_methodspec_token): Take a
20602         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
20603         (mono_image_create_token): Check whether we have a
20604         `method->signature->gen_method' and call
20605         mono_image_get_methodspec_token() if appropriate.
20606         (inflated_method_get_object): Removed.
20607         (mono_reflection_bind_generic_method_parameters): Return a
20608         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
20609         (mono_reflection_inflate_method_or_ctor): Likewise.
20611         * reflection.h (MonoReflectionInflatedMethod): Removed.
20613 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
20615         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
20616         for custom valuetype marshalling.
20618         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
20620 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20622         * icall.c: fixed WSAGetLastError_internal name.
20624 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
20626         * threads.c (mono_thread_attach): Allow this to be called multiple
20627         times for a thread.
20628         
20629         * threads.c (build_wait_tids): Do not wait for ourselves.
20631         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
20632         appdomain list is empty.
20634         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
20635         memory returned by mono_string_builder_to_utf16, since it points into
20636         managed memory. Thanks to Bernie Solomon for noticing this.
20638         * icall.c: Add AppDomainSetup icalls.
20640         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
20642         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
20643         types.
20645         * reflection.c (reflection_methodbuilder_to_mono_method): Save
20646         custom attributes to the method_aux struct. Also fix array indexes etc.
20648         * loader.c (mono_method_get_param_names): Make dynamic case work again.
20649         
20650 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
20652         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
20653         (both static and runtime) and reduce startup time.
20655 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
20657         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
20658         AsAny marshalling conversion instead of crashing.
20660         * marshal.c: Fix warnings.
20662 2004-02-09  Martin Baulig  <martin@ximian.com>
20664         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
20666         * reflection.h (MonoReflectionInflatedMethod): Removed the
20667         `declaring' field, it's now in the unmanaged MonoGenericMethod.
20669         * reflection.c (method_encode_methodspec): Removed the `method'
20670         argument; we get it from `gmethod->declaring'.
20671         (inflated_method_get_object): Removed the `declaring' argument.
20673 2004-02-09  Martin Baulig  <martin@ximian.com>
20675         * class.h (MonoGenericMethod): New type.
20676         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
20677         `generic_method'.
20679         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
20680         a `MonoGenericMethod *gen_method' one.
20682         * class.c (mono_class_inflate_generic_type): Take an additional
20683         `MonoGenericMethod * argument.  This is only non-NULL if we're
20684         inflating types for a generic method.   
20685         (mono_class_inflate_generic_signature): Renamed to
20686         inflate_generic_signature() and made static; take a
20687         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20688         (inflate_generic_header): Take a `MonoGenericMethod *' argument
20689         instead of a `MonoGenericInst *' one.
20690         (mono_class_inflate_generic_method): Likewise.
20692         * reflection.c (encode_generic_method_sig): Take a
20693         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20694         (method_encode_methodspec): Likewise.
20695         (inflated_method_get_object): Likewise. 
20697         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
20698         field with a `MonoGenericMethod *gmethod' one.  
20700 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
20702         * class.h (mono_class_has_parent): add parens to expansion
20703         so you can ! this.
20705 2004-02-08  Martin Baulig  <martin@ximian.com>
20707         * image.h (MonoImage): Removed `generics_cache'.
20709         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
20710         instead of a `MonoType *' argument; removed the `inflate_methods'
20711         argument.  Don't inflate methods here.
20713         * loader.c (find_method): If it's a generic instance, call
20714         mono_class_init() on the `sclass->generic_inst->generic_type'.
20716         * metadata.c (mono_type_size): Make this work on uninitialized
20717         generic instances; call it on the `ginst->generic_type's class.
20719         * reflection.c (mono_reflection_bind_generic_parameters): Call
20720         mono_class_from_generic() to create the `ginst->klass'.
20722 2004-02-08  Martin Baulig  <martin@ximian.com>
20724         * class.h (MonoClass): Changed type of `generic_inst' from
20725         `MonoType *' to `MonoGenericInst *'.
20727 2004-02-08  Martin Baulig  <martin@ximian.com>
20729         * icall.c (ves_icall_Type_BindGenericParameters): Just call
20730         mono_type_get_object(), this is now creating a `MonoGenericInst'
20731         for MONO_TYPE_GENERICINST.
20732         (ves_icall_MonoGenericInst_GetParentType): Likewise.
20733         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
20735         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
20736         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
20737         (inflated_method_get_object): Added `MonoClass *refclass' argument.
20738         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
20739         and reflected type.
20741         * reflection.h (MonoReflectionInflatedMethod): Removed
20742         `declaring_type' and `reflected_type'.
20744 2004-02-08  Martin Baulig  <martin@ximian.com>
20746         * class.h (MonoGenericInst): Added `MonoType *parent' and
20747         `MonoType **ifaces'.
20749         * reflection.h (MonoReflectionGenericInst): Removed `klass',
20750         `parent' and `interfaces'.
20752         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20753         `MonoType *' argument and return a `MonoType *'.
20755         * icall.c
20756         (ves_icall_MonoGenericInst_GetParentType): New interncall.
20757         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
20759 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20761         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
20762         valuetype marshalling.
20764 2004-02-06  Martin Baulig  <martin@ximian.com>
20766         * class.c
20767         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
20768         (my_mono_class_from_generic_parameter): Likewise.
20770 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20772         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
20773         contents of the symbol files lazily.
20775         * object.h (MonoThread): Add 'name' and 'name_len' fields.
20777         * threads.h threads.c icall.c: New icalls for getting and setting the
20778         threads name.
20780 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
20782         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
20783         Raise an exception when the domain is not found.
20785 2004-02-03  Martin Baulig  <martin@ximian.com>
20787         * reflection.c (mono_image_get_methodspec_token): Use the
20788         uninflated signature; fixes gen-33.
20790 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
20792         * gc.c threads.c: Make the finalizer thread a normal managed thread so
20793         the finalizer code can use thread functionality.
20795         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
20796         the finalizer thread.
20798         * threads.c: Make some functions more robust.
20800         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
20802         * metadata.h: Add new marshalling conventions.
20804         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
20805         stringbuilder marshalling. Fixes #53700.
20807         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
20809         * reflection.c (mono_image_get_type_info): Save declarative security
20810         info.
20812         * reflection.c (mono_image_get_field_info): Handle uninitialized 
20813         unmanaged fields as well.
20815         * appdomain.c: Bump corlib version.
20817 2004-02-01  Martin Baulig  <martin@ximian.com>
20819         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
20820         method type arguments.  
20822 2004-01-30  Duncan Mak  <duncan@ximian.com>
20824         * marshal.h: Add prototype for
20825         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
20826         and
20827         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
20828         fix the build.
20830 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
20832         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
20833         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
20835 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20837         * marshal.c (mono_marshal_get_native_wrapper): Add support for
20838         custom marshalling of valuetypes.
20840         * marshal.c: Fix some warnings.
20842 2004-01-29  Martin Baulig  <martin@ximian.com>
20844         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
20845         for generic method parameters.
20847         * reflection.c (method_encode_methodspec): Write the uninflated
20848         signature into the methodspec table.
20849         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
20850         is always the uninflated method.
20851         (reflection_methodbuilder_to_mono_method): Copy the generic
20852         parameters from the MethodBuilder into `header->gen_params'.
20854 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20856         * class.c (mono_class_from_generic_parameter): Fix warning.
20858 2004-01-27  Martin Baulig  <martin@ximian.com>
20860         * class.c (mono_class_from_generic_parameter): Don't create
20861         `klass->methods' here.  
20863 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
20865         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
20866         extension since it does not work with libraries named lib<FOO>.dll.so.
20868 2004-01-25  Martin Baulig  <martin@ximian.com>
20870         * class.c (mono_class_inflate_generic_type): Added support for
20871         MONO_TYPE_GENERICINST.
20873         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
20874         inflate methods on open constructed types.      
20876 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20878         * object.c: fire ProcessExit event in the root AppDomain after running
20879         Main. Fixes bug #53299.
20881 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
20883         * socket-io.c: include the new socket-wrappers.h header.
20884         Use the wrappers instead of the unix socket functions to make the code
20885         more clear.
20887 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
20889         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
20891         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20892         Fixes #22532.
20894 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
20896         * reflection.c (mono_image_create_pefile): Handle the case when the
20897         entry point is not a MethodBuilder.
20899         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20900         field to ReflectionMethod since it is not allways a builder.
20902         * reflection.c (type_get_fully_qualified_name): New helper function to
20903         return the fully qualified name of a type.
20905         * reflection.c (encode_marshal_blob): Always emit the fully qualified
20906         type name for custom marshallers.
20908         * reflection.c (mono_marshal_spec_from_builder): Ditto.
20910         * class.c (mono_class_setup_vtable): If a parent class already 
20911         implements an interface, use the implementing methods from that class.
20912         Fixes #53148.
20914 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20916         * threadpool.c: just return instead of ExitThread to allow for thread
20917         clean up earlier.
20919 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
20921         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
20922         when closing resource modules.
20924         * reflection.c (mono_image_create_pefile): Handle the case when the
20925         entry point is not a MethodBuilder.
20927         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20928         field to ReflectionMethod since it is not allways a builder.
20930 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
20932         * marshal.c (mono_marshal_get_managed_wrapper): 
20933         mono_marshal_alloc takes native int so CONV_I
20934         the arg for 64bits.
20936 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
20938         * reflection.c (fixup_cattrs): New function to fixup the methoddef
20939         tokens in the cattr table. Fixes #53108.
20941 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20943         * loader.c: don't trim ".dll" before looking up in the config file.
20944         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
20946 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
20948         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
20949         Return the module which contains the resource as well.
20950         (ves_icall_System_Reflection_Module_Close): New icall.
20952         * appdomain.c: Bump corlib version number.
20954         * image.c (mono_image_addref): New public function.
20956         * assembly.c: Call mono_image_addref.
20958         * reflection.c (mono_module_get_object): Increase reference count of 
20959         the image.
20961         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20962         Fixes #22532.
20964         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
20965         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
20966         proper exceptions on DllImport problems.
20968 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
20970         * class.c, metadata.c: eliminate CSIZE macro.
20972 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
20974         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
20975         * object.h: Added async_callback field in MonoAsyncResult.
20976         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
20977         * verify.c: Added async_callback in MonoAsyncResult layout.
20979 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
20981         * reflection.c (mono_reflection_get_custom_attrs): Add support
20982         for Modules.
20984 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20986         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
20987         marshalling.
20988         (mono_marshal_method_from_wrapper): Add null pointer check.
20990 2004-01-16  Martin Baulig  <martin@ximian.com>
20992         * debug-mono-symfile.h: Set version number to 36 and reflect
20993         latest symbol writer changes.
20995 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20997         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
20998         multi-dimensional arrays.
20999         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
21000         (mono_class_from_mono_type): Use bounded_array_class_get.
21001         
21002         * class.c (mono_bounded_array_class_get): New function which takes
21003         a 'bounded' bool argument to distinguish vectors from one dimensional
21004         arrays.
21006         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
21007         bounded_array_class_get if the array has bounds.
21009         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21010         Search modules loaded using AssemblyBuilder:AddModule as well.
21012 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21014         * appdomain.c: increased corlib version.
21015         * filewatcher.c: removed g_print.
21016         * icall.c:
21017         (get_property_info): only allocate what is actually requested.
21018         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
21020 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21022         * Makefile.am: added filewatcher.[ch]
21023         * filewatcher.[ch]: FileSystemWatcher runtime support.
21024         * icall.c: added new FSW icalls.
21026 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
21028         * string-icalls.c: fix stringbuilder regression as suggested by
21029         Iain McCoy <iain@mccoy.id.au>.
21031 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
21033         * process.c (process_read_stringtable_block): Recognize '007f' as
21034         a language neutral stringtable block.
21036 2004-01-12  Patrik Torstensson
21038         * object.h (MonoStringBuilder) : Changed layout to support our
21039         new stringbuilder class.
21040         * marshal.c: Change marshalling to support the new layout of 
21041         string builder.
21042         * appdomain.c: increased version number because new layout of
21043         string builder.
21045 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
21047         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
21048         assembly name as an string instead of an AssemblyName, since it is
21049         easier to extract info from it.
21051         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
21052         the culture subdirectories too. Fixes #52231.
21054 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21056         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
21057         It takes 2 new parameters with an optional name for the method to look
21058         for and case ignoring info.
21060         * threadpool.c: removed unused variable.
21062 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21064         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
21065         It takes 2 new parameters with an optional name for the property to look
21066         for and case ignoring info.
21067         Fixes bug #52753.
21069 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
21071         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
21072         Fix #52451.
21074 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21076         * appdomain.c:
21077         * assembly.c: escape the uri before passing it to g_filename_from_uri.
21078         Fixes bug #52630.
21080 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
21082         * reflection.c: Add support for more than one unmanaged resource.
21084         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
21085         in field->def_value, as done in all other cases.
21087         * reflection.c (mono_reflection_get_custom_attrs): Add support for
21088         TypeBuilders.
21090         * reflection.c (mono_reflection_create_runtime_class): Remove 
21091         errorneous assignment to klass->element_class, since it is already
21092         done in mono_reflection_setup_internal_class.
21094 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21096         * gc.c: added missing LeaveCriticalSection.
21097         * icall.c: indented a couple of lines.
21098         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
21099         if we call EndInvoke inside a callback. Fixes bug #52601.
21101 2004-01-07  Martin Baulig  <martin@ximian.com>
21103         * mono-debug-debugger.h
21104         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
21106 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
21108         * appdomain.c: Use messages in NotImplementedException.
21110         * exception.c (mono_get_exception_not_implemented): Now this takes
21111         a message argument.
21113         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
21114         exception instead of g_asserting an aborting when something is not
21115         implemented.
21117         Add some inline docs.
21119 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
21121         * reflection.h: Update after changes to object layout.
21123         * reflection.c: Implement saving of unmanaged aka win32 resources.
21125         * appdomain.c: Bump version number.
21127         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
21128         Handle missing domains gracefully.
21130 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
21132         * file-io.c : On Windows, there are much more invalid_path_chars.
21134 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
21136         * class.h, object.c: prepare for GetType () speedup.
21138 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
21140         * profiler.c: workaround for --profile null reference exception on
21141           cygwin. Patch by Patrik Torstensson.
21143 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
21145         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
21146         make work for unaligned access.
21148 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
21150         * class.c: small cleanup (class->fields [i] -> field).
21151         * image.c: check address of metadata is valid.
21153 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
21155         * assembly.h assembly.c (mono_assembly_loaded): New public function to
21156         search the list of loaded assemblies.
21158         * reflection.c (mono_reflection_type_from_name): Use 
21159         mono_assembly_loaded instead of mono_image_loaded.
21161         * reflection.c: Fix warnings.
21163 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
21165         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
21166         is dynamic. This is needed since an assembly can contain both dynamic and
21167         non-dynamic images.
21169         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
21170         assembly->dynamic.
21172         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
21174         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
21175         to store modules loaded using AddModule.
21177         * reflection.c (mono_image_fill_file_table): Generalize this so it works
21178         on Modules.
21180         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
21182         * reflection.c (mono_image_fill_export_table_from_module): New function to
21183         fill out the EXPORTEDTYPES table from a module.
21185         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
21186         into a separate function. Also handle loaded non-dynamic modules.
21188         * reflection.c (mono_image_basic_init): Fix memory allocation.
21190         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21192         * assembly.c (mono_assembly_load_references): Make this public.
21194 2003-12-19  Martin Baulig  <martin@ximian.com>
21196         * class.c (mono_class_initialize_generic): Made this static, take
21197         a `MonoGenericInst *' instead of a `MonoClass *'.
21198         (mono_class_from_generic): Call mono_class_initialize_generic()
21199         unless we're already initialized or being called from
21200         do_mono_metadata_parse_generic_inst().
21202         * class.h (MonoGenericInst): Added `initialized' and
21203         `init_pending' flags.
21205         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
21206         `mono_class_init (gklass)' or mono_class_initialize_generic()
21207         here; set `generic_inst->init_pending' while parsing the
21208         `type_argv'.
21210 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
21212         * locales.c: include string.h for memxxx prototypes
21214 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
21216         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
21217         constructor when accessing literal fields.
21219 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
21221         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21223         * reflection.c (assembly_add_resource_manifest): New function to fill
21224         the MANIFESTRESOURCE table.
21226         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
21228         * reflection.h: Update to changes in class layout.
21230         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
21231         Reenable call to mono_runtime_is_shutting_down ().
21233         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
21234         determine if the runtime is shutting down.
21236 2003-12-16  Jackson Harper <jackson@ximian.com>
21238         * icall.c: comment out call to mono_runtime_is_shutting_down to
21239         fix build.
21240         
21241 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
21243         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
21244         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
21246 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
21248         * reflection.c: move definition of swap_with_size
21249         to before its first call
21251 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
21253         * appdomain.c (mono_runtime_is_shutting_down): New public function.
21255         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
21256         icall.
21258         * object.c: Fix warnings.
21260         * icall.c (ves_icall_Type_Get...): Only consider inherited static
21261         members if FlattenHierarchy is set.
21263         * reflection.c (mono_image_add_decl_security): New function to emit
21264         declarative security.
21266         * reflection.h reflection.c: Add support for declarative security.
21268         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21269         
21270 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
21272         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21273         
21274         * appdomain.c verify.c: Moved corlib version checking into its own
21275         function in appdomain.c since it needs to create vtables etc.
21277 2003-12-13  Patrik Torstensson <p@rxc.se>
21279         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
21280         instead of unwrapped server.
21282 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
21284         * verify.c (check_corlib): Fix field index.
21286 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
21288         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
21289         GetGacPath icall.
21291 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
21293         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
21294         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
21295         cope with sizeof(size_t) != sizeof(guint32).
21297 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21299         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
21300         in case of failure.
21302 2003-12-10  Mark Crichton <crichton@gimp.org>
21304         * icall.c: removed the GetNonZeroBytes.  We now handle this case
21305         in managed code.
21307         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
21309 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
21311         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
21312         marked as deleted.
21314 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
21316         * verify.c (check_corlib): Handle the case when the version field is 
21317         initialized by a static constructor.
21319 2003-12-08  Patrik Torstensson  <p@rxc.se>
21321     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
21323 2003-12-08  Martin Baulig  <martin@ximian.com>
21325         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
21326         a MonoReflectionGenericParameter, also take the parameter index
21327         and name as arguments.
21328         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
21329         (ves_icall_MonoGenericParam_initialize): New interncall.
21330         (ves_icall_Type_make_byref_type): New interncall.
21332         * reflection.h (MonoReflectionGenericParam): Derive from
21333         MonoReflectionType, not just from MonoObject.  Added `refobj' and
21334         `index' fields.
21336         * reflection.c (mono_reflection_define_generic_parameter): Create
21337         and return a new MonoReflectionGenericParam; don't initialize the
21338         constraints here.
21339         (mono_reflection_initialize_generic_parameter): New public method;
21340         initializes the constraints and creates the `param->pklass'.
21342 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
21344         * reflection.h reflection.c: Use the new fields 'num_types', 
21345         'num_fields' and 'num_methods' to track the number of types etc.
21347         * verify.c (check_corlib): Check corlib version number.
21349 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
21351         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
21352         function works on all methods.
21354 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
21356         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
21357         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
21358         the custom_type_info flag of the transparent proxy.
21359         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
21360         objects that supports IRemotingTypeInfo.
21361         * object.h: Added custom_type_info field in transparent proxy.
21363 2003-12-06  Martin Baulig  <martin@ximian.com>
21365         * class.c (mono_class_create_from_generic): Removed.
21366         (mono_class_from_generic): Check `ginst->klass' before doing
21367         anything else.  This is important to fully support "recursive"
21368         generic types.
21370         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
21371         empty `generic_inst->klass' before doing anything else.
21373 2003-12-06  Dick Porter  <dick@ximian.com>
21375         * verify.c: 
21376         * object.h:
21377         * icall.c:
21378         * locales.c: Use C structs to access class fields.  Don't do a
21379         conversion between MonoString and UChar because both are
21380         platform-endian UTF-16.  Compare now takes startindex and count
21381         parameters.  Add a char overload for IndexOf.  Speed up the
21382         invariant string IndexOf.
21384 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
21386         * Makefile.am (monosn_LDADD): Fix parallel build.
21388 2003-12-04  Martin Baulig  <martin@ximian.com>
21390         * icall.c
21391         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21392         (ves_icall_Type_make_array_type): New interncall.       
21394 2003-12-04  Martin Baulig  <martin@ximian.com>
21396         * locales.c: also change it in the !HAVE_ICU case.
21398 2003-12-04  Dick Porter  <dick@ximian.com>
21400         * icall.c:
21401         * locales.c: construct_compareinfo is now in CompareInfo, not
21402         CultureInfo.
21404 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
21406         * image.c (mono_image_load_file_for_image): Cache loaded images in the
21407         image->files array.
21409         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
21410         table as well.
21412         * assembly.c (mono_assembly_load_references): Only load references
21413         once.
21415         * class.c (mono_class_from_name): Avoid linear search of the 
21416         EXPORTEDTYPE table.
21418         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
21420 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21422         * image.h (MonoImage): Add 'field_cache' field.
21424         * loader.c (mono_field_from_token): Cache field lookups.
21425         
21426         * reflection.c (mono_module_get_object): Fix name property.
21428         * icall.c (ves_icall_get_enum_info): Update after changes to 
21429         mono_metadata_get_constant_index ().
21431         * icall.c: Get rid of get_type_info icall, use a separate icall for
21432         each type property to avoid needless memory allocations. Fixes #51514.
21434         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
21435         to avoid needless binary searches.
21437         * class.c (class_compute_field_layout): Move the initialization of
21438         field->def_value to mono_class_vtable ().
21440         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
21441         non-corlib types.
21443         * object.c (mono_object_allocate): Make it inline.
21445         * object.c (mono_object_allocate_spec): Make it inline.
21446         
21447 2003-12-02  Dick Porter  <dick@ximian.com>
21449         * locales.c (create_NumberFormat): NumberFormatInfo construction.
21450         Patch by Mohammad DAMT (mdamt@cdl2000.com).
21452 2003-12-01  Dick Porter  <dick@ximian.com>
21454         * threads.c: Fix signature and call in CreateMutex and
21455         CreateEvent.
21457 2003-12-01  Dick Porter  <dick@ximian.com>
21459         * icall.c: 
21460         * locales.c: Implement string compares and searching
21462         * object.h: Add extra Thread field
21464 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
21466         * reflection.c (fixup_method): Add support for MonoCMethod.
21468 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
21470         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
21472         * reflection.c (assembly_name_to_aname): Allow extra characters in
21473         assembly names. Fixes #51468.
21475 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
21477         * exception.c (mono_exception_from_name_domain): New helper function.
21479         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
21480         exception object in the correct domain.
21482         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
21483         formatting + make a copy a the input data.
21485         * loader.c (mono_get_method_from_token): Methods which contain
21486         native code do not have entries in the ImplMap.
21488         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
21489         Thanks to Gonzalo for spotting this.
21490         
21491         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
21492         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
21494         * assembly.h (mono_assembly_load_from): Split the second part of 
21495         assembly loading into a new public function.
21497         * exception.h (mono_get_exception_bad_image_format): New function.
21499 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
21501         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21502         Enumerate all modules inside a dynamic assembly. Fixes #51293.
21503         
21504         * icall.c: Add new icall for creating dynamic methods.
21506         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
21508         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
21510         * reflection.c (mono_reflection_create_dynamic_method): New icall to
21511         create a dynamic method.
21513         * reflection.c (resolve_object): New helper function.
21515         * reflection.c: Generalize ReflectionMethodBuilder and the functions
21516         which manipulate it so they can also work on dynamic methods.
21518         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
21519         creating the MonoReflectionMethodAux structure if it is not needed.
21520         
21521         * reflection.h verify.c: Update after changes to object layout.
21523         * reflection.c (method_builder_encode_signature): Fix compilation on
21524         gcc 2.95.x.
21526 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
21528         * appdomain.h: Added support for context static fields. Added static_data
21529           field to MonoAppContext and renamed thread_static_fields to a more
21530           generic special_static_fields in MonoAppDomain, since it can now contain
21531           context static fields.
21532         * domain.c: Updated hashtable name.
21533         * object.c: Replaced field_is_thread_static() for a more generic
21534           field_is_special_static() which also checks for context static attribute.
21535           In mono_class_vtable(), added support for static context fields.
21536         * threads.c: Changed methods that manage thread static fields to more
21537           generic methods so they can be reused both for thread and context static
21538           data.
21539         * threads.h: Declared some new methods.
21541 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
21543         * reflection.h: Update after changes to the managed types.
21545         * reflection.c (encode_custom_modifiers): New helper function.
21547         * reflection.c (method_encode_signature): Emit custom modifiers.
21549         * reflection.c (field_encode_signature): Emit custom modifiers.
21551 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
21553         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
21555         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
21556         implementation.
21558         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
21559         icall.
21561         * object.c (mono_field_get_value_object): New function.
21563         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
21564         specific.
21566 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
21568         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
21569         return a preallocated out-of-memory exception instance.
21571         * object.c (out_of_memory): Use the new function.
21573         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
21574         flag is before the custom modifiers. Fixes #49802.
21576 2003-11-16  Martin Baulig  <martin@ximian.com>
21578         * class.c (mono_class_is_open_constructed_type): Implemented the
21579         MONO_TYPE_GENERICINST case.
21581 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
21583         * assembly.c (mono_assembly_fill_assembly_name): New function to
21584         fill out the MonoAssemblyName structure.
21585         (mono_assembly_open): Use the new function.
21587         * icall.c (fill_reflection_assembly_name): New helper function.
21589         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
21590         new function.
21592         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
21594 2003-11-15  Martin Baulig  <martin@ximian.com>
21596         * class.c (mono_class_is_open_constructed_type): New public
21597         function; checks whether a type is an open constructed type,
21598         ie. whether it still contains type parameters.
21599         (mono_class_inflate_generic_type): If we're a type parameter and
21600         the inflated type is also a MONO_TYPE_(M)VAR, return the original
21601         type.
21603         * class.h (MonoGenericInst): Added `guint32 is_open'.
21605         * loader.c (method_from_methodspec): Check whether we're an open
21606         or closed constructed type and set `ginst->is_open'.
21608         * reflection.c (mono_reflection_bind_generic_parameters): Check
21609         whether we're an open or closed constructed type and set
21610         `ginst->is_open'.
21611         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
21612         from open constructed types.
21614 2003-11-15  Martin Baulig  <martin@ximian.com>
21616         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21617         a generic instance (instead of a generic type declaration) with
21618         unbound generic parameters, bind them to our actual types.
21620 2003-11-14  Martin Baulig  <martin@ximian.com>
21622         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
21624         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21625         an interface type, populate `res->interfaces' with instantiated
21626         versions of all the interfaces we inherit.
21628 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
21630         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
21631         when MONO_PATH is set but doesn't contain the install dir.
21633 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21635         * icall.c:
21636         (ves_icall_Type_GetInterfaces): don't return an interface twice when
21637         it's also implemented in base classes. Fixes bug #50927.
21639 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
21641         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
21642         if this method is called from a finalizer. Fixes #50913.
21644 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
21646         * threads.c: Implement VolatileRead/VolatileWrite
21648         * icall.c: Add new icalls for VolatileRead/VolatileWrite
21650 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21652         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
21653         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
21654         2.95.3.
21656         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
21657         from Peter Ross (pro@missioncriticalit.com).
21658         
21659 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
21661         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
21663 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21665         * assembly.c (mono_assembly_load_references): Disable check because it
21666         triggers on older corlibs which lots of people have.
21668 2003-11-12  Jackson Harper  <jackson@ximian.com>
21670         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
21671         load corlib.dll if mscorlib.dll is not found.
21672         * assembly.h: Remove corlib name define.
21673         * class.c:
21674         * domain.c:
21675         * image.c: Change corlib name to mscorlib.
21676         
21677 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21679         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
21681 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
21683         * appdomain.h: Added loader_optimization here to sync with the C#
21684         code, and add disallow_binding_redirects field.
21686 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21688         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
21690         * reflection.c (mono_image_build_metadata): Fix crash on modules
21691         with no types.
21693         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
21695         * icall.c (ves_icall_get_method_info): Return callingConvention as
21696         well.
21698         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
21699         namespaces from the EXPORTEDTYPE table as well.
21701         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
21702         from all modules inside the assembly.
21703         
21704 2003-11-11  Martin Baulig  <martin@ximian.com>
21706         * reflection.c (mono_reflection_bind_generic_parameters): Make
21707         this work for interfaces.
21709 2003-11-11  Martin Baulig  <martin@ximian.com>
21711         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
21713 2003-11-11  Martin Baulig  <martin@ximian.com>
21715         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
21716         "MonoInflatedMethod" and "MonoInflatedCtor".
21718 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21720         * reflection.c (resolution_scope_from_image): Use the assembly table
21721         from the manifest module, since other modules don't have it.
21723         * debug-helpers.c (mono_type_full_name): New helper function.
21725         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
21727         * image.c (mono_image_load_file_for_image): New public function which
21728         is a replacement for the load_file_for_image in class.c.
21730         * assembly.c (mono_assembly_load_module): A wrapper for the function
21731         above which does assembly association and reference loading too.
21733         * class.c (mono_class_from_name): Call mono_assembly_load_module.
21735 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21737         * appdomain.c: not all of the attributes for the full assembly name
21738         are required and the order doesn't matter. Fixes bug #50787.
21740 2003-11-10  Dick Porter  <dick@ximian.com>
21742         * locales.c: Use platform-endian UTF16
21744 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21746         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21747         
21748 2003-11-10  Martin Baulig  <martin@ximian.com>
21750         * metadata.c
21751         (mono_metadata_load_generic_params): Make this actually work.
21753         * reflection.c (mono_reflection_bind_generic_parameters): If our
21754         parent is a generic instance, pass all the `types' to it, no
21755         matter whether it has the same number of type parameters or not.
21757 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21759         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21761         * assembly.c (mono_assembly_load_references): Move the image<->assembly
21762         assignment code to this function so it gets called recursively for all
21763         modules.
21765         * image.c (load_modules): Remove the assembly assignment since it is
21766         now done by mono_assembly_load_references.
21767         
21768         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21769         Add 'module' argument.
21770         (mono_module_get_types): New helper function.
21771         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
21773 2003-11-08  Martin Baulig  <martin@ximian.com>
21775         * class.c (mono_class_inflate_generic_method): Interface method
21776         don't have a header.
21778         * reflection.c (mono_image_get_methodspec_token): Take an
21779         additional `MonoGenericInst *' argument instead of reading it from
21780         the header; this is necessary to support interfaces.
21781         (mono_image_create_token): Pass the `MonoGenericInst *' from the
21782         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
21783         (inflated_method_get_object): Take an additional `MonoGenericInst *'
21784         argument.
21786         * reflection.h (MonoReflectionInflatedMethod): Added
21787         `MonoGenericInst *ginst'.
21789 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
21791         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
21793 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
21795         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
21797 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
21799         * reflection.c 
21800         (reflection_methodbuilder_from_method_builder):
21801         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
21802         initialize a ReflectionMethodBuilder structure.
21803         (mono_image_get_methodbuilder_token):
21804         (mono_image_get_ctorbuilder_token): New functions to emit memberref
21805         tokens which point to types in another module inside the same assembly.
21807         * reflection.c: Use the new helper functions.
21808         
21809         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
21811         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
21812         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
21814         * reflection.c (resolution_scope_from_image): Emit a moduleref if
21815         neccesary.
21817         * reflection.c (mono_image_build_metadata): Emit metadata only for the
21818         current module. Emit the manifest only for the main module.
21820         * reflection.c (mono_image_create_token): Add assertion when a 
21821         memberref needs to be created.
21823         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
21825         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
21826         larger buffer for the custom attribute blob. Fixes #50637.
21827         
21828 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21830         * threadpool.c: notify listener on async processing handles after
21831         invoking the async callback. Thanks to Zoltan.
21833 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21835         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
21836         avoid code duplication.
21838         * reflection.h (MonoDynamicImage): New type which is currently unused,
21839         but will be used through the ref.emit code in place of 
21840         MonoDynamicAssembly.
21842         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21843         object layout.
21845         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
21846         a MonoDynamicImage instead of just a MonoImage.
21847         
21848         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
21849         icalls to ModuleBuilder but keep their semantics, so they will work
21850         with moduleb->assemblyb. This will change later.
21851         
21852 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21854         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21855         object layout.
21857         * reflection.c (mono_image_build_metadata): Avoid creation of a default
21858         main module, since it is now done by the managed code.
21860 2003-11-03  Martin Baulig  <martin@ximian.com>
21862         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
21863         `ginst->klass' here.
21864         (method_encode_methodspec): Don't use the `ginst->generic_method's
21865         klass if it's a generic instance, use `ginst->klass' in this case.
21867 2003-11-03  Martin Baulig  <martin@ximian.com>
21869         * reflection.c (mono_image_get_generic_method_param_info):
21870         Removed, use mono_image_get_generic_param_info() instead.
21871         (mono_image_get_type_info): Write the GenericParam table before
21872         the Method table.  This is neccessary because in the GenericParam
21873         table, type parameters of the class (ie. '!0' etc.) must come
21874         before the ones from its generic methods (ie. '!!0' etc).
21876 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21878         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
21880 2003-11-02  Martin Baulig  <martin@ximian.com>
21882         * reflection.c (create_generic_typespec): Take a
21883         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
21884         the generic parameters from it.
21886 2003-11-02  Martin Baulig  <martin@ximian.com>
21888         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
21889         instead of a `MonoClassField *' since we just need the type.
21890         (create_generic_typespec): New static function.  Creates a
21891         TypeSpec token for a generic type declaration.
21892         (mono_image_get_generic_field_token): New static function.
21893         (mono_image_create_token): If we're a FieldBuilder in a generic
21894         type declaration, call mono_image_get_generic_field_token() to get
21895         the token.
21897 2003-11-02  Martin Baulig  <martin@ximian.com>
21899         * reflection.h
21900         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
21901         `MonoReflectionGenericInst *declaring_type' and
21902         `MonoReflectionGenericInst *reflected_type' fields.
21904         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
21905         `MonoReflectionGenericInst *declaring_type' and a
21906         `MonoReflectionGenericInst *reflected_type' argument instead of a
21907         single `MonoReflectionGenericInst *type' one.  Set
21908         `res->declaring_type' and `res->reflected_type' from them.
21909         (mono_reflection_inflate_field): Likewise.      
21911 2003-11-02  Martin Baulig  <martin@ximian.com>
21913         * class.c (mono_class_setup_vtable): Don't store generic methods
21914         in the vtable.  
21916 2003-11-02  Martin Baulig  <martin@ximian.com>
21918         * reflection.h (MonoReflectionGenericInst): Added
21919         `MonoReflectionType *declaring_type'.
21921         * reflection.c (mono_reflection_bind_generic_parameters): Use
21922         `if (tb->parent)' instead of `klass->parent'.
21924 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
21926         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
21927         with an empty ASSEMBLY table.
21929         * reflection.c (mono_image_build_metadata): Avoid using the same loop
21930         variable in the inner and outer loops.
21932 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
21934         * metadata.h (mono_metadata_make_token): Put parentheses around macro
21935         argument.
21937         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
21938         
21939         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
21940         icalls. Instead, do everything in managed code. This is needed since
21941         it is hard to restore the original domain etc. in unmanaged code in the
21942         presence of undeniable exceptions.
21944         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
21945         New icalls to push and pop appdomain refs.
21947 2003-10-31  Martin Baulig  <martin@ximian.com>
21949         * class.c (inflate_generic_type): Renamed to
21950         mono_class_inflate_generic_type() and made it public.
21952         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
21953         New interncall.
21955         * loader.c (mono_field_from_memberref): Also set the retklass for
21956         typespecs.
21958         * fielder.c (mono_image_get_inflated_field_token): New static
21959         method; creates a metadata token for an inflated field.
21960         (mono_image_create_token, fixup_method): Added support for
21961         "MonoInflatedField".
21962         (fieldbuilder_to_mono_class_field): New static function.
21963         (mono_reflection_inflate_field): New public function.
21965         * reflection.h
21966         (MonoReflectionGenericInst): Added `MonoArray *fields'.
21967         (MonoReflectionInflatedField): New typedef.     
21969 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
21971         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
21972         for Solaris and other platforms without s6_addr16
21974 2003-10-30  Martin Baulig  <martin@ximian.com>
21976         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
21977         argument instead of two.
21978         (mono_class_inflate_generic_signature): Likewise.
21979         (inflate_generic_header): Likewise.
21980         (mono_class_inflate_generic_method): Likewise.  In addition, if
21981         `ginst->klass' is set, it becomes the new `method->klass'.
21983         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
21984         field.
21986         * reflection.c (encode_generic_method_sig): Write a 0xa as the
21987         first byte. [FIXME]
21988         (method_encode_methodspec): If we have generic parameters, create
21989         a MethodSpec instead of a MethodRef.
21990         (fixup_method): Added support for "MonoInflatedMethod" and
21991         "MonoInflatedCtor".
21992         (mono_image_create_token): Added support for "MonoInflatedMethod"
21993         and "MonoInflatedCtor".
21994         (inflated_method_get_object): New static function; returns a
21995         managed "System.Reflection.MonoInflatedMethod" object.
21996         (mono_reflection_bind_generic_method_parameters): Return a
21997         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
21998         (mono_reflection_inflate_method_or_ctor): Likewise.
21999         (mono_image_get_generic_method_param_info): Initialize unused
22000         fields to zero.
22001         (mono_image_get_generic_param_info): Likewise.
22003         * reflection.h (MonoReflectionInflatedMethod): New public
22004         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
22005         "S.R.MonoInflatedCtor" classes.
22007         * loader.c (method_from_memberref): If we're a TypeSpec and it
22008         resolves to a generic instance, inflate the method.
22010 2003-10-28  Dick Porter  <dick@ximian.com>
22012         * object.c (mono_runtime_run_main): Convert command-line arguments
22013         into utf8, falling back to the user's locale encoding to do so.
22015 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
22017         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
22018         at this time.
22020         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
22022         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
22023         up icalls at method definition time. Partially fixes #33569.
22025 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
22027         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
22028         marshalling of arrays. Fixes #50116.
22030         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
22032         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
22033         points to a vtable in the dying appdomain.
22035         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
22036         listeners into unmanaged code inside the lock.
22038         * object.c (mono_class_vtable): Turn off typed allocation in non-root
22039         domains and add some comments.
22041 2003-10-25  Martin Baulig  <martin@ximian.com>
22043         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
22045         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
22047         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
22048         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
22049         currently parsing.  Create the generic class and store it in
22050         `generic_inst->klass' before parsing the type arguments.  This is
22051         required to support "recursive" definitions; see mcs/tests/gen-23.cs
22052         for an example.
22053         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
22054         to support recursive typespec entries.
22056         * class.c (mono_class_setup_parent): If our parent is a generic
22057         instance, we may get called before it has its name set.
22058         (mono_class_from_generic): Splitted into
22059         mono_class_create_from_generic() and mono_class_initialize_generic().
22061 2003-10-25  Martin Baulig  <martin@ximian.com>
22063         * icall.c (ves_icall_Type_BindGenericParameters): Return a
22064         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
22065         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
22066         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
22068         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
22069         (create_typespec): Likewise.
22070         (mono_reflection_bind_generic_parameters): Return a
22071         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
22072         (mono_reflection_inflate_method_or_ctor): New public function.
22074         * reflection.h (MonoReflectionGenericInst): New typedef.        
22076 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
22078         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
22079         inside the domain lock. Fixes #49993.
22080         
22081         * object.c (mono_class_vtable): When typed allocation is used, 
22082         allocate vtables in the GC heap instead of in the mempool, since the
22083         vtables contain GC descriptors which are used by the collector even
22084         after the domain owning the mempool is unloaded.
22086         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
22088         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
22089         reflect what it does. Also invalidate mempools instead of freeing
22090         them if a define is set.
22092         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
22093         of the appdomain.
22094         
22095         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
22096         hold the finalizable objects in this domain.
22098         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
22099         appdomain.
22101         * appdomain.c (mono_domain_set): New function to set the current
22102         appdomain, but only if it is not being unloaded.
22104         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
22105         appdomain which is being unloaded.
22106         
22107         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
22108         unloading of the root appdomain.
22110         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
22111         icall to execute a method in another appdomain. Intended as a 
22112         replacement for InternalSetDomain, which can confuse the code 
22113         generation in the JIT.
22115         * appdomain.c (mono_domain_is_unloading): New function to determine
22116         whenever an appdomain is unloading.
22118         * appdomain.c (mono_domain_unload): New function to correctly unload
22119         an appdomain.
22121         * assembly.c (mono_assembly_load_references): Check that an assembly
22122         does not references itself.
22124         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
22125         domain manually, it asks the finalizer thread to do it, then waits for
22126         the result. Also added a timeout.
22128         * icall.c: Register the new icalls.
22130         * threads.h threads.c: Export the mono_gc_stop_world and 
22131         mono_gc_start_world functions.
22132         
22133         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
22134         function to fill out the mempool with 0x2a.
22136 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
22138         * reflection.h (MonoReflectionMethodAux): New structure to store
22139         information which is rarely used, thus is not in the MonoMethod
22140         structure.
22142         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
22143         store the aux info.
22145         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
22146         and marshalling info into the aux structure.
22148         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
22149         from the aux structure.
22151         * loader.c (mono_method_get_param_names): Retrieve the param names from
22152         the aux structure.
22153         
22154 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
22156         * exception.h exception.c: Add AppDomainUnloadedException && fix 
22157         warning.
22159 2003-10-21  Dick Porter  <dick@ximian.com>
22161         * socket-io.c
22162         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
22163         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
22165 2003-10-21  Martin Baulig  <martin@ximian.com>
22167         * reflection.c (mono_reflection_bind_generic_parameters):
22168         `klass->parent' is NULL for interfaces.
22170 2003-10-21  Martin Baulig  <martin@ximian.com>
22172         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22174 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
22176         * exception.c (mono_exception_from_name_msg): New helper function for
22177         creating exceptions and initializing their message field.
22179         * exception.c: Simplify functions using the new helper.
22181         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
22182         New function.
22184         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
22185         mono_raise_exception, since otherwise gcc doesn't generate the function
22186         epilog for raise_exception, confusing the stack unwinding in the JIT.
22187         Fixes #45043.
22189         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
22190         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
22191         Fixes #49499.
22193 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22195         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
22196         utf8.
22198 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
22200         * icall.c: Removed GetUninitializedObject method because
22201           AllocateUninitializedClassInstance does the same.
22203 2003-10-18  Martin Baulig  <martin@ximian.com>
22205         * class.c (inflate_generic_signature): Renamed to
22206         mono_class_inflate_generic_signature() and made it public.
22207         (my_mono_class_from_generic_parameter): New static function; if we
22208         don't already have the generic parameter's MonoClass, create a
22209         very simple one which is just used internally in the runtime and
22210         not passed back to managed code.
22212         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
22214         * metadata.h (MonoMethodSignature): Moved the
22215         `MonoGenericParam *gen_params' to the MonoMethodHeader.
22216         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
22218         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
22219         ves_icall_MonoMethod_GetGenericArguments(); this is now an
22220         interncall on the MonoMethod class, not on MethodInfo.
22221         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
22222         calling mono_reflection_bind_generic_method_parameters() directly.
22224         * loader.c (mono_method_get_signature): If this is a MethodSpec;
22225         return the already computed `method->signature'.
22226         (method_from_methodspec): New static function to load a method
22227         from a MethodSpec entry.
22228         (mono_get_method_from_token): Call the new method_from_methodspec()
22229         for MethodSpec tokens.  
22230         (mono_get_method_from_token): If we're a generic method, load the
22231         type parameters.
22233         * reflection.c (mono_image_get_memberref_token): Allow
22234         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
22235         table.
22236         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
22237         (mono_image_create_token): First check whether it's a generic
22238         method (so we'd need to create a MethodSpec), then do the other
22239         two alternatives.
22240         (mono_reflection_bind_generic_method_parameters): Return a
22241         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
22242         called directly from the interncall.
22244 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
22246         * reflection.c (load_public_key): Move loading of the public key
22247         into managed code.
22249         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
22251         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
22252         fields.
22254         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
22255         culture, hash_alg and public_key. Fixes #49555.
22257 2003-10-17  Martin Baulig  <martin@ximian.com>
22259         * class.h (MonoGenericInst): Moved this declaration here and added
22260         `MonoMethod *generic_method'.
22262         * icall.c
22263         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
22264         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
22266         * metadata.c (mono_metadata_type_equal): Two types of
22267         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
22268         index; ie. don't compare the address of the `MonoGenericParam'
22269         structure.
22270         (mono_metadata_load_generic_params): Removed the `MonoMethod
22271         *method' argument.
22273         * metadata.h (MonoGenericInst): Moved declaration to class.h.
22274         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
22276         * reflection.c (method_encode_signature): Encode the number of
22277         generic parameters.
22278         (encode_generic_method_sig): New static function.
22279         (method_encode_methodspec): New static function; creates an entry
22280         in the MethodSpec table for a generic method.
22281         (mono_image_get_methodspec_token): New static function.
22282         (mono_image_create_token): Call mono_image_get_methodspec_token()
22283         for generic methods.
22284         (mono_reflection_bind_generic_method_parameters): New public
22285         function.  Instantiates a generic method.
22287 2003-10-16  Martin Baulig  <martin@ximian.com>
22289         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
22290         *gen_params' here from MonoMethodHeader.
22292         * metadata.c (mono_metadata_parse_method_signature): If we have
22293         generic parameters, initialize `method->gen_params' and then set
22294         the correct `type->data.generic_param' in all the parameters.
22296 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
22298         * threads.c (mono_threads_get_default_stacksize): New function to 
22299         return the default stacksize.
22301         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
22302         termination of the finalizer thread, since the previous method had
22303         race conditions. Fixes #49628.
22305         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
22306         as for the other managed threads.
22308 2003-10-16  Martin Baulig  <martin@ximian.com>
22310         * class.c (inflate_generic_signature): Copy `generic_param_count'
22311         and `gen_params'.
22313         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
22314         New interncall.
22316         * metadata.c (mono_metadata_parse_method_signature): Actually set
22317         the `method->generic_param_count' here.
22318         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
22320 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
22322         * object.h: Add a new field to TypedRef to simplify the implementation
22323         of the REFANY opcodes in the JIT.
22325         * icall.c: Make use of the new field.
22327         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
22328         dynamically.
22330 2003-10-15  Martin Baulig  <martin@ximian.com>
22332         * class.c (mono_class_from_gen_param): Renamed to
22333         mono_class_from_generic_parameter() and moved most of the
22334         functionality from mono_reflection_define_generic_parameter()
22335         here; ie. we create a "real" class here.
22336         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
22337         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
22338         previously been called.
22340         * class.h (MonoGenericParam): Moved the declaration of this struct
22341         here from metadata.h and added `MonoMethod *method'.
22343         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
22344         interncall.
22346         * loader.c (mono_get_method_from_token): If we have any generic
22347         parameters, call mono_metadata_load_generic_params() to read them
22348         from the MONO_TABLE_GENERICPAR.
22350         * metadata.c (mono_metadata_load_generic_params): Added
22351         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
22353         * metadata.h (MonoMethodSignature): Replaced
22354         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
22355         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
22357         * reflection.c (mono_reflection_define_generic_parameter): Moved
22358         most of the functionality into the new
22359         mono_class_from_generic_parameter(); set the `method' field if
22360         we're a method parameter.       
22362 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
22364         * marshal.c (emit_struct_conv): if native size is 0
22365         emit no code.
22367 2003-10-14  Martin Baulig  <martin@ximian.com>
22369         * icall.c: The generics API has changed in the spec since it was
22370         added to System.Type; these modifications make it match the spec
22371         again.
22372         (ves_icall_Type_GetGenericParameters): Renamed to
22373         `ves_icall_Type_GetGenericArguments'.
22374         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
22375         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
22376         `ves_icall_MonoType_get_HasGenericArguments'.
22377         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
22378         `ves_icall_MonoType_get_IsGenericParameter'.
22379         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
22380         this is no interncall anymore.
22381         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
22382         `ves_icall_TypeBuilder_get_IsGenericParameter'.
22384 2003-10-14  Martin Baulig  <martin@ximian.com>
22386         * reflection.c (mono_reflection_bind_generic_parameters): Also
22387         inflate generic methods if we're reading the class from IL.
22389 2003-10-13  Martin Baulig  <martin@ximian.com>
22391         * reflection.c (mono_reflection_define_generic_parameter): This
22392         method isn't called directly from the icall anymore; take a
22393         `MonoReflectionAssemblyBuilder *' so we can use this for type and
22394         method generic parameters.
22395         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
22396         (method_builder_encode_signature): Encode generic parameters.
22397         (mono_image_get_method_info): Write generic params to the
22398         MONO_TABLE_GENERICPARAM table.
22400         * reflection.h (MonoReflectionMethodBuilder): Added
22401         `MonoArray *generic_params'.
22403         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
22405         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
22406         wrapper for mono_reflection_define_generic_parameter().
22407         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
22409 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
22411         * marshal.h: Add missing function to fix build.
22413         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
22414         the SetLastError pinvoke attribute.
22416         * marshal.c (mono_marshal_set_last_error): New helper function called
22417         by the generated code.
22418         
22419         * marshal.c (mono_mb_emit_branch): New helper function.
22421         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
22423         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22424         classes as parameters and return values of delegates. Fixes #29256. 
22426 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
22428         * locales.c: use gint32 in non HAVE_ICU case
22430 2003-10-11  Martin Baulig  <martin@ximian.com>
22432         * mono-debug.c (mono_debug_add_method): Added a workaround for
22433         bug #48591.
22435 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22437         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
22438         delegates passed to native code must use the STDCALL calling 
22439         convention. Fixes #35987.
22441 2003-10-10  Martin Baulig  <martin@ximian.com>
22443         * class.c (inflate_generic_type): If we're inflating for a generic
22444         type instance (and not for a generic method), return
22445         MONO_TYPE_MVAR unchanged.
22447 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22449         * string-icalls.c: Join ignores null strings in the source array.
22450         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
22451         * threads.c: GetAvailableTheads is slightly more accurate.
22453 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
22455         * threads.h threads.c : add mono_threads_set_default_stacksize
22456         and pass default to CreateThread calls.
22458 2003-10-09  Dick Porter  <dick@ximian.com>
22460         * icall.c:
22461         * locales.h:
22462         * locales.c: Internal calls for constructing CultureInfo and
22463         related objects from libicu (if its available.)
22465 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22467         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
22469 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22471         * threadpool.c: added an argument to async_invoke_thread that is the
22472         item to process, pass the MonoAsyncResult to the thread start function
22473         when creating a new thread. This way we don't need to acquire any lock
22474         when we're creating a new thread. Readded a semaphore for faster
22475         response times (instead of that Sleep i added).
22477 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
22479         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22480         get daylight change dates better on Windows, fix handling
22481         of platforms without tm_gmtoff.
22483 2003-10-06  Martin Baulig  <martin@ximian.com>
22485         * class.c (inflate_generic_method): Renamed to
22486         mono_class_inflate_generic_method() and made public.
22487         (mono_class_init): Don't inflate the generic methods here.
22488         (mono_class_from_generic): Added `gboolean inflate_methods'
22489         argument.  Inflate the methods here.
22491         * loader.c (mono_method_get_param_names): Ignore instances of
22492         generic types for the moment.
22494         * reflection.c (fixup_method): Added support for inflated methods.
22495         (mono_image_create_token): Use mono_image_get_methodref_token()
22496         for inflated methods.
22497         (mono_custom_attrs_from_param): Ignore instances of generic types
22498         for the moment.
22499         (mono_reflection_bind_generic_parameters): New public function.
22500         Moved all the functionality from
22501         ves_icall_Type_BindGenericParameters() here and added support for
22502         dynamic types.
22503         (mono_reflection_define_generic_parameter): Initialize
22504         `klass->methods' here.
22506         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
22507         functionality into mono_reflection_define_generic_parameter().
22508         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
22509         TypeBuilder, return that TypeBuilder.
22511 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22513         * appdomain.c: removed mono_delegate_semaphore.
22515         * threadpool.c:
22516         (mono_thread_pool_add): moved hash table creation inside and the thread 
22517         creation outside of the critical region.
22518         (mono_thread_pool_finish): removed obsolete code.
22519         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
22520         continue or exit the thread depending on the queue.
22522 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
22524         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
22525         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
22526         handle more bool marshalling options
22528 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
22530         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
22531         arrays of structs. Also add a more descriptive error message when
22532         a structure member is marshalled as LPArray.
22534 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22536         * marshal.c (mono_marshal_get_native_wrapper): Add support for
22537         marshalling arrays of complex types. Fixes #29098. Also remove an
22538         usused and incomplete function.
22540 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22542         * gc.c: report heap_size - free_bytes as total memory allocated
22543         (bug#49362).
22545 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22547         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
22548         fix timezone handling problems on Windows.
22549         
22550         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
22551         asserts when the year is outside the range handled by ms the functions.
22553         * class.c (setup_interface_offsets): If the class is an interface,
22554         fill out its interface_offsets slot.
22556 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22558         * threadpool.c: mark threadpool threads as background.
22560 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
22562         * decimal.c - define DECINLINE to nothing if not using GCC
22564 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22566         * assembly.c: More refcount fixes.
22568 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22570         * string-icalls.c: if we're not trimming, return the same string.
22571         When not splitting, don't create a new string.
22573 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22575         * image.c:
22576         (mono_image_open): increment the ref_count inside the critical section.
22578 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
22580         * image.c (mono_image_open): Fix reference counting bug.
22582 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
22584         * marshal.c (mono_marshal_type_size) struct alignment changed for 
22585         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
22586         64bits. Avoid leak in mono_marshal_get_native_wrapper when
22587         mono_lookup_pinvoke_call throws.        
22589 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22591         * reflection.c (mono_reflection_parse_type): Fix #49114.
22593         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
22594         temporary workaround for cygwin header problem.
22596         * object.c (mono_object_isinst): Synchronize this with the code
22597         generated by the JIT for casts.
22599 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22601         * reflection.c (encode_type): Fix #38332.
22603 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22605         * marshal.c (mono_marshal_method_from_wrapper): New function to return
22606         the original method from the wrapper method.
22608 2003-09-25  Martin Baulig  <martin@ximian.com>
22610         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
22611         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
22612         (ves_icall_Type_get_IsGenericInstance): New interncall.
22614 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
22616         * object.c: fix cast warning in big endian code.
22618 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
22620         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
22621         
22622 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22624         * assembly.c: don't call check_env from mono_assembly_load. It's
22625         already done once in mono_assemblies_init and may cause headaches when
22626         multiple threads are loading assemblies.
22628 2003-09-19  Martin Baulig  <martin@ximian.com>
22630         * reflection.c (mono_reflection_define_generic_parameter): Don't
22631         allocate `klass->methods', set `klass->flags' to
22632         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
22634 2003-09-18  Martin Baulig  <martin@ximian.com>
22636         * class.c (mono_class_init): Don't create `class->methods' if it's
22637         already initialized.
22639         * metadata.c (mono_metadata_load_generic_params): Make this
22640         actually work.
22642         * reflection.c (mono_reflection_define_generic_parameter): Set
22643         parent class and interfaces from the constraints.
22645         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
22646         to keep this struct in sync with the declaration in TypeBuilder.cs.
22648 2003-09-17  Martin Baulig  <martin@ximian.com>
22650         * metadata.h (MonoType): Replaced the data's `int type_param'
22651         field with `MonoGenericParam *generic_param'.
22652         (MonoGenericParam): Added `MonoClass *klass'.
22654         * class.c (mono_class_from_gen_param): Removed the
22655         `MonoImage *image' and `int type_num' arguments.
22657         * metadata.c (mono_metadata_parse_generic_param): New static
22658         method; creates a MonoGenericParam which just contains the index.
22659         (do_mono_metadata_parse_type): Call
22660         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
22661         MONO_TYPE_MVAR.
22663         * reflection.c (mono_image_typedef_or_ref): Generic type
22664         parameters may be in the same assembly, but never use a typedef
22665         for them.
22666         (mono_reflection_define_generic_parameter): We're now creating a
22667         "real" class for the type parameter; it's now safe to call
22668         mono_class_from_mono_type() on the class'es type, it'll do the
22669         right thing.
22671 2003-09-16  Martin Baulig  <martin@ximian.com>
22673         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
22674         `symfile->range_entry_size' and `symfile->class_entry_size' here;
22675         the `symfile' data structure must be fully initialized before it
22676         gets added to the table.
22678 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22680         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
22682         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
22683         class init trampolines.
22685 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22687         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
22688         to the built-in profiler to turn off time and allocation profiling
22689         respectively.
22691 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22693         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
22694         g_direct_equal.
22696         * debug-helpers.c (mono_method_full_name): Print the wrapper type
22697         in human readable form.
22699 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22701         * reflection.c icall.c: Fixed warnings.
22703         * image.c (load_class_names): Use a temporary hash table to hold the
22704         namespaces in order to avoid doing many string comparisons.
22706         * image.h: Fix typo.
22708         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
22709         Pass NULL instead of g_direct_equal to the GHashTable constructor 
22710         since the NULL case is short-circuited inside g_hash_table_lookup, 
22711         leading to better performance.  
22713         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
22714         obtain the first custom attribute for a given index. Depends on the
22715         CustomAttribute table being sorted by the parent field.
22717         * reflection.c (mono_custom_attrs_from_index): Use the new function 
22718         for better performance.
22720 2003-09-07  Martin Baulig  <martin@ximian.com>
22722         * class.c (mono_class_init): If we're a generic instance, inflate
22723         all our methods instead of loading them from the image.
22724         (mono_class_from_generic): Set `class->methods = gklass->methods'.
22726 2003-09-07  Martin Baulig  <martin@ximian.com>
22728         * mono-debug-debugger.c: Added support for constructors.
22730 2003-09-06  Martin Baulig  <martin@ximian.com>
22732         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
22733         New interncall.
22735         * reflection.c (mono_reflection_setup_generic_class): Call
22736         ensure_runtime_vtable() to create the vtable.
22738 2003-09-05  Martin Baulig  <martin@ximian.com>
22740         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
22741         MONO_TYPE_MVAR.
22743 2003-09-04  Martin Baulig  <martin@ximian.com>
22745         * reflection.c (mono_reflection_define_generic_parameter): Generic
22746         parameters start with zero.
22748 2003-09-04  Martin Baulig  <martin@ximian.com>
22750         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22752         * reflection.h (MonoReflectionGenericParam): New typedef.
22753         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
22754         the generic parameters from the managed TypeBuilder.
22756         * reflection.c (mono_reflection_define_generic_parameter): New function.
22757         (mono_reflection_create_runtime_class): Encode generic parameters.
22758         (mono_reflection_setup_generic_class): New function; this is
22759         called after adding adding all generic params to the TypeBuilder.
22760         (encode_type): Added MONO_TYPE_VAR.
22762 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22764         * class.h class.c (mono_class_needs_cctor_run): Moved this method
22765         here from the JIT.
22767         * assembly.h assembly.c: Moved the AOT loading code into an assembly
22768         load hook.
22770 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
22772         * reflection.h reflection.c class.h class.c: Delete duplicate 
22773         definition of mono_type_get_name () from reflection.c and export the
22774         one in class.c.
22776         * class.c: Class loading fixes from Bernie Solomon 
22777         (bernard@ugsolutions.com).
22779         * reflection.c: Endianness fixes from Bernie Solomon 
22780         (bernard@ugsolutions.com).
22781         
22782 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
22784         * assembly.h assembly.c: Define a file format version for AOT
22785         libraries.
22786         
22787         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
22789         * appdomain.h (MonoJitInfo): New field to determine whenever the
22790         code is domain neutral.
22791         
22792 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
22794         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
22796 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
22798         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
22799         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
22800         Avoid caching the result since strings must be domain specific. Fixes
22801         #48050.
22803 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
22805         * marshal.c (mono_marshal_init): Make this callable multiple times
22806         since it is hard to find a correct place to call it.
22808         * object.c (mono_runtime_class_init): Execute static constructors in
22809         the correct appdomain.
22811         * image.c (build_guid_table): Handle the case when multiple images have
22812         the same GUID.
22814 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22816         * icall.c: added a couple of icalls for System.Web.
22818 2003-08-28  Martin Baulig  <martin@ximian.com>
22820         * icall.c (ves_icall_Type_BindGenericParameters): Use
22821         `klass->generic_inst' instead of `&klass->byval_arg' in the
22822         mono_type_get_object() call.  The returned type must be
22823         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
22825 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
22827         * NOTES: New file.
22829         * object.c (mono_class_proxy_vtable): Make it thread safe.
22831         * pedump.c: Fix warning.
22833         * object.c appdomain.h: Get rid of metadata_section. 
22834         It is no longer needed and it was causing deadlocks with domain->lock.
22836         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
22838 2003-08-26  Martin Baulig  <martin@ximian.com>
22840         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
22842 2003-08-26  Martin Baulig  <martin@ximian.com>
22844         * pedump.c (main): Call mono_metadata_init(),
22845         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
22846         and mono_loader_init().
22848 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
22850         * loader.h: Add missing include to fix build.
22852         * image.h: mono_image_load_references is no more.
22854         * assembly.c: Reworked assembly loading to make it really thread safe.
22855         After these changes, the assembly returned by mono_assembly_open is
22856         fully initialized, i.e. all its references assemblies are loaded.
22858         * assembly.c (mono_image_load_references): Renamed to 
22859         mono_assembly_load_references, and made private, since clients no
22860         longer need to call it.
22862         * class.c: Removed calls to mono_assembly_load_references, since it was
22863         a source of deadlocks.
22865         * loader.h loader.c class.h class.c: Protect data structures using a 
22866         new lock, the loader lock.
22868         * class.c (mono_class_setup_vtable): Create temporary hash tables and
22869         GPtrArrays only when needed.
22871         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
22872         into empty structures by mcs. Fixes pinvoke7.cs.
22873         
22874         * domain.c (mono_init): Call a new initialization function.
22876         * appdomain.c (mono_runtime_init): Call the new initializer function
22877         of the marshal module.
22879         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
22880         inserted into empty structures by mcs. Fixes pinvoke7.cs.
22882         * marshal.h marshal.c: Added locks around the wrapper caches to make
22883         this module thread safe.
22885         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
22886         this argument. Fixes pinvoke1.exe.
22888 2003-08-25  Lluis Sanchez <lluis@ximian.com>
22890         * object.h: Added call_type field to MonoMethodMessage and the corresponding
22891         enumeration of values. Removed fields to store remote call output values in
22892         MonoAsyncResult. Not needed any more.
22893         * object.c: Initialize call_type and async_result fields in mono_message_init.
22894         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
22895         dispatching the message.
22896         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
22897         async call to finish. To do it use a message with EndInvoke call type.
22899 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
22901         * loader.h loader.c (mono_method_hash_marhal_info): New function which
22902         determines whenever a method has marshalling info.
22904 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22906         * assembly.c: fix the build on windows.
22908 2003-08-22 Lluis Sanchez <lluis@ximian.com>
22910         * object.cs: Fixed bug #47785.
22912 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
22914         * string-icalls.c (StringReplace): If their are no occurances of
22915         the old string found return a reference to the supplied
22916         string. This saves some memory and matches MS behavoir.
22917         
22918 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22920         * socket-io.c: fixed compilation for systems that define AF_INET6
22921         and don't define SOL_IP/SOL_IPV6.
22923 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
22925         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
22926         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
22928         * rawbuffer.c rawbuffer.h: Make this module thread safe.
22930         * domain.c: Make this module thread safe.
22932         * domain.c (mono_init): Call new initialization function.
22934         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
22935         reference types too. Fixes #38812.
22937         * image.c (mono_image_init): Fixed warnings.
22939         * class.c (mono_class_from_typeref): Handle assembly load failure
22940         correctly.
22942         * appdomain.c (add_assemblies_to_domain): Handle the case when
22943         the references of an assembly are not yet loaded.
22945         * metadata.c image.c assembly.c: Moved initialization of global
22946         variables to a separate function called at startup since lazy 
22947         initialization of these variables is not thread safe.
22948         
22949         * image.c assembly.c: Made this module thread safe by adding locks in 
22950         the appropriate places.
22952         * domain.c (mono_init): Call the new initialization functions of the
22953         three modules.
22955 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
22957         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
22958           make a direct call. It is proxy's work to make the call asynchronous.
22959           mono_delegate_end_invoke(): If the targe is a proxy, just collect
22960           the return values.
22961         * object.cs: mono_method_call_message_new(): read AsyncResult and
22962           state object from parameters list, if this info is requested.
22963         * object.h: Added fields to store remote call output values in
22964           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
22966 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22968         * object.h: add needed fields to MonoThread.
22969         * threads.c, threads.h: allow registering a function to cleanup data
22970         allocated per thread by the JIT.
22972 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22974         * loader.h: portability fix by Bernie Solomon
22975         * <bernard@ugsolutions.com>.
22977 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
22979         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
22980         return a MonoArray. This simplifies the code and also ensures that
22981         the cache allways contains an object reference as a value.
22983         * icall.c (ves_icall_get_parameter_info): Simplified using the new
22984         function.
22986 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22988         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
22989         fixes a problem with byte ordering when getting the address family for
22990         a socket.
22992 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
22994         * .cvsignore: Added monosn.
22996         * reflection.h reflection.c loader.c: Added support for parameter
22997         marshalling to dynamically created types. Fixes #47295.
22999 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
23001         * rand.c: remove useless warnings.
23003 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23005         * class.c: implemented ldtoken for methods and fieldrefs.
23007 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23009         * threadpool.c: when mono_async_invoke was called, no one took care of
23010         monitoring the queue. So if the method invoked took some time and we
23011         got new async invoke requests after 500 ms (the thread created waited
23012         that long in WaitForSingleObject), the new async invoke was not called
23013         until the previous one finished.
23015         This is fixed now. Thanks to Totte for helping with it.
23017 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23019         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
23021 2003-08-11  Martin Baulig  <martin@ximian.com>
23023         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
23025 2003-08-06  Martin Baulig  <martin@ximian.com>
23027         * mono-debug-debugger.c: Added support for static fields,
23028         properties and methods.
23030 2003-08-06  Martin Baulig  <martin@ximian.com>
23032         * mono-debug-debugger.c: Don't store the MonoString's vtable to
23033         make this work for applications with multiple application domains.
23035 2003-08-04  Martin Baulig  <martin@ximian.com>
23037         * mono-debug-debugger.c: Completely reworked the type support; the
23038         most important thing is that we're now just using one single
23039         `MonoType' instance per type.
23041 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
23043         * mono-endian.h, mono-endian.c, icall.c: Added icall
23044         ves_icall_System_Double_AssertEndianity to assert double word endianity
23045         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
23047 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23049         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
23050         support, icalls and fixes.
23052 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
23054         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
23055         classes that are a punctuation character in .NET is not the same a
23056         g_unichar_ispunct.
23058 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23060         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
23062 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
23064         * icall.c: Add new MemCopy internalcall.
23065         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
23066         Simplified code; It is not necessary to handle all the cases here,
23067         as the C# code takes care of it.  Only handle the case of the name
23068         resource embedded into the assembly.
23070         Changed signature to return the data pointer and the size of the
23071         data. 
23073 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
23075         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
23076         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
23078 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23080         * socket-io.c: ignore EINTR error in select.
23082 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23084         * class.h, class.c: removed unused subclasses field in MonoClass.
23086 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23088         * icall.c: improve fix of get_base_definition(). If the parent class
23089           doesn't have the mehod, look at the parent of the parent.
23090         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
23091           to check if a parameter is an in or out parameter
23092           (PARAM_ATTRIBUTE_IN is not set by default).
23093           mono_method_return_message_restore(): Use mono_class_value_size to
23094           get the size of a value type. mono_type_stack_size (parameterType)
23095           does not return the correct value if parameterType is byRef.
23096           mono_load_remote_field(), mono_load_remote_field_new(),
23097           mono_store_remote_field(), mono_store_remote_field_new():
23098           raise exception if the remote call returns an exception.
23100 2003-07-28  Martin Baulig  <martin@ximian.com>
23102         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
23103         method.  This is a wrapper around mono_runtime_invoke() which
23104         boxes the instance object if neccessary.
23106 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23108         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
23109         metadata.h, row-indexes.h, verify.c: first cut of generics support.
23111 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23113         * icall.c: disable mcs bug workaround.
23115 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
23117         * object.c (mono_runtime_class_init): Take the metadata_section
23118         mutex before obtaining the domain mutex.
23120         * appdomain.h: Added definition of metadata_section mutex here. 
23122         * object.c: define metadata_mutex here.
23124 2003-07-24  Ravi Pratap  <ravi@ximian.com>
23126         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
23127         fixed.
23129 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
23131         * reflection.c: Fix bug #46669
23133 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23135         * exception.c:
23136         * exception.h:
23137         * icall.c:
23138         * object.h: fill in the type name for TypeLoadException.
23140 2003-07-23  Ravi Pratap  <ravi@ximian.com>
23142         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
23143         relationship between TypeBuilders while compiling corlib) and bug
23144         45993 (Array types returned from the runtime while compiling
23145         corlib were from the loaded corlib).
23147 2003-07-22  Martin Baulig  <martin@ximian.com>
23149         * mono-debug-debugger.c: Reworked the type support a bit more;
23150         distinguish between types and classes.
23152 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
23154         * icall.c: add IsArrayImpl icall.
23156 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
23158         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
23159         initializing real_size only once. Also fix bug #46602.
23161 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
23163         * object.c: Renamed mono_metadata_section to metadata_section.
23165 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
23167         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
23168           empty array if the type is an array. Fixed.
23169           ves_icall_MonoMethod_get_base_definition: if the base method
23170           is abstract, get the MethodInfo from the list of methods of
23171           the class.
23172         * reflection.c: ParameterInfo.PositionImpl should be zero-based
23173           and it was 1-based. Fixed in mono_param_get_objects.
23175 2003-07-20  Martin Baulig  <martin@ximian.com>
23177         * mono-debug.h: Set version number to 31.
23178         (mono_debug_init): Added `MonoDomain *' argument.
23180         * mono-debug-debugger.c: Reworked the type support; explicitly
23181         tell the debugger about builtin types; pass the `klass' address to
23182         the debugger.
23184 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
23186         * image.c: Allow new metadata tables to be loaded without a
23187         warning. Also update the warning message to give the new constant value.
23188                 
23189 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
23191         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
23192         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
23193         array type representation changes.
23195 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23197         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
23198         on Environment.Exit () call.
23200 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23202         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
23203         requires a matching corlib.
23205 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23207         * Changelog: My editor decided to add a CR to each line. Sorry about that.
23208           Committed again without the CRs.
23209         
23210 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23212         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
23213           getting it from the "this" socket instance. Did not work
23214           if the socket is a subclass of Socket.
23215           Also fixed bug #35371.
23217 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23219         * metadata.c: fixed size for TypedByRef.
23220         * loader.c: when searching for a method, consider the vararg amrker.
23221         * unicode.c, decimal.c: constify some arrays.
23223 2003-07-15  Dick Porter  <dick@ximian.com>
23225         * socket-io.c: Fixed compilation for gcc < 3.2.
23227         Fixed compilation for machines that don't have AF_INET6 (thanks to
23228         Bernie Solomon <bernard@ugsolutions.com> for that part.)
23230         Fixed compile warnings.
23231         
23232         Fixed formatting and line endings.
23234 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
23236         * socket-io.h:
23237         * socket-io.c: Added IPv6 support.
23239 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
23241         * class.c (mono_class_is_assignable_from): New function to implement
23242         the is_assignable_from logic. Used by mono_object_isinst, 
23243         Type::IsAssignableFrom () and the interpreter.
23245         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
23246         Object, even interfaces.
23247         
23248         * object.c (mono_object_isinst): Implement in terms of 
23249         is_assignable_from.
23251         * icall.c (ves_icall_type_is_assignable_from): New icall.
23253 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
23255         * domain.c (foreach_domain): fix compiler warning.
23257 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
23259         * image.c (load_metadata_ptrs): use g_strndup because strndup is
23260         not available on all plattforms
23262 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
23264         * image.h image.c: Store the metadata version string in MonoImage.
23265         * icall.c: New icall to retrieve the image version.
23266         * reflection.c (create_dynamic_image): Fill in the image version field
23267         * reflection.c (build_compressed_metadata): Use the image version
23268         from the image structure.
23270 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23272         * appdomain.c: modified comment.
23273         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
23274         That will be its last iteration when mono_gc_cleanup is called from
23275         mono_runtime_cleanup and before the domain is unloaded.
23277         Fixes bug #45962.
23279 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
23281         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
23282         attributes.
23284 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23286         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
23287         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
23288         Bernie Solomon <bernard@ugsolutions.com>.
23290 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23292         * object.c, object.h: provide mono_object_new_fast() for faster
23293         allocation in some special cases.
23295 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23297         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
23298         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
23300 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23302         * threadpool.c: fix leaks.
23304 2003-07-01  Dick Porter  <dick@ximian.com>
23306         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
23307         using MonoGHashTables.  Fixes threadpool bug posted to list.
23309 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
23311         * image.h, image.c: added support to load an assembly from a byte array.
23312         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
23313         assembly bundle support.
23315 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
23317         * threadpool.c (mono_thread_pool_add): keep a reference to the
23318         AsyncResult to prevent GC
23320 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23322         * class.c: leak fix.
23324 2003-06-25  Dick Porter  <dick@ximian.com>
23326         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
23327         for the async object, the WaitHandle object will close the handle.
23328         Fixes bug 45321.
23330 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23332         * class.c: in mono_array_class_get (), lookup from the hash with the
23333         same type we insert: this works around a bug in
23334         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
23335         lluis. The real fix will have to wait for after the release.
23337 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23339         * icall.c: fix memory leak when getting type members.
23341 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23343         * reflection.c: added more pubtoken special cases.
23345 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
23347         * class.c: handle field offset correctly when class size
23348         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
23350 2003-06-20  Martin Baulig  <martin@ximian.com>
23352         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
23353         *image' field.
23355 2003-06-20  Martin Baulig  <martin@ximian.com>
23357         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
23359 2003-06-20  Martin Baulig  <martin@ximian.com>
23361         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
23362         just distinguish between variables in registers and variables at
23363         an offset relative to a register.
23365 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23367         * icall.c: #ifdef out latest changes until mcs is fixed.
23369 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23371         * icall.c: return members in metadata order.
23373 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23375         * icall.c: avoid infinite loop in GetTimeZoneData.
23377 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
23379         * icall.c: added Marshal.Prelink/All icalls.
23381 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23383         * object.c, object.h: fix warnings and do some overflow checking
23384         when creating arrays.
23386 2003-06-17  Dick Porter  <dick@ximian.com>
23388         * file-io.h:
23389         * file-io.c: File attributes need to be tweaked slightly when
23390         passed from the managed to the w32 world.
23392 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23393         * profiler.h profiler-private.h profiler.c: Rework last patch
23394         based on suggestion by Paolo.
23395         
23396 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23398         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
23399         instruction level coverage data collection.
23400         * profiler.h profiler.c (: Added new callback function which can be
23401         used by the profiler to limit which functions should have coverage
23402         instrumentation.
23403         * profiler.c (mono_profiler_load): Call g_module_build_path to
23404         generate the file name of the profiler library.
23406 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23408         * profiler.c, profiler.h, profiler-private.h: added basic block 
23409         coverage profiling API.
23411 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
23413         * reflection.c (mono_reflection_create_runtime_class): Add support
23414         for events in dynamically generated code.
23416         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
23417         not allocated.
23419 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23421         * icall.c: when getting timezone info, return reasonable values if we
23422         can't get the actual data.
23424 2003-06-14  Dick Porter  <dick@ximian.com>
23426         * threads.c (start_wrapper): Remove the reference to the thread
23427         object in the TLS data, so the thread object can be finalized.
23428         This won't be reached if the thread threw an uncaught exception,
23429         so those thread handles will stay referenced :-( (This is due to
23430         missing support for scanning thread-specific data in the Boehm GC
23431         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
23433 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
23435         * reflection.c: ensure streams and tables are first allocated with
23436         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
23438 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23440         * icall.c: fixed GetElementType for byrefs (bug# 44792).
23442 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
23444         * reflection.c (mono_reflection_create_runtime_class): Add support for
23445         properties to dynamically created classes.
23446         * reflection.c: Fix a few places where non-MonoObjects were inserted
23447         into the tokens hashtable.
23449 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23451         * object.c: some support to handle out of memory exceptions.
23453 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
23455         * marshal.c (mono_marshal_get_native_wrapper): support reference
23456         return types
23458 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23460         * object.h, object.c: more portability stuff from Bernie Solomon.
23461         Unexport mono_object_allocate(). Added mono_object_unbox ().
23462         Set exitcode when an unhandled exception is thrown.
23464 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
23466         * marshal.c (mono_marshal_get_native_wrapper): use custom
23467         marshaler for return types.
23469 2003-06-10  Dick Porter  <dick@ximian.com>
23471         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
23472         ip_mreq is available
23474 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23476         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
23477         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
23478         by Bernie Solomon <bernard@ugsolutions.com>.
23480 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
23482         * gc.c (mono_gc_init): Avoid error message on shutdown when
23483         GC_DONT_GC=1 is used.
23485         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
23486         New icall to return the GUID of a module.
23488 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23490         * class.c: ensure instance size always includes the parent's size
23491         even whem class size is set explicitly (fixes bug#44294).
23493 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23495         * profiler.h, profiler.c: made the simple profiler thread-safe,
23496         get more accurate timing info. Allow the loading of an
23497         externally-developed profiler module.
23499 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
23501         * marshal.c (mono_marshal_get_native_wrapper): improved
23502         class/byref arguments.
23503         (mono_marshal_get_native_wrapper): better string marshaling support.
23505 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23507         * class.c: ensure .pack and .size are handled correctly and
23508         simplified layout of static fields.
23510 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23512         * appdomain.c
23513         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
23515         * loader.c (mono_lookup_pinvoke_call): look for modules in the
23516         current directory (fix bug 44008)
23518 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
23520         * marshal.c (mono_marshal_get_native_wrapper): started support for
23521         custom marshalers.
23522         (mono_delegate_to_ftnptr): consider marshalling specifications
23524 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23526         * reflection.c, reflection.h: emit custom marshal info.
23528 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23530         * object.c: free the GError.
23531         * icall.c: added CloseEvent_internal.
23532         * threads.[ch]:
23533         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
23534         call.
23536 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
23538         * loader.c (mono_method_get_signature): Add support for dynamic
23539         assemblies.
23541 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23543         * reflection.c: fixed bug #43905.
23545 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23547         * class.c, domain.c, icall.c, metadata.h, object.h: support for
23548         handling TypedReference and ArgIterator.
23549         * loader.c, loader.h: added function to get signature at call site.
23551 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23553         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
23554         data readonly. Buglets and warning fixes. Some MethodSpec support.
23556 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23558         * class.h, class.c, object.c: remove relative numbering support.
23560 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
23562         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
23563         free the string, until we get a chance to fix Gtk#
23565 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23567         * marshal.c: revert last patch.
23569 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23571         * icall.c: updates for new mono_class_vtable() not calling
23572         the type constructor anymore.
23574 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23576         * object.h, object.c: separate vtable creation from type
23577         initialization. Make running the .cctor thread safe.
23579 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23581         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
23583 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23585         * loader.c (mono_get_method): consider calling convention
23587 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
23589         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
23590         to return the invisible global type for a module.
23592         * reflection.c (mono_image_build_metadata): Emit global fields too.
23594 2003-05-20  Peter Williams  <peterw@ximian.com>
23596         * loader.c (mono_lookup_internal_call): Add a few newlines.
23598 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
23600         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
23601         literal strings.
23603         * appdomain.c (set_domain_search_path): Recalculate search path when
23604         AppDomainSetup.PrivateBinPath changes.
23606         * object.c (mono_class_compute_gc_descriptor): It turns out some
23607         parts of the class libs (like System.Thread) holds pointers to
23608         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
23609         to treat native int a pointer type here.
23610         
23611 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
23613         * appdomain.h, domain.c: add hashtable for jump target resolution.
23615 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
23617         * reflection.h reflection.c icall.c: Added new icalls 
23618         GetManifestResourceInfoInternal, GetModulesInternal and support
23619         infrastructure.
23621 2003-05-16  Dick Porter  <dick@ximian.com>
23623         * icall.c:
23624         * file-io.h:
23625         * file-io.c: Implement System.IO.MonoIO::GetTempPath
23627 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
23629         * object.c: mono_store_remote_field: little fix to previous patch.
23631 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23633         * class.c: add constructors to array classes.
23634         * icall.c: special case array construction for InternalInvoke (),
23636 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
23638         * class.h class.c reflection.c object.c: Added support for field
23639         defaults in dynamically generated classes.
23641 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23643         * reflection.c: properly encode charset for ddlimport.
23645 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
23647         * threads.c: allow compiling without GC.
23649 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23651         * appdomain.h, object.c, object.h, threads.c, threads.h: added
23652         handling of thread static data.
23654 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23656         * reflection.h, reflection.c: added mono_custom_attrs_free ().
23658 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23660         * class.c (mono_array_class_get): always set the serializable flags
23661         (mono_array_class_get): always set the SEALED attribute for array types
23663 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
23665         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
23666         attributes (fix for bug 42021).
23668 2003-05-12  Dick Porter  <dick@ximian.com>
23670         * gc.c: Don't run finalizers when the finalizer thread is
23671         finishing up, because the default domain has already been
23672         destroyed.
23674 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
23676         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
23677         value is null, we should throw an exception.   This is slightly
23678         different than the other conventions used for the constructor.
23680 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23682         * socket-io.c: fixed windows build.
23684 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23686         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
23688 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
23690         * object.c (mono_string_new_wrapper): Compatibility fix for MS
23691         compilers.
23693 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
23695         * class.c (mono_class_layout_fields): Add experimental GC aware
23696         auto layout facility. Requires class library changes to work correctly.
23698         (mono_class_setup_vtable): Avoid overriding explicit interface
23699         method implementations. Fixes iface3.exe test.
23701         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
23702         object reference.
23703         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
23704         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
23706         * metadata.h: Add new type classification macro which determines
23707         whenever the type holds an object reference.
23709 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23711         * marshal.c (mono_marshal_get_native_wrapper): cleanups
23713 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
23715         * gc.c (finalizer_thread): Work around a GC bug.
23717 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
23719         * marshal.c (emit_struct_conv): allow unions
23721         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
23723 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
23725         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
23727 2003-05-06  Martin Baulig  <martin@ximian.com>
23729         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
23731 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23733         * socket-io.c:
23734         (Select_internal): allow NULLs, don't create arrays if not needed.
23735         Coupled with Socket.cs changes.
23737         * threadpool.c:
23738         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
23739         register a finalizer for it that will close the semaphore handle. This
23740         fixes the leak and make Lupus' test run with > 4080 loops.
23742 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23744         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
23745         Jerome Laban (bug #42287)
23747 2003-05-02  Martin Baulig  <martin@ximian.com>
23749         * debug-mono-symfile.h
23750         (MonoSymbolFile): Moved declaration into mono-debug.h.
23751         (MonoDebugMethodJitInfo): Likewise.
23752         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
23753         argument.
23754         (_mono_debug_address_from_il_offset): Take a
23755         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
23757         * mono-debug.h
23758         (MonoDebugDomainData): New struct.
23759         (mono_debug_get_domain_data): New function.
23760         (mono_debug_add_method): Take an additional `MonoDomain *'
23761         argument.
23762         (mono_debug_source_location_from_address): Likewise.
23763         (mono_debug_il_offset_from_address): Likewise.
23764         (mono_debug_address_from_il_offset): Likewise.
23766 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
23768         * reflection.c: one more check for null type in custom attrs.
23770 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23772         * reflection.c: avoid warning (comparison is always false due to limited
23773         range of data type).
23775 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23777         * icall.c: throw an exception in Type.GetField if the argument 'name'
23778         is NULL.
23780 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
23782         * reflection.c: fixed handling of enums in named arguments to custom
23783         attributes (bug #42123).
23785 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23787         * reflection.c: use the right array element type and handle
23788         a null for a Type argument, too.
23790 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
23792         * reflection.c: handle arrays as arguments to custom attributes.
23794 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23796         * reflection.c: handle a string value in a custom attr
23797         ctor that takes an object.
23799 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
23801         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
23802         (fix bug #42063)
23804 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
23806         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
23808 2003-04-27  Martin Baulig  <martin@ximian.com>
23810         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
23811         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
23812         MONO_DEBUGGER_EVENT_BREAKPOINT.
23813         (mono_breakpoint_trampoline_code): Removed.
23814         (mono_debugger_event_handler): The last argument is now a
23815         `guint32'.
23816         (mono_debugger_insert_breakpoint_full): Removed the
23817         `use_trampoline' argument.
23818         (mono_debugger_method_has_breakpoint): Likewise.
23819         (mono_debugger_trampoline_breakpoint_callback): Renamed to
23820         mono_debugger_breakpoint_callback(); take the method and
23821         breakpoint number as arguments.
23823 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
23825         * metadata.c: fix off by one when loading parameters attributes.
23827 2003-04-24  Martin Baulig  <martin@ximian.com>
23829         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
23831 2003-04-24  Martin Baulig  <martin@ximian.com>
23833         * mono-debug-debugger.c: Moved all code which interacts with the
23834         Mono Debugger here.
23836         * debug-mono-symfile.c: This code now just deals with the symbol
23837         file itself, the debugger code is now in mono-debug-debugger.c.
23839 2003-04-23  Martin Baulig  <martin@ximian.com>
23841         * mono-debug.c (mono_debug_source_location_from_il_offset):
23842         New method; like mono_debug_source_location_from_address(), but
23843         takes an IL offset instead of a machine address.
23845 2003-04-23  Martin Baulig  <martin@ximian.com>
23847         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
23848         `line' field; this is now computed by the debugger.
23850 2003-04-23  Martin Baulig  <martin@ximian.com>
23852         * mono-debug.[ch]: New files.  This is the new debugging interface.
23854         * mono-debug-debugger.[ch]: New files.  Moved all code which
23855         interacts with the Mono Debugger here.
23857 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
23859         * domain.c (mono_init): initialize mono_defaults.monitor_class
23861 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
23863         * reflection.c (method_encode_code): Add a spicy exception to help
23864         future compiler authors.
23866 2003-04-21  Martin Baulig  <martin@ximian.com>
23868         * icall.c
23869         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23870         Make this work with relative pathnames; g_filename_to_uri() needs
23871         an absolute filename.
23873 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
23875         * icall.c: Track name changes in Object and ValueType.
23877 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
23879         * metadata.c (mono_type_stack_size): size should be a multiple of
23880         sizeof (gpointer)
23882 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23884         * gc.c:
23885         (internal_domain_finalize): moved into mono_domain_finalize. No need
23886         to create another thread because the finalizers will be run in the
23887         finalizer thread.
23888         
23889         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
23890         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
23891         to be run (MS does this too).
23893 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
23895         * object.c (mono_class_compute_gc_descriptor): Update comment.
23897         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
23899         * image.h: Add synchronized wrapper cache.
23901         * image.c (do_mono_image_open): Initialize cache.
23903         * reflection.c (create_dynamic_mono_image): Initialize cache.
23905 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23907         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
23908         ves_icall_System_Buffer_ByteLengthInternal.
23910 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23912         * reflection.c: setup klass->nested_in earlier. Allow
23913         a dash in the assembly name.
23915 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
23917         * metadata.c (mono_type_to_unmanaged): dont access
23918         type->data.klass for MONO_TYPE_OBJECT
23919         (mono_type_to_unmanaged): consider System.Delegate class
23921 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
23923         * class.c: just setup supertypes in the proper place instead of
23924         initializing the full element class for arrays.
23926 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23928         * class.c: ensure the element class of arrays is initialized.
23929         Setup the supertype info for array classes, too.
23931 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
23933         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
23935 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23937         * Makefile.am: re-added -m option when running cygpath. This way,
23938         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
23939         separator.
23940         * mono-config.c: same codepath for locating mono config file for WIN32
23941         and the rest.
23942         * assembly.c: if mono_assembly_setrootdir is called, don't override
23943         the value set.
23945 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23947         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
23948         MONO_ASSEMBLIES variable.
23950 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
23952         * icall.c: added Assembly::GetNamespaces() icall.
23954 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23956         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
23958 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
23960         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
23961         * object.c: fixed bug in the construction of vtable for proxies
23963 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
23965         * object.c (mono_array_new): Mark mono_array_new as an icall.
23967 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23969         * class.c: fixed test for public method when overriding interfaces.
23970         Closes bug #40970.
23972 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23974         * appdomain.h, domain.c: added mono_domain_foreach() to
23975         be able to access the currently loaded appdomains.
23976         * object.c: make string interning work across sppdomains.
23977         Mark some functions for use as icalls.
23979 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
23981         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
23983         * reflection.h reflection.c: Allocate long living data using 
23984         GC_MALLOC_ATOMIC so the collector does not need to scan it.
23986         * reflection.c: Double the allocation size in streams instead of
23987         increasing it, to prevent unneccesary copying on large assemblies.
23988         
23989         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
23990         creation if the assembly does not have the Run flag set.
23992 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23994         * class.h: avoid the C++ keywords in header files (Jerome Laban
23995         spotted and fixed this).
23997 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23999         * object.c:
24000         (mono_unhandled_exception): fill in the arguments for the
24001         UnhandledException event. Only trigger that event for the default
24002         domain (as MS does).
24004 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
24006         * object.c: Improve typed allocation stuff based on suggestions from
24007         Paolo. Also turn it on if the GC library supports it.
24009 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24011         * object.c object.h class.h: Added experimental typed allocation
24012         facility using the interfaces in gc_gcj.h.
24014         * os/gc_wrapper.h: Added new include files.
24015         
24016 2003-04-03  Martin Baulig  <martin@ximian.com>
24018         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
24019         which is not yet enabled by default.
24021         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
24022         functions.
24023         (mono_gc_lock, mono_gc_unlock): New static functions.
24025         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
24026         functions; stop/start the world for the garbage collector.  This
24027         is using the windows API; we need to complete the SuspendThread()/
24028         ResumeThread() implementation in the io-layer to make this work on Unix.
24029         (mono_gc_push_all_stacks): New public function; tells the garbage
24030         collector about the stack pointers from all managed threads.
24032 2003-04-03  Martin Baulig  <martin@ximian.com>
24034         * object.h (MonoThread): Added `gpointer stack_ptr'.
24036         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
24038 2003-04-03  Martin Baulig  <martin@ximian.com>
24040         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
24042 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24044         * reflection.c (typebuilder_setup_fields): Initialize field.first and
24045         field.last.
24047 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
24049         * loader.c (mono_lookup_internal_call): Report the corlib that is
24050         out of sync.
24052 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
24054         * icall.c (ves_icall_type_GetTypeCode): fixed check for
24055         System.DBNull (it's class not valuetype).
24057 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24059         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
24060         if the array method was already assigned a token (fixes bug#40646).
24062 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
24064         * reflection.c (mono_reflection_get_type): Attempt type resolve even
24065         if no assembly is given.
24067 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
24069         * metadata.h: Added the new tables.
24071         * row-indexes.h: Added definitions for new tables.
24073         * metadata.c: Add schemas for new tables, and add support for
24074         computing the sizes of them.
24076         * class.c: Update for handling the new type cases.
24078 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
24080         * metadata.h (MONO_TYPE_IS_VOID): new macro
24082 2003-03-31  Martin Baulig  <martin@ximian.com>
24084         * threads.h (MonoThreadCallbacks): Added `thread_created'.
24086         * threads.c (mono_thread_new_init): Call `thread_created' in the
24087         mono_thread_callbacks.
24089 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
24091         * loader.h: added marshalbyrefobject_class to mono_defaults
24092         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
24093         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
24094           generation of output parameters.
24095           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
24096         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
24097           contextbound and the target object belongs to the context of the caller.
24098         * object.h: added context and unwrapped_server variables in MonoRealProxy.
24099         * object.c: Implemented support for interfaces and abstract classes
24100           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
24101           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
24103 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
24105         * class.h class.c (mono_class_is_subclass_of): New function.
24106         
24107         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
24108         routines for most common case (calls from ArrayList::ToArray).
24110         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
24111         routine so programs which call Environment::Exit() can be profiled.
24113         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
24114         Added MONO_ARCH_SAVE_REGS.
24116         * icall.c (ves_icall_type_is_subtype_of): Use new function.
24118 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
24120         * blob.h: Add a couple of new MonoType types definitions.
24122         * tabledefs.h: Add a couple of new call convs.
24124 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
24126         * reflection.h (MonoReflectionDynamicAssembly): track changes in
24127         the layout of the class.
24129         * reflection.c (alloc_table): double the size on overflow to avoid
24130         unnecessary copying.
24132         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
24133         avoid filling out metadata tables and blobs. Also set mb->ilgen to
24134         null so it can be garbage collected.
24135         
24136 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
24138         * reflection.c (mono_reflection_get_type): Return the resolved type
24139         only if it is in the assembly we searched.
24141         * reflection.c (ensure_runtime_vtable): Initialize method slots.
24143         * class.c (mono_class_setup_vtable): Set the slot of the overriding
24144         method.
24146 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24148         * appdomain.c:
24149         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
24150         the right one is 'file:///blah', but MS allows it.
24151         * assembly.c:
24152         (mono_assembly_open): allow 'file://blah'
24154         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
24156 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
24158         * socket-io.c: fixes bug #40310.
24160 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
24162         * reflection.c (mono_reflection_parse_type): handle deeply nested
24163         types correctly.
24165         * reflection.c (mono_image_create_token): Use unique token values
24166         since they will be put into a hash table.
24168         * class.c (mono_class_setup_vtable): If a method occurs in more than
24169         one place in the vtable, and it gets overriden, then change the
24170         other occurances too.
24172         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
24173         object as return type.
24175 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24177         * icall.c: Deleted "ToString" implementation for double and float
24178         because they are full implemented in managed code.
24180 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24182         * reflection.c, reflection.h: implemented and exported functions
24183         to retrieve info about custom attributes.
24185 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24187         * appdomain.c: moved Uri handling to assembly.c
24188         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
24189         work when using a file Uri in *nix and windows.
24191         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
24192         GetReferencedAssemblies.
24194 2003-03-18  Dick Porter  <dick@ximian.com>
24196         * icall.c: Rename a couple of internal calls
24198         * threads.c: Set the thread state to Stopped when a thread exits.
24199         Fixes bug 39377.
24201 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
24203         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
24204         New icall.
24206         * object.c (mono_class_vtable): fix warning.
24208 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
24210         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
24212         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
24213         memory.
24214         (method_encode_clauses): Create exception info structures in the right
24215         order.
24216         (mono_reflection_setup_internal_class): Initialize supertypes field.
24218         * class.c object.c: Handle interfaces which implement other interfaces 
24219         correctly.
24221         * class.h class.c: Move the supertypes array initialization code into 
24222         a separate function so it can be used for dynamic types too. Also call
24223         it earlier, in mono_class_init(), since it can be used before the
24224         type is initialized.
24226 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24228         * Makefile.am:
24229         * assembly.c:
24230         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
24232         * appdomain.c:
24233         * appdomain.h:
24234         * marshal.c:
24235         * object.c: remove warnings.
24237 2003-03-13  Martin Baulig  <martin@ximian.com>
24239         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
24240         (MonoDebugLexicalBlockEntry): New types.
24242         * debug-mono-symfile.c
24243         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
24245 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24247         * process.c: ret can be any non-zero value accroding to MS doc.
24249 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
24251         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
24252         fixing a warning for a miss-used prototype, would have cause
24253         random memory corruption.
24255 2003-03-07  Martin Baulig  <martin@ximian.com>
24257         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
24258         getting really annoying ....
24260 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
24262         * reflection.c (fixup_method): added support for array methods.
24264 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24266         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
24267         (pointed out by Michael Adams).
24269 2003-03-04  Dick Porter  <dick@ximian.com>
24271         * icall.c: Temporarily reverted the Double and Single ToString()
24272         change, because it broke nunit.
24274 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
24276         * object.h, threads.h: make include files compatible with C++
24277         (patch by Jerome Laban <jlaban@wanadoo.fr>).
24279 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24281         * icall.c: Erased ToString helper functions for Double and Single.
24282         Now, that implementations ar all in managed code (Double and Single
24283         Formatters).
24285 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
24287         * appdomain.c: Added method for initializing the default context of
24288         a domain. Added internal call for getting the default context.
24289         * appdomain.h: Added context variable in MonoDomain struct.
24290         * domain.c: mono_domain_set also sets the default context of the domain
24291         * icall.c: Mapped internal method InternalGetDefaultContext.
24292         * object.c: mono_object_get_virtual_method returns always a remoting
24293         wrapper if the object is a transparent proxy.
24294         mono_runtime_invoke_array: when creating an object by calling the
24295         constructor, if the created object is a proxy, then the constructor should
24296         be called using the a remoting wrapper.
24298 2003-03-03  Dick Porter  <dick@ximian.com>
24300         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
24301         variable so it compiles on solaris.  Problem spotted by
24302         Christopher Taylor <ct@cs.clemson.edu>
24304 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24306         * appdomain.c:
24307         (get_info_from_assembly_name): don't leak value.
24309         * icall.c:
24310         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
24311         result.
24313 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
24315         * assembly.c: export mono_image_load_references ().
24316         * class.c: handle function pointers. mono_class_from_name() now
24317         supports nested type names directly.
24319 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
24321         * reflection.h reflection.c: Encode already created dynamic methods 
24322         and fields correctly as a DEF instead of a REF.
24324         * reflection.c: Get rid of the force_ref argument to 
24325         mono_image_typedef_or_ref since it was wrong in the first place.
24327         * string-icalls.c: add error checking to string constructors according
24328         to the MSDN docs.
24330         * reflection.c: Emit types in the order their TypeBuilders were 
24331         created. Previously, a new table index was assigned to each type before
24332         the tables were emitted. This was wrong because the signature blob
24333         might already refer to a type by its original table index.
24335 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
24337         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
24338         change.
24339         
24340 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24342         * Makefile.am: make assemblies dir have \ instead of / on windows.
24344 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
24346         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
24347         iterate over the NESTEDCLASS table using a linear search since the
24348         table is not guaranteed to be sorted by the secondary key.
24350         * class.c (mono_class_create_from_typedef): fixed up call to
24351         mono_metadata_nesting_typedef.
24352         
24353 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
24355         * marshal.c (mono_string_to_byvalstr): clear the memory as
24356         suggested by Jerome Laban <jlaban@wanadoo.fr>
24358 2003-02-26  Dick Porter  <dick@ximian.com>
24360         * process.c: Cope with padding in .rsrc blocks
24362 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24364         * metadata.h: reverted the filter_len change, it breaks reflection
24365         
24366 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24368         * metadata.h: added a new field to store the filter_len
24369         
24371 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
24373         * reflection.c: handle custom attributes for types and members
24374         created with Reflection.Emit (bug#38422).
24376 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
24378         * reflection.c: define RTSpecialName automatically for constructors for
24379         compatibility with MS.NET.
24381         * reflection.c (mono_reflection_create_runtime_class): initialize
24382         nested_in field of dynamically created classes.
24384 2003-02-22  Martin Baulig  <martin@ximian.com>
24386         * debug-mono-symfile.h: Incremented version number.
24388 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24390         * object.h icall.c process.c: fix warnings.
24392 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24394         * appdomain.h appdomain.c:
24395         (mono_domain_try_type_resolve): split the 
24396         name_or_tb argument into a name and a tb argument.
24397         (mono_domain_has_type_resolve): new function to check whenever the
24398         application has registered a TypeResolve event handler.
24399         
24400         * icall.c reflection.h reflection.c: move the type resolve logic into
24401         mono_reflection_get_type () so it will be invoked when 
24402         Assembly::GetType () is called.
24404         * reflection.c:
24405         (mono_reflection_get_type): renamed to get_type_internal.
24406         (mono_reflection_get_type): fixed type name generation so it works 
24407         for nested types too.
24408         (mono_reflection_get_type): call has_type_resolve () to avoid the 
24409         costly type name generation if there is no resolve event handler.
24411 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24413         * class.c, image.c: load exported types from file references.
24415 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
24417         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
24418           used to cache the managed methods used to create proxies and make 
24419           remote invocation of methods.
24420         * class.h: Added in MonoVTable a flag to indicate that a class needs 
24421           to be remotely created.
24422         * object.c: Modified the method mono_class_vtable(). It now initializes 
24423           the remote flag of the vtable. Modified mono_object_new_specific(), 
24424           so now it checks the remote flag.
24425         * icall.c: Added a couple of internal methods, one for enabling instance 
24426           creation interception for a type, and one for creating objects bypassing
24427           the remote check.
24429 2003-02-18  Martin Baulig  <martin@ximian.com>
24431         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
24432         New interncall to get a method's metadata token.
24434         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
24435         New interncall for the debugger.
24437 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
24439         * class.c (mono_class_setup_vtable): allocate supertype array
24441 2003-02-18  Martin Baulig  <martin@ximian.com>
24443         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
24445 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24447         * reflection.c:
24448         (assembly_name_to_aname): jump over unknown properties (i've found
24449         something like: 'type, assembly, version=xxx, custom=null, public...',
24450         so now will ignore custom=null and still get the rest of the values).
24452 2003-02-17  Dick Porter  <dick@ximian.com>
24454         * threads.c: Have Thread.Start() wait for a semaphore to signal
24455         that the thread has set up all its local data.  This fixes bug
24456         34323, where Abort() raced the new thread's TLS data.
24458         Also removes the handle_store() call from start_wrapper, because
24459         threads are now always created suspended and there is no longer a
24460         race between the parent and child threads to store the info.
24462 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
24464         * image.c: explain the #- heap issue in a message, hopefully
24465         avoiding FAQs on mono-list.
24467 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24469         * icall.c:
24470         (GetEntryAssembly): if the domain has not invoked
24471         AppDomain.ExecuteAssembly yet, return the assembly of the default
24472         AppDomain.
24474 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
24476         * class.c (mono_ldtoken): make it work in dynamic assemblies.
24478 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24480         * metadata.c, reflection.c: simple speedup to type hash
24481         and equals code.
24483 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
24485         * image.c, image.h, class.c, assembly.c: move module loading
24486         to MonoImage. When loading metadata, consider alignemnet from
24487         the start of metadata, not from the metadata address in memory.
24489 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
24491         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
24492         AssemblyBuilder objects. Factored out custom attribute creation into
24493         a separate function.
24494         (create_custom_attr): new function to create custom attributes.
24496 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
24498         * Makefile.am: Got tired of typing the full pathname to pedump.
24499         Until there is another option, am installing this.
24501 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
24503         * class.c (class_compute_field_layout): always set field->parent 
24504         (mono_ldtoken): use mono_defaults.fieldhandle_class;
24506 2003-02-11  Dick Porter  <dick@ximian.com>
24508         * threads-types.h:
24509         * monitor.c: Rewrote Monitor, making lock much faster and
24510         Pulse/Wait work as specified.  Also uses much fewer handles, and only
24511         creates them as needed.
24513         * exception.c: Added SynchronizationLockException
24515         * threads.c: Deleted old Monitor implementation.  The new one is
24516         in a new file.
24518 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24520         * class.c: handled TypedReference type code. Set the correct size for
24521         class data. Setup interface_offsets for interface classes, too.
24523 2003-02-09  Martin Baulig  <martin@ximian.com>
24525         * debug-mono-symfile.h: Reflect latest symbol writer changes.
24527 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
24529         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
24530         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
24531         * object.c: fixed mono_object_get_virtual_method () for interfaces.
24532         * verify.c: check for code that runs after the end of the method.
24534 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24536         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
24537         "System.Math::Round2".
24538         * sysmath.h: Added Floor, Round and Round2 definitions.
24539         * sysmath.c: Modified certain functions that were not 100% compliant
24540         with MS.NET (math precision) and added the implementation of Floor,
24541         Round and Round2.
24543 2003-02-07  Martin Baulig  <martin@ximian.com>
24545         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
24547 2003-02-07  Martin Baulig  <martin@ximian.com>
24549         * debug-mono-symfile.c: Reflected latest symwriter changes.
24550         (mono_debug_create_mono_symbol_file): Removed.
24551         (mono_debug_open_mono_symbol_file): Take an argument which
24552         specifies whether to create a dynamic symbol file.
24554 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
24556         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
24558 2003-02-05  Martin Baulig  <martin@ximian.com>
24560         * reflection.c (mono_image_build_metadata): Make this public,
24561         protect it against being called multiple times, don't create
24562         resources and don't build the compressed metadata here.
24563         (mono_image_create_pefile): Do this here.
24565         * icall.c
24566         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
24568 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24570         * socket-io.c: fixed bug #36322.
24572 2003-02-06  Piers Haken <piersh@friskit.com>
24574         * appdomain.[ch]:
24575         * class.h:
24576         * debug-mono-symfile.c:
24577         * icall.c:
24578         * loader.c:
24579         * mono-config.c:
24580         * monosn.c:
24581         * reflection.c:
24582         * socket-io.c: warning cleanups
24584 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
24586         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
24587         function. works like remoting invoke, but does a check for the Proxy first.
24589 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
24591         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
24593 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
24595         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
24596         array of pointers.
24597         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
24598         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
24600         * object.c (mono_store_remote_field_new): used by the new jit
24601         instead of mono_store_remote_field
24602         (mono_load_remote_field_new): used by the new jit
24603         instead of mono_load_remote_field
24605 2003-02-05  Patrik Torstensson
24607         * appdomain.c: changed unload to take the domain id instead
24608         of domain
24609         
24610         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
24613 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24615         * appdomain.c: don't look for assemblies in ApplicationBase if
24616         PrivateBinPathProbe is set.
24618 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24620         * object.c: make the first argument in main_args contain the absolute
24621         path to the assembly. Fixes bug #37511.
24623 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24625         * icall.c: get correct UTC offset for countries not using daylight
24626         time saving. Fixes bug #30030.
24628 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24630         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
24631         and 1 are the family).
24633 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
24635         * icall.c (ves_icall_InternalExecute): removed wrong assertion
24637         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
24639 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
24641         * reflection.c: added support for SignatureHelper tokens, which is
24642         needed by the Calli opcode.
24644         * reflection.h: track changes to SignatureHelper class.
24646         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
24648 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24650         * appdomain.c: fixed loading assemblies from PrivateBinPath.
24652 2003-02-03  Patrik Torstensson
24653         * appdomain.[c|h], domain.c : 
24654          - Added support for getting a domain via domain id
24655          - Support for setting and getting domain from System.AppDomain 
24656            (used in cross appdomain channel)
24657          - Added support for get/set for a MonoAppContext on a thread 
24658            (Context class in System.Runtime.Remoting.Contexts),
24659          - Removed hack in Get/SetData and ExecuteAssembly.
24660         
24661         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
24662         the managed world to get control when a proxy is created.
24664         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
24665         
24666 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
24668         * icall.c
24669         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24670         Populate the codebase field as well.
24672 2003-02-02  Martin Baulig  <martin@ximian.com>
24674         * debug-mono-symfile.c
24675         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
24676         (mono_debug_symfile_add_method): Allow interncalls.
24678 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24680         * icall.c: throw parse exception if strtod fails or the string is empty.
24682 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
24684         * marshal.c: handle object type separately from defined
24685         class types.
24687 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
24689         * marshal.c: handle NATIVE_LPSTR for strings when it's
24690         explicitly specified.
24692 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
24694         * reflection.c, reflection.h, icall.c: setup the reflection
24695         handle cache for ModuleBuilders and AssemblyBuilders.
24697 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
24699         * reflection.c (reflection_methodbuilder_to_mono_method): set
24700         pinvoke flag
24702 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24704         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
24706 2003-01-29  Dick Porter  <dick@ximian.com>
24708         * threads.c: No need for the fake_thread kludge now that Thread
24709         doesn't run a class constructor
24710         
24711 2003-01-29  Dick Porter  <dick@ximian.com>
24713         * threads.c: Use g_direct_hash instead of the rather bogus
24714         g_int_hash
24716 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
24718         * marshal.c (mono_marshal_get_native_wrapper): add check for null
24719         (fix pinvoke12.exe)
24720         (mono_marshal_get_struct_to_ptr): generate valid IL code
24721         (mono_marshal_get_ptr_to_struct): generate valid IL code
24722         (*): correctly set sig->pinvoke, we need to memdup the signature
24723         to do that
24725 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24727         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
24728         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
24730 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24732         * profiler.c: provide more callers information.
24734 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
24736         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
24738         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
24740         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
24742 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24744         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
24745         exception instead of going into an infinite loop on dates which it 
24746         can't yet handle.
24748         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
24749         out-of-range exception if needed.
24751         * class.c (mono_class_setup_vtable): allow a virtual method to provide
24752         an implementation for an interface method and to override an inherited
24753         method at the same time. 
24754         Imagine a scenario when a virtual method is used to override a
24755         virtual abstract method in a parent class, and this same method 
24756         provides an implementation for an method inherited from an interface. 
24757         In this case, the interface resolution code will set im->slot, which 
24758         means that the virtual method override pass will skip this method 
24759         which means a pointer to the abstract method inherited from the parent
24760         will remain in the vtable of this non-abstract class.
24762         * class.c: (mono_class_setup_vtable): continue search for a real 
24763         method if only an abstract method is found.     
24765 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24767         * reflection.c: add size to encoding for ByValStr and ByValArray
24768         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
24770 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24772         * class.c (mono_class_setup_vtable): pass the override info as an
24773         argument.
24775         * class.c (mono_class_setup_vtable): set the slot of overriding methods
24776         correctly.
24777         
24778         * reflection.c (ensure_runtime_vtable); add support for method 
24779         overrides.
24780         
24781 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24783         * reflection.c (resolution_scope_from_image): Hack to work to work with
24784         dynamic assemblies.
24786         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
24787         added a 'force_ref' argument to force this function to allways return 
24788         a TypeRef. This is needed by mono_image_get_memberref_token ().
24789         
24790 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24792         * reflection.c (mono_image_get_type_info): interfaces really don't have
24793         a parent.
24795         * reflection.c (mono_image_basic_init): fill out missing fields of
24796         image structure.
24798         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
24799         dynamic assemblies. This is required so dynamic assemblies show up in
24800         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
24801         Type::GetType() etc. This is consistent with MS behaviour.
24803         * image.c image.h reflection.c: add newly created classes to the name 
24804         cache so mono_class_get () will find them.      
24806 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24808         First part of changes to get IKVM.NET running under mono.
24809         
24810         * appdomain.h, appdomain.c: added new function 
24811         mono_domain_try_type_resolve() which will emit TypeResolve events. 
24812         This function will call AppDomain::DoTypeResolve to do the actual work.
24814         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
24815         moved existing code dealing with dynamic tokens to a new function 
24816         called mono_reflection_lookup_dynamic_token (). This function will 
24817         raise TypeResolve events when appropriate. Since reflection.c is not 
24818         part of libmetadata, a new hook function called 
24819         mono_lookup_dynamic_token() is added to class.c which will call this.
24821         * assembly.h assembly.c: make the invoke_load_hook function public,
24822         so it can be called for dynamic assemblies.
24824         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
24826         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
24827         type isn't found.
24829         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
24830         MonoGHashTable, since it contains pointers to objects which the GC 
24831         needs to track.
24833         * assembly.c (search_loaded): remove unused variable.
24834         
24835 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
24837         * object.c: fixed issue exposed by gcc-generated IL programs
24838         that use RVA data for pointers.
24840 2003-01-25  Martin Baulig  <martin@ximian.com>
24842         * threads.c (start_wrapper): Moved the initialization of
24843         `start_func' above the mono_new_thread_init() call to which we
24844         pass it as argument.
24846 2003-01-24  Martin Baulig  <martin@ximian.com>
24848         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
24849         the MonoThread pointer.
24851 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
24853         * icall.c: Rename `PowImpl' to Pow.
24855 2003-01-23  Dick Porter  <dick@ximian.com>
24857         * threads.c (start_wrapper): Create a Thread object if needed, so
24858         the Main() thread can do the class initialisation in a subthread
24859         that has been set up to allow managed code execution.
24861         Pass the thread ID instead of the MonoThread pointer to the thread
24862         start and attach callbacks.  This change is required, because the
24863         jit thread start callback must be called _before_ the Thread
24864         object can be created.
24865         
24866         (mono_thread_init): Removed much object creation code that is no
24867         longer needed.  No managed code is called from here now.
24869         * object.c (mono_runtime_exec_managed_code): Create a subthread
24870         for Main, and call back to the runtime to use it.
24871         Set the exit code when Main exits.
24873         * gc.c: Make sure domain finalisation happens in a subthread.
24874         Re-enable threaded GC, fixing bug 31333 (again).
24876         * environment.c: System.Environment internall calls (so far just
24877         ExitCode is here, the others are still in icall.c)
24879         * appdomain.c (mono_runtime_cleanup): All threads running managed
24880         code should have finished before mono_runtime_cleanup() is
24881         reached, so no need to clean up threads.
24883 2003-01-22  Martin Baulig  <martin@ximian.com>
24885         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
24886         `gpointer func' arguments.      
24887         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
24888         but added `MonoThread *thread' argument.
24889         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
24891         * threads.c (mono_new_thread_init): Added `gpointer func' argument
24892         and pass it to the mono_thread_start_cb callback.
24893         (mono_install_thread_callbacks): New public function to install a
24894         set of callbacks which are set by the debugger.
24895         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
24897 2003-01-22  Martin Baulig  <martin@ximian.com>
24899         * Makefile.am: Install debug-mono-symfile.h.
24901 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
24903         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
24905 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
24907         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
24908         * class.c (mono_ptr_class_get): correctly set access levels of pointers
24909         (mono_array_class_get): correctly set access levels of arrays
24911 2003-01-20      Patrik Torstensson
24912         * image.h (MonoAssemblyName): changed major, minor, build, revision
24913         from signed to unsigned.
24915 2003-01-20  sean kasun <skasun@azstarnet.com>
24917         * reflection.c (load_cattr_value): Now this handles
24918         MONO_TYPE_SZARRAY.  Fixes bug #35629
24920 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
24922         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
24923         integer value
24925 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24927         * decimal.c: fixed bug #26056.
24929 2003-01-17  Martin Baulig  <martin@ximian.com>
24931         * gc.c: Raise an ExecutionEngineException instead of using g_error().
24933 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24935         * exception.[ch]:
24936         (mono_get_exception_type_initialization): new function.
24938         * object.c: throw a TypeInitializationException when an exception is
24939         thrown invoking the class constructor.
24941 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24943         * reflection.c: fixed attribute reading.
24945 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24947         * icall.c:
24948         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
24949         provided, look for the type in the calling assembly and then in
24950         mscorlib; if the assembly name is provided, only try that one.
24952 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24954         * object.c: register the vtable before there is a chance it's
24955         queried again recursively.
24957 2003-01-13  Duncan Mak  <duncan@ximian.com>
24959         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
24960         gc-internal.h. 
24961         
24962 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
24964         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
24966 2003-01-11  Martin Baulig  <martin@ximian.com>
24968         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
24969         this to 20 for the release.
24971 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
24973         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
24975         * loader.c (mono_method_get_marshal_info): bug fix
24977         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
24978         structures with explicit layout
24980 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24982         * profiler.c: made the output more readable (and sorted). 
24983         Added caller information for the allocation profiler.
24985 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
24987         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
24989 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24991         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
24992         to get value types.
24993         
24994 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
24996         * object.c, profiler.h, profiler.c, profiler-private.h:
24997         Added object allocation profiler.
24999 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
25001         * reflection.h, reflection.c: handle global methods.
25002         Compress blob entries.
25004 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
25006         * marshal.c: fix compilation.
25008 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
25010         * loader.c (mono_method_get_marshal_info): impl.
25012         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
25014 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25016         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
25017         for reference types.
25019 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
25021         * loader.c: fixed off by one error in loaded parameter names.
25023 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
25025         * marshal.c (mono_marshal_get_icall_wrapper): like
25026         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
25027         instead of a MonoMethod.
25029 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25031         * decimal.c: fixed bug #36537.
25033 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
25035         * marshal.c: throw a missing method exception if a
25036         P/Invoke method is not found.
25038 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
25040         * icall.c: allow a null this for constructors.
25042 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
25044         * icall.c: raise the proper exceptions if the arguments to the
25045         internal Invoke are incorrect.
25047 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
25049         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
25051 2003-01-03  Martin Baulig  <martin@ximian.com>
25053         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25055 2002-12-31  Martin Baulig  <martin@ximian.com>
25057         * debug-mono-symfile.c: Completely rewrote the type section.
25058         Instead of using individual malloc()ed fields, we use one big
25059         continuous memory area and offsets into this area.
25060         See the comments in the source code for details.
25062 2002-12-30  Martin Baulig  <martin@ximian.com>
25064         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
25066 2002-12-30  Martin Baulig  <martin@ximian.com>
25068         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
25069         line number table in this data blob instead of using an external
25070         pointer.
25072 2002-12-28  Martin Baulig  <martin@ximian.com>
25074         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25076 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
25078         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
25079         as a boxed return type.
25081 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
25083         * appdomain.c
25084         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
25085         g_build_filename to properly get separators on the filename created.
25087         * object.h: Small change, introduce MonoMarshalByRefObject to
25088         track the layout of that structure in the C# universe as we make
25089         changes there.
25091 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
25093         * object.c: removed assert to allow static fields on interfaces.
25094         * loader.c: a TypeSpec may be used for any type, not just arrays.
25096 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
25098         * class.c, class.h: added mono_class_array_element_size ().
25099         Ignore static methods in interfaces.
25101 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25103         * threads.c: fixed the build under cygwin.
25105 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
25107         * reflection.c: handle nullref constants. Allocate keys for
25108         reflection handles with the GC.
25110 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25112         * threads.c, threads.h: added mono_thread_get_abort_signal()
25113         to get a suitable signal for thread abort.
25115 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25117         * metadata.c: fix handling of ExportedType table.
25119 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25121         * icall.c: added WriteWindowsDebugString internal call.
25123 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25125         * reflection.h: added fields to match C# implementation.
25127 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25129         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
25131 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
25133         * gc.h, gc-internal.h: Rename header for GC internal calls to
25134         gc-internal.h from gc.h as to not clash with Boehm GC having its
25135         header installed as <gc.h> in outside include paths.
25136         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
25137         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
25139 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25141         * icall.c: assign minor, build and revision in FillName.
25143 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
25145         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
25146         Added support for running code generated by Reflection.Emit.
25148 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25150         * appdomain.c: check for NULL argument in LoadFrom.
25152 2002-12-10  Dick Porter  <dick@ximian.com>
25154         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
25156 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25158         * appdomain.c: fix buglet when building exe file name.  Handle full
25159         assembly name (needed after latest changes to AssemblyName).
25160         * image.c:
25161         (mono_image_close): free some hashtables.
25163 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
25165         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
25166         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
25167         on some systems (redhat 7.3) 
25169 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
25171         * threads.c: delete the critical section of a sync block,
25172         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
25174 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
25176         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
25178 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25180         * appdomain.[ch]: handle the assembly preload event to try loading the
25181         assemblies using the paths we have in the current domain.
25183         * assembly.[ch]: created an assembly preload hook that is called to try
25184         loading the assembly by other means that the ones provided here.
25186         * domain.c: initialize the domain search path.
25188         From now on, assemblies (TODO: except corlib and System) are loaded
25189         according to these rules when using mono_assembly_load ():
25191                 1. It tries to load the assembly from the ApplicationBase
25192                 of the current domain appending .dll and .exe (TODO: have to
25193                 try loading from name/name.dll and name/name.exe).
25195                 2. It tries the search path specified in PrivateBinPath for the
25196                 current domain (if any).
25198                 3. Previous behavior.
25200 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
25202         * icall.c: implemented GetInterfaceMap() related icall.
25203         * domain.c, loader.h: load MethodInfo in mono_defaults.
25205 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
25207         * gc.c: disable the finalizer thread for now, untill all the issues
25208         with it are resolved.
25210 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
25212         * string-icalls.c: handle embedded nulls in string ctor when the
25213         length is specified.
25215 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
25217         * class.c: look for explicit interface implementation in parent
25218         classes, too.
25220 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
25222         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
25224 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
25226         * gc.c: protect handles with a critical section.
25228 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25230         * icall.c:
25231         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
25232         parameters. If no assembly specified, try getting the type from all
25233         the assemblies in the current domain, else, load the assembly and get
25234         the type from it.
25236 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25238         * marshal.c: applied patch from Aleksey Demakov that fixes
25239         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
25241 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25243         * icall.c: fixed get_location.
25245 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
25247         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
25248         declarations to make it work with older gcc. 
25250         * loader.c (mono_get_method): set signature->pinvoke for native calls
25252 2002-11-20  Dick Porter  <dick@ximian.com>
25254         * threads.c (mono_thread_init): Set the main thread's handle
25256 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
25258         * gc.c: allow compilation without GC support. Changed to match the
25259         mono coding style.
25261 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
25263         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
25265 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
25267         * reflection.c: set a public key token on the core assemblies.
25269 2002-11-18  Dick Porter  <dick@ximian.com>
25271         * threads.c: Split out some thread initialisation so that other
25272         files can set the start callback function.
25274         * gc.c: Run finalisers in a separate thread, to avoid stack
25275         overflow.  Fixes bug 31333.
25277         * appdomain.c: Set up GC finalisation thread.
25279         * reflection.c: 
25280         * object.c: 
25281         * domain.c: Use gc.h macros for GC_malloc
25282         
25283 2002-11-15  Dick Porter  <dick@ximian.com>
25285         * threadpool.c: 
25286         * threads.c:
25287         * appdomain.c: Removed mono_runtime_init_with_attach(),
25288         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
25289         merging the extra parameter with the existing function.  Removed
25290         unneeded code in mono_thread_attach().
25292 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
25294         * image.c (mono_image_loaded_by_guid): a method to get loaded
25295         images by guid. 
25296         (load_metadata_ptrs): we store the guid as string.
25298 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
25300         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
25302         * metadata.c (mono_guid_to_string): imported method form Zoltan
25303         Varga (slightly modified)
25305         * assembly.c (mono_assembly_open): load precompiled code
25307         * loader.h (MonoMethod): we store the method token for use in the
25308         aot compiler. 
25310 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25312         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
25313         the hook function called when an assembly is loaded.
25314         
25315         * domain.c: Modified file.
25316         (mono_domain_assembly_load): removed hash table insertion of assemblies.
25318         Fixes bug #33196.
25320 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
25322         * reflection.c: Map PEFileKind to the value expected by the WinNT
25323         image loader. 
25325 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25327         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
25328         Read until the buffer is filled completely.
25330 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25332         * icall.c: implemented MonoType.InternalGetEvent ().
25334 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25336         * appdomain.c: implemented InitAppDomainSetup. Delayed
25337         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
25338         the entry_assembly.
25340         * assembly.c: base_dir is now an absolute path ending with
25341         G_DIR_SEPARATOR.
25343         * icall.c: modified get_location according to the above changes.
25345         * object.c: init AppDomain.SetupInformation for the default domain after
25346         we have the entry assembly.
25348         * domain.c: when unloading a domain, setup = NULL.
25350 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
25352         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
25354 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
25356         * object.h, object.c: introduced mono_object_get_virtual_method ()
25357         to lookup the method invoked on an object when a callvirt is done on
25358         a method.
25359         * icall.c: make MethodInfo::Invoke() always do a virtual call.
25361 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25363         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
25364         current domain when loaded an assembly and failed to load it.
25366         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
25368 2002-10-31  Dick Porter  <dick@ximian.com>
25370         * icall.c: 
25371         * file-io.h: 
25372         * file-io.c: Return the error status in a parameter, as the
25373         GetLastError() value has long since been blown away if we try and
25374         look it up in a subsequent internal call invocation.  Delete the
25375         GetLastError() internal call, because it's useless.
25377 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
25379         * class.[ch]: added cast_class to fix bug 29517
25381 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
25383         * marshal.c: create valid IL code in the filter clause:
25384         the new JIT is less forgiving:-)
25386 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25388         * icall.c: removed get_property internal call.
25390 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
25392         * appdomain.h domain.c: Added an ID to appdomains.
25393         
25394         * threads.c threads.h icall.c: Implement icall
25395         Thread:GetDomainID(), and remove unused icall 
25396         CurrentThreadDomain_internal.
25398 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25400         * icall.c: Don't recurse through the base types in GetConstructor.
25401         Fixes bug #32063. 
25403 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25405         * mempool.h, mempool.c: added mono_mempool_empty() and
25406         mono_mempool_stats().
25408 2002-10-23  Dick Porter  <dick@ximian.com>
25410         * file-io.c: 
25411         * file-io.h: 
25412         * icall.c: Added MonoIO.GetFileType internal call
25414 2002-10-17  Dick Porter  <dick@ximian.com>
25416         * appdomain.c (mono_runtime_cleanup): Don't signal the async
25417         delegate semaphore before waiting for all threads to finish,
25418         because new threads can also call async delegates.  Fixes bug
25419         32004.
25421         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
25422         of 3 seconds, in case another async job is queued.  (This part is
25423         needed because the bug fix reintroduced the 3s exit lag.)  This
25424         makes the mono_runtime_shutdown flag superfluous.
25426 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25428         * reflection.c: include ehader size in method section headers.
25429         Really check for suplicated modules entries.
25431 2002-10-17  Martin Baulig  <martin@gnome.org>
25433         * debug-mono-symfile.c: Added back support for locals.
25435 2002-10-14  Martin Baulig  <martin@gnome.org>
25437         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
25438         MONO_TYPE_VOID.
25440 2002-10-14  Martin Baulig  <martin@gnome.org>
25442         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
25443         mono_class_get() instead of looking in the class cache. 
25445 2002-10-13  Martin Baulig  <martin@gnome.org>
25447         * debug-mono-symfile.c: Set version number to 28, include the
25448         signature in method names.
25450 2002-10-13  Martin Baulig  <martin@gnome.org>
25452         * debug-mono-symfile.h: Set version number to 27.
25454 2002-10-11  Martin Baulig  <martin@gnome.org>
25456         * gc.c: Don't register/unregister NULL pointers as disappearing links.
25458 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25460         * metadata.c, metadata.h: added helper function to allocate signatures.
25462 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25464         * icall.c: added internal call to get the location of machine.config.
25466 2002-10-08  Martin Baulig  <martin@gnome.org>
25468         * debug-mono-symfile.c: Ignore classes with a pending init for the
25469         moment.
25471 2002-10-03  Dick Porter  <dick@ximian.com>
25473         * threads.c: Freebsd pthread_t is a pointer
25475 2002-10-03  Dick Porter  <dick@ximian.com>
25477         * socket-io.c: Implemented GetHostName_internal
25479 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25481         * mono-config.c:
25482         (mono_config_parse_file): don't leak the text.
25484 2002-10-02  Martin Baulig  <martin@gnome.org>
25486         * debug-mono-symfile.c: Added support for methods.
25488 2002-10-01  Martin Baulig  <martin@gnome.org>
25490         * debug-mono-symfile.c: Don't emit methods and line numbers for
25491         the dynamic symbol file, just write the type table.  We can easily
25492         have an external helper program which creates a symbol file for an
25493         IL file.        
25495 2002-10-01  Dick Porter  <dick@ximian.com>
25497         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
25498         Only add the handle to the cleanup array when we're about to
25499         launch the thread.  Bug 31425 deadlocked when the test was run on
25500         mono under w32.
25502 2002-10-01  Martin Baulig  <martin@gnome.org>
25504         * debug-mono-symfile.c: Added support for properties.
25506 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25508         * reflection.c: unaligned store fix from Mark Crichton
25509         <crichton@gimp.org>.
25511 2002-09-27  Martin Baulig  <martin@gnome.org>
25513         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
25514         New interncall.
25516 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25518         * assembly.h, assembly.c: use a sane API to hook into the assembly
25519         loading process instead of a useless special-purpouse hack
25520         (ngen needs a hook, too, for example).
25522 2002-09-27  Dick Porter  <dick@ximian.com>
25524         * threads.c (mono_thread_init): Call GetCurrentProcess() so
25525         io-layer can set up some process handle info.  Not needed on w32,
25526         but doesn't hurt either.
25528         * process.c: Pass the program name in the second parameter to
25529         CreateProcess, so the path is searched.  Include the working
25530         directory. Implemented process name, process enumeration, and some
25531         process detail internal calls.
25532         
25533         * icall.c: Added internal calls for process lookup, and some
25534         process details
25536 2002-09-26  Martin Baulig  <martin@gnome.org>
25538         * assembly.c (mono_install_open_assembly_hook): New global
25539         function to install a function to be invoked each time a new
25540         assembly is loaded.
25541         (mono_assembly_open): Run this callback function if set.
25543         * debug-mono-symfile.c: Put back line numbers for the dynamic
25544         symbol file and also record the .il file as source file.  This
25545         allows us to install the temporary symbol file as `file.dbg' just
25546         like a compiler-generated one.
25548 2002-09-26  Nick Zigarovich <nick@chemlab.org>
25550         * Corrected typo in gc.c (BOHEM vs BOEHM).
25552 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25554         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
25555         GetProperties. Also avoid calling g_slist_length in GetProperties and
25556         GetMethods.
25558 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25560         * reflection.c: avoid unaligned stores (bug spotted by
25561         Mark Crichton  <crichton@gimp.org>).
25563 2002-09-25  Martin Baulig  <martin@gnome.org>
25565         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
25566         instead of guint64 for addresses and added prologue/epilogue info.
25568 2002-09-25  Martin Baulig  <martin@gnome.org>
25570         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
25571         store line number info.  For the dynamic symbol file, we only need
25572         to provide the JIT generated dynamic line number info for the dynamic
25573         symbol file.
25575 2002-09-25  Martin Baulig  <martin@gnome.org>
25577         * debug-mono-symfile.h: Incremented version number.
25579 2002-09-24  Martin Baulig  <martin@gnome.org>
25581         * class.c (mono_debugger_class_init_func): New global function
25582         pointer variable.
25583         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
25584         call it.
25586         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
25587         function.  This is called via the mono_debugger_class_init_func
25588         hook to add all types to the dynamic type table.
25589         (ves_icall_MonoDebugger_GetType): New interncall to get a class
25590         from its metadata token.
25592         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
25593         New interncall for the debugger.
25595 2002-09-24  Nick Drochak <ndrochak@gol.com>
25597         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
25598         before using it in case it is null.
25599         
25600 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25602         * metadata.c: allow custom modifiers in local var signatures
25603         (bug spotted by Zoltan Varga).
25605 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25607         * class.c: deal with the <Module> class that may have a NULL vtable.
25608         Eliminate warnings.
25610 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25612         * image.c, image.h: more strong name helpers.
25613         * monosn.c: more work: convert pem keys to cryptoapi format.
25615 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25617         * string-icalls.c: speedup IndexOf.
25619 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25621         * icall.c: updates from Zoltan.2.Varga@nokia.com.
25623 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25625         * icall.c: cleanup: use mono_object_domain ().
25627 2002-09-23  Martin Baulig  <martin@gnome.org>
25629         * debug-mono-symfile.c: Improved type support.
25631 2002-09-22  Martin Baulig  <martin@gnome.org>
25633         * debug-mono-symfile.c: Added support for reference types and strings.
25635 2002-09-22  Martin Baulig  <martin@gnome.org>
25637         * debug-mono-symfile.c: Started to work on the type table.
25639 2002-09-21  Martin Baulig  <martin@gnome.org>
25641         * debug-mono-symfile.c: Largely reworked the symbol table format.
25642         The symbol table is now incrementally updated each time a new
25643         method is added.  We're now also using our own magic and version
25644         so that you don't need to recompile all your classes if the
25645         dynamic table changes.
25646         (mono_debug_update_mono_symbol_file): Removed.
25647         (mono_debug_symfile_add_method): New function to add a method.
25649 2002-09-21  Martin Baulig  <martin@gnome.org>
25651         * icall.c
25652         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
25653         New interncall.
25655         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
25656         New interncall to get a method from its metadata token.
25658 2002-09-21  Martin Baulig  <martin@gnome.org>
25660         * debug-mono-symfile.c: Create type table.
25662 2002-09-20  Martin Baulig  <martin@gnome.org>
25664         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
25666 2002-09-20  Martin Baulig  <martin@gnome.org>
25668         * debug-mono-symfile.c: Provide information about params and locals.
25670 2002-09-20  Martin Baulig  <martin@gnome.org>
25672         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
25673         New interncall.
25675         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
25676         interncall to get a method from its metadata token.
25678 2002-09-20  Martin Baulig  <martin@gnome.org>
25680         * debug-mono-symfile.c: Added a few checks for method->header
25681         being non-NULL.  This should never happen, but for the moment
25682         let's use a g_warning() rather than a g_assert().
25684 2002-09-19  Mark Crichton  <crichton@gimp.org>
25686         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
25687         even if support for it isn't present.  Added an #ifdef to fix this.
25689         * socket-io.c: Added checks back for Solaris support.
25691 2002-09-19  Martin Baulig  <martin@gnome.org>
25693         * debug-mono-symfile.c (read_string, write_string): Reflect latest
25694         changes in the symbol file format.
25696 2002-09-18  Martin Baulig  <martin@gnome.org>
25698         * debug-mono-symfile.c: Set version number to 21.
25700 2002-09-18  Dick Porter  <dick@ximian.com>
25702         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
25703         on netbsd.  Fixes bug 30051.
25705 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25707         * reflection.c:
25708         (set_version_from_string): little fix.
25710 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25712         * monosn.c, Makefile.am: added strong name utility.
25713         * reflection.h, reflection.c: implemented delayed signing,
25714         locale, version and hash id assembly attributes.
25716 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25718         * loader.c, metadata.c: load param attributes in signatures.
25720 2002-09-16  Martin Baulig  <martin@gnome.org>
25722         * debug-mono-symfile.c: Added string table with all method names.
25724 2002-09-14  Martin Baulig  <martin@gnome.org>
25726         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
25727         fast method lookup.
25729 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25731         * reflection.c: record the public key token of referenced assemblies.
25733 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25735         * image.c, image.h: added functions to get the strong name and the
25736         public key of an assembly.
25737         * pedump.c: use them.
25739 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
25741         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
25743 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
25745         * marshal.c (mono_marshal_get_managed_wrapper): Added
25746         MONO_TYPE_BOOLEAN 
25748 2002-09-11  Martin Baulig  <martin@gnome.org>
25750         * gc.c: Call GC_unregister_disappearing_link() on all links when
25751         finalizing them, this is necessary to aviod a crash in boehm's
25752         finalize handler.
25754 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25756         * gc.c: handle GetTarget for finalized objects spotted and fixed by
25757         nick@chemlab.org.
25759 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
25761         * icall.c: implemented MonoType::Module.
25762         * reflection.c, reflection.h: mono_module_get_object () from
25763         Tomi Pakarinen <tomi.pakarinen@welho.com>.
25765 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25767         * icall.c: ignore overridden methods in GetMethods ().
25768         Fix for FieldInfo::SetValue().
25769         * object.c: handle float/double in runtime invoke.
25771 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25773         * object.c: allow a constructor to be called again on an object.
25775 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25777         * class.h, class.c: move field layout code to it's own function and
25778         export it. Get an interface id earlier. Move fields in MonoClass
25779         so they are more cache friendly and align the bitfields.
25780         * loader.c: temporary handle get_param_names() for a runtime method.
25781         * reflection.c, reflection.h: more code to handle runtime creation of
25782         types.
25784 2002-09-09  Martin Baulig  <martin@gnome.org>
25786         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
25787         signature with the pinvoke field being set for the actual call.
25789 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25791         * icall.c: removed some unused icalls. Start of map of glib charsets
25792         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
25794 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25796         * debug-helpers.c: break infinite loop (found and fixed by
25797         Holger Arnold <harnold@gmx.de>).
25799 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25801         * icall.c: target may be null in create_delegate.
25803 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25805         * marshal.c: handle a boolean return type.
25807 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25809         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
25811 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25813         * gc.c: fix weakreferences.
25815 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
25817         * icall.c: added icall to get default codepage.
25819 2002-09-03  Dick Porter  <dick@ximian.com>
25821         * threads.h: 
25822         * threads.c: Use MonoThread instead of MonoObject where
25823         apropriate.
25825         Store running thread objects in a hash table, so that we have all
25826         the info to hand when waiting for them to finish
25827         (means we don't need OpenThread() any more, so mingw builds should
25828         be fully functional again.)
25830         * verify.c:
25831         * object.h: Added thread ID to MonoThread
25833 2002-09-03  Martin Baulig  <martin@gnome.org>
25835         * icall.c (System.Reflection.Assembly::get_location): New interncall.
25837 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25839         * icall.c: fixed leak in get_temp_path. Thanks lupus.
25841 2002-09-03  Martin Baulig  <martin@gnome.org>
25843         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
25844         argument to store the end address of the disassembled instruction.
25846         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
25847         here from debug-symfile.h.
25848         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
25849         JIT into this struct.
25850         (MonoSymbolFile): Added `char *image_file' field.
25851         (MonoDebugGetMethodFunc): Removed.
25852         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
25853         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
25854         (mono_debug_find_method): New method.
25856         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
25857         create a full symbol file.
25858         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
25859         and static symbol files.
25860         (mono_debug_find_method): The symbol file keeps an internal method hash,
25861         call this to get a MonoDebugMethodInfo from a MonoMethod.
25863         * debug-symfile.[ch]: Removed.
25865 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
25867         * image.c (do_mono_image_open): Remove linker version check.
25869 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
25871         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
25872         wrappers for instance methods.
25873         
25874 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25876         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
25878 2002-08-28  Dick Porter  <dick@ximian.com>
25880         * Makefile.am: Export HOST_CC for w32 builds
25882 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25884         * file-io.c process.c: MonoString are null terminated, no
25885         need for mono_string_to_utf16() anymore.
25887 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25889         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
25891 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
25893         * icall.c, reflection.h: speedup System.MonoType.
25895 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25897         * reflection.c: allow null as the value of a string argument in
25898         custom attributes constructors.
25900 2002-08-27  Martin Baulig  <martin@gnome.org>
25902         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
25903         `trampoline_address' field.
25905 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
25907         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
25908         check (fixes bug #29486) 
25910 2002-08-27  Martin Baulig  <martin@gnome.org>
25912         * debug-mono-symfile.c: Changed the file format in a way that allows us
25913         open it read-only and to use a specially malloced area for all the
25914         dynamic data.  We can now also generate a symbol file on-the-fly if we're
25915         debugging IL code and there is no MCS generated symbol file for it.
25917 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25919         * object.c: added a define for a good string and array
25920         creation speedup (not enabled by default because we need to deal with
25921         the synch stuff).
25923 2002-08-26  Martin Baulig  <martin@gnome.org>
25925         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
25926         function to create a dynamic symbol file.  This is used by the
25927         debugger to create a symbol file for IL code on-the-fly.
25929 2002-08-26  Martin Baulig  <martin@gnome.org>
25931         * loader.c (mono_lookup_pinvoke_call): Include the error message
25932         from g_module_error() in the error message.
25934 2002-08-24  Martin Baulig  <martin@gnome.org>
25936         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
25937         function to update the symbol file.  The symbol file is mmap()ed
25938         writable, but private.  This allows us to install the symbol file
25939         together with the assembly.
25941 2002-08-24  Martin Baulig  <martin@gnome.org>
25943         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
25944         but they can read the new symbol file format which mcs is now creating.
25946         * debug-symfile.c (mono_debug_find_source_location): Moved to
25947         debug-mono-symfile.c; this is now operating on the new symbol file.
25949 2002-08-23  Martin Baulig  <martin@gnome.org>
25951         * debug-helpers.c (mono_method_desc_from_method): New function to get
25952         a MonoMethodDesc from a MonoMethod.
25954 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25956         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
25957         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
25959 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
25961         * string-icalls.[ch]: make helper methods static.
25963 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25965         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
25966         types to it and to SetValueInternal.
25968         * object.c: Moved handle_enum label to its proper place. This was the
25969         f... bug! ;-)
25971         This time i compiled mcs and gtk-sharp and they both work.
25973 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25975         * icall.c: reverted partially my previous patch until 
25976         object.c:set_value handles enums correcly.
25978 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25980         * icall.c:
25981         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
25982         (ves_icall_System_Environment_get_MachineName): removed warning when
25983         compiling under cygwin.
25985 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25987         * object.c: fixed field_get_value() for reference types.
25989 2002-08-22  Dick Porter  <dick@ximian.com>
25991         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
25992         Don't free a buffer while it's still needed.  Patch from Jonathan
25993         Liger <Jonathan.liger@wanadoo.fr>
25995 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
25997         * icall.c (ves_icall_System_Environment_get_Platform): Add new
25998         internal call.
26000 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
26002         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
26003         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
26005         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
26006         we call unmanaged code which throws exceptions.
26008 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26010         * appdomain.h: added per-domain entry_assembly.
26011         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
26012         arguments.
26013         * icall.c: Assembly::GetEntryAssembly icall.
26014         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
26015         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
26017 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26019         * appdomain.h, gc.c: added mono_domain_finalize ().
26021 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26023         * object.c:
26024         (mono_print_unhandled_exception): changed g_warning by g_printerr
26025         because g_log has a 1024 characters limit (yeah, i got a big stack
26026         trace). Don't print exception name, that should be in ToString 
26027         returned string.
26029 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26031         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
26032         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
26034 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26036         * object.c:
26037         (mono_print_unhandled_exception): after previous commit, i realized
26038         that MS calls ToString on the exception. I changed this function to
26039         do that. This way we get stack_trace for free.
26041 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26043         * object.c:
26044         (mono_print_unhandled_exception): invoke Message property instead of
26045         getting 'message' field from Exception. Don't allocate memory for
26046         'trace' and 'message' if not needed.
26048 2002-08-18  Dick Porter  <dick@ximian.com>
26050         * unicode.c: Fix asserts to match Encoder.cs checks
26052 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26054         * marshal.c: fix unaligned store issue and a few wrong
26055         opcode argument types.
26057 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26059         * icall.c: added GetUninitializedObjectInternal internal call.
26061 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
26063         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
26064         to the right domain.
26066 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
26068         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
26070         * class.c (class_compute_field_layout): set blittable to false for Strings
26072         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
26074 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26076         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
26077         first chunk of code to create types at runtime. Code to
26078         handle ReflectedType/DeclaringType. Make reflection handles
26079         domain specific.
26081 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26083         * class.c: set correct name in arrays.
26085 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
26087         * appdomain.c (mono_domain_transfer_object): make it work with
26088         valuetypes. bug fixes.
26090 2002-08-12  Dick Porter  <dick@ximian.com>
26092         * object.h: Rename some parameters to avoid c++ keywords (Patch
26093         from Joseph Wenninger <kde@jowenn.at>)
26095 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
26097         * icall.c: added icall to implement Assembly.GetFile*.
26099 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26101         * reflection.h, reflection.c: code to embed managed resources.
26103 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26105         * class.c: move all the type size stuff into
26106         class_compute_field_layout().
26108 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26110         * class.c: ensure enums have always the correct instance size.
26111         * unicode.c: remove wrong assert.
26113 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26115         * assembly.c: fix mem corruption issue.
26116         * image.h, image.c: added mono_image_get_resource () to access
26117         managed resources.
26118         * icall.c: implemented Assembly.EntryPoint property and some
26119         Managed Resources related internalcalls.
26122 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26124         * image.c, image.h: impemented mono_image_get_entry_point ().
26125         * appdomain.c: use mono_image_get_entry_point.
26127 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26129         * reflection.c: support the object type argument when loading
26130         custom attributes.
26132 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
26134         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
26135         String as return type.
26137 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
26139         * reflection.c: fix encoding of named args for custom attrs to match
26140         the ms implementation. Read them back when instantiating custom
26141         attributes.
26143 2002-08-02  Radek Doulik  <rodo@ximian.com>
26145         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
26146         by Dietmar as quick fix
26147         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
26148         16 as stack size, used on more places as quick fix before Dietmar
26149         will fix it properly
26151 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26153         * object.h, object.c: added accessors for fields and properties.
26155 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26157         * class.c, class.h: made mono_class_get_field_from_name ()
26158         loop on parent types.
26159         Added mono_class_get_property_from_name ().
26161 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26163         * class.c, class.h: move the code to setup the type vtable in its own
26164         function so that it can be reused also for types created at runtime.
26165         Eliminate the "class" identifier from the header file.
26166         * reflection.c: setup the vtable for enums so that we can create
26167         objects for use in SetConstant ().
26169 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
26171         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
26172         instead of the delegate itself as this pointer (bug #28383)
26174 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
26176         * marshal.c (mono_marshal_get_managed_wrapper): added return type
26177         conversions.
26179 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26181         * loader.c: don't set the pinvoke bit on icalls.
26183 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
26185         * debug-helpers.c (mono_method_full_name): only print a number to
26186         indicate wrapper type (so that the output is more readable in traces).
26188 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
26190         * class.c (mono_class_init): include method override patch from Paolo
26192 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
26194         * icall.c: fixed GetTypeCode().
26196 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
26198         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
26199         use real delegate invoke function to make it work with multicast
26200         delegates (fix bug# 28291).
26202 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26204         * object.c: load constant strings.
26206 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26208         * reflection.c: no magic numbers.
26209         * tabledefs.h: security action enum.
26211 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26213         * assembly.c: fix possible memory corruption.
26215 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26217         * reflection.h, reflection.c: added support for linking resources.
26218         * verify.c: check we have an updated corlib.
26220 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
26222         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
26223         string arrays.
26224         (mono_marshal_string_array): null terminate unmanaged string arrays.
26225         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
26227 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26229         * icall.c: Type.GetType () can now return also types from the
26230         calling assembly.
26232 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26234         * loader.h, loader.c: stack walking support.
26235         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
26236         GetCallingAssembly.
26238 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
26240         * marshal.c: added optimisations for blittable types 
26242         * class.c (mono_array_class_get): do not set blittable attribute on arrays
26243         (mono_class_setup_mono_type): set blittable attribute for single
26244         and double.
26246         * marshal.c (mono_string_utf8_to_builder): impl.
26247         (mono_string_builder_to_utf8): impl.
26248         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
26250 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
26252         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
26253         (mono_marshal_get_managed_wrapper): impl. byref types
26255 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26257         * icall.c:
26258         (search_method): don't display debug message. 
26260 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26262         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
26264 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26266         * appdomain.c: set the missing filename when throwing exception.
26268 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26270         * metadata.c (mono_type_size): code cleanup
26271         (mono_type_stack_size): removed some test code
26273 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
26275         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
26276         mono_get_exception_file_not_found now.
26278         * exception.c (mono_exception_from_name_two_strings): New version
26279         that will call a constructor with two string arguments. 
26280         (mono_get_exception_file_not_found): New helper routine, used to
26281         report file-not-found errors.
26283 2002-07-20  Dick Porter  <dick@ximian.com>
26285         * process.h:
26286         * process.c: Pass file handles to CreateProcess
26287         
26288         * icall.c:
26289         * file-io.h:
26290         * file-io.c: Implemented CreatePipe
26292 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26294         * metadata.c (mono_get_param_info): set alignment for value types
26296 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26298         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
26299         Constify mono_domain_assembly_open().
26300         * loader.c: handle null namespace in icalls.
26302 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26304         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
26305         (emit_str_to_ptr_conv): marshal object as structs
26307         * metadata.c (mono_type_to_unmanaged): marshal object as structs
26309         * marshal.c (mono_marshal_get_runtime_invoke): support value types
26311 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
26313         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
26314         (mono_marshal_get_native_wrapper): we an now return value types
26316 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26318         * verify.c: more checks implemented.
26320 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
26322         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
26323         (fix bug #27695)
26324         (mono_marshal_get_native_wrapper): allow byref arguments
26325         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
26326         impl. PtrToStringXXX methods
26327         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
26328         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
26329         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
26330         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
26331         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
26333 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26335         * reflection.c: fix buglet in parsing an assembly name.
26337 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26339         * marshal.c (emit_ptr_to_str_conv): first impl.
26341 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26343         * object.c, class.h: cache the vtable in the class as suggested by
26344         vargaz@freemail.hu (Zoltan Varga).
26346 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26348         * class.h, loader.c: added mono_field_from_token().
26349         * verify.c: first cut of type checking code.
26351 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26353         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
26355 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
26357         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
26358         (fix bug #27782)
26359         (mono_marshal_get_remoting_invoke): impl.
26360         (mono_delegate_begin_invoke): impl.
26361         (mono_mb_emit_save_args): impl.
26362         (mono_delegate_end_invoke): impl.
26363         (mono_marshal_get_delegate_begin_invoke):
26364         (mono_marshal_get_delegate_end_invoke):
26365         (mono_marshal_get_delegate_invoke): generate a special name for
26366         those methods (including the signature) and associate them whith
26367         the delegate class. 
26369 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
26371         * reflection.[ch]: 
26372         (mono_reflection_type_from_name): now it has a MonoImage parameter
26373         which is used as the default image to search the type in. If the image
26374         is NULL or getting the type from it fails, it defaults to corlib.
26376         * icall.c: changed 1 call to mono_reflection_type_from_name to match
26377         new parameter.
26379 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26381         * reflection.c: update the parameter table index.
26383 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26385         * domain.c: don't include the mark byte in the string hash.
26387 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26389         * icall.cs: icall for Type.GetTypeCode ().
26390         * verify: a couple of fixes and disabled local initialization checks.
26392 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
26394         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
26396         * debug-helpers.c (mono_method_full_name): print the type of the
26397         runtime wrapper
26399         * metadata.c (mono_signature_hash): a hash function for signatures
26400         (mono_signature_hash): better hash algorithm
26402         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
26404         * debug-helpers.c (mono_method_full_name): this can now generate
26405         method names with signatures
26407         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
26408         method dont have this pointers.
26410 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26412         * reflection.c: fixup typebuilder tokens.
26413         * image.c: fix buglet.
26414         * marshal.h: remove whitespace.
26415         * metadata.h, metadata.c: reinstate code that was removed.
26416         * verify.c: handle catch directives and fix another couple of bugs.
26418 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
26420         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
26421         (mono_marshal_get_native_wrapper): make it comp. with the old code
26422         (mono_marshal_get_native_wrapper): support boolean
26423         (mono_marshal_get_managed_wrapper): support more types
26425 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
26427         * class.c (class_compute_field_layout): compute class->blittable attribute.
26429 2002-07-09  Dick Porter  <dick@ximian.com>
26431         * threads.c: Make the thread cleaning up cope with threads that
26432         call ExitThread()
26434 2002-07-08  Radek Doulik  <rodo@ximian.com>
26436         * reflection.c (method_encode_code): use non-translated values to
26437         compute finally_start, this fixes exception handling on ppc, yay!
26439         * decimal.h (struct signscale): fix endianess
26441 2002-07-07  Radek Doulik  <rodo@ximian.com>
26443         * reflection.c: swap box_val and not val
26445 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26447         * reflection.c, reflection.h: handle full assembly info in type name.
26448         Handle Type arguments when loading custom attributes.
26449         * icall.c: updated to use new mono_reflection_type_from_name () method.
26451 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26453         * loader.c:
26454         (method_from_memberref): also print assembly name when method not found.
26456 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26458         * icall.c:
26459         (ves_icall_TypeGetProperties): fixed bug #27473. 
26461 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26463         * reflection.c: display image name and token when cannot find the
26464         .ctor for an attribute.
26466 2002-07-05  Martin Baulig  <martin@gnome.org>
26468         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26470 2002-07-04  Dick Porter  <dick@ximian.com>
26472         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
26473         compile on mingw.  This will cause mingw builds to not wait for
26474         subthreads to terminate after the main thread does.  I've lodged a
26475         bug with the mingw developers for them to wrap OpenThread().
26477 2002-07-03  Dick Porter  <dick@ximian.com>
26479         * threads.c: Store thread IDs instead of handles, because
26480         GetCurrentThread() returns a pseudohandle and therefore stores
26481         useless values.  mono_thread_cleanup() continues checking the
26482         array of threads until it is empty, to cope with subthreads
26483         spawning new threads after the main thread has finished.
26485         * profiler.h:
26486         * profiler.c:
26487         * profiler-private.h: Pass the thread ID to thread profiler
26488         functions, instead of a handle
26490 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26492         * verify.c: fixes to make it more usable.
26493         * pedump.c: added --verify code to verify IL code in an assembly.
26495 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26497         * reflection.c: turn errors into warnings to allow compiling corlib.
26499 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26501         * reflection.c: add special cases to compile corlib.
26503 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26505         * reflection.c: handle properties with only a set method.
26507 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26509         * opcodes.h: add enum with opcodes in opval order.
26511 2002-07-01  Dick Porter  <dick@ximian.com>
26512         
26513         * object.h:
26514         * object.c (mono_runtime_run_main): Removed unneeded argument
26516 2002-06-28  Martin Baulig  <martin@gnome.org>
26518         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26520 2002-06-27  Dick Porter  <dick@ximian.com>
26522         * threads.c: Store the handle in both the parent thread and in the
26523         subthread, to minimise the time between starting a new thread and
26524         storing its ID.
26526 2002-06-26  Dick Porter  <dick@ximian.com>
26528         * appdomain.c (mono_runtime_cleanup): Close the socket library
26529         after all the threads have finished, not before
26531 2002-06-26  Martin Baulig  <martin@gnome.org>
26533         * debug-symfile.c (mono_debug_find_source_location): Added
26534         `guint32 *line_number' argument.  If it's not NULL, store the line number
26535         there and return the file name without the line number.
26537 2002-06-25  Dick Porter  <dick@ximian.com>
26539         * icall.c:
26540         * process.h:
26541         * process.c: Process forking and other support functions
26543 2002-06-25  Dick Porter  <dick@ximian.com>
26545         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
26546         things dont happen when the image is closed.
26547         (mono_image_lookup_resource): Walk the resource section looking
26548         for a particular entry
26550         * cil-coff.h: PE resource section decoding
26552 2002-06-25  Dick Porter  <dick@ximian.com>
26553         
26554         * assembly.h:
26555         * assembly.c: 
26556         (mono_assembly_foreach): Accessor functions to walk the list of
26557         loaded assemblies
26558         (mono_assembly_set_main):
26559         (mono_assembly_get_main): Process methods need to know which
26560         assembly is the "main" one
26562         * object.c (mono_runtime_run_main): Record the main assembly
26564         * debug-helpers.c: Fix typo
26566 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
26568         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
26569         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
26571 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26573         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
26575 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
26577         * image.c (do_mono_image_open): Initialize reference count,
26578         otherwise we leak the MonoImage.
26580 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26582         * reflection.c: small tweak to handle self-hosting.
26584 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26586         * reflection.c: fix type name parse code.
26588 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26590         * reflection.c: break out of the loop.
26591         * image.c: special case corlib.
26593 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26595         * reflection.c: add all the custom attrs at the end to ensure the
26596         ctors have been properly initialized when the attributes are defined
26597         in the current assembly.
26599 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26601         * reflection.c: handle correctly multiple-nested types.
26603 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
26605         * row-indexes.h: fix typos.
26606         * reflection.c: adjust for typos and fix method_def_or_ref
26607         encoding in MethodImpl table.
26609 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26611         * reflection.c: fix entry point patching (thanks Serge!).
26613 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
26615         * verify.c: add check for System.Exception
26617 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26619         * image.c, class.c: minifix for code just c&p'ed.
26620         * reflection.c: warning fix.
26621         * object.h, loader.h, domain.c: load also StringBuilder.
26623 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26625         * marshal.h, marshal.c: some support code to handle complex marshaling.
26627 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26629         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
26630         Better signatures with vtable error dump.
26632 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
26634         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
26636 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
26638         * icall.c (ves_icall_Type_GetField): impl.
26640 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26642         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
26643         to retrieve a marshal description blob for a field or param.
26645 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26647         * reflection.h, reflection.c: change order of nested type emission
26648         to avoid table corruption. The NestedTypes table is sorted.
26649         * icall.c: change order of GetConstructor results to workaround mcs bug.
26651 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26653         * reflection.h, reflection.c: handle field and param marshal
26654         information.
26656 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26658         * icall.c, marshal.c marshal.h: more Marshal class implementation.
26660 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26662         * reflection.c: fix call convention.
26664 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26666         * reflection.h, reflection.c: mono_image_get_memberref_token()
26667         takes a type instead of a class, now. Added
26668         mono_image_get_array_token() to create tokens for the special
26669         multi-dim array methods.
26671 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26673         * assembly.c: handle modules (no assembly table). Split
26674         loading references in its own function.
26675         * class.c: handle moduleref resolution scope.
26676         * image.c, image.h: cache module name in image.
26678 2002-06-07  Martin Baulig  <martin@gnome.org>
26680         * reflection.c (mono_image_get_type_info): Only add a class layout entry
26681         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
26683 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26685         * icall.c: more signature fixes that used uint instead of int.
26687 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26689         * reflection.c: fixed signature of field refs.
26691 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26693         * class.c, reflection.c: handle typerefs of nested types
26694         (both on read and when writing files).
26696 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26698         * icall.c: fix method signatures that tried to workaround the previous
26699         typo, d'oh!
26701 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26703         * debug-helpers.c: fix typo.
26705 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26707         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
26708         rewrote the PE/COFF writing code (our programs are understood by the
26709         ms runtime, now).
26711 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26713         * gc.c, gc.h, icall.c: weakreference support.
26715 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26717         * Makefile.am, mono-config.c: use $(sysconfdir).
26719 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26721         * icall.c: changed default precision of Double.ToString() to 15.
26722         Fixed memory leak. Unified with Single.ToString.
26724 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26726         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
26728 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26730         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
26731         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
26732         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
26733         and myself.
26735 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26737         * debug-symfile.c, sysmath.c: yet more compilation fixes.
26739 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26741         * reflection.c, socket-io.c: more compilation fixes.
26743 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26745         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
26746         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
26747         unicode.c: warning and compiler compatibility fixes.
26749 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26751         * class.h, metadata.c: fixed warnings/compilation errors.
26753 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26755         * Makefile.am, mono-config.c, mono-config.h: configuration file
26756         support routines.
26757         * loader.c, loader.h: make Dll mapping configurable at runtime in the
26758         config file. Export methods to insert and lookup mappings.
26760 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26762         * reflection.c: handle types and boxed objects in custom attr
26763         constructors.
26765 2002-05-30  Martin Baulig  <martin@gnome.org>
26767         * debug-symfile.c
26768         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
26770 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
26772         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
26773         to lookup the implmap row for a P/Invoke method.
26774         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
26775         P/Invoke method from the runtime on an as needed basis.
26777 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
26779         * metadata.c (mono_metadata_parse_signature): impl.
26781 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26783         * class.c: handle .pack directive.
26785 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26787         * object.c: initialize static fields with RVA data.
26789 2002-05-25  Martin Baulig  <martin@gnome.org>
26791         * debug-symfile.c
26792         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
26794 2002-05-24  Martin Baulig  <martin@gnome.org>
26796         * debug-symfile.c
26797         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
26798         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
26799         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
26801 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26803         * object.c: special case string ctros in invoke.
26804         * gc.c: silly whitespace changes.
26806 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
26808         * threadpool.[ch]: impl. a threadpool that can
26809         be used by mint and mono.
26811 2002-05-22  Martin Baulig  <martin@gnome.org>
26813         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
26814         The first argument is now a `MonoReflectionModuleBuilder *', the return
26815         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
26816         `methods' field to get the method builder.  The `token' argument is the
26817         unfixed token.
26819         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
26820         invalid characters instead of g_assert_not_reached()ing.  This seems
26821         to be the behaviour of mscorlib.
26823 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
26825         * object.c (mono_runtime_invoke_array): applied patch from Rachel
26826         Hestilow to fix bug #25104
26828 2002-05-21  Martin Baulig  <martin@gnome.org>
26830         * debug-symfile.c (mono_debug_find_source_location): New function.
26831         Looks up an IL offset in the line number table and returns the source
26832         location as a string.
26834 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26836         * icall.c:
26837         (mono_double_ToStringImpl): changed %f by %g until we have something
26838         better.
26840 2002-05-21  Nick Drochak  <ndrochak@gol.com>
26842         * icall.c : Use different name for Math.Pow's icall.  Needed to check
26843         parameters first in C#.
26845 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26847         * icall.c, reflection.h: added icall to get info about an event.
26849 2002-05-20  Radek Doulik  <rodo@ximian.com>
26851         * object.c (mono_value_box): don't use memcpy for boxing on BIG
26852         endian
26853         (mono_value_box): don't use memcpy for small sizes on
26854         architectures with unaligned access
26856 2002-05-20  Martin Baulig  <martin@gnome.org>
26858         * reflection.c (mono_reflection_setup_internal_class): Don't crash
26859         if `tb->parent == NULL'.
26860         (mono_reflection_create_internal_class): New function.  This is
26861         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
26862         for enum types.
26864         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
26865         New interncall.
26867 2002-05-19  Martin Baulig  <martin@gnome.org>
26869         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
26870         argument to get the length, don't default to the array length.
26872 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
26874         * assembly.c (mono_assembly_setrootdir): New function used to
26875         override the MONO_ASSEMBLIES directory.
26877 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26879         * icall.c: ValueType_GetHashCode() initialize local var.
26881 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26883         * reflection.c: sort custom attributes table.
26885 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26887         * reflection.c: support named args in custom attributes (write support).
26889 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26891         * reflection.c: fix finally position calculation.
26893 2002-05-15  Radek Doulik  <rodo@ximian.com>
26895         * reflection.c: fixed endianess at many places
26897         * icall.c (ves_icall_InitializeArray): comment out debug msg
26899 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
26901         * object.c (mono_unhandled_exception): new function to handle
26902         unhandled exceptions.
26903         (mono_unhandled_exception): call the UnhandledException event.
26904         (mono_runtime_delegate_invoke): impl.
26906 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
26908         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
26909         returns the RVA, not the direct pointer to the data. Handle the case
26910         when the class size is fixed.
26912 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26914         * reflection.c: fix some endianess issues.
26916 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
26918         * object.c (mono_runtime_invoke): is now able to catch exceptions.
26920         * threads.c (mono_thread_init): added a callback which is invoked
26921         at thread start.
26923 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26924         
26925         * icall.c: make GetHashCode return non-negative values.
26927 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26929         * object.c, icall.c, gc.c: revert to address-based hashcode.
26931 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
26933         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
26935 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26937         * icall.c, class.c: special case <Module>.
26939 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
26941         * icall.c: fix bug in GetNow().
26943 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
26945         * object.c (mono_runtime_class_init): make sure that we call all
26946         static class constructors.
26948 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26950         * reflection.c: sort methodsemantics table.
26952 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26954         * reflection.h, reflection.c: honour init locals setting.
26956 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
26958         * icall.c: copied Double ToStringImpl for Single ToStringImpl
26960 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26962         * reflection.c: support ContructorBuilders in attribute blob creation.
26964 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26966         * reflection.c: some changes to build a binary that can be run
26967         directly in windows.
26969 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26971         * loader.c: print a big message when an icall can't be found.
26973 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26975         * string-icalls.c: fix bug 24248.
26977 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26979         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
26980         icall.c, reflection.h: separate assembly loading by pathname and by
26981         assembly name. Use the MONO_PATH env var to search for assemblies.
26983 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26985         * assembly.c, image.h: add some support for assemblies
26986         with multiple modules.
26987         * class.c, class.h: export mono_class_from_typeref().
26988         * loader.c: remove duplicated code and use mono_class_from_typeref(),
26989         instead.
26991 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26993         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
26994         documentation says (the ECMA one is correct).
26996 2002-05-02  Dick Porter  <dick@ximian.com>
26998         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
26999         Don't name the synchronisation mutex.
27001 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
27003         * rand.c
27004         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
27005         Make the prototypes match.
27006         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
27007         Same.
27009         * icall.c
27010         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
27011         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
27012         all systems have tm.tm_zone, so use strftime() with %Z to print
27013         the timezone abreviation into a temp string.
27015         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
27016         rather than mono_array_addr() on a MonoString on Big Endian
27017         machines.
27019 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
27021         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
27022         fix bug 24041
27024 2002-04-30  Dick Porter  <dick@ximian.com>
27026         * socket-io.c: Cope with SOCKET being an integer rather than a
27027         pointer now.
27029         * threads.c: Added Thread_free_internal, to deal with thread
27030         handle cleanup.  Moved calls to handle_store() and handle_remove()
27031         to start_wrapper(), so each can only be called once.  Allocate
27032         synchronisation blocks with GC_malloc(), and use GC finalisation
27033         to close the handles.
27035         * icall.c: added System.Threading.Thread::Thread_free_internal
27037 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27039         * icall.c: support Environment.Exit, CommandLineArgs().
27041 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27043         * object.c, object.h: added mono_runtime_run_main () and
27044         mono_runtime_get_main_args () for use in System.Environment.
27046 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27048         * gc.c: fix thinko, enable actual finalization since the jit is now
27049         fixed.
27051 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27053         * gc.c, object.c: take into account that an object may be offset wrt the address
27054         returned by GC_malloc().
27056 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
27058         * image.c: handle files without entries in the assembly table (modules).
27060 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
27062         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
27063         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
27064         allowed to be null when it's System.Object class setup.
27066 2002-04-27  Martin Baulig  <martin@gnome.org>
27068         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
27069         if `tb->parent == NULL' rather than crashing.
27071 2002-04-28  Nick Drochak  <ndrochak@gol.com>
27073         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
27074         calling acos() where asin() should have been called.
27076 2002-04-26  Martin Baulig  <martin@gnome.org>
27078         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
27079         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
27080         there's a subdirectory called `System', but we don't want to read that
27081         subdirectory as an assembly.
27083 2002-04-25  Martin Baulig  <martin@gnome.org>
27085         * debug-symfile.c: Reflect latest MonoString changes.
27087 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27089         * rand.c, rand.h: instance method icalls need to have an explicit
27090         this pointer as first argument in the C implementation.
27092 2002-04-25  Nick Drochak <ndrochak@gol.com>
27094         * icall.c: Fix typo in map for GetNonZeroBytes
27096 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27098         * string-icalls.c : String does now passes unit tests without any 
27099         errors, the following changes has been made:
27100         
27101         Implemented replace methods.
27102         Renaming of methods to (try) follow the standard.
27103         Fixed compare ordinal
27104         Made all memory allocated directly to function instead of via icall function.
27105         Small performance fix in is_in_array function
27106                         
27107  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
27109         c (mono_string_Internal_ctor_charp_int_int):
27110         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
27111         sindex < 0, throw ArgumentOutOfRangeException instead of
27112         ArgumentNullException.
27114         Added new check for length == 0, however
27115         I need to make it return String.Empty from the C code.
27116         
27117         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
27118         that calculate the length for us here.
27119         
27120         (mono_string_Internal_ctor_sbytep_int_int): Replaced
27121         mono_string_new_utf16 with mono_string_new, since value is utf8.
27123 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27125         * object.c: register the object for finalization if needed.
27126         Allocate one more char in the string for the terminating 0 char.
27128 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27130         * class.c, class.h, image.c: check if a type implemenst a destructor.
27131         Use the proper key for array class lookups.
27132         * icall.c: register the icalls in the System.GC class.
27133         * gc.c, gc.h: GC-related functions and icalls.
27135 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27137         * icall.c:
27138         * socket-io.c:
27139         * unicode.c: free some strings gotten from mono_string_to_utf8 and
27140         changed a couple of free () by g_free ().
27142         * decimal.c: one-liner in the comments for decimal2string ().
27144 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27146         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
27148 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27150         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
27151         * object.c (mono_runtime_invoke_array) : handle null in params
27153 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27155         * string-icalls.c: fixed bug in split (one off bug)
27157 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27159         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
27160         * icalls.c: added String::Equals as internal method
27162 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27164         * threads.c: fixed bug in the double interlocked functions
27166 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
27168         * threads.c: implemented all of the new interlocked icalls.
27169         * string-icalls.c: fix a bug in insert.
27170         * icalls.c: added the icalls for interlocked, removed old string functions.
27171         
27172 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27174         * loader.c: fix off-by-one error when reading argument names.
27176 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27178         * profiler.c: win32 counter implementation (untested).
27179         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
27180         (the latter needs testing and more complete impl. from win32 folks).
27182 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
27184         * object.c: mono_array_new_full workaround mono_array_class_get
27185         problem.
27187 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27189         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
27190         * object.h (mono_string_chars): Changed casting type.
27192 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27194         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
27195                            method signatures to use gunichar2 instead of gint16.
27197 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
27199         * object.h, object.c: domain-specific versions of mono_object_new and
27200         mono_array_new.
27202 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
27204         * object.c: changed String layout
27206         * string-icalls.c (mono_string_Internal_ctor_chara): added
27207         internal string constructors.
27209 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
27211         * threads.c: pass 'this' to the thread start routine.
27213 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27215         * string-icalls.c: fix IndexOf and LastIndexOf. Now
27216         InternalCompareStr don't call twice mono_string_cmp_char for the last
27217         character. Improved performance in mono_string_cmp_char.
27219 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27221         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
27222         code into its own library: libmonoruntime.
27224 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
27226         * object.h, object.c: changed array format so that szarrays do not
27227         require a bounds structure.
27228         * icall.c, appdomain.c: support for new szarray format.
27230 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
27232         * metadata.c: compare also the retuns type when comparing signatures:
27233         we didn't do this as an optimization since really overloaded methods
27234         must differ also in the arguments, but this doesn't work with
27235         low-level IL code (or when using explicit conversion operators: see
27236         bug#23498 for an example).
27238 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27240         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
27242 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
27244         * icall.c: make MonoType::GetElementType its own icall.
27246 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27248         * icall.c: remove MonoMethod_get_Name().
27249         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
27250         object.
27252 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27254         * string-icalls.c: optimized a few methods.
27256 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27258         * icall.c: added all new string internal calls
27259         * string-icalls.c: added, new string internal call implementation.
27260         * object.c: added mono_string_new_size for allocating a string a size
27262 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
27264         * object.c (mono_object_isinst): use the same code as in the
27265         optimized x86 version.
27267 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27269         * profiler.c: TSC-based timer code (faster and more accurate).
27270         Not hooked up in configure, yet (set USE_X86TSC to 1).
27272 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
27274         * profiler.c, profiler.h: track time spent compiling methods.
27275         * threads.c: track thread creation/destruction.
27277 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
27279         * profiler.c, profiler.h, profiler-private.h: profiling interface
27280         and sample implementation. Moved here so that it can be used also by
27281         the jit.
27283 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
27285         * reflection.c, reflection.h: keep types and other handles separate in
27286         the hash tables for referred tokens. Add guid for modules.
27288 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
27290         * assembly.c: fix bugs found with valgrind.
27291         * metadata.h, metadata.c: added mono_metadata_guid_heap().
27293 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
27295         * threads: added icall support for getting current domain for
27296                    the thread.
27298 2002-04-13  Martin Baulig  <martin@gnome.org>
27300         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
27301         (MonoDebugVarInfo): Added `index' field for register based addresses.
27302         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
27303         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
27304         `MonoDebugVarInfo *params' and `guint32 this_offset' with
27305         `MonoDebugVarInfo *this_var'.
27307         * debug-symfile.c (relocate_variable): New static function to write
27308         a location description for a local variable or method parameter.
27310 2002-04-12  Martin Baulig  <martin@gnome.org>
27312         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
27313         stack offset and begin/end scope address of a local variable.
27314         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
27315         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
27316         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
27318         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
27319         Added new relocation types for start/end scope of a local variable.
27321 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27323         * object.h: add mono_object_domain() macro.
27324         * reflection.c: handle typespecs.
27325         * icall.c: MonoMethod::get_Name() implementation.
27327 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27329         * icall.c: String::GetHashCode() icall implementation.
27331 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27333         * icall.c: String::IndexOfAny icall.
27334         * object.c, object.h: make array->max_length more useful.
27335         Intrduced mono_object_class() and mono_string_length() macros.
27337 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27339         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
27340         instead of g_unichar_isdigit.
27342 2002-04-11  Nick Drochak  <ndrochak@gol.com>
27344         * icall.c: Implement a simple Double.ToString().
27346 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27348         * appdomain.h: only io-layer.h is supposed to be included.
27349         * icall.c: explicitly import environ. Fix warning.
27351 2002-04-10  Nick Drochak  <ndrochak@gol.com>
27353         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
27354                 return true even if it's not Daylight Savings time.
27355                 Only return false for the case where the function isn't
27356                 implemented for a plaform (read Windows).
27358 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27360         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
27361         data with a mutex.
27363 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
27365         * mempool.c (mono_mempool_alloc): only use g_malloc when
27366         absolutely necessary.
27368 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27370         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
27372         * class.c (mono_class_vtable): use domain mempool to allocate vtable
27373         (mono_class_proxy_vtable): use domain mempool
27375 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
27377         * appdomain.h, appdomain.c: split initialization that requires the
27378         execution engine support into mono_runtime_init().
27380 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27382         * class.c (mono_class_init): don't include vtable inside MonoClass
27383         to save some memory, gather some statistics.
27384         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
27386 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27388         * icall.c: internalcall implementation for ValueType.Equals().
27390 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
27392         * object.c (mono_message_init): moved 
27393         (mono_runtime_exec_main): new arch. independent impl.
27394         (mono_runtime_invoke_array): new method - like
27395         mono_runtime_invoke, but you can pass an array of objects.
27396         (mono_remoting_invoke): new arch. independent impl.
27397         (mono_message_invoke): new arch. independent impl.
27398         (mono_runtime_class_init): new arch. independent impl.
27399         (mono_runtime_object_init): new arch. independent impl.
27401 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27403         * metadata.c, object.c, reflection.c: documented the exported
27404         functions.
27406 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27408         * icall.c: simpler code to pass the assembly builder data to corlib.
27409         Implement GetNestedTypes() internalcall.
27411 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27413         * class.c: warn if a type can't be loaded.
27415 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
27417         * image.h: typedef MonoImageOpenStatus
27418         * types.h: removed unused file
27419         
27420 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
27422         * icall.c: Enum_ToObject accepts enum value arguments.
27424 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27426         * class.c: move initialization of properties, events and nested
27427         classes, so that they happen for interfaces, too.
27429 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27431         * icall.c: cleanup some ugly casts in Array_SetValue*.
27433 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27435         * icall.c: the values array fro enums is of the correct type, now.
27436         Implement (correctly) getFullName instead of assQualifiedName for
27437         MonoType.
27438         * reflection.h, reflection.c: added mono_type_get_name ().
27440 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27442         * assembly.c, image.h: for each MonoImage, record from wich assembly
27443         it was loaded.
27444         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
27445         Make Type.Assembly work.
27447 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
27449         * debug-symfile.h: use char* instead of gpointer to avoid
27450         unnecessary casts.
27452         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
27454         * icall.c (ves_icall_InternalExecute): impl. FielSetter
27455         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
27457 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
27459         * icall.c (mono_message_init): impl. (code cleanup)
27460         (ves_icall_InternalExecute): impl. FieldGetter
27462         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
27463         defined we call all (non-static)methods through the vtable. 
27465 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
27467         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
27468         finalizer even though the memory is still referenced (and the chunk of
27469         memory is not freed).
27471 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27473         * assembly.c: fix brokeness.
27475 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
27477         * class.c: kill some warnings. Check explicit interface method
27478         implementation also without considering the namespace.
27479         Load also literal strings in static class data.
27481 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
27483         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
27484         (default_assembly_name_resolver): Make the resolver take the
27485         "base" directory where the assembly was originally defined, so we
27486         can load DLLs that are in the same directory as the assembly that
27487         is being referenced.
27489 2002-03-28  Dick Porter  <dick@ximian.com>
27491         * file-io.h: 
27492         * file-io.c:
27493         * socket-io.c: 
27494         * unicode.h: 
27495         * unicode.c: Warning cleanups
27497 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
27499         * object.h, reflection.h: use the correct type instead of MonoObject.
27501 2002-03-28  Martin Baulig  <martin@gnome.org>
27503         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
27504         (mono_debug_update_symbol_file): Initialize classes if necessary.
27506 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27508         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
27509         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
27511 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
27513         * assembly.h: fix function prototype.
27514         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
27515         * mono-endian.h: use const cast.
27517 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27519         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
27521 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27523         * loader.c: don't assert when a typeref can't be loaded, give
27524         a chance to the runtime to trow an exception instead.
27525         * loader.h: fix warning.
27527 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27529         * class.c (mono_class_proxy_vtable): added proxy support
27531 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
27533         * icall.c: removed last of PAL calls, added System.Environment
27534         * file-io.h, file-io.c: MonoIO implementation
27535         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
27537 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27539         * appdomain.c: do not use the byte marker in ldstr table lookup.
27540         * debug-helpers.c: allow two ':' to separate class and method name.
27541         * object.c: allocate arrays bounds with the GC, too.
27542         * verify: add a few more checks.
27544 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
27546         * reflection.c: output also literal strings. Allocate parameter data
27547         with GC_malloc() (thanks, Martin, for catching this!).
27549 2002-03-26  Martin Baulig  <martin@gnome.org>
27551         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
27552         include the `this' offset in the `param_offsets'.
27554 2002-03-25  Martin Baulig  <martin@gnome.org>
27556         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
27557         mono_debug_get_class() function to get the classes. Added new
27558         relocation types for arrays and strings.
27559         (mono_debug_get_class): New static function to search in all
27560         referenced assemblies for a metadata token.
27562         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
27564 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27566         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
27567         hold gc-allocated objects. Make the string heap a stream like the
27568         others. Removed duplicated code when writing stream info.
27569         Added asserts to catch possible buffer overflows. Set the sorted map
27570         for tables that need sorting. Added some documentation.
27572 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
27574         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
27575         for interned strings and vtables.
27577 2002-03-24  Martin Baulig  <martin@gnome.org>
27579         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
27580         it in the array since it was created with g_slist_prepend().
27582 2002-03-24  Martin Baulig  <martin@gnome.org>
27584         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
27585         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
27586         (mono_debug_method_from_token): Renamed to
27587         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
27588         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
27590         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
27591         relocation types.
27593         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
27595 2002-03-24  Martin Baulig  <martin@gnome.org>
27597         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
27598         (mono_debug_method_from_token): New func.
27600         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
27601         New interncall, calls mono_debug_local_type_from_signature().
27602         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
27603         calls mono_debug_method_from_token().
27605 2002-03-23  Martin Baulig  <martin@gnome.org>
27607         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
27608         specifies the number of bytes to be converted, not the array size.
27609         Return the number of chars, not the number of bytes.
27610         (ves_icall_iconv_get_chars): The `byteCount' argument
27611         specifies the number of bytes to be converted, not the array size.
27613 2002-03-23  Martin Baulig  <martin@gnome.org>
27615         * reflection.h (MonoReflectionSigHelper): New type.
27617         * reflection.c (mono_reflection_sighelper_get_signature_local),
27618         (mono_reflection_sighelper_get_signature_local): New functions.
27620         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
27621         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
27622         interncalls.
27624 2002-03-23  Martin Baulig  <martin@gnome.org>
27626         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
27627         is_writeable is set.
27628         (mono_raw_buffer_update): New function to write the modified map
27629         back to disk.
27631         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
27633         * debug-symfile.c (mono_debug_update_symbol_file): Call
27634         mono_raw_buffer_update() when done writing.
27636 2002-03-23  Martin Baulig  <martin@gnome.org>
27638         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
27640         * debug-symfile.c: Added support for arguments and local variables.
27642 2002-03-23  Dick Porter  <dick@ximian.com>
27644         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
27645         protected by ifdefs, hence breaking the w32 build.
27647 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27649         * object.c: implement is_interned() the right way.
27651 2002-03-21  Martin Baulig  <martin@gnome.org>
27653         * debug-symfile.[ch]: New files to handle debugging information
27654         files. There's also support to dynamically update these symbol
27655         files to include machine dependent information.
27657 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
27659         * threads.c (mono_thread_create): new function to create thread
27660         from C
27662 2002-03-20  Martin Baulig  <martin@gnome.org>
27664         * icall.c (ves_icall_InternalInvoke): Create a new object if the
27665         method is a constructor.
27666         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
27667         points to ves_icall_InternalInvoke().
27669 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
27671         * file-io.c: Flush shouldn't throw exceptions.
27673 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
27675         * file-io.c: FileStream flush support; FileSetLength now
27676         restores file pointer.
27678 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27680         * class.c: set image for pointer classes.
27682 2002/03/19  Nick Drochak <ndrochak@gol.com>
27684         * sysmath.c: Forgot one.
27686 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
27688         * sysmath.c: Avoid redefining existing names.
27690 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
27692         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
27693         handled by runtime as icall rather than dllimport from libm.so
27694         * file-io.c, file-io.h: fixed handle argument type.
27696 2002-03-18  Dick Porter  <dick@ximian.com>
27698         * reflection.c (mono_image_get_type_info): rename interface to
27699         iface, because of "#define interface struct" on windows.
27701 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
27703         * class.c, class.h: rename and export mono_ptr_class_get().
27704         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
27705         * reflection.c, reflection.h, icall.c: better/saner type name
27706         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
27707         method signatures.
27709 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
27711         * class.c (mono_class_init): removed hardcoded GHC_SLOT
27713         * icall.c (ves_icall_InternalInvoke): impl.
27715 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27717         * reflection.c: output the interface map table, too.
27719 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27721         * class.c (class_compute_field_layout): separate computation of 
27722         static field layout
27724 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
27726         * icall.c: added System.Buffer support.
27727         * file-io.c: moved file icalls from PAL to FileStream.
27729 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27731         * icall.c (ves_icall_System_Object_GetHashCode): impl.
27733 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
27735         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
27737 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27739         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
27741 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27743         * debug-helpers.{c,h}: moved here from monograph some useful functions
27744         to locate a method by name/signature in a class or image. Included
27745         also a small and flexible IL disassembler.
27747 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27749         * reflection.c: fixup tokens in methods with small header size, too.
27751 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
27753         * object.c (mono_string_to_utf8): remove assert(!error), instead
27754         print a warning. 
27756 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
27758         * icall.c: update to the new mono_Array_class_get interface.
27760 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27762         * appdomain.c, object.c: Boehm-GC enable.
27763         * icall.c: make get_data_chunk() support split data requests.
27764         Ensure a class is initialized in more cases. Return only the first
27765         property found in GetProperties() or the compiler gets confused. 
27766         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
27767         * reflection.h, reflection.c: add fixup mechanism for field and method
27768         tokens. Initialize assembly->typeref in a single place. Output
27769         properties after events. Support custom attributes for events, too.
27770         Typo fix for paramter custom attrs.
27772 2002-03-07  Martin Baulig  <martin@gnome.org>
27774         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
27776 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
27778         * class.c (mono_array_class_get): fix. for multi. dim. arrays
27780 2002-03-06  Martin Baulig  <martin@gnome.org>
27782         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
27783         non-zero lower bounds. See testcases #F10-#F13.
27785 2002-03-05  Martin Baulig  <martin@gnome.org>
27787         * exception.c (mono_get_exception_argument_out_of_range): New exception.
27789         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
27790         ves_icall_System_Array_GetValue(), only calculate the absolute array position
27791         here.
27792         (ves_icall_System_Array_SetValue): Likewise.
27793         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
27794         as argument and does the actual work. This function is used when copying a
27795         multi-dimensional array.
27796         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
27797         now do all the widening conversions of value types.
27798         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
27800 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27802         * class.c: remove some magic numbers and use the smbolic names,
27803         instead. Added init_events() to load event info at class init time.
27804         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
27805         and mono_metadata_methods_from_event().
27806         * reflection.h, reflection.c: added support for writing out the evnets
27807         related information.
27809 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27811         * reflection.h, icall.c: use a different method (GetInterfaces)
27812         to gather interface info and add isbyref, isprimitive and
27813         ispointer to the ves_icall_get_type_info() return value.
27815 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27817         * class.h: stared adding support for events.
27818         * icall.c: split find_members implementation. Added debug icall to get
27819         the address of an object.
27820         * reflection.c: handle TypeBuilders in mono_type_get_object().
27822 2002-03-01  Martin Baulig  <martin@gnome.org>
27824         * icall.c (ves_icall_System_Array_GetLength): This must throw an
27825         ArgumentOutOfRangeException(), not an ArgumentException().
27826         (ves_icall_System_Array_GetLowerBound): Likewise.
27827         (ves_icall_System_Array_GetValue): Improved argument checking.
27828         (ves_icall_System_Array_SetValue): Improved argument checking.
27830 2002-03-01  Martin Baulig  <martin@gnome.org>
27832         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
27833         called with invalid arguments rather than just dying with g_assert().
27834         (ves_icall_System_Array_SetValue): Likewise.
27835         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
27836         raise a NotImplementedException instead.
27837         (ves_icall_System_Array_GetLength): Added argument checking.
27838         (ves_icall_System_Array_GetLowerBound): Added argument checking.
27840 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
27842         * object.h (mono_assert): new macros mono_assert and
27843         mono_assert_not_reached
27845 2002-02-28  Martin Baulig  <martin@gnome.org>
27847         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
27848         and "System::String::IsInterned" to "System::String::_IsInterned".
27850 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
27852         * icall.c: remove hacks for typebuilder. Added icall to create a
27853         modified type from a tybebuilder.
27854         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
27855         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
27856         to create a backing MonoClass for a TypeBuilder.
27858 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27860         * class.c, class.h: more refactoring of class init.
27861         Export mono_class_setup_mono_type() and mono_class_setup_parent().
27863 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
27865         * marshal.c, marshal.h: start of marshaling interface.
27867 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27869         * icall.c: fix order in assembly qualified name icall.
27871 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27873         * class.c: do not free str, since we store it in the hash table.
27874         * reflection.h: add label field to MonoILExceptionInfo.
27875         * reflection.c: handle references to more than one assembly. Handle
27876         case when there isn't a module created in the assembly.
27878 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27880         * class.c: Fix typo. Start refactoring of class init code.
27882 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27884         * appdomain.c: exit with 1 on error.
27885         * class.c: we already have the name in MonoClassField.
27886         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
27887         MonoStreamHeader instead of an offset of image->raw_metadata.
27889 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
27891         * appdomain.c (mono_init): Be even more descriptive about the error.
27893 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
27895         * appdomain.c: give the user an informative message when corlib can't
27896         be loaded.
27898 2002-02-26  Martin Baulig  <martin@gnome.org>
27900         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27901         New icall to get the time zone data.
27903 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27905         * reflection.c: set virtual and raw size of section correctly.
27906         * threads.c: transfer domain information to newly created threads.
27908 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27910         * class.c: when instancing a class in a domain, load the default
27911         vaules for static fields from the constant table. Fix System.Enum to
27912         not be an enum.
27913         * icall.c: implement Object::GetType() internalcall. Implemented
27914         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
27915         Fixed checking of binding flags in find_members().
27916         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
27917         * reflection.c: handle enumerations when writing to the constant
27918         table. Use a different object cache for types.
27921 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
27923         * object.c (mono_object_isinst): fix for arrays
27925         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
27927 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27929         * object.c: don't use mprotect ()  and fix intern pool hash table
27930         lookup for big endian systems.
27932 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27934         * icall.c: change type_is_subtype_of () signature.
27936 2002-02-21  Mark Crichton  <crichton@gimp.org>
27938         * rand.c, rand.h: Added random number generator for
27939         System.Security.Cryptography classes.
27941         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
27943         * icall.c: Added System.Security.Cryptography calls.
27945 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27947         * class.c, icall.c, metadata.c: better support for pointer types.
27948         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
27949         * reflection.c: Add support for getting custom attrs for properties
27950         and simplify some code.
27952 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27954         * icall.c: change getToken () and add custom attribute GetBlob()helper
27955         method.
27956         * reflection.h: add custom attrs array to the reflection builder structures.
27957         * reflection.c: encode and emit custom attributes for all the relevant
27958         reflection objects. Cache fieldref and methodref tokens. Change
27959         mono_image_create_token() interface to take a MonoDynamicAssembly.
27960         More complete custom attributes decoder. Load custom attributes for
27961         Assembly, Field, Method and Constructor objects, too. Make the
27962         returned array an Attribute[] one, not object[]. Added
27963         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
27964         custom attribute constructor.
27966 2002-02-20  Dick Porter  <dick@ximian.com>
27968         * icall.c:
27969         * rawbuffer.c:
27970         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
27971         problem code out for now).
27973 2002-02-19  Radek Doulik  <rodo@ximian.com>
27975         * object.c (mono_ldstr): use hash table to avoid multiple swapping
27977 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
27979         * icall.c: register the GetCustomAttributes method.
27980         * object.c, object.h: add mono_string_new_len ().
27981         * reflection.h, reflection.c: added mono_runtime_invoke(),
27982         mono_install_runtime_invoke(). Added
27983         mono_reflection_get_custom_attrs () to load custom attributes and
27984         create the attribute objects.
27986 2002-02-19  Dick Porter  <dick@ximian.com>
27987         * threads-dummy-types.c:
27988         * threads-dummy-types.h:
27989         * threads-dummy.c:
27990         * threads-dummy.h:
27991         * threads-pthread-types.c:
27992         * threads-pthread-types.h:
27993         * threads-pthread.c:
27994         * threads-pthread.h:  Deleted obsolete files
27996 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
27998         * class.c (mono_class_vtable): runtime init the class when we
27999         allocate static class data.
28001         * icall.c (ves_icall_System_Array_SetValue): check for null values.
28003         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
28004         and String - but we will need generic marshalling support in the
28005         future. 
28006         (mono_init): set the domain name in a ms compatible way
28008         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
28009         String[].
28011 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
28013         * object.c (mono_array_clone): use alloca() instead of g_malloc  
28014         for sizes
28016         * appdomain.c (mono_domain_unload): impl.
28018 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28020         * appdomain.c, object.c: fix intern pool implementation.
28021         * class.c: fix alignment code.
28023 2002-02-16  Radek Doulik  <rodo@ximian.com>
28025         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
28026         and s2 > s1, just copy lower bytes to be compatible with little
28027         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
28028         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
28030         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
28031         force big_endian to be 1 for big endian machines 
28032         (ves_icall_iconv_new_decoder): ditto
28034 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
28036         * socket-io.c (convert_sockopt_level_and_name): If the system
28037         doesn't define SOL_IP or SOL_TCP, get them by hand using
28038         getprotobyname() and caching the values (because this could be a
28039         slow operation).
28040         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
28041         Use the appropriate struct when the system does support it. Ie,
28042         not all systems have struct ip_mreqn so use struct ip_mreq when
28043         appropriate.
28045 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
28047         * reflection.c: handle finally clauses.
28049 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
28051         * socket-io.c: use g_snprintf() instead of snprintf.
28053 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28055         * reflection.c (mono_param_get_objects): Cast second argument to
28056         mono_method_get_param_names to a const char** to silence the
28057         compiler warning.
28059         * appdomain.c (mono_domain_assembly_open): Put parens around the
28060         truth statement in the for-loop.
28062         * unicode.c (iconv_convert): Got rid of a compiler warning about
28063         int i being unused when the system has a new iconv.
28064         (iconv_get_length): Same.
28066         * image.c (load_class_names): Cast the second argument to
28067         g_hash_table_insert() to char* to hush compiler warnings about the
28068         arg being a const.
28069         (mono_image_open): Same here.
28071         * socket-io.c: Don't conditionally include sys/filio.h or
28072         sys/sockio.h here anymore since we now get them from
28073         io-layer/io-layer.h
28074         (inet_pton): If the system doesn't support inet_aton, implement
28075         using inet_addr and also #define INADDR_NONE if it isn't defined
28076         by the system.
28078 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
28080         * metadata.c, metadata.h: added function to get packing and size info
28081         of a typedef.
28082         * reflection.h, reflection.c: handle field RVA data. Save info about
28083         the table layout if needed. Assign typedef indexes to all the types
28084         before dumping the info about them to avoid forward reference problems.
28086 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
28088         * socket-io.c (convert_sockopt_level_and_name): ifdef
28089         SO_ACCEPTCONN because it is not defined on my system (old debian)
28091 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
28093         * opcode.c: use stddef.h to get NULL.
28095 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28097         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
28098         for FIONBIO, FIONREAD and SIOCATMARK.
28099         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
28100         define INADDR_NONE and besides, inet_addr() is deprecated and
28101         should not be used. Use inet_pton() instead - it also has the
28102         added bonus that it can easily handle IPv6 addresses as well.
28103         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
28105 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
28107         * decimal.c: remove _MSC_VER conditional.
28109 2002-02-13  Dick Porter  <dick@ximian.com>
28111         * socket-io.c: 
28112         * icall.c: Internal calls for Blocking, Select, Shutdown,
28113         GetSocketOption and SetSocketOption
28115 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28117         * assembly.cs: better resolver: use it instead of some kludgy
28118         code.
28120 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
28122         * reflection.c: the best way to speed-up the compiler is to avoid
28123         infinite loops.
28125 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
28127         * class.c (mono_class_vtable): changed the object layout
28128         (obj->vtable->class). 
28129         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
28131 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28133         * assembly.c: look for assemblies in the assembly dir, too.
28135 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28137         * class.c: fix thinko in mono_class_from_type().
28139 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28141         * exception.h, exception.c: added TypeLoadException.
28142         * object.h, object.c: added mono_array_clone ().
28143         * icall.c: handle throwOnError in AssemblyGetType().
28144         Added Array.Clone().
28145         * opcode.h, opcode.c: use a single value for the opcode val.
28146         Compile fix for non-gcc compilers.
28148 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
28150         * opcodes.c, opcodes.h: export interesting info about opcodes.
28152 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
28154         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
28155         icalls. 
28157         * class.c (class_compute_field_layout): set element_class for enums
28158         (mono_class_create_from_typedef): set element_class for normal classes
28160         * icall.c (ves_icall_System_Enum_get_value): impl.
28162         * class.c (mono_class_create_from_typedef): do not set valuetype
28163         flag for System.ValueType and System.Enum
28165 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
28167         * unicode.c (iconv_convert): fix big endian problem.
28169 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28171         * class.c: add asserts if we are ever going to scribble over memory.
28172         * socket-io.c: not all systems have AF_IRDA defined.
28174 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
28176         * class.c (class_compute_field_layout): do not consider static
28177         fields to compute alignment
28179 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
28181         * appdomain.c (mono_appdomain_get): impl.
28182         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
28184 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
28186         * icall.c: ignore "file://" prefix when loading an assembly.
28188 2002-01-23  Dick Porter  <dick@ximian.com>
28190         * socket-io.c:
28191         * icall.c:
28192         * Makefile.am: Added socket support
28194 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28196         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
28197         code back.  This should return the assemblies that are loaded by
28198         the runtime on behalf of an application domain. 
28200         The current implementation is still broken, it just returns every
28201         assembly loaded, but until we get real applications domain this
28202         will do.
28204 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
28206         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
28207         AppDomain object.
28209 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28211         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
28212         the mono_class_from_name lookup.
28213         (ves_icall_get_parameter_info): ditto.
28214         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
28215         method.
28216         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
28218 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
28220         * class.c: load also nested classes on class init.
28221         System.ValueType instance methods gets passed boxed
28222         values, unless methods in derived classed that get a pointer to the
28223         data.
28224         * icall.c: use better name parsing code in GetType().
28225         * image.c, image.h: add mono_image_loaded ().
28226         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
28227         * reflection.c, reflection.h: added mono_reflection_parse_type().
28229 2002-01-22  Veronica De Santis <veron78@interfree.it>
28231         * icall.c : Added mapping of internal calls for Manual and Auto reset events
28232         * threads.c : Added the implementation of internal calls for events
28233         * threads.h : Added prototypes of internal calls for events
28234         
28235 2002-01-21  Radek Doulik  <rodo@ximian.com>
28237         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
28239 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
28241         * class.c (mono_class_init): set min_align to 1 (instead of 0)
28242         (mono_class_value_size): use min_align
28244 2002-01-20  Dick Porter  <dick@ximian.com>
28246         * threads.h:
28247         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
28248         so it compiles on w32.
28250 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
28252         * metadata.c (mono_type_stack_size): impl.
28254         * class.c (mono_class_get_field): impl. memberref token
28256 2002-01-16 Veronica De Santis <veron78@@interfree.it>
28258         * icall.h : Added the internal calls mapping for CreateMutex_internal
28259                     and ReleaseMutex_internal.
28260         * threads.h : Added the prototype of mutexes internal calls.
28261         * threads.c : Added the implementations of mutexes internal calls.
28263 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
28265         * metaparse.h: removed unused file.
28266         * reflection.c, reflection.h: added stream_data_align () function 
28267         to align data in streams and keep stream aligned. Add support for
28268         exception support in method headers.
28270 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
28272         * unicode.c: make iconv_convert () return the number of bytess written
28273         in the output buffer.
28275 2002-01-15  Dick Porter  <dick@ximian.com>
28276         * threads.c: Make the runtime's idea of infinite timeouts coincide
28277         with the class library's
28279         Fix a particularly egregious bug in mono_thread_cleanup(). That
28280         code was so utterly bogus it must have been written on a Monday.
28282 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
28284         * reflection.h: add subtypes field to TypeBuilder.
28285         * reflection.c: encode constants for literal fields.
28286         Handle subtypes. Fix user string token (and add a zero byte)
28287         at the end.
28288         
28289 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
28291         * class.c (mono_class_init): bug fix: assign slot numbers for
28292         abstract methods.
28294 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28296         * reflection.c: don't try to output a code RVA for abstract methods.
28297         Small fixes for method header format. Output parameter info to the
28298         ParamDef table. Save method overriding info to MethodImpl table.
28299         Fix property support. Allow typedef.extends to be a type in the
28300         building assembly.
28301         * verify.c: fix off-by-one error.
28303 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
28305         * class.c: fix mono_class_from_mono_type () for szarray types.
28306         Remove unused cache check in mono_class_from_type_spec().
28307         * icall.c: *type_from_name () functions handle simple arrays and byref.
28308         * reflection.c: handle byref and szarray types. Handle methods without
28309         body (gets P/Invoke compilation working). Handle types and fields in
28310         get_token ().
28311         * reflection.h: add rank to MonoTypeInfo.
28313 2002-01-10  Dick Porter  <dick@ximian.com>
28315         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
28316         internal calls
28318 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
28320         * icall.c: initialize class in type_from_handle ().
28321         Loop also in parent classes for get_method ().
28322         * reflection.c: properly encode class and valuetype types.
28323         Start on encoding TypeBuilder types. Handle fieldrefs.
28324         Use correct length when registering a user string.
28325         Handle ConstructorBuilder and MonoMethod in get_token ().
28326         Make mono_type_get_object () aware of cached types.
28327         * object.c: back out change to mono_string_new ().
28329 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
28330         * object.c: mono_string_new should return a NULL when the string 
28331         passed in is NULL -- not try to deference it.
28332         
28333 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
28335         * icall.c: hack to make IsSubType work for TypeBuilders.
28336         * reflection.c: emit constructors before methods.
28337         Retrieve param names in mono_param_get_objects().
28339 2002/01/05  Nick Drochak  <ndrochak@gol.com>
28341         * Makefile.am: fix list of headers and sources so automake 1.5
28342         doesn't complain. Removed \# at end of list.
28344 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
28346         * reflection.c: get token for a method ref. Set return type of
28347         constructor to void.
28348         * loader.c: debug message.
28349         * class.c: typo fix.
28351 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
28353         * icall.c: fix array init with rank > 1. FindMembers
28354         loops in parent class as well.
28355         * image.c: do not insert nested types in name cache.
28356         * reflection.c: warning fix.
28357         * reflection.h: add override method (for interface impl).
28359 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
28361         * metadata.c: fix customattr decoding.
28363 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
28365         * rawbuffer.cs: Added native Win32 implementation, avoids using
28366         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
28368 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
28370         * class.c: make the low-level routines handle the cache.
28372 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
28374         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
28376 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
28378         * class.c: fix mono_array_element_size() for objects.
28379         * class.h, class.c: add properties to MonoClass and load them
28380         at init time.
28381         * icall.c: check with isinst() when assigning a value to an array
28382         instead of requiring the classes to match exactly.
28383         Implemented icall for System.Type::GetType().
28384         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
28385         enums. Handle bindingflags when looking for methods and fields.
28386         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
28387         and mono_metadata_methods_from_property().
28388         * reflection.h, reflection.c: added structures for propreties,
28389         parameters and enums. Implemented mono_property_get_object() and
28390         mono_param_get_objects().
28392 2001-12-18  Dick Porter  <dick@ximian.com>
28394         * file-io.c: Use mono_string_to_utf16() instead of
28395         mono_string_chars()
28397         * object.c: Added mono_string_to_utf16(), which copies the non
28398         NULL-terminated MonoString into a new double-null-terminated
28399         buffer.
28401 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
28403         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
28405 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
28407         * file-io.c: raise exceptions if handle is invalid.
28409 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
28411         * assembly.c: yet another check for mscorlib.
28412         * class.c, class.h: load nesting info for classes.
28413         * icall.c: many new functions to support the Reflection classes.
28414         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
28415         * reflection.h, reflection.c: mono_image_create_token(),
28416         mono_assembly_get_object(), mono_type_get_object(),
28417         mono_method_get_object(), mono_field_get_object(): methods to return
28418         objects that parallel the C representation of assemblies, types,
28419         methods, fields.
28421 2001-12-11  Dick Porter  <dick@ximian.com>
28423         * icall.c:
28424         * file-io.c: Internal calls for file IO.
28426 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
28428         * tabledefs.h: missing FileAttributes.
28429         * verify.h, verify.c: use is_valid_string () to simplify and check for
28430         valid strings more correctly. Fix warnings and speeling.
28431         Check more tables: Filed, File, ModuleRef, StandAloneSig.
28432         Check code: branches, maxstack, method calls.
28434 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
28436         * object.c (mono_object_allocate): removed static, so that the jit
28437         can allocate value types.
28439         * icall.c (ves_icall_System_DateTime_GetNow): impl.
28441 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28443         * class.c: init enum types right away and register the
28444         token->MonoClass map in mono_class_create_from_typedef ().
28445         * verify.h, verify.c: first cut of the verifier.
28446         * pedump.c: add --verify switch to verify metadata tables.
28447         * tabledefs.h: add some missing enums.
28449 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
28451         * class.c (mono_install_runtime_class_init): impl.
28452         (mono_class_init): renamed mono_class_metadata_init to
28453         mono_class_init, also removed the metadata_inited flag
28455         * object.c (mono_object_isinst): use faster algorithm
28457 2001-11-30  Radek Doulik  <rodo@ximian.com>
28459         * mono-endian.h: reverted last change
28460         added function prototypes
28462         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
28463         add mono-endian.c back
28465         * mono-endian.c: returned back, as Paolo pointed out, it's needed
28466         for unaligned access, I've mistaked it with endianess. I am
28467         sorry.
28468         (mono_read16): fix reverted endianess
28469         (mono_read64): ditto
28470         (mono_read32): ditto
28472 2001-11-30  Dick Porter  <dick@ximian.com>
28474         * exception.c: Implement mono_exception_from_name()
28476 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28478         * metadata.h, metadata.c: remove params_size and locals_size and their
28479         calculation from the metadata code: they are only usefult to the
28480         interp.
28482 2001-11-29  Radek Doulik  <rodo@ximian.com>
28484         * object.c (mono_ldstr): swap bytes here, it's probably not the
28485         best place, but works for me now, I'll redo it once I know mono
28486         better, also note that I add PROT_WRITE and don't reset back, also
28487         note that it's only affects big endians, so x86 should be OK
28489         * mono-endian.h (read16): use just glib macros for both endians
28491         * mono-endian.c: removed as glib macros are used in in
28492         mono-endian.h so we don't need to care about endianess for read
28493         macros as glib does that for us already
28495 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
28497         * class.h, class.h: take minimum alignment into consideration so
28498         that the fields of a class remain aligned also when in an array.
28500 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28502         * loader.h, loader.c: add mono_method_get_param_names().
28503         * class.c: 0-init class fields.
28505 2001-11-26  Dick Porter  <dick@ximian.com>
28507         * icall.c:
28508         * threads-types.h:
28509         * threads.c: New file that handles System.Threading on all platforms
28511         * object.c: 
28512         * object.h: Remove the synchronisation struct from MonoObject,
28513         replace it with a pointer that gets initialised on demand
28515         * Makefile.am: Replace all the system-specific threading code with
28516         a single file that uses the new wrapper library
28518 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
28520         * class.c, class.h: add mono_install_trampoline() so that the runtime
28521         can register a function to create a trampoline: removes the ugly
28522         requirement that a runtime needed to export arch_create_jit_trampoline.
28523         * object.h, object.c: added mono_install_handler() so that the runtime
28524         can install an handler for exceptions generated in C code (with
28525         mono_raise_exception()). Added C struct for System.Delegate.
28526         * pedump.c: removed arch_create_jit_trampoline.
28527         * reflection.c: some cleanups to allow registering user strings and
28528         later getting a token for methodrefs and fieldrefs before the assembly
28529         is built.
28530         * row-indexes.h: updates and fixes from the new ECMA specs.
28532 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
28534         * class.h, class.c: add enum_basetype field to MonoClass.
28535         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
28536         to get index in the constant table reated to a field, param or
28537         property.
28538         * reflection.h, reflection.c: handle constructors. Set public-key and
28539         version number of the built assembly to 0.
28540         * row-indexes.h: update from new ECMA spec.
28542 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28544         * class.h, class.c: add a max_interface_id to MonoClass.
28545         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
28546         since it's used to do that. Added mono_type_type_from_obj().
28547         Make GetType() return NULL instead of segfaulting if the type was not
28548         found. Handle simple arrays in assQualifiedName.
28549         * object.h: add a struct to represent an Exception.
28550         * reflection.c: output call convention in method signature.
28551         Add code to support P/Invoke methods and fixed offsets for fields.
28553 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
28555         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
28556         the value.
28557         * icall.c: use mono_array_addr instead of array->vector: fixes the
28558         reflection image writing.
28559         * reflection.c: init call convention byte to 0 in method signature.
28560         Encode the property signature. Don't output property-related methods
28561         twice. Really process the properties for a type (don't cast a field to
28562         a property, my mom always told me that).
28563         Fix 64 bit issues in pointer alignment in a different and more
28564         readable way.
28566 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
28568         * loader.h: Removed type class from MonoDefaults, added monotype
28570         * loader.c: Loaded MonoType, removed loading of Type
28572         * icall.c (my_mono_new_object): Now returns a System.MonoType,
28573         and fills in System.Type._impl with a RuntimeTypeHandle rather
28574         than the actual MonoClass *
28576         (ves_icall_type_from_handle): change from type_class to
28577         monotype_class
28579         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
28580         implemented
28582         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
28583         implemented
28585         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
28587         (ves_icall_System_Reflection_Assembly_GetType): implemented
28589         (ves_icall_System_MonoType_assQualifiedName): implemented
28591         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
28593 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
28595         * assembly.c (mono_assembly_open): Implement a cache for the
28596         assemblies. 
28598         (mono_assembly_close): only destroy the assembly when the last
28599         reference is gone.
28600         
28601 2001-11-09  Dick Porter  <dick@ximian.com>
28603         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
28605 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
28607         * class.c (mono_class_metadata_init): bug fix: compute the right slot
28609 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28611         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
28612         from Martin Weindel.
28613         * object.h: add mono_string_chars ().
28615 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
28617         * reflection.c (build_compressed_metadata): Eliminates warnings
28618         and uses 64-bit clean code.
28620         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
28621         (mono_type_equal): Change signature to eliminate warnings.
28623 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28625         * icall.c, loader.c: remove the internalcall array constructors.
28626         Changes to match the new MonoArray structure.
28627         * object.h, object.c: an array object doesn't allocate an extra
28628         vector. Add mono_array_new_full () to create jagged arrays easily.
28630 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28632         * metadata.h, metadata.c: add mono_metadata_field_info () to
28633         retreive all the info about a field from vairous tables.
28634         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
28635         * class.h, class.c: augment MonoClassField with more info.
28636         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
28637         policy and load a field's RVA if needed.
28639 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
28641         * class.c (mono_class_metadata_init): create a trampoline for all
28642         virtual functions instead of actually compiling them.
28644 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
28646         * class.h, class.c: include name in MonoClassField.
28647         * class.c: fix fundamental type of System.Object and System.String.
28648         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
28649         tokens in ldtoken.
28650         * icall.c: remove internalcalls for the Reflection stuff that is now
28651         done in C# code.
28652         * loader.c: mono_field_from_memberref () implementation.
28653         * mono-endian.c: thinko (s/struct/union/g).
28654         * object.c, object.h: make the mono_string_* prototypes actually use
28655         MonoString instead of MonoObject.
28656         * reflection.c, reflection.h: updates for changes in the reflection
28657         code in corlib: we use C structures that map to the actual C# classes.
28658         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
28659         fat method header if needed and use the info from the ILGenerator for
28660         methods. Handle fields in types. Misc fixes.
28662 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
28664         * class.c (mono_class_metadata_init): bug fix: always allocate
28665         space for static class data
28667 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
28669         * class.c (mono_compute_relative_numbering): use relative
28670         numbering to support fast runtime type checks.
28672 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
28674         * class.c (mono_class_create_from_typeref): added debugging output
28675         to print class name when MonoDummy is returned instead of real class
28677 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
28679         * class.c (mono_class_metadata_init): interface offset table now
28680         contains pointers into the vtable - this is more efficient for the jit
28682 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
28684         * class.c (mono_class_metadata_init): use a temporary vtable (the
28685         old algorithm only worked for the interpreter, but not for the jit)
28687 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
28689         * loader.c (method_from_memberref): use mono_class_get to get the
28690         class of an array instead of using System.Array directly.
28691         (mono_get_method): also add MEMBERREF methods to the method cache
28692         which usefull for arrays.
28694 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
28696         * pedump.c (arch_compile_method): added to compute vtable entry
28698         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
28699         number of interfaces.
28700         
28701         * class.h: merged MonoArrayClass into MonoClass
28703         * class.c (mono_class_create_from_typedef): compute the vtable size and
28704         allocate space to include the vtable inside MonoClass
28705         (mono_class_metadata_init): initialize the vtable
28707 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
28709         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
28710         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
28711         * image.c: endian fixes by Laurent Rioux.
28712         * object.h, object.c: rename MonoStringObject to MonoString and
28713         MonoArrayObject to MonoArray. Change some function names to conform to
28714         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
28715         guint16* as first argument, so don't use char*.
28716         Provide macros to do the interesting things on arrays in a portable way.
28717         * threads-pthread.c: updates for the API changes and #include <sched.h>
28718         (required for sched_yield()).
28719         * icall.c: updates for the API changes above.
28720         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
28721         platforms that need them.
28723 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28725         * class.c: set the correct type for all the fundamental
28726         type when loading the class.
28728 2001-10-05  Dick Porter  <dick@ximian.com>
28730         * threads-pthread.c (pthread_mutex_timedlock): Simple
28731         compatibility version for C libraries that lack this call.
28733 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28735         * class.c: MonoTypes stored in MonoClass are stored as
28736         fundamental MonoTypes when the class represents a
28737         fundamental type (System.Int32, ...).
28738         The TypeHandle return by ldtoken is a MonoType*.
28739         * icall.c: ves_icall_get_data_chunk () write out all the
28740         PE/COFF stuff. Implement ves_icall_define_method (),
28741         ves_icall_set_method_body (), ves_icall_type_from_handle ().
28742         * image.c: properly skip unknown streams.
28743         * loader.h, loader.c: add type_class to mono_defaults.
28744         * metadata.c, metadata.h: export compute_size () as
28745         mono_metadata_compute_size () with a better interface.
28746         Typo and C&P fixes.
28747         * pedump.c: don't try to print the entry point RVA if there is no entry point.
28748         * reflection.c, reflection.h: many cleanups, fixes, output method
28749         signatures and headers, typedef and typeref info, compress the metadata
28750         tables, output all the heap streams, cli header etc.
28751         * row-indexes.h: typo fixes.
28753 2001-10-04  Dick Porter  <dick@ximian.com>
28755         * object.h: Add a synchronisation mutex struct to MonoObject
28757         * object.c (mono_new_object): Initialise the object
28758         synchronisation mutexes
28760         * icall.c: System.Threading.Monitor internal calls
28761         
28762         * threads-pthread.h:
28763         * threads-pthread.c: System.Threading.Monitor internal calls
28765         * threads-types.h: New file, includes the system-specific thread
28766         structures
28767         
28768         * threads-pthread-types.h:
28769         * threads-pthread-types.c: New files, handle pthread-specific
28770         synchronisation types
28772         * threads-dummy-types.h: 
28773         * threads-dummy-types.c: New files of dummy support for
28774         thread-specific types
28776         * metadata.c:
28777         * image.c:
28778         * pedump.c: include mono-endian.h not endian.h
28779         
28780         * Makefile.am: More threads files.
28781         Name mono-endian.h not endian.h
28783 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
28785         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
28786         stuff and implement a few more bits.
28787         * icall.c: a field needs to be dereferenced twice. Do not use the same
28788         name for two variables in the same scope.
28789         * image.c, image.h: cleanups.
28791 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
28793         * class.c (mono_class_metadata_init): bug fix: compute the right size
28795 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
28797         * icall.c: implemented some of the Reflection internalcalls.
28798         * image.c, image.h: start writing out the PE/COFF image.
28799         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
28800         that does the reverse than decode_blob_size ().
28801         * object.c: use mono_metadata_encode_value (). Move here
28802         temporary implementation of mono_string_to_utf8 ().
28803         * rawbuffer.c: make malloc_map static.
28805 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28807         * metadata.c: fix type comparison for arrays.
28808         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
28809         Added a couple of new classes to monodefaults.
28810         * icall.c: added a couple of Reflection-related internalcalls.
28811         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
28812         Added a byval_arg MonoType to MonoClass.
28814 2001-09-28  Dick Porter  <dick@ximian.com>
28816         * icall.c:
28817         * threads-pthread.h: 
28818         * threads-pthread.c: Implemented internal calls for
28819         LocalDataStoreSlot operations.  Applied mutexes around all shared
28820         data.  Reworked the thread creation and Start() operations to
28821         avoid a race condition.
28822         
28823         * threads-dummy.h:
28824         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
28826 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
28828         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
28830 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
28832         * class.c, loader.c: warn and return NULL instead of erroring out.
28833         * icall.c: added System.AppDomain::getCurDomain().
28834         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
28836 2001-09-25  Dick Porter  <dick@ximian.com>
28838         * threads-pthread.h:
28839         * threads-pthread.c: Implemented timed thread joining and added
28840         System.Threading.Thread::Join_internal internal call
28842         * icall.c: Added System.Threading.Thread::Join_internal internal call
28844         * threads-dummy.h:
28845         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
28847 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
28849         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
28850         mono_string_intern () to implement the semantics of the ldstr opcode
28851         and the interning of System.Strings.
28852         * icall.c: provide hooks to make String::IsIntern and String::Intern
28853         internalcalls.
28855 2001-09-23  Dick Porter  <dick@ximian.com>
28857         * threads-dummy.c: 
28858         * threads-dummy.h: New files of dummy threading routines
28860         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
28861         support code based on system specifics
28863         Rename PTHREAD_LIBS to THREAD_LIBS
28864         
28865 2001-09-23  Dick Porter  <dick@ximian.com>
28867         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
28868         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
28869         internal calls.
28870         (mono_thread_init): Set up a Thread object instance to return when
28871         the main thread calls Thread.CurrentThread
28872         (mono_thread_cleanup): Wait for all subthreads to exit
28874         * icall.c: New internal calls for System.Threading.Thread::Sleep
28875         (including Schedule) and CurrentThread
28877         * threads.h: New file, to insulate thread-specific stuff from the
28878         rest of the code
28880 2001-09-21  Dick Porter  <dick@ximian.com>
28882         * threads-pthread.h: 
28883         * threads-pthread.c: New file, for handling pthreads-style
28884         threading support.  Start() now starts a new thread and executes
28885         the ThreadStart delegate instance.
28887         * icall.c: Added the internalcall for
28888         System.Threading.Thread::Start_internal
28890         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
28892 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
28894         * loader.c: work around the different signatures for delegates
28895         constructors csc generates in compiled code vs the ones compiled in mscorlib.
28897 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28899         * class.h, class.c: add mono_class_get_field_from_name ().
28900         * *: Fix C comments and other ANSI C issues.
28902 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
28904         * endian.h, assembly.c: fix some endianness issues.
28906 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
28908         * loader.h, load.c: add delegate_class to mono_defaults.
28909         Handle runtime provided methods in mono_get_method ().
28911 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
28913         * loader.c (mono_get_method): use pinvoke for internal call
28915         * icall.c: use pinvoke for internal call
28917         * loader.c (method_from_memberref): set the method name
28919 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
28921         * metadata.c: help the compiler generate better code for
28922         mono_class_from_mono_type ().
28924 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
28926         * class.c (mono_class_metadata_init): delayed computing of the
28927         class size to mono_class_metadata_init ()
28929 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
28931         * class.c, class.h: add an interfaces member to MonoClass.
28932         * image.c, image.h: add assembly_name field to MonoImage
28933         from the assembly table.
28934         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
28936 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28938         * class.c: Handle Array in mono_class_from_mono_type ().
28939         * metadata.c, pedump.c: some endian fixes.
28941 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28943         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
28944         * metadata.c: fix small problem introduced with the latest commit.
28946 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
28948         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
28949         We don't need a MonoMetadata pointer anymore to compare signatures in
28950         mono_metadata_signature_equal (), update callers.
28951         Reduced memory usage an number of allocations for MonoMethodHeader and
28952         MonoMethodSignature.
28954 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
28956         * metadata.c: added compare for szarray.
28958 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
28960         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
28961         and add a couple more types to it and mono_defaults. Give an hint on
28962         classes that need implementing in our corlib and are referenced
28963         in mscorlib.
28965 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
28967         * class.h, class.c: keep track if a class is also an Enum.
28968         * loader.c: Implement a couple more types for use in libffi
28969         marshalling. Gives better diagnostics when failing to dlopen
28970         a library. Set method->klass for P/Invoke methods, too.
28972 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
28974         * class.c, class.h: add a MonoType this_arg to MonoClass that
28975         represents a pointer to an object of the class' type that
28976         can be used by the interpreter and later the type cache.
28977         Add best guess alignment info for valuetype objects.
28979 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
28981         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
28982         into MonoType: one less level of indirection and allocation and
28983         simplifies quite a bit of code. Added cache for MonoTypes that are
28984         used frequently, so that we don't need to allocate them all the time.
28986 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
28988         * class.c (mono_class_create_from_typedef): System.Enum is also a
28989         value type, although it does not derive from System.ValueType
28990         (maybe a bug in the ms compiler?)
28992         * metadata.c (mono_type_size): return the right size for value types
28994         * loader.c (mono_get_method): only initialize method header if not abstract
28996         * class.c (mono_class_from_mono_type): use mono_default values. 
28998 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
29000         * *: use MonoClass pointers instead of <type_tokens>
29001         
29002         * class.h: new flag: metadata_inited.
29004         * class.c (mono_class_metadata_init): impl.
29005         (mono_class_instance_size): impl.
29006         (mono_class_data_size): impl.
29008 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
29010         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
29011         MonoClass now has the name and name_space fields. 
29012         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
29013         mono_get_method () takes and optional MonoClass as argument.
29014         Removed mono_typedef_from_name() and added mono_class_token_from_name()
29015         instead that takes advantage of a map from class names to typedef
29016         tokens in MonoImage.
29018 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
29020         * metadata.c: zero is not a valid alignment boundary.
29021         Merge MONO_TYPE_VOID in default decoding code.
29023 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
29025         * image.h: merged MonoMetadata into MonoImage
29027         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
29028         identify the type of elements.
29030 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
29032         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
29033         * cil-coff.h: split MonoMSDOSHeader and add size info.
29034         * image.c: add some consistency checks.
29035         * metadata.c: fix row size computation: one programmer
29036         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
29037         add explanation for the locator routine.
29038         Fix decoding of size in method header.
29039         
29040 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
29042         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
29043         (g_concat_dir_and_file): Bring g_concat_dir_and_file
29044         function from gnome-libs.  This uses the right path separator
29045         based on the OS, and also works around a bug in some systems where
29046         a double slash is not allowed. 
29047         (default_assembly_name_resolver): Use g_concat_dir_and_file
29048         (mono_assembly_open): ditto.
29050 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
29052         * metadata.c (mono_metadata_signature_equal): impl.
29054         * *: void is now a realy MonoType (instead of using NULL)
29055         
29056         * metadata.c (do_mono_metadata_parse_type): use
29057         mono_metadata_parse_type to parse void value.
29059 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
29061         * metadata.c, metadata.h: in the signature and method header store
29062         only the space required for holding the loca vars and incoming arguments.
29064 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
29066         * metadata.c (do_mono_metadata_parse_type): treat void like any
29067         other type (instead of assigning NULL);
29069 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
29071         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
29073 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
29075         * image.c (do_mono_image_open): added a cache for arrays.
29077 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29079         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
29080         decode a single column from a row in a metadata table and changes
29081         to take advantage of it in the typedef locator (gives a nice speed up).
29082         Store offset info for function params.
29084 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
29086         * image.h (MONO_IMAGE_IS_CORLIB): removed 
29088 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
29090         * assembly.c: how could mono_assembly_close () had ever worked?
29091         * metadata.c, metadata.h: provide offset info for local vars.
29092         Implement mono_type_size () to take care of alignment as well
29093         as size (it was mono_field_type_size in cli/class.c before).
29095 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
29097         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
29099         * assembly.h (CORLIB_NAME): set to corlib.dll
29101         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
29103 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29105         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
29106         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
29107         tokentype.h: massive namespace cleanup.
29109 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
29111         * metadata.h, metadata.c: decode exception clauses when parsing method header.
29113 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
29115         * metadata.c (mono_metadata_free_type): added check for type !=
29116         NULL (void) before calling mono_metadata_free_type()
29118 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
29120         * metadata.h, row_indexes.h: added header with enumerations to use
29121         to index in the columns from tables in metadata and to decode coded
29122         tokens: we should start using this instead of embedding magic numbers
29123         all over the code.
29125 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
29127         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
29128         Move metadata_t info from cli_image_info_t to MonoImage, where
29129         it's easily accessible. Changed all the uses accordingly.
29130         Added the method and class caches to MonoImage.
29131         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
29132         and mono_metadata_decode_value () signature to be more consistent
29133         with the other parse functions (and simplify code). Taken advantage
29134         of zero-length array allocation with GCC. Removed reduntant (and
29135         wrong) MonoFieldType struct and use MonoParam instead. Changed
29136         mono_metadata_parse_field_type () to use common code for parsing.
29137         Added mono_metadata_typedef_from_field () and
29138         mono_metadata_typedef_from_method () to lookup a typedef index from a
29139         field or method token.
29140         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
29142 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
29144         * metadata.c (mono_metadata_parse_field_type): Implement. 
29145         (do_mono_metadata_parse_type): Split engine from
29146         mono_metadata_parse_type, so that we can create smaller structures
29147         for things that just have one pointer to the MonoType (look at
29148         the MonoFieldType)
29150 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
29152         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
29153         as Jan Gray found out, it is incorrect. 
29155 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
29157         * assembly.c: Implement asssembly loading.  This loads an image
29158         and loads all the referenced assemblies.  Come to think of it, we
29159         could always do lazy loading of the assemblies. 
29161         * image.c (mono_image_open): Keep loaded images in a hashtable.
29163         * image.h (MonoImage): Add reference count.
29165 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
29167         * assembly.c (mono_assembly_open): Keep track of the file name in
29168         case the assembly has no ASSEMBLY table.
29170         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
29171         from get.c here.
29173 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
29175         * metadata.c, metadata.h: decode local vars in method header
29176         parse function. Change callers accordingly.
29178 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
29180         * metadata.h, cil-coff.h: protect against multiple inclusion.
29181         Added some new structures to hold information decoded from metadata:
29182         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
29183         and relevant decoding/free functions.
29184         * metadata.c: implement decoding functions. Add warning for out of bounds
29185         index in mono_metadata_locate(). Implement mono_get_method () to retreive
29186         all the info about a method signature and invocation. Remove check on
29187         uninitialized local var in parse_mh() and fix memory leak.
29189 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
29191         * metadata.h: More macros.
29193         * tokentype.h: New file.
29195 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
29197         * assembly.c: added a consistency check and initialize
29198         some structures with g_new0().
29199         * metadata.c: fixed a couple more bugs in table size computation
29200         and add other checks for out-of bound access to metadata.
29202 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
29204         * metatada.c: fix bugs computing table sizes. Spew a
29205         warning when index in string heap is out of bounds.
29207 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
29209         * metadata.h: Add a couple of macros to manipulate tokens. 
29211 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
29213         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
29214         cli_section_tables).
29216 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
29218         * metadata.c (mono_metadata_user_string): New function, provides
29219         access to the UserString heap. 
29221 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
29223         * metadata.c: Add inline documentation.
29225 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
29227         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
29228         files. 
29230 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
29232         * typeattr.h: New file, TypeAttribute flags. 
29234 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
29236         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
29237         mono_assembly_ensure_section): Section loading code.
29238         (load_section_tables): Load the sections.
29240         * mono/metadata/metadata.c (mono_metadata_locate_token,
29241         mono_metadata_locate): Functions to locate the information
29242         definition given a token or a table and an index.
29243         (mono_metadata_compute_table_bases): New.
29244         (compute_size): New function to compute the sizes of the various
29245         tables.
29247         * mono/metadata/metadata.h: Finish listing the different index
29248         types. 
29250         * mono/metadata/pedump.c: Improve to dump new information.
29252 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
29254         * mono/metadata/metadata.c: Entered all the tables matching
29255         Beta2. 
29257         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2