2009-01-21 Mark Probst <mark.probst@gmail.com>
[mono-project.git] / mono / metadata / ChangeLog
blobc8ee85d7d31e0dd3dd71a4310c80e16294fbbff2
1 2009-01-21  Mark Probst  <mark.probst@gmail.com>
3         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
4         image must match.
6 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8         * reflection.c (resolve_object): For fields, inflate the class and
9         then get the field in the inflated class.
11 2009-01-20  Mark Probst  <mark.probst@gmail.com>
13         * object-internals.h (struct _MonoException): Added a comment
14         explaining the new use of trace_ips.
16 2009-01-20  Mark Probst  <mark.probst@gmail.com>
18         * generic-sharing.c (inflate_other_data): Inflate array methods
19         correctly.
21         * loader.c, class-internals.h: Rename search_in_array_class() to
22         mono_method_search_in_array_class() and make it non-static.
24 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
26         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
27         Hopefully fixes #458168.
29 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
31         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
32         as it is performed elsewhere.
34         Code is contributed under MIT/X11 license
36 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
38         * mono-perfcounters-def.h: Add counters for asp.net requests total and
39         requests queued.
40         * object.c (mono_raise_exception): Increment the exceptions total
41         counter when an exception is thrown.
42         * class-internals.h: Add a location for storing the total number of
43         asp.net requests served.
44         * mono-perfcounters.c: Implement update support for asp.net counters
45         from the class libraries. Implement read support for asp.net counters
46         and exceptions total counter.
48 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
50         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
51         accessing klass->methods. Fixes #467385.
53 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
55         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
56         for byval arguments without an [Out] attribute. Fixes #467212.
58         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
59         Fix compilation under android.
60         
61         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
62         processed, scan them directly after they are copied, to achieve better locality
63         and cache usage.
65         * socket-io.c: Applied patch from Koushik Dutta
66         (koush@koushikdutta.com). Disable IPV6 when running under android.
68 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
70         * icall.c (ves_icall_InternalExecute): Add write barriers.
72         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
73         the GC code.
75         * sgen-gc.c: Implement write barriers in IL code.
77 2009-01-17  Geoff Norton  <gnorton@novell.com>
79         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
81 2009-01-17  Geoff Norton  <gnorton@novell.com>
83         * image.c: When unloading the image->references table, there can be gaps
84         in it.  Ensure that we iterate every entry to avoid leaking assembly references
85         when unloading an appdomain.
87 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
89         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
90         speed up ptr-in-nursery checks.
92         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
93         threads_lock () to prevent deadlocks.
95         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
96         does not need to be scanned during minor collections, since writes to it
97         must use write barriers.
99 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
101         * metadata-verify.c: Add pe nt header verification.
102         
103 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
105         * gc.c: Fix a few warnings when using SGEN.
107 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
109         * metadata-verify.c: Add pe optional header verification.
111 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
113         * sgen-gc.c: Add support for user defined marker functions, used by
114         MonoGHashTable to avoid registering a GC root for every hash node.
116 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
118         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
119         non-pinned roots into separate hashes to avoid having to traverse them
120         in functions which are only interested in one kind.
122 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
124         * metadata-verify.c: Add pe header machine field verification.
125         
126 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
128         * metadata-verify.c: Add pe header size verification.
130 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
132         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
133         using the GC, they don't contain references.
135         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
137 2009-01-13  Geoff Norton  <gnorton@novell.com>
139         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
140         AppDomains created on the native side can be cleaned up on the native side.
142 2009-01-13  Geoff Norton  <gnorton@novell.com>
144         * appdomain.c: Ensure that we call mono_context_init for the embedding api
145         as well as the managed api.
147 2009-01-13  Geoff Norton  <gnorton@novell.com>
149         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
150         with a MonoAppDomain initialized against it.
152 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
154         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
155         
156         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
158         * marshal.c: Avoid setting the exception clauses after a method has been entered 
159         into the wrapper caches. Fixes #465700.
161         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
162         method builder.
163         (mono_mb_create_method): Set the clauses from the method builder.
165 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
167         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
168         Patch from Makoto Kishimoto.
170 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
172         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
173         encoding them as ROOT_DESC_COMPLEX.
174         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
176 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
178         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
179         no longer point to the nursery.
181         * sgen-gc.c: Add a few comments/FIXMEs.
182         
183         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
185         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
186         initialization of the various _method variables thread safe. Fixes
187         #465377.
189 2009-01-12  Mark Probst  <mark.probst@gmail.com>
191         * domain.c, domain-internals.h: Remove the shared_generics_hash
192         and its lookup functions.
194 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
196         * socket-io.c:  Fixing the MSVC build. 
198         Code is contributed under MIT/X11 license.
200 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
202         * metadata-verify.c: Add pe header watermark verification.
204 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
206         * metadata-verify.c: Add lfanew verification.
208 2009-01-12  Jb Evain  <jbevain@novell.com>
210         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
211         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
213 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
215         * socket-io.c: Fix the build.
217         * environment.c: Fix an #ifdef.
219 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
221         * threadpool.c (async_invoke_thread): Handle the wait function returning
222         WAIT_IO_COMPLETION as well.
223         (async_invoke_io_thread): Ditto.
225 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
227         * threads.c: Fixing the Windows build.
229         Code is contributed under MIT/X11 license.
231 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
233         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
234         interrupt a wait.
235         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
236         the thread to wait again.
238 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
240         * metadata-verify.c: Initial skeleton of the metadata verifier.
242         * pedump.c: Add support for the metadata verifier.
244         * verify-internal.h: Export the whole assembly metadata verifier function.
246 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
248         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
250 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
252         * Makefile.am: Upgrade dtrace-prelink.sh location.
254 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
256         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
257         well. Otherwise the shutdown deadlock that happens on unix will can happen
258         as well.
259         If the main thread code finishes too fast it's possible that the finalizer
260         thread won't have executed yet, won't record itself as the finalizer thread
261         and the shutdown sequence will wait on it forever.
263 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
265         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
266         with MSVC.
268 2009-01-08  Miguel de Icaza  <miguel@novell.com>
270         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
271         Robert Jordan for pointing this out.
273 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
275         * icall.c
276         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
277         ves_icall_System_IO_DriveInfo_GetDriveType.
279 2009-01-07  Miguel de Icaza  <miguel@novell.com>
281         * icall.c: Wrap calls to mono_strtod in CriticalSection
282         invocations when using eglib, to work around #464316.
284 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
286         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
287         return value of GetCurrentDirectory to never access unitialized memory.
289 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
291         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
292         return value of GetCurrentDirectory and expand the buffer if needed.
294         Fixes #459094.
296 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
298         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
299           Adding a call to mono_init_com_types.
301         Code is contributed under MIT/X11 license.
303 2009-01-07  Geoff Norton  <gnorton@novell.com>
305         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
306         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
307         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
308         be the value of the ip buffer.
310 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
312         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
313         interfaces_packed here.
315         Fixes part of #463294.
317 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
319         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
321         Fixes part of #463294.
323 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
325         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
326         is a boxed complex as well.
328         Fixes part of #463294.
330 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
332         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
333         control if a methodspec should be created for the generic method definition from external assemblies.
334         Caching of methodspec is done using the handleref hash table.
336         Fixes #462592.
338 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
340         * loader.c (find_method): When searching the interfaces of a class
341         check the transitive closure of implemented interfaces.
343         Fixes #463303.
345 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
347         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
348         
349 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
351         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
352         interfaces calculation to fill_valuetype_array_derived_types.
354         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
355         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
356         for example.
358         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
359         interfaces for valuetypes if needed.    
361         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
362         for their basetype as well. Types are array expanded if rank is > 0.
364         Fixes #400716.
366 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
368         * socket-io.h : Changing the signature of
369           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
370           the blocking state.
372         * icall-def.h :  Changing the signature of
373           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
375         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
376           For Windows only.  Avoid blocking when calling accept by
377           querying for a connection via select.  The loop also queries
378           the thread state every 1000 micro seconds for the thread
379           stop state.  This will avoid the process hanging on shutdown
380           when using a TcpChannel that is never connected to.
382         Code is contributed under MIT/X11 license.
384 2008-12-30  Marek Safar  <marek.safar@gmail.com>
386         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
388 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
390         * class.c (get_implicit_generic_array_interfaces): Extract common
391         code to a helper function making it a lot easier on the eyes.
393 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
395         * class.c (get_implicit_generic_array_interfaces): If the internal
396         enumerator is an interface inflate System.Object instead of itself.
398         Fixes #461261.
400 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
402         * object.c (mono_runtime_invoke_array): Don't assert with
403         byref nullable types.
405         * marshal.c (mono_marshal_get_runtime_invoke): To handle
406         byref nullables we unbox the object and store it on the
407         stack. 
408         We can't use the boxed object since it is the T of Nullable<T>
409         and the boxed representation of a nullable it's underlying type
410         or null.
411         We could cheat and create a boxed nullable and use the same
412         machinery of other byref VTs but this feels like a hack and
413         using the stack has the bonus of reducing heap pressure.
415         Fixes #461941.
417 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
419         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
420         return value.
422         Fixes #461867.
424 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
426         * icall-def.h : Adding an internal call definition for 
427           System.Environment.internalBroadcastSettingChange.
429         * icall.c : Adding a Windows only implementation to broadcast a 
430           WM_SETTINGCHANGE when an environment variable has changed.
432         Code is contributed under MIT/X11 license.
434 2008-12-19  Mark Probst  <mark.probst@gmail.com>
436         * class.c, class-internals.h: Made
437         mono_class_has_parent_and_ignore_generics() non-static.
439 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
441         * image.c: deal with the mmap failing when loading an image.
443 2008-12-17  Geoff Norton  <gnorton@novell.com>
445         * threadpool.c: Ensure that the io_queue_lock is initialized
446         in all circumstances, as we always attempt to cleanup against it.
448 2008-12-17  Miguel de Icaza  <miguel@novell.com>
450         * icall.c (ves_icall_System_Environment_get_Platform): For
451         compatibility reasons for existing client code we will keep
452         returning 4 for a while.   
454         For how long will depend on the documentation being updated, and
455         for us to give client code a chance to be updated.
457         This reverts the original decison on #433108 since we did not
458         catch roughly 33 instances of the broken code in our own source
459         code base, we did not catch failures on the buildbots, and QA did
460         not bring this as a problem.
462         Only today I found some customer's code breaking due to our own
463         class libraries not being fully updated and tracked it down to
464         this change.  I am reverting it because if we could not even get
465         our story straight in our own code base, how can we hope that our
466         end user code be fixed?
468         As of this morning, our Wiki page that documents how to detect
469         Unix had not been fixed.    
471 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
473         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
475         * class.c (mono_class_get_fields): Handle loading errors.
477 2008-12-12 Mark Mason <mmason@upwardaccess.com>
479         * 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.
480         
481 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
483         * mono-perfcounters.c: avoid warning.
485 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
487         * reflection.c (ensure_runtime_vtable): Work on generic instances and
488         make sure all interfaces have MonoClass::interface_id set.
490         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
491         method table is property set.
493 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
495         * class.c: New function mono_class_setup_interface_id that setup
496         MonoClass::interface_id if needed.
498         * class-internals.h: Export new function.
500 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
502         * class.c: Add code to sanity check the vtable after setup_vtable_general
503         has done it's work.
505 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
507         * icall.c: make Assembly.GetExecutingAssembly work properly when
508         reflection is used to invoke the method.
509         Bug #321781 fixed.
511 2008-12-11  Mark Probst  <mark.probst@gmail.com>
513         * metadata/generic-sharing.c: Look for constraints in all type
514         arguments, not just the first one.
516 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
518         * appdomain.c: return the correct CodeBase for an Assembly instance
519         that was loaded from the shadow-copy directories.
520         Bug #458190 fixed.
522 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
524         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
526         * sgen-gc.c (check_object): New debugging helper function.
528         * object.c: Fix calls to mono_value_copy_array ().
530 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
532         * class.c (mono_class_setup_fields): If working on an inflated class
533         first check if the generic definition did init with success.
535         Fixes #445361.
537 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
539         pedump.c (main): Fix a warning.
541 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
543         * object-internals.h : Adding a definition for 
544           MonoReflectionComVisibleAttribute.
546         * marshal.c (cominterop_com_visible) :  Method added to check the 
547           ComVisible attribute of a class.
549         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
550           cominterop_raise_hr_exception added to consolidate common code 
551           to raise hr exceptions.
553         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
554           if a managed class should support IDispatch.
556         * marshal.c 
557           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
558           Added additional checks for managed object when getting 
559           an IDispatch interface.
561         Code is contributed under MIT/X11 license.
563 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
565         pedump.c (main): Handle mono_get_method () returning NULL. 
567 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
569         * marshal.h: Fix a warning.
571 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
573         * marshal.c : Adding cominterop_release_all_rcws to release all
574           runtime callable wrappers held by the runtime.
576         * marshal.h : Adding declaration for cominterop_release_all_rcws.
577           
578         Code is contributed under MIT/X11 license.
580 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
582         * metadata.c (mono_image_alloc_lock): New helper function.
583         (mono_image_alloc0_lock): Ditto.
585         * metadata.c: Use the alloc_lock () helper functions for allocating
586         memory from the image mempool.
588 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
590         * class.c (mono_class_from_generic_parameter): Document it's
591         locking behavior. Fix double checked locking here, we stored in
592         param->pklass a partially initialized MonoClass and no membar was used.
594 2008-12-05  Marek Habersack  <mhabersack@novell.com>
596         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
597         (3) functions are present in the C library use them to do the
598         job. If they are absent, make sure that the sum of int_part and
599         dec_part is rounded before returning. This is necessary due to the
600         division of dec_part by the power of 10 before the final addition
601         is performed - if the result is not rounded in some cases it will
602         yield invalid results.
604 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
606         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
607         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
608         instruction instead of a pointer constant.
610 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
612         * loader.c (mono_method_get_header): Do most of the work outside the
613         loader lock, to avoid assembly load hook deadlocks.
615         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
616         (mono_metadata_parse_type_full): Ditto.
618 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
620         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
621         Make the stack depth fixed. Ensure proper argument passing to the backtrace
622         funtions. Finally, use a lock to produce well ordered output.
624         The lock looks silly, as all calls to the corlib mempool should be guarded
625         with the loader lock, but for some reason this fact doesn't help. 
627         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
629 2008-12-02  Mark Probst  <mark.probst@gmail.com>
631         * socket-io.c: 64 bit big-endian fixes.
633 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
635         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
636         targets that require strict compatibility between the types.
638         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
639         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
640         Kill the strict argument and create a new one valuetype_must_be_boxed.
642         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
643         state that all valuetypes must be boxed.
645         Fixes #448560.
647 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
649         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
650         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
652         Contributed under MIT/X11 license.
654 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
656         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
657         the inflate_generic_type machinery should handle it.
659         This avoids a crash when the field's flags is zero and it's type is
660         a primitive.
661         What happens is that mono_metadata_parse_type_full will see that opt_attrs
662         is zero and will return one of the cached built-in primitive types. Since
663         those types live in read-only memory, the code that copies it crashes.  
665 2008-11-28  Mark Probst  <mark.probst@gmail.com>
667         * object.c: Don't put function descriptors into generalized IMT
668         thunks.
670 2008-11-28  Mark Probst  <mark.probst@gmail.com>
672         * class.c: Enable generic code sharing on PPC64.
674 2008-11-27  Mark Probst  <mark.probst@gmail.com>
676         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
677         from mini/mini.c.
679         * generic-sharing.c: Allocate the method template slists from the
680         image mempool so it doesn't leak.
682 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
684         * class.c (generic_array_methods): Release the linked list.
686 2008-11-27  Mark Probst  <mark.probst@gmail.com>
688         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
689         invocation to g_utf16_to_utf8().
691 2008-11-26  Mark Probst  <mark.probst@gmail.com>
693         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
694         arguments on big endian archs.
696 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
698         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
699         the type name (test added in corlib).
701 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
703         * pedump.c: initialize perf. counters. Fixes a segv.
705 2008-11-25  Martin Baulig  <martin@ximian.com>
707         * mono-debug-debugger.c
708         (mono_debugger_runtime_invoke): Return the exception object if an
709         exception was thrown.  Visual Studio displays the exception object
710         in the locals window.
712 2008-11-24  Mark Probst  <mark.probst@gmail.com>
714         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
715         ftnptr.
717 2008-11-24  Mark Probst  <mark.probst@gmail.com>
719         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
720         MONO_TYPE_U are sizeof (gpointer), too.
722 2008-11-24  Mark Probst  <mark.probst@gmail.com>
724         * marshal.c (mono_type_native_stack_size): Fixed size and
725         alignment for reference types.
727 2008-11-23  Mark Probst  <mark.probst@gmail.com>
729         * class.c (mono_class_generic_sharing_enabled): Disable generic
730         code sharing for PPC64.
732 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
734         * icall.c (mono_method_get_equivalent_method): Make sure
735         method->klass->methods is inited before looping over it.
737 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
739         * object.c: when calling ExecuteAssembly in a newly created domain,
740         the configuration file and application base are already set up.
741         Bug #446353 take 2 fixed.
743 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
745         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
746         Fixes #444715. Fix a warning.
748 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
750         * appdomain.c: write the full path of the assembly to the .ini file
751         created when "shadow-copying"
752         Bug #446353 fixed.
754 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
756         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
757         if signature==FALSE.
759 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
761         * marshal.h : Fix the cygwin build.
762            marshal.c:12442: undefined reference to `_IID_IMarshal'
763           
764         Code is contributed under MIT/X11 license.
766 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
768         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
769           free threaded marshaler when QueryInterface is called on a COM callable
770           wrapper requesting the IMarshal interface.
771           
772         Code is contributed under MIT/X11 license.
774 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
776         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
778         * reflection.c (mono_type_get_object): Special case the very common
779         void type.
781         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
782         hold typeof(void).
784 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
786         * process.h : Adding method declaration for
787           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
788           
789         * process.c : Adding implementation for
790           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
791           
792         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
793           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
795         Code is contributed under MIT/X11 license.
797 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
799         * appdomain.c (unload_thread_main): Clean up threadpool by
800         calling mono_thread_pool_remove_domain_jobs.
802         * domain-internals.h (struct _MonoDomain): Add new fields to
803         help coordinate the cleanup of the threadpool.
805         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
806         that cleans up the threadpool of all jobs associated with an appdomain.
807         It does that by cleaning up the queues and making sure all active
808         threads are accounted.
810         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
811         unloaded or in the process of. Take this is such way that there is
812         no race condition between another thread starting the unload and the
813         current thread acknowledging it.
815         * threadpool.c (async_invoke_thread): Same.
817         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
818         firing the new thread.
820         * threadpool.c (start_tpthread): Same.
822         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
824         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
826 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
828         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
829         Add support for DuplicateHandle.
830         
831         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
832         Add support for DuplicateHandle.
833         
834         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
835         Add support for DuplicateHandle.
837         Code is contributed under MIT/X11 license.
839 2008-11-06  Mark Probst  <mark.probst@gmail.com>
841         * class-internals.h: Make min_align into a whole byte.
843         * class.c: Set min_align for SIMD types to 16.
845 2008-11-05  Geoff Norton  <gnorton@novell.com>
847         * attach.c: Default the attacher to enabled for all cases including
848         embedded.
850 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
852         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
853         change r117650.
855 2008-11-04  Mark Probst  <mark.probst@gmail.com>
857         * monitor.c, monitor.h: New function for querying offsets of
858         members of MonoThreadsSync.
860 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
862         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
863         to speed up this function and to avoid the boundless memory growth caused by
864         the signature_dup () calls.
866 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
868         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
869         wrapper.
871         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
872         by 1 bit.
874         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
876 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
878         * appdomain.c:
879         * domain-internals.h: made mono_set_private_bin_path_from_config()
880         "internal".
881         * object.c: call the above function after setting the configuration
882         file path for the root domain.
883         Fixes bug #314478.
885 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
887         * assembly.c: when the assembly is loaded from an absolute path, end
888         basedir with a directory separator.
889         Bug #440781 fixed.
891 2008-10-30  Mark Probst  <mark.probst@gmail.com>
893         * monitor.c (mono_monitor_get_fast_enter_method): If
894         CompareExchange is not available, don't create the fastpath
895         instead of asserting.  (The method is missing in the 1.1 profile.)
897 2008-10-30  Mark Probst  <mark.probst@gmail.com>
899         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
901         * monitor.c, monitor.h: Code for generating Monitor.Enter and
902         Monitor.Exit IL fastpaths.
904 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
906         * class.c (mono_class_create_from_typedef): Added Vector2ul.
908 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
910         * class.c (mono_class_create_from_typedef): Added Vector2l.
912 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
914         * class.c (mono_class_create_from_typedef): Added Vector2d.
916 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
918         * appdomain.c: translate \ into / for cache_path.
919         * domain-internals.h: new mono_is_shadow_copy_enabled().
920         * icall.c: (fill_reflection_assembly_name) do the same path
921         manipulations that get_code_base does.
922         (get_code_base) use mono_is_shadow_copy_enabled.
924 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
926         * appdomain.c: shadow-copied assemblies go to CachePath +
927         ApplicationName when both are set. DynamicBase has nothing to do with
928         shadow copies.
929         Bug #406877 fixed.
931 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
933         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
934         STANDALONESIG table.
936         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
937         standalone signatures.
939         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
940         comparison code: instead of comparing the signatures using a custom
941         equals function, transform them to a common signature and compare that. This
942         works better with AOT.
944 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
946         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
948         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
949         call for generic instances.
950         (mono_class_setup_properties): Call setup_properties () before accessing
951         gklass->properties.
953         * class.c (mono_class_get_virtual_methods): New helper function to iterate
954         over the virtual methods of a class using metadata if possible, avoiding the
955         creation of MonoMethod's for non-virtual methods.
956         
957         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
958         get_virtual_methods () to iterate over the virtual methods of classes.
960 2008-10-25  Martin Baulig  <martin@ximian.com>
962         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
964 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
966         * class.c (mono_class_create_from_typedef): Added Vector4i.
968 2008-10-24  Mark Probst  <mark.probst@gmail.com>
970         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
971         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
972         special-casing applies to eliminate the call completely.
974 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
976         * class.c (mono_class_create_from_typedef): Added Vector8s.
978 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
980         * class.c (mono_class_create_from_typedef): Added Vector16sb.
982 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
984         * icall.c: get rid of annoying warning.
986 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
988         * threadpool.c: in 1.x, if you change the background status of the
989         threadpool thread, it's not reset.
990         Remove unnecessary calls to SetState.
992 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
994         * threadpool.c: asynchronously create a set of idle threads upon first
995         use of the threadpool. SetMinThreads will now start the appropriate
996         number of idle threads if they are not already running. The default is
997         1 threadpool thread per CPU. Increased the maximum number of threads
998         per CPU to 10.
1000 2008-10-22  Martin Baulig  <martin@ximian.com>
1002         Revert r116521 from Zoltan, it breaks the debugger:
1004         * class.c (mono_class_get_virtual_methods): New helper function to iterate
1005         over the virtual methods of a class using metadata if possible, avoiding the
1006         creation of MonoMethod's for non-virtual methods.
1007         
1008         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
1009         get_virtual_methods () to iterate over the virtual methods of classes.
1011 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1013         * threads.c: when creating a threadpool thread, set its state to
1014         'background'.
1015         * threadpool.c: reset the background state of a threadpool thread
1016         after finishing each work item
1017         Bug #437888 fixed.
1019 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
1021         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
1022         
1023         * class.c (mono_class_setup_vtable_general): Add an optimized version for
1024         generic instances which works by inflating the methods in the container
1025         class's vtable.
1027         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
1028         variant which doesn't make a copy if no inflation was done.
1029         (mono_class_setup_fields): Use it.
1031         * metadata.c (mono_metadata_get_shared_type): New helper function to
1032         return a shared instance of a given MonoType.
1034         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
1035         a copy of most non-generic types.
1037 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
1039         * threadpool.c: remove one more GetSystemInfo () call.
1041 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1043         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
1044         use the code in mono-proclib.h to get processor information.
1046 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1048         * appdomain.c: fixed the logic that determines whether assemblies in a
1049         directory are "shadow-copied" or not. Bug #433483 fixed.
1051 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
1053         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
1054         warning.
1056 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
1058         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
1059         returning a vtype.
1061         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
1062         reflection.c: Use mono_field_get_name () for accessing a field's name.
1064         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
1065         class.c
1067         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
1068         field.
1070         * loader.c (find_method_in_class): Reenable the metadata optimization by
1071         not using it for generic instances.
1073         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
1074         data/def_type fields from MonoClassField into a separate structure.
1075         (struct MonoClassField): Remove data/def_type fields.
1076         (struct _MonoClass): Add a 'field_def_values' array to store the default
1077         values/RVA for fields.
1079         * class.c reflection.c: Update after the changes.
1080         
1081         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
1082         for accessing field->data.
1084         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
1086         * loader.c (find_method_in_class): Revert the last change for now as
1087         it breaks Mono.C5 unit tests.
1089         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
1090         'field_generic_types' and 'field_objects' which contain the information
1091         previously stored in MonoInflatedField.
1092         (MonoInflatedField): Delete.
1093         (struct _MonoClassField): Delete 'generic_info' field.
1095         * reflection.c: Store the information which was previously in 
1096         field->generic_info in MonoDynamicGenericClass instead.
1098         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
1099         MonoClassField changes.
1101 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
1103         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
1104         store the value inside the data array of the MonoMethodWrapper.
1105         This saves memory, is faster and fixes the lifetime issues (methods
1106         were never removed from the hash previously). May also fix bug#436996.
1108 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
1110         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
1111         generic instances, compute the type from the generic definition instead of
1112         looking in field->generic_info.
1114         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
1115         for inflated fields, the only user was get_fieldref_token () which no
1116         longer needs it.
1118         * class.c (mono_class_init): Revert the last change as it seems to cause
1119         crashes.
1121         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
1122         bytes on 64 bit platforms.
1124         * object.c (mono_class_create_runtime_vtable): Fix a warning.
1125         
1126         * object.c (mono_class_create_runtime_vtable): Don't initalize
1127         field->data/field->def_type here, it is done lazily by 
1128         mono_class_get_field_default_value ().
1130         * icall.c (ves_icall_get_enum_info): Call 
1131         mono_class_get_field_default_value () instead of directly accessing
1132         field->data and field->def_type.
1134         * object.c (get_default_field_value): Ditto.
1136         * class.c (mono_field_get_data): Ditto.
1137         
1138         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
1139         call for generic instances.
1141         * loader.c (find_method_in_class): If klass != from_class, then inflate
1142         the method with the context of from_class, since the caller assumes this.
1144 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
1146         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
1147         for accessing method->slot.
1149 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
1151         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
1153 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
1155         * class.c (mono_method_get_vtable_index): Use
1156         mono_method_get_vtable_slot () for accessing method->slot.
1158         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
1159         accessing klass->methods.
1161         * class.c (mono_method_get_vtable_slot): New helper function.
1162         (mono_class_get_vtable_entry): Ditto.
1163         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
1164         accessing method->slot.
1166         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
1167         method to get_inflated_method ().
1169         * class.c (mono_class_get_inflated_method): New helper method to obtain
1170         a method of an inflated class without calling setup_methods ().
1171         (mono_class_get_cctor): Use get_inflated_method.
1173         * generic-sharing.c (mono_class_get_method_generic): Ditto.
1174         
1175         * marshal.c image.c: Lazily create all the marshal caches.
1177         * image.c (mono_image_init): Move initialization of runtime_invoke
1178         caches to marshal.c.
1180         * marshal.c (get_cache): New helper function to lazily initialize a 
1181         wrapper cache.
1182         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
1184         * debug-helpers.c (mono_method_full_name): Include generic arguments.
1186 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
1188         * loader.c: fixed check for interface type.
1190 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
1192         * appdomain.c: check for NULL setup before it's referenced.
1195 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
1197         * class.c: remove the unused old vtable setup code.
1199 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
1201         * class.c: don't depend on interface order in
1202         setup_interface_offsets (bug #435777).
1203         * reflection.c: sort the InterfaceImpl table (patch from
1204         Jb Evain  <jbevain@novell.com>).
1206 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
1208         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
1209         the low level assemblies lock.
1211 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
1213         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
1214         object.c, reflection.c, socket-io.c, threads.c: introduced
1215         mono_framework_version () to return the major framewrok version,
1216         changed the code that was using more complex patterns to use it.
1217         Return the correct value for PlatformID for OSX.
1219 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
1221         * icall-def.h, process.h, process.c: added an icall to get info about
1222         processes using mono-proclib.
1224 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
1226         * mono-perfcounters.c: use the mono-proclib functions to
1227         access process information.
1229 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
1231         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
1232         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
1233         reflection.c: remove rawbuffer usage: mmap support is more sanely
1234         provided by utils/mono-mmap.
1236 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
1238         * gc.c: use posix semaphores when possible so that
1239         mono_gc_finalize_notify() is signal safe.
1241 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
1243         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
1244         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
1245         be #ifdef-ed out, the linker will remove the rest.
1247         * marshal.c: Implement DISABLE_COM.
1249         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
1251 2008-10-11  Miguel de Icaza  <miguel@novell.com>
1253         * locales.c (string_invariant_compare_char): Optimization: do not
1254         call g_unichar_type unless we actually need the information.
1256 2008-10-10  Mark Probst  <mark.probst@gmail.com>
1258         * object.c, class-internals.h: Also create remoting trampolines
1259         for generic methods.  Pass the domain to the remoting trampoline
1260         creation function, too.
1262 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
1264         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
1266 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1268         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
1269         Vector4ui.
1271 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1273         * assembly.c:
1274         * locales.c: remove the use of g_strdown. Fixes bug #322313.
1276 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
1278         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
1279         for the least possible amount of time (extending the fix in r113458).
1281 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1283         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
1285 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1287         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
1288         as possible simd intrinsic types.
1289         Optimized the test to check for the common prefix first.
1291 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
1293         * class.c: back out part of a broken optimization committed on
1294         May 23th (bug #433908).
1296 2008-10-09  Mark Probst  <mark.probst@gmail.com>
1298         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
1299         Win32.  Should fix #432388 for most cases until we have the new
1300         profiler on Win32.
1302 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
1304         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
1305         instead of using inst->id so the hash is stable for AOT.
1307 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1309         * appdomain.c:
1310         * icall.c: create a .ini file for shadow-copied assemblies that
1311         contains the location of the original assembly. Use this to return the
1312         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
1313         Also fix the number of '/' for windows when returning the CodeBase.
1314         Fixes bug #430920.
1316 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1318         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
1320         Code is contributed under MIT/X11 license.
1322 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1324         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
1325           if if the class vtable needs initialized.
1327         Code is contributed under MIT/X11 license.
1329 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1331         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
1332           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
1333           STRING->BSTR, and CLASS->INTERFACE.
1335         Code is contributed under MIT/X11 license.
1337 2008-10-07  Marek Habersack  <mhabersack@novell.com>
1339         * sysmath.h: changed the declaration of the
1340         ves_icall_System_Math_Round2 icall by adding an extra
1341         away_from_zero parameter.
1343         * sysmath.c (ves_icall_System_Math_Round2): added support for
1344         away from zero rounding. The icall now takes an extra boolean
1345         parameter to signal that away from zero operation is requested.
1347 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
1349         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
1350         the delegate klass so it can work with full-aot.
1351         (mono_marshal_get_delegate_end_invoke): Ditto.
1352         (mono_marshal_get_delegate_invoke): Ditto.
1354 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
1356         * gc.c, attach.h, attach.c: remove a bad pattern:
1357         add_finalizer_callback () is not implemented correctly, it can't
1358         without adding more overhead to the finalizer loop and it's not
1359         even needed, since we know exactly what we need to call, so there is
1360         no need to do so through an expensive function pointer.
1362 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
1364         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
1365         for the no-gc case.
1366         * attach.c (mono_attach_init): Remove the #ifdef.
1368 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
1370         * attach.c (mono_attach_init): Don't use
1371         mono_gc_add_finalizer_thread_callback when compiling without GC.
1372         Fixes #432306.
1373         
1374         Code is contributed under MIT/X11 license.
1376 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
1378         * class.c (mono_class_create_from_typedef): Remove the 
1379         #ifndef DISABLE_SIMD stuff.
1381 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
1383         * class-internals.h (MonoClass): Added simd_type bit field.
1385         * class.c (mono_class_create_from_typedef): Check if type is a simd
1386         intrinsic.
1388 2008-10-03  Mark Probst  <mark.probst@gmail.com>
1390         * object.c (mono_method_add_generic_virtual_invocation): Only add
1391         instantiations to the thunk whose count is at least as large as
1392         the threshold.
1394 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1396         * icall.c: changed the Type of the exception thrown when trying to
1397         invoke a constructor on an abstract class. Part of the fix for bug
1398         #324185.
1400 2008-10-02  Mark Probst  <mark.probst@gmail.com>
1402         * class.c, class-internals.h (mono_method_get_vtable_index): New
1403         function which returns the index into the vtable and properly
1404         handles inflated virtual generic methods.
1406 2008-10-01  Mark Probst  <mark.probst@gmail.com>
1408         * object.c, domain.c, object-internals.h, domain-internals.h:
1409         Generalize IMT thunk machinery to also handle thunks for virtual
1410         generic method invokes.  When a virtual generic method is invoked
1411         more than a number of times we insert it into the thunk so that it
1412         can be called without lookup in unmanaged code.
1414         * generic-sharing.c, class-internals.h: Fetching a
1415         MonoGenericInst* for a method from an (M)RGCTX.
1417 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
1419         * marshal.c (emit_marshal_string): Applied a variant of a patch by
1420         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
1421         marshalling. Fixes #431304.
1423 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
1425         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1426           handle when ref is specified without In or Out.
1428         Code is contributed under MIT/X11 license.
1430 2008-09-30  Mark Probst  <mark.probst@gmail.com>
1432         * loader.c (mono_get_method_constrained): Don't expand method with
1433         the class's context, because it's already a method of that class.
1435 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
1437         * attach.c : should be correct build fix.
1439 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
1441         * attach.c: Fix the previous change.
1443 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
1445         * attach.c : quick w32 build fix.
1447 2008-09-27  Miguel de Icaza  <miguel@novell.com>
1449         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
1450         crashes MonoDevelop: #430455.
1452 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
1454         * domain-internals.h (struct _MonoDomain): Move most fields used only by
1455         the JIT do MonoJitDomainInfo in ../mini/mini.h.
1457         * domain.c: Remove initialization/cleanup of the removed fields.
1459 2008-09-27  Mark Probst  <mark.probst@gmail.com>
1461         * class.c (mono_class_generic_sharing_enabled): Enable generic
1462         code sharing for PPC.
1464 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
1466         * attach.c : Fixing the Windows builds.
1468         Code is contributed under MIT/X11 license.
1470 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1472         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
1473         the default generic sharing mode to 'all'.
1475 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1477         * generic-sharing.c, class-internals.h: New function for checking
1478         whether a method needs a static RGCTX invoke wrapper.  A few
1479         funtions moved from mini/generic-sharing.c.
1481         * icall.c: New function used.
1483 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1485         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1486         Static RGCTX invoke wrapping applies to value type methods, too.
1488         * class.c (mono_class_setup_vtable_general): In generic-shared
1489         value types, wrap methods with a static RGCTX invoke wrapper.
1491 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1493         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
1494         osx build.
1496 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
1498         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
1499         register a callback which is called when the finalizer thread is woken
1500         up.
1501         (finalizer_thread): Call the callback if it exists.
1503         * attach.h attach.c: New files, implementing the attach mechanism.
1505         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
1506         
1507         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
1508         by the previous change.
1510 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
1512         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
1513         loader.c, marshal.c, metadata-internals.h, metadata.c,
1514         method-builder.c, object.c, reflection.c: introduced specific functions
1515         to allocate from the domain and image mempools and cleaned up most of
1516         the code to use them (still missing a few in reflection.c).
1517         Keep the loader bytes counter updated.
1519 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
1521         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
1522         loader-related counters.
1524 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
1526         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
1527         added more MS-compatible counters.
1529 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
1531         * class.c (mono_class_setup_fields): Call setup_fields before accessing
1532         class->blittable. Fixes #428217.
1534 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
1536         * reflection.c (mono_image_get_field_on_inst_token): Call 
1537         field_encode_signature () since that handles custom modifiers too.
1538         Fixes #424663.
1540 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
1542         * reflection.c (add_custom_modifiers): New helper function to merge custom
1543         modifiers stored in objects to a MonoType.
1544         (fieldref_encode_signature): Encode custom modifiers.
1545         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
1546         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
1548 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
1550         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
1551         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
1552         64-bit IL only images because imports are not resolved for IL only images.
1553         Special thanks to Bill Holmes for finding this bug and testing the patch.
1554         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
1556         Contributed under MIT/X11 license.
1558 2008-09-19  Miguel de Icaza  <miguel@novell.com>
1560         * mono-config.c (dllmap_start): Add support for the bits keyword
1561         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
1563 2008-09-19  Mark Probst  <mark.probst@gmail.com>
1565         * reflection.c (inflate_mono_method): When the class the method is
1566         to be inflated for is itself not inflated, just return the method.
1568 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
1570         * mono-perfcounters.c: use more user friendly process instance names.
1572 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
1574         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1575           handle "[in] ref" and "[in][out] ref" cases.
1577         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
1578           to mono_mb_create_method.  This was causing problems calling native to
1579           managed passing Variants by value.
1581         Code is contributed under MIT/X11 license.
1583 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
1585         * class.c (can_access_internals): Call mono_assembly_load_friends ()
1586         before accessing the friend_assembly_names field.
1588         * assembly.c (mono_assembly_load_friends): Make this callable multiple
1589         times.
1590         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
1591         called lazily when it is needed.
1593         * metadata-internals.h (struct _MonoAssembly): Add 
1594         'friend_assembly_names_inited' flag.
1596 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
1598         * mono-perfcounters-def.h: fix the types of a few counters.
1599         * mono-perfcounters.c: implemented the instance names getter
1600         and a few bugfixes.
1602 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
1604         * culture-info-table.h : regenerated.
1606 2008-09-17  Robert Jordan  <robertj@gmx.net>
1608         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
1609         context bound objects. Fixes #415577.
1611         Code is contributed under MIT/X11 license.
1613 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
1615         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
1616         implementation (bug #423582).
1618 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
1620         * object.c (mono_object_get_virtual_method): Handle the case method->slot
1621         is not set. Fixes #426309.
1623 2008-09-16  Jb Evain  <jbevain@novell.com>
1625         * class.c (mono_class_from_name): fix the exported type look up
1626         when the type is defined in a referenced assembly.
1628 2008-09-16  Jb Evain  <jbevain@novell.com>
1630         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
1631         increment the next index counter on each iteration to make that work
1632         for more than one type forwarder. Unmanaged part to fix #422929.
1634 2008-09-15  Mark Probst  <mark.probst@gmail.com>
1636         * object-internals.h: enum ComInterfaceType in
1637         MonoInterfaceTypeAttribute is guint32, not guint16.
1639 2008-09-12  Mark Probst  <mark.probst@gmail.com>
1641         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
1642         writing code.
1644 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1646         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
1647         not gboolean.
1649 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1651         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
1652         Endianness fixes for MonoSymbolFileOffsetTable.
1654 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1656         * process.c (complete_path) : Removing quotes from the 
1657           input path.  The glib file routines do not handle file paths
1658           that have quotes around them.
1660         Code is contributed under MIT/X11 license.
1662 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1664         * socket-io.h : Adding a comment to provide locations where 
1665           changes to MonoSocketAsyncResult need to be synced.
1667         Code is contributed under MIT/X11 license.
1669 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
1671         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
1672         parameters as well. Fixes #425001.
1674 2008-09-08  Miguel de Icaza  <miguel@novell.com>
1676         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
1677         windows build.
1679 2008-09-07  Miguel de Icaza  <miguel@novell.com>
1681         * console-io.c: Add support for tracking the window size if it
1682         changes.
1684         The setup is very simple: the TtySetup function will now return a
1685         pointer to a location in memory that tracks the current console
1686         size.  The managed code checks its current value every time its
1687         queried against the last value set, and updates accordingly.
1689         With this setup we can work with multiple consoles, and we do not
1690         require to poke into managed code from a signal handler.
1692         Additionally, the environment for COLUMNS and LINES is now handled
1693         in unmanaged code.
1695         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
1697 2008-09-07  Mark Probst  <mark.probst@gmail.com>
1699         * marshal.c (mono_type_native_stack_size): Treat
1700         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
1702 2008-09-04  Jb Evain  <jbevain@novell.com>
1704         * class.c (mono_class_is_assignable_from): fix assignability of nullables
1705         to nullables.
1707 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
1709         * verify.c (verify_type_compatibility_full): Revert change
1710         to allow converting a native int to unmanaged pointer be verifiable
1711         under non-strict mode.
1712         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
1714         * verify.c: Added some TODOs.
1716 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
1718         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
1719           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
1720           Changed to use GlobalAlloc for the memory returned on Windows platforms.
1722         Code is contributed under MIT/X11 license.
1724 2008-09-02  Jb Evain  <jbevain@novell.com>
1726         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
1728 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
1730         reflection.c (typebuilder_setup_fields): Handle classes with
1731         explicit size.
1733 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
1735         class.c (mono_class_setup_events): Add memory barrier due to
1736         double checked locking.
1737         
1738         class.c (mono_class_setup_properties): Same.
1740 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
1742         * class.c (mono_class_is_assignable_from): Fix the build.
1743         
1744         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
1745         before accessing klass->interface_bitmap. Fixes #421744.
1747 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
1749         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
1750         the runtime into no-exec mode, useful when running the AOT compiler.
1752         * appdomain.c gc.c object.c: Avoid executing managed code when running
1753         in no-exec mode.
1754         
1755         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
1757         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
1758         special case when the mono_assembly_loaded () returns NULL because the 
1759         search hook is not installed.
1761 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
1763         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
1764         crashes in bstr marshalling on linux.
1766 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1768         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
1769         with more than one parameter.
1771 2008-08-24  Miguel de Icaza  <miguel@novell.com>
1773         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
1774         start/stop flow control as well when turning off ICANON (allows
1775         C-s and C-q to be read by Console.ReadKey).
1777 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1779         * class.c (mono_class_init): Move the initialization of nested classes
1780         into mono_class_get_nested_types (). Fixes #418433.
1782         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
1783         flag.
1785         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
1786         iterating tough the nested classes of a class.
1788 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
1790         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
1791         on arm.
1793 2008-08-22  Miguel de Icaza  <miguel@novell.com>
1795         * console-io.c (sigcont_handler): Support signal chaining for
1796         SIGCONT.
1798         (console_set_signal_handlers): Use best practices with sigaction,
1799         clear the structure before using it. 
1801 2008-08-22  Robert Jordan  <robertj@gmx.net>
1803         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
1804         Fix the Windows build.
1806 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
1808         * class.c (mono_class_generic_sharing_enabled): Make the default
1809         sharing mode 'corlib'.
1811 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
1813         * console-io.c (console_set_signal_handlers): Fix a warning.
1815         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
1816         method normally, the JIT will take care of avoiding recursion.
1818 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
1820         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
1822         Code is contributed under MIT/X11 license.
1824 2008-08-20  Miguel de Icaza  <miguel@novell.com>
1826         * console-io.c (sigcont_handler): We need to restore the entire
1827         termios state, not only the original settings, as things like echo
1828         can be controlled after this (Booish exposes this issue with its
1829         own ReadLine implementation).
1831         Additionally, we need to set the terminal back into keypad_xmit
1832         mode.
1833         
1834         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
1835         string as a paramter as well.   Otherwise we get different
1836         keyboard sequences.
1838 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
1840         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
1841         delegates with byref out parameter passing. Fixes #351520.
1843         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
1844         a generic context.
1845         (mono_type_get_desc): Add the type arguments for GENERICINST.
1846         (mono_method_full_name): Stringify the class name using mono_type_full_name
1847         so it picks up generic arguments.
1849 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
1851         * console-io.c: Removed debug output.
1853 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
1855         reflection.c (mono_reflection_create_runtime_class): Alloc
1856         the nested classes linked list using the dynamic image mempool.
1857         Fixes leak in corlib compilation.
1859 2008-08-19  Miguel de Icaza  <miguel@novell.com>
1861         * console-io.c: Fix incredibly annoying behavior on the console
1862         after resuming execution after control-z.   This affected every
1863         console application.
1865 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
1867         * mempool-internals.h: Header for mono private mempool functions. The first
1868         two function are for allocating glib linked lists using pools.
1870         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
1872         * Makefile.am: Added mempool-internals.h.
1874 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
1876         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
1877         (mono_domain_free): Ditto.
1879         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
1880         be used by the JIT to store its domain-specific information, instead of putting
1881         it directly into MonoDomain.
1883         * domain.c (mono_install_create_domain_hook): New helper function to install
1884         a hook which initializes domain->runtime_info.
1886         * domain.c (mono_install_free_domain_hook): Ditto.
1887         
1888 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
1890         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
1891         asserting if the ares parameter is null.
1893         * mono-perfcounters.c: Fix warnings.
1895         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
1896         is not needed, don't check for interruptions either.
1897         (mono_marshal_get_delegate_end_invoke): Ditto.
1899 2008-08-15  Marek Habersack  <mhabersack@novell.com>
1901         * mono-perfcounters.c (predef_readonly_counter): added support for
1902         reading the ASP.NET Requests Queued counter from another process.
1904 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
1906         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
1907         MonoImage to simplify the AOT code.
1909 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
1911         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
1912         marshalling. Fixes #416078.
1914 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1915         
1916         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
1917         it is set, looking up the icall address is deferred to the JIT, since 
1918         in embedded scenarios, the icall might not be registered in the runtime
1919         doing the AOT compilation. Backported from the 2.0 branch.
1921 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1923         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
1924         Fixes #415621.
1926 2008-08-05  Marek Habersack  <mhabersack@novell.com>
1928         * Makefile.am: added support for cross-compilation.
1930 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
1932         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
1934 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1936         * mono-perfcounters.c: jitted methods and jitted bytes counters.
1938 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
1940         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
1941         mono-perfcounters.c: performance counters implementation.
1943 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
1945         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
1946         to gpointer, letting the AOT code decide what to store in it.
1948 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
1950         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
1951           mono_class_setup_methods if the methods are not initialized.
1953         Code is contributed under MIT/X11 license.
1955 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1957         * verify.c: Remove some debug code I commited by accident.
1959         * verify.c (mono_method_is_valid_in_context): Change the return value
1960         to make possible to distinguish between invalid and unverifiable.
1962         * verify.c (verifier_load_method): Don't return NULL for unverifiable
1963         methods.
1965 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1967         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
1968         constraints. Fixes regression in gtest-253.
1970 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1972         * verify.c (mono_verifier_verify_class): Don't allow generic types
1973         with explicit layout.
1975         * verify.c (mono_method_verify): Check locals and argument types.
1977 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
1979         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
1980         wait if the thread is in StopRequested state.
1982         * class.c (mono_class_from_name): Refactor the module searching code into
1983         a separate function so it can be reused in the AOT case too.
1985 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1987         * verify.c (mono_type_is_valid_in_context): Improve the error message.
1988         Check both the type and it's generic type definition for loader errors.
1989         
1990         * verify.c (mono_method_is_valid_in_context): Don't generate another
1991         error when a type errors occur, this leads to the wrong exception been
1992         thrown.
1994 2008-07-28  Dick Porter  <dick@ximian.com>
1996         * icall-def.h
1997         * process.c
1998         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
1999         New internal calls to duplicate and close a process handle.
2001 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
2003         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
2005 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
2007         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
2009 2008-07-27  Robert Jordan  <robertj@gmx.net>
2011         * class.c (mono_class_init): Don't compute class.has_finalize for
2012         valuetypes. Fixes #412477.
2014 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
2016         * verify.c: Implement constraint equivalence checking.
2017         This is required when a generic parameter is used as
2018         argument to a constrained one.
2020         Fixes #410637.
2022 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
2024         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2026         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
2028         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
2029         synch with managed object layout.
2031 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
2033         * verify.c (do_branch_op): Handle valuetypes and generic
2034         arguments properly.
2036         * verify.c (do_cmp_op): Same.
2038         Fixes #410383.
2040 2008-07-24  Mark Probst  <mark.probst@gmail.com>
2042         * generic-sharing.c: Fix memory leaks.
2044         * class.c, class-internals.h: Make
2045         mono_class_inflate_generic_type_with_mempool() non-static.
2047 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
2049         * pedump.c (dump_verify_info): Dump full class name.
2051 2008-07-24  Mark Probst  <mark.probst@gmail.com>
2053         * generic-sharing.c: Removed some old code that didn't do anything.
2055 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
2056         * profiler.c: Added runtime_initialized_event,
2057         mono_profiler_install_runtime_initialized and
2058         mono_profiler_runtime_initialized. This new hook tells the profiler
2059         when the runtime is sufficiently initialized to be able to call
2060         mono_thread_attach on the root appdomain.
2061         * profiler.h, profiler-private.h: Likewise.
2063 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
2065         * verify.c (do_cast): Do boxing for generic arguments as well.
2067         * class.c (is_nesting_type): Drop generic instantiations before
2068         checking for nesting.
2070         * class.c (can_access_instantiation): Allow access to generic
2071         arguments.
2073 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
2075         * verify.c (verify_class_for_overlapping_reference_fields):
2076         On some cases, the field size might be zero, guard against that.
2077         Fix the explicit layout check to work as expected.
2079 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
2081         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
2082         mono_thread_resume () during shutdown, since the thread we want to abort
2083         might be suspended.
2085 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
2087         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
2088         warning.
2090         * debug-mono-symfile.c: Fix a warning.
2092         * mono-perfcounters.c (get_cpu_times): Fix a warning.
2094         * object.c (mono_class_vtable): Check if exception_type is set, and return
2095         NULL as defined by the function comments.
2097 2008-07-22  Mark Probst  <mark.probst@gmail.com>
2099         * mempool.c: Use malloc for every single mempool allocation if the
2100         configure option is set.  This makes it easier to track mempool
2101         allocations with tools like Valgrind.
2103 2008-07-22  Jb Evain  <jbevain@novell.com>
2105         * reflection.c (create_dynamic_mono_image): emit the same
2106         metadata version that SL2 does when creating a SL2 image.
2108 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
2110         * icall-def.h:
2111         * icall.c: New icall System.Enum:get_hashcode. This function
2112         avoids the overhead of boxing the enum to the underlying type.
2114 2008-07-21  Mark Probst  <mark.probst@gmail.com>
2116         * reflection.c (mono_method_get_object): Don't let static RGCTX
2117         invoke wrappers get into MonoReflectionMethods.
2119 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
2121         * object-internals.h:
2122         * object.c: New mono_runtime_class_init_full function
2123         that makes throwing the exception optinal.
2125         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
2126         for the case where the exception object is supplied.
2128 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
2130         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
2131         old ld versions.
2133         Contributed under MIT/X11 license.
2135 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2137         * string-icalls.c (ves_icall_System_String_InternalSplit):
2138         Optimize array allocation by caching the MonoClass of the
2139         array type.
2141         * icall.c (ves_icall_Type_GetMethodsByName): Same.
2143         * reflection.c (mono_param_get_objects): Same.
2145 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2147         * icall-def.h:
2148         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
2149         It inflates the given type using the class context.
2151 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2153         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
2154         the vtable if it already exists.
2156         * object-internals.h: Add mono_class_try_get_vtable as part of the
2157         internal API.
2159         * reflection.c (mono_type_get_object): Use the MonoObject from the
2160         vtable when possible. Reduces locking contention on reflection heavy
2161         code.
2163 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
2165         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
2166         g_bit_nth_msf () since that macro is not implemented in eglib.
2168 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
2170         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
2171         on platforms which do not support it.
2173 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
2175         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
2177 2008-07-11  Martin Baulig  <martin@ximian.com>
2179         * mono-debug-debugger.h
2180         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
2182         * mono-debug-debugger.c
2183         (_mono_debugger_interruption_request): New global volatile variable.
2184         (mono_debugger_check_interruption): New public function.
2186         * threads.c
2187         (mono_thread_current_check_pending_interrupt): Call
2188         mono_debugger_check_interruption().
2189         (mono_thread_interruption_checkpoint_request): Likewise.
2191 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2193         * verify.c: Add more type checks for loaded types. Verify the result
2194         handle from ldtoken.
2196 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2198         * loader.c (field_from_memberref): Don't crash if the field
2199         wasn't found.
2201 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2203         * verify.c: Verify if type and method instantiations
2204         don't have invalid VAR or MVAR arguments.
2206 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2208         * verify.c: Fix double free of function pointer list.
2210 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2212         * object.c (mono_string_to_utf8): Comment the new code as it
2213         breaks under eglib.
2215 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
2217         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
2219 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
2221         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
2222           is not throw too many times.
2224         Code is contributed under MIT/X11 license.
2226 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
2228         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
2229         debugging is turned off.
2231 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
2233         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
2235 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2237         * class-internals.h, class.c: Added new generic sharing option:
2238         Share only stuff in System.Collections.Generic, which is now the
2239         default.
2241 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2243         * generic-sharing.c, class-internals.h: New function for getting a
2244         generic method in a generic class given the corresponding method
2245         for a different instantiation of the class.  Partly refactored
2246         from mini-trampolines.c.
2248         * class.c: Make sure generic methods have a class_inst if they are
2249         part of a generic class.
2251         * metadata.c (mono_type_stack_size_internal): Handle type
2252         variables.
2254 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2256         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
2257         Signifies whether information on the this/vtable/mrgctx variable
2258         is available.
2260 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2262         * object.c, object-internals.h, icall.c: New function
2263         mono_delegate_ctor_with_method(), which does the same as
2264         mono_delegate_ctor(), but takes an explicit method argument
2265         instead of taking the method from the jit info.
2267         * marshal.c: When creating a delegate with an inflated method take
2268         the "this" argument as the target class for the castclass.
2270 2008-07-03  Mark Probst  <mark.probst@gmail.com>
2272         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
2273         mono_jit_info_table_find() to perform very badly in some cases.
2275 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
2277         * icall.c (type_from_typename): Handle 'string'.
2279         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
2280         wrappers into the wrapper_hash, since the key is not a MonoMethod.
2282 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
2284         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
2286         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
2287         number of available managed allocator types.
2289         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
2290         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
2292 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
2294         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
2295         which is a low level lock protecting just the 'jit_code_hash' hash table.
2297         * domain.c: Initialize+cleanup jit_code_hash_lock.
2298         
2299 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2301         * coree.c (mono_load_coree): Set coree_module_handle global variable only
2302         after initialization.
2304         * coree.h: Make MonoFixupExe internal.
2306         Contributed under MIT/X11 license.
2308 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2310         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
2311         because that is platform independent. Check NumberOfRvaAndSizes in PE32
2312         as well.
2313         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
2314         image being loaded is a CLI image and _CorValidateImage gets called.
2316         * coree.h: Add MonoLoadImage.
2318         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
2319         instead of LoadLibrary.
2321         Contributed under MIT/X11 license.
2323 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
2325         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
2326         for any primitive type.
2328 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
2330         * object.c (mono_array_new_specific): Optimize this and the other allocation
2331         functions a bit.
2332         
2333         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
2334         domains too if mono_dont_free_domains is set.
2336         * domain-internals.h (mono_dont_free_domains): New internal option controlling
2337         whenever to free appdomain data after it has been unloaded.
2339         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
2340         
2341 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
2343         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
2344         (mono_method_get_equivalent_method): Fix a warning.
2346         * object.c (mono_message_init): Avoid looking up array types for each call.
2348 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
2350         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
2351         call.
2353         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
2354         even more.
2356         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
2357         each iteration.
2359         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
2360         fields of an enum.
2362 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2364         * object.c (mono_value_box): Fix boxing of nullables.
2366 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
2368         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
2369         mono_module_handle that is defined by the linker; no initialization required.
2370         * coree.h: Remove mono_module_handle, add __ImageBase, update
2371         mono_image_open_from_module_handle.
2372         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
2373         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
2374         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
2375         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
2376         to 4 GB away from image base address. IA64 version is not tested but was very
2377         easy to implement and should work if we ever need it.
2378         * domain.c (mono_init_internal): Avoid system error message boxes.
2379         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
2380         with has_entry_point. Handle do_mono_image_load fauilre correctly.
2381         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
2382         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
2383         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
2385         Contributed under MIT/X11 license.
2387 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2389         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
2390         as part of the private mono API.
2391         
2392         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
2393         Do proper argument checking for methods that belong to generic classes.
2394         Do proper type resolution for GMFH/2.
2395         Fixes #377324.
2396         
2397 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2399         * verify.c (do_switch): Fix a memory corruption bug with
2400         the jump index is out of bound.
2402 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2404         * verify.c: Disable debug code.
2406 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2408         * reflection.c (mono_image_get_methodbuilder_token): Use
2409         mono_image_get_methodspec_token_for_generic_method_definition
2410         instead of mono_image_get_memberref_token. We cache more memberef
2411         entries now.
2413 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2415         * verify.c: Inflate exception clause types.
2416         Fixes #402606.
2417         
2418 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2420         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
2421         name.
2423         * reflection.c (mono_image_get_ctorbuilder_token): Same.
2425         * reflection.c (mono_image_create_method_token): Same.
2427 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2429         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
2430         It does the same as mono_image_get_methodref_token but works on
2431         MethodBuilder.
2433         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
2434         and always generate a methodspec. This follows the old behavior and fixes
2435         the regressions in System.Core. 
2437 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
2439         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
2440         don't event mono_class_get () succeeds. Fixes #402182.
2442 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2444         * metadata-internals.h: Added MonoDynamicImage::methodspec
2445         hashtable to store methodspec tokens created for MethodBuilders.
2447         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
2448         MethodBuilders as open instantiations if a methodspec was requested.
2450         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
2452         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
2454         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
2456         Fixes bug #349190.
2458 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2460         * loader.c (method_from_methodspec): Avoid crashing if the
2461         method lookup fails.
2463 2008-06-20  Dick Porter  <dick@ximian.com>
2465         * socket-io.c (get_socket_assembly): Cope with Moonlight network
2466         classes being in a different assembly.  Fixes bug 399184.
2468 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
2470         * loader.c (mono_loader_init): Make this callable multiple times.
2471         (mono_dllmap_insert): Call mono_loader_init () so this works even before
2472         the runtime is initialized. Fixes #401755.
2474 2008-06-19  Dick Porter  <dick@ximian.com>
2476         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
2477         Fixes bug 349688.
2479 2008-06-19  Dick Porter  <dick@ximian.com>
2481         * socket-io.c:
2482         * icall-def.h: Implement Socket generic Send() and Receive()
2483         methods.  Fixes bug 395168.
2485 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
2487         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
2489         Contributed under MIT/X11 license.
2491 2008-06-18  Martin Baulig  <martin@ximian.com>
2493         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
2494         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
2495         set to 80.0.  The debugger <-> runtime interface is now frozen as
2496         well.   
2498         * mono-debug.c
2499         (mono_debug_debugger_version): Bump to 4.
2501 2008-06-18  Martin Baulig  <martin@ximian.com>
2503         * debug-mono-symfile.c
2504         (load_symfile): Don't check the minor version.
2506         * debug-mono-symfile.h: Bump the version number to 50.0.
2508 2008-06-18  Martin Baulig  <martin@ximian.com>
2510         * debug-mono-symfile.c
2511         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
2512         minimum required version.
2514 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2516         * reflection.c (mono_custom_attrs_from_property): Fix support for
2517         retriveving cattrs of dynamic inflated generic types.
2519         * reflection.c (mono_custom_attrs_from_event): Same.
2521         * reflection.c (mono_custom_attrs_from_field): Same;
2523         * reflection.c (typebuilder_setup_events): Same cattrs of events.
2525         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
2526         Moved to metadata.c.
2528         * metadata.c: New functions to retrive the equivalent field, event
2529         of property from the generic type definition.
2531         * metadata-internals.h: Added new functions from metadata.c.
2533 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2535         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
2536         to cached in a mempool is used.
2538         * metadata.c (free_generic_class): In some situations field generic_info type
2539         is not properly dup'ed and leads to double free'ing.
2541         Fixes #400643.
2543 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2545         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
2546         this arguments (will be needed later for generic methods).
2547         Collect stats.
2549 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2551         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
2552         Create a static RGCTX invoke wrapper for methods which require it.
2554 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2556         * object.c, class-internals.h: New function for checking whether
2557         an individual field is special static.
2559 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
2561         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
2562         linear search since the table is sorted.
2564         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
2565         Fixes #324180.
2567 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
2569         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
2570         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
2572         * gc.c (mono_domain_finalize): Allow an infinite timeout.
2574         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
2575         
2576         * threads.c (mono_thread_request_interruption): Get rid of locking, use
2577         InterlockedCompareExchange to query and modify 
2578         thread->interruption_requested.
2580         * object-internals.h (struct _MonoThread): Change interruption_requested
2581         to a gint32 so it can be modified by atomic operations. Add 
2582         'critical_region_level' from the managed side, change small_id to a guint32,
2583         add new set of 'unused' fields.
2585         * appdomain.c: Bump corlib version.
2587 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
2589         * class.c (mono_class_from_name): Search modules as well. Fixes
2590         #322332.
2592 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2594         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
2595         templates.  Templates are generalized with an additional type_argc
2596         argument.  RGCTX templates have type_argc==0, MRGCTX templates
2597         have type_argc>0.
2599         * domain-internals.h, domain.c: New hash table for looking up
2600         MRGCTXs.
2602         * metadata.c, metadata-internals.h: Rename hash and equal
2603         functions for MonoGenericInst's and make them public.
2605         * class-internals.h: New data structures for the MRGCTX.  Macros
2606         for distinguishing slots in the RGCTX and the MRGCTX.
2608 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2610         * object.c (mono_method_get_imt_slot): Put the same methods of
2611         different instantiations of the same generic interface in the same
2612         IMT slots, to make generic sharing simpler.
2614 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2616         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
2618         * metadata.c (mono_metadata_field_info_with_mempool): Added.
2619         This function works just like mono_metadata_field_info, but
2620         accept a mempool as argument to be used allocating memory.
2622         * marshal.c (mono_marshal_load_type_info): Use new function
2623         to load marshal data into image mempool.
2625 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2627         * class.c (mono_class_inflate_generic_type_with_mempool):
2628         This function allows to inflate a generic type using
2629         a mempool.
2631         * class.c (inflate_generic_type): Take a mempool as argument
2632         and use it to do type dup'ing.
2634         * class.c (mono_class_setup_fields): Field type for generic
2635         generic classes are allocated from the image mempool.
2637         * metadata.c (free_generic_class): Inflated field type is
2638         now allocated in the image mempool.
2640 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2642         * threads.c (thread_cleanup): Free MonoThread::name.
2644 2008-06-12  Marek Habersack  <mhabersack@novell.com>
2646         * appdomain.c (ensure_directory_exists): avoid unnecessary
2647         mkdir(2) calls when the shadow directory already exists.
2648         (mono_make_shadow_copy): copy also satellite assemblies from the
2649         private bin directories.
2651 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2653         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
2654         
2655         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
2656         a page boundary. Fixes #396219.
2658 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2660         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
2661         due to double-checked locking.
2663 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2665         * assembly.c (build_assembly_name): Release memory on failure.
2667         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
2669 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2671         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
2672         memory on failure.
2674 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2676         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
2677         memory on failure.
2679 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2681         * loader.c (field_from_memberref): Check if field signature type is equal
2682         to the non-inflated type of the field. Fixes #398980.
2684 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2686         * assembly.c (mono_assembly_load_from_full): Call 
2687         mono_assembly_load_friends () outside the assemblies lock, since it can
2688         acquire the loader lock. Fixes #323696.
2690         * reflection.c (resolve_object): Inflate the inst with the context for
2691         FieldOnTypeBuilderInst. Fixes #399010.
2693 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2695         * reflection.c (mono_image_get_field_on_inst_token): Don't
2696         inflate the field to encode it's signature. If it's a
2697         VAR or MVAR it should stay that way in the signature.
2698         Fixes #399047.
2700 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2702         * reflection.c (resolve_object): Release memory of inflated types.
2704 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2706         * loader.c (mono_method_get_signature_full): Remove assert about
2707         loading a methodspec to a generic method. We have such methods, such as
2708         System.Threading.Interlocked::CompareExchange<T>.
2709         This assert was removed since it crashes the verifier when it checks
2710         methods calling CompareExchange<T>.
2712 2008-06-10  Marek Safar  <marek.safar@gmail.com>
2714         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
2715         of Type array and not MonoType.
2717 2008-06-10  Marek Habersack  <mhabersack@novell.com>
2719         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
2720         <lupus@ximian.com>
2722 2008-06-10  Martin Baulig  <martin@ximian.com>
2724         * debug-mono-symfile.h
2725         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
2726         changes to the file format, but we were generating incorrect
2727         source file indices in the line number table due to a bug, which
2728         made backtraces report an incorrect source file.
2730 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2732         * mono-debug.c: Moved mono_debug_free_method_jit_info from
2733         mini/debug-mini.c to here.
2735         * mono-debug.c (il_offset_from_address): Free memory from find_method.
2737         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
2738         use it to release structs returned by mono_debug_find_method.
2740 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
2742         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
2743         since it needs to set method->slot for all interface methods.
2745 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2747         * class-internals.h: Forgot to add.
2749 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2751         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
2753         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
2754         Lookup the custom attributes from property_hash.
2756         * reflection.c (mono_save_custom_attrs): Save the custom attributes
2757         in property_hash. Allocate all data using the image mempool.
2759         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
2760         for dynamic_custom_attrs to checks if the image is dynamic.
2762 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2764         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
2765         assemblies array.
2766         
2767         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
2768         runtime functions while holding the domain assemblies lock.
2770 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2772         * verify.c: Reapplied the last bit of the reverted changes.
2774 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2776         * verify.c: Reapplied more of the reverted changes.
2778 2008-06-09  Martin Baulig  <martin@ximian.com>
2780         * debug-mono-symfile.c (load_symfile): Check the major version
2781         first; if it's wrong, don't print the minor version in the error message.
2783 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2785         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
2786         lock instead of the domain lock to avoid deadlocks, since the thread might
2787         already hold the loader lock.
2789         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
2790         (mono_thread_attach): Ditto.
2792         * monitor.c: Use a TLS variable for holding the current thread id instead
2793         of calling pthread_self ().
2794         (mono_monitor_init_tls): New internal function to initialize the TLS
2795         variable.
2796         (mono_monitor_try_enter_internal): Put the owner == id check after the
2797         owner == 0 check.
2799         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
2800         missed optimizations when using gcc-4.3.
2802 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
2804         * reflection.c (mono_dynamic_image_free): Free the memory
2805         used by MonoGenericParam in MonoDynamicImage::gen_param.
2807         * reflection.c (mono_reflection_setup_generic_class): Allocate
2808         container from mempool.
2810         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
2811         container from mempool.
2813 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2815         * threads.c (mono_set_pending_exception): New internal function to set the
2816         pending exception of the current thread.
2817         (mono_thread_get_and_clear_pending_exception): Check for 
2818         thread->pending_exception as well.
2820         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
2822         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
2823         it can trigger a collection.
2825 2008-06-06  Martin Baulig  <martin@ximian.com>
2827         Merged the `debugger-kahalo' branch.
2829         * mono-debug.h
2830         (MONO_DEBUGGER_VERSION): Bumped to 72.
2832         * debug-mono-symfile.h
2833         (MonoSymbolFileMethodIndexEntry): Removed.
2834         (MonoSymbolFileMethodEntry): New public typedef.
2835         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
2836         (MonoSymbolFileSourceEntry): Remove everything except `index' and
2837         `data_offset'.
2838         (MonoSymbolFileMethodEntry): Removed.
2839         (MonoSymbolFileLexicalBlockEntry): Removed.
2840         (MonoSymbolFileLineNumberEntry): Removed.
2841         (MonoDebugLexicalBlockEntry): Removed.
2842         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
2843         removed `num_il_offsets' and `il_offsets'.
2844         (MonoSymbolFile): Replace `version' with `major_version' and
2845         `minor_version'.
2846         (MONO_SYMBOL_FILE_VERSION): Replace with
2847         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
2848         `MONO_SYMBOL_FILE_MINOR_VERSION'.
2850         * debug-mono-symfile.c
2851         (mono_debug_symfile_lookup_location): Add support for the new line
2852         number table format.
2854 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2856         * metadata.c (free_generic_class): Release the inflated
2857         MonoClass of dynamic generic classes if it's not a generic
2858         type definition.
2860 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2862         * verify.c: Reapplied more of the reverted changes.
2864 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2866         * reflection.c (lookup_custom_attr): Clean the cached flag or
2867         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
2868         for SRE types.
2870 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2872         * verify.c: Reapplied a small part of the reverted changes.
2874 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2876         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2878         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
2879         previously in managed code.
2880         (mono_monitor_exit): Ditto.
2881         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
2883         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
2884         the managed definition.
2886 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2888         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
2890 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2892         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
2893         
2894         * monitor.c: Add some micro optimizations.
2896         * icall.c (type_from_typename): Handle 'bool'.
2898 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2900         * verify.c: Implement constructor verification per P III 1.8.1.4.
2901         Fixes #396716.
2903 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2905         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
2906         holding the assemblies lock here too.
2908 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2910         * verify.c: Kill stack_top function.
2912 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2914         * verify.c: Kill stack_get function.
2916 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2918         * verify.c (mono_method_verify): Last change broke the build. Fixed.
2920 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2922         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
2923         more reliable.
2925         * verify.c (mono_method_verify): Inflate params and locals to avoid
2926         mismatch when checking for compatibility.
2928 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
2930         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
2931         Length prefix should be size in bytes. Fix bug #339530.
2932         
2933         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
2934         Length prefix should be size in bytes. Fix bug #339530.
2936         Code is contributed under MIT/X11 license.
2938 2008-06-05  Bill Holmes <billholmes54@gmail.com>
2940         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
2942         Contributed under MIT/X11 license.
2944 2008-06-05  Martin Baulig  <martin@ximian.com>
2946         * mono-debug-debugger.c
2947         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
2949 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
2951         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
2952         while holding the assemblies lock to prevent deadlocks. Handle the case
2953         where the search hook returns NULL but the assembly was still loaded.
2954         Fixes #323696.
2956         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
2957         modify domain state.
2959 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
2961         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
2962         * Makefile.am (pedump_LDADD): Post-process object files and
2963         add dtrace-generated object file, if necessary.
2965         Code is contributed under MIT/X11 license.
2967 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2969         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
2971 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2973         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
2975 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2977         * threads.c: Try to free everything from the delayed free table
2978         when shutting down threads, and set the variable to NULL after the
2979         table is freed so that calling
2980         mono_thread_hazardous_try_free_all() when shutting down the root
2981         domain doesn't crash.
2983 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2985         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
2986         the caller if resulting type was inflated.
2988         * class.c (mono_class_create_from_typespec): Free the MonoType if it
2989         was inflated.
2991         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
2994 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
2996         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
2997         class library tests.
2999         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
3000         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
3001         #396989.
3003 2008-06-04  Mark Probst  <mark.probst@gmail.com>
3005         * domain.c, domain-internals.h: The JIT infos are now freed by the
3006         JIT info table code.  They are freed immediately if there only a
3007         single JIT info table in circulation.  If there is more, the free
3008         is delayed via a queue.
3010         * threads.c, threads-types.h: New hazard pointer function for
3011         freeing all freeable delayed items in one sitting.
3013 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3015         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
3017         * reflection.c (typebuilder_setup_properties): Same.
3019         * reflection.c (typebuilder_setup_events): Same.
3021 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3023         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
3024         and use it for allocating memory.
3026         * reflection.c (mono_marshal_spec_from_builder): Same.
3028         * reflection.c: Change code to use new signatures.
3030         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
3032 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3034         * decimal.c (rescale128): Put back one line which was accidently commented
3035         out.
3036         
3037         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
3038         to cause crashes.
3040 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3042         * reflection.c (mono_reflection_generic_class_initialize): Name must
3043         be always malloc'ed so we can free it later on. Do this for field, property
3044         and event.
3046         * metadata.c (free_generic_class): Free field, property and event names.
3048 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3050         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
3051         instead of g_memdup.
3053         * reflection.c (typebuilder_setup_fields): Same.
3055 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3057         * decimal.c (rescale128): Optimize this function a bit more.
3059 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3061         * metadata.c (free_generic_class): Release some memory from
3062         SRE generic classes.
3064 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3066         * reflection.c (mono_image_get_generic_field_token): No reference
3067         to name is kept, free it.
3069         * reflection.c (mono_reflection_generic_class_initialize): Free
3070         more memory of the inflated field.
3072 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3074         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
3075         code.
3077 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
3079         * reflection.c (mono_dynamic_image_free): Release memory used by
3080         MonoDynamicImage::array_methods elements.
3082         * reflection.c (assembly_add_win32_resources): Release memory after
3083         encoding.
3085 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
3087         * decimal.c (log2_32): Use an optimized version for this function too.
3088         
3089         * decimal.c (log2_64): Fix this on 32 bit machines.
3091 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
3093         * class.c (mono_dup_array_type): Implement allocation using a mempool.
3095         * class.c (mono_metadata_signature_deep_dup): Same.
3097         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
3098         a mempool.
3100         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
3102         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
3104         * metadata-internals.h: Added mono_metadata_signature_dup_full.
3106         * class-internals.h: Update signatures to take a MonoMemPool.
3108 2008-06-02  Dick Porter  <dick@ximian.com>
3110         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
3111         * icall-def.h: Add
3112         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
3113         FormatMessage API to get the error text.  Fixes bug 321827.
3115 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
3117         * decimal.c: Add some micro optimizations to make decimal operations faster.
3119 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3121         * reflection.c (method_encode_clauses): Take a mempool
3122         as parameter and use it to allocate the clause array.
3124         * reflection.c (mono_image_get_field_on_inst_token): Free
3125         the inflated type after encoding it.
3127         * reflection.c (mono_dynamic_image_free): Free each element
3128         of MonoDynamicImage::gen_params.
3130         * reflection.c (reflection_methodbuilder_to_mono_method):
3131         Allocate the generic param array from the mempool.
3132         Allocate signature params from the mempool.
3134         * reflection.c (mono_reflection_generic_class_initialize):
3135         Free inflated fields after been used.
3137 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
3139         * icall.c: Reapply the memory leak fixes as they no
3140         longer make mono crash.
3142 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
3144         * reflection.c (mono_type_get_object): Don't store the suplied
3145         MonoType with type_hash. A caller which pass a type that
3146         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
3147         might end with a pointer to freed memory.
3148         The solution is to use byval_arg or this_arg from the associated
3149         MonoClass of the supplied type.
3151 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
3153         * icall.c: Revert the rest of the last change as it breaks the build too.
3155 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3157         * icall.c: Revert a leak fix as it's breaking the build.
3159 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3161         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
3163 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3165         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
3167 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3169         * icall.c: Fix some memory leaks.
3171 2008-05-29  Dick Porter  <dick@ximian.com>
3173         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
3174         async socket operations from the pending list when a socket
3175         closes.  Leaving it until the threadpool services the event
3176         exposes a race condition when a socket descriptor is reused.
3177         Fixes bug 377589.
3179 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3181         * object.c: Fix negative index check for array alocation.
3183 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3185         * icall.c, marshal.c: Delegate wrappers should skip visibility.
3186         This check is performed by the verifier for IL created delegates
3187         and by Delegate::CreateDelegate for programatically created ones.
3188         Fixes #372406.
3190 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3192         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
3193         Fix code to use mono_array_size_t instead of int.
3195         Based on patch by Luis F. Ortiz.
3196         Contributed under X11 license.
3197         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3199 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3201         * icall.c: Added ves_icall_System_Array_GetLongLength and
3202         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
3203         arrays.
3205         * icall.h: Export both new functions.
3207         Based on patch by Luis F. Ortiz.
3208         Contributed under X11 license.
3209         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3211 2008-05-28  Martin Baulig  <martin@ximian.com>
3213         The debugger now requires exactly r103463.
3215         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
3216         This version is not supported by the debugger, wait for 72.
3218 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3220         * object.h: Changed array related functions to use
3221         mono_array_size_t instead of guint32. Forgot to commit this file.
3223         Patch by Luis F. Ortiz.
3224         Contributed under X11 license.
3225         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3228 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3230         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
3231         don't define it. Use the number literal instead.
3233 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3235         * icall.c: Changed array related functions to use
3236         mono_array_size_t instead of guint32.
3238         * icall.c (ves_icall_System_Array_GetLength): Check for length
3239         overflow under MONO_BIG_ARRAYS.
3241         Based on patch by Luis F. Ortiz.
3242         Contributed under X11 license.
3243         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3245 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3247         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
3249         Based on patch by Luis F. Ortiz.
3250         Contributed under X11 license.
3251         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3253 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3255         * object.c, object.h: Changed array related functions to use
3256         mono_array_size_t instead of guint32.
3258         Patch by Luis F. Ortiz.
3259         Contributed under X11 license.
3260         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3262 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3264         * object.h: Introduced mono_array_size_t typedef. This must be used
3265         in all places an array length is expected. This is 64bits wide if
3266         MONO_BIG_ARRAYS is enabled.
3268         Patch by Luis F. Ortiz.
3269         Contributed under X11 license.
3270         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3272 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
3274         * security-manager.c class.c: Set the class exception info by calling
3275         mono_class_set_failure ().
3277         * class.c (mono_class_get_exception_data): New accessor function.
3278         (mono_class_set_failure): Store exception_data in the property hash.
3280         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
3281         the struct as a property.
3283         * loader.c (mono_get_method_full): Store the lookup result for method
3284         tokens in method_cache, the others in methodref_cache to decrease the memory
3285         usage of hash tables.
3287         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
3288         (mono_image_init): method_cache is lazy inited now.
3290         * metadata-internals.h (struct _MonoImage): Change method_cache to
3291         a MonoValueHashTable, add a separate methodref_cache.
3293 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
3295         * number-formatter.h: Fix tables to avoid arithemtic overflow in
3296           Double.ToString as exposed by Bug #383531.
3298 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
3300         * number-formatter.h: Make some tables static.
3302         * class.c (mono_method_set_generic_container): New accessor function.
3303         (mono_method_get_generic_container): Ditto.
3305         * class-internals.h (struct _MonoMethod): Remove rarely used 
3306         'generic_container' field, store it in the property hash instead. Add 
3307         'is_generic' boolean field instead.
3309         * image.c (mono_image_init): Initialize property_hash.
3310         (mono_image_close): Destroy property_hash.
3312         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
3313         hold rarely used fields of runtime structures belonging to this image.
3315         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
3316         to get/set method->generic_container.
3318         * loader.c (mono_get_method_from_token): Avoid loading the method header for
3319         generic methods.
3321 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
3323         * class.c (mono_class_inflate_generic_method_full): Don't increase
3324         mono_stats.inflated_method_count for methods found in the cache.
3326         * threads.c (mono_thread_request_interruption): Add a comment about 
3327         QueueUserAPC ().
3329 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
3331         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
3332         interface_offsets_packed table.
3333         
3334         * class.c (mono_class_init): Remove some dead code.
3336         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
3337         mono_class_setup_vtable () when CAS is active to detect security problems.
3339 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
3341         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
3343         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
3344         parameters as it's irrelevant for delegate checking.
3346 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
3348         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
3350         * class.c (mono_class_init): Control the creation of a generic vtable using
3351         a global which is true by default, but set to false by the runtime startup code.
3352         
3353         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
3354         Disabled for now since it breaks the embedding API.
3355         Move the setup of class->methods for arrays to mono_class_setup_methods ().
3356         (mono_class_setup_methods): Add a memory barrier.
3358         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
3359         when mono_class_init () doesn't compute the generic vtable.
3360         
3361 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
3362         * profiler.c: Added mono_profiler_install_statistical_call_chain,
3363         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
3364         to support call chains (backtrace) in the stat profiler.
3365         * profiler.c, profiler-private.h: Likewise.
3367 2008-05-22  Mark Probst  <mark.probst@gmail.com>
3369         * generic-sharing.c: Init generic class when a method of it is
3370         requested via a runtime generic context.
3372 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
3374         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
3376         * reflection.c (mono_type_get_object): Add a FIXME.
3378         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
3380         * class.c (mono_class_get_method_by_index): New helper function, returning an
3381         entry in the class->methods array.
3383 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3385         * class.c (mono_class_init): Only do the array optimization for szarrays. 
3386         Avoid creating a generic vtable for generic instances as well.
3387         (mono_class_get_method_from_name_flags): Don't search in the metadata for
3388         generic instances.
3390 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
3392         * loader.c (mono_get_method_constrained): Inflate the signature
3393         with class context. Fix #325283.
3395 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3397         * object.c (mono_class_create_runtime_vtable): Add a comment.
3399         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
3400         where needed.
3401         (setup_interface_offsets): Handle the case when this is called twice for arrays.
3402         (mono_class_setup_vtable_general): Add an assert.
3403         (mono_class_init): Avoid creating a generic vtable for arrays.
3405         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
3406         here, let mono_class_init () do that.
3408         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
3409         interfaces in mscorlib.
3411         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
3412         interfaces. Add some comments.
3413         (mono_class_init): Call mono_class_setup_methods () here since it is no
3414         longer called by mono_class_setup_vtable ().
3416         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
3417         not set in class->vtable.
3418         (mono_class_create_runtime_vtable): Reenable the disabled code.
3420         * object.c (mono_class_create_runtime_vtable): Disable the last change for
3421         now as it causes some test failures.
3423         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
3424         if using the vtable trampoline. Also remove some strange code which put the
3425         generic methods themselves into the vtable slots. Remove the AOT init_vtable
3426         stuff as it is no longer needed.
3428 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3430         * pedump.c: Give make --verify all option check code as well.
3431         Using --verify code won't check for metadata now.
3433 2008-05-19  Martin Baulig  <martin@ximian.com>
3435         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
3437         * mono-debug.c
3438         (_mono_debug_using_mono_debugger): New global variable; it's set
3439         directly by the debugger, so mono_debug_using_mono_debugger() also
3440         works after attaching.
3442 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3444         * object.c (mono_class_create_runtime_vtable): Use memory barriers
3445         as we do double checked locking on MonoClass::runtime_info and
3446         MonoClassRuntimeInfo::domain_vtables.
3448 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
3450         * debug-helpers.c (print_field_value): Fix a warning.
3452 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
3454         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
3455         set in the AOT case.
3457 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3459         * class.c (mono_class_setup_vtable_general): Use memory barriers
3460         as we do double checked locking on MonoClass::vtable.
3462 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3464         * reflection.c (resolve_object): Inflate only if the generic context
3465         is not null. Fixes #389886.
3467 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
3469         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
3470         instead of g_free.
3472         Code is contributed under MIT/X11 license.
3474 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3476         * class.c: Revert unrelated change.
3478 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3480         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
3481         a generic instantiation, use mono_class_from_mono_type instead of playing
3482         with MonoType directly.
3484 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3486         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
3487         checks must ignore generic instantiations, so mono_class_has_parent is not
3488         suitable. Fixes #390128.
3490 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
3492         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
3493         it to avoid registering tokens during metadata generation. Fixes #390023.
3495 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3497         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
3498         consistent.
3500         Contributed under MIT/X11 license.
3502 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3504         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
3505         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
3506         to fixup the EXE image.
3507         (mono_cleanup): Use mono_close_exe_image.
3508         (mono_close_exe_image): New function.
3509         * image.c: Include "marshal.h".
3510         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
3511         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
3512         counting when the image is loaded outside of mono_image_open_full. Set status
3513         based on GetLastError.
3514         * coree.c: Include required headers. Add init_from_coree.
3515         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
3516         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
3517         (_CorExeMain): Set init_from_coree.
3518         (CorExitProcess): Only call ExitProcess for now.
3519         (CorBindToRuntimeEx): New stub implementation.
3520         (CorBindToRuntime): New function.
3521         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
3522         (MonoFixupExe): ILONLY executables require no fixups.
3523         (mono_set_act_ctx): New function to set activation context.
3524         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
3525         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
3526         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
3527         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
3528         as MONO_INTERNAL.
3529         * domain-internals.h: Add mono_close_exe_image.
3531         Contributed under MIT/X11 license.
3533 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3535         * metadata.c (mono_metadata_compute_size): Correctly calculate field
3536         size for generic param and event tables. Fixes #388977.
3538 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
3540         * loader.c (mono_method_signature): Use memory barriers because of the double
3541         checked locking pattern.
3543         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
3544         aborting or aborted as well. Fixes #376391.
3545         
3546         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
3547         existing runtime state in the Suspend handler during shutdown.
3549 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
3551         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
3553         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
3554         which are starting up or shutting down.
3556         * threads.c (mono_threads_set_shutting_down): Don't return a value since
3557         this function never returns if the runtime is already shutting down.
3559         * icall.c (ves_icall_System_Environment_Exit): Update after 
3560         mono_threads_set_shutting_down () signature change.
3561         
3562 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
3564         * class.c: Added can_access_instantiation to verify if the instantiation
3565         is visible. Fix access check for nested types as they returned TRUE
3566         before doing type and generic instantiation visibility checks.
3568 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3570         * reflection.c (mono_reflection_create_generic_class): The created type
3571         must have a different container from its TypeBuilder. Otherwise they
3572         will end sharing generic arguments, which is wrong.
3574         Due to the sharing, making a generic instance of the created type using
3575         the TypeBuider generic arguments resulted in the generic type definition
3576         been returned, which is wrong as well.
3578         As a bonus the code was leaking the type_params array. This memory should
3579         be allocated from the image mempool.
3581         This fixes bug #354047.
3583 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3585         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
3586         to here         as they are now used in assembly.c new code.
3587         Added a skipverification flag to MonoAssembly.
3588         New internal function mono_assembly_has_skip_verification.
3590         * assembly.c: New function mono_assembly_has_skip_verification. It checks
3591         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
3592         part of #387274.
3594 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3596         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
3597         needed. Fixes #387034.
3599         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
3601 2008-05-06  Miguel de Icaza  <miguel@novell.com>
3603         * assembly.c (mono_assembly_load_reference): Prevent crash while
3604         disassembling Silverlight 2.0 executables while we still do not
3605         have GACed libraries.
3607 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3609         * reflection.c: Special case generic type definitions as well. Fixes #383444.
3611 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
3613         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
3614         of the dynamic case. Fixes #387404.
3616 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3618         *verify.c (mono_verifier_is_class_full_trust): If under
3619         verify_all and the verifier mode was not set, only
3620         gac and corlib types are fulltrust. This makes --verify-all
3621         usable to detect unverifiable code, which is the expected
3622         use case.
3624 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3626         * verify.h: Ops, commited the header with debug
3627         enabled.
3629 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3631         * verify.c (merge_stack): Use the new value on unverifiable
3632         stack merges.
3634         * verify.c (verify_type_compatibility_full): Comparison
3635         of nullable types can't use mono_class_is_assignable_from.
3637         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
3638         that makes all verification errors be reported.
3640         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
3641         mono_method_verify.
3643 2008-05-05  Robert Jordan  <robertj@gmx.net>
3645         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
3646         support for value types. See #386415.
3648         * object.c: comments.
3650         Code is contributed under MIT/X11 license.
3652 2008-05-05  Martin Baulig  <martin@ximian.com>
3654         * debug-mono-symfile.h
3655         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
3656         for old pre-terrania symbol files.
3658 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3660         * mono-config.c: Add ppc64 architecture.
3662         Code is contributed under MIT/X11 license.
3664 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3666         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
3667           PPC64 uses function descriptors as well.
3669         Code is contributed under MIT/X11 license.
3671 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
3673         * object.c (compute_class_bitmap): Ignore literal static fields.
3675         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
3676         var has an invalid format.
3677         (describe_ptr): Add some sanity checks for the vtable.
3678         (add_nursery_frag): Clear unused nursery fragments.
3679         (major_collection): Clear all remaining nursery fragments.
3681 2008-05-03  Robert Jordan  <robertj@gmx.net>
3683         * image.c, metadata-internals.h: add thunk_invoke_cache.
3685         * marshal.c, marshal.h: implement
3686         mono_marshal_get_thunk_invoke_wrapper ().
3688         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
3690         Code is contributed under MIT/X11 license.
3692 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3694         * verify.c (do_leave): Empty the stack.
3696 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3698         * class.c (mono_class_is_assignable_from): Variance
3699         doesn't work between reference and value types. For example,
3700         given type C<T+>, C<int32> is not assignable to C<object>.
3701         Break the argument checking loop on first error. 
3703 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
3705         * icall.c : base64_to_byte_array() needs some more strict
3706           check for sequence of '=' characters. Patch by Santa
3707           Marta (http://deee.g.hatena.ne.jp/santamarta).
3709           Contributed under MIT/X11 license.
3710           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
3712 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
3714         * domain.c: Disable LoadLibrary support to fix Win32 build.
3716         Code is contributed under MIT/X11 license.
3718 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
3720         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
3721         to help with cache behaviour.
3723 2008-05-01  Miguel de Icaza  <miguel@novell.com>
3725         * appdomain.c (mono_domain_from_appdomain): Add new accessor
3726         method. 
3728 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
3730         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
3732 2008-05-01  Dick Porter  <dick@ximian.com>
3734         * process.c (process_get_fileversion): Only pass 16 bits of
3735         language ID to VerLanguageName.  Fixes bug 381204.
3737 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3739         * verify.c (mono_method_verify): Fix the comparison
3740         operator for code bounds check.
3742 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3744         * verify.c (mono_method_verify): Check the bounds of
3745         all access of the code array.
3747 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
3749         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
3751 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
3753         * image.c (mono_image_strong_name_position): Fix return value when the rva is
3754         not valid.
3756 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
3758         * loader.c (mono_get_method_from_token, mono_method_signature): Add
3759         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
3760         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
3761         fixup main EXE images when using mono.exe for mixed-mode assembly support.
3762         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
3763         mono_runtime_load.
3764         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
3765         runtime initialization from metadata.
3766         * assembly.c: Remove obsolete ceGetModuleFileNameA.
3767         (mono_set_rootdir): Use mono_get_module_file_name.
3768         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
3769         handles.
3770         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
3771         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
3772         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
3773         MonoCLIImageInfo. Add support for module handles.
3774         (load_cli_header): Update mono_cli_rva_image_map signature.
3775         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
3776         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
3777         (mono_image_rva_map): Add support for module handles.
3778         (mono_image_ensure_section_idx): Add support for module handles.
3779         (mono_image_close): Add support for module handles.
3780         (do_load_header): Add support for module handles.
3781         (mono_image_open_from_module_handle): New function for internal use.
3782         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
3783         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
3784         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
3785         handles.
3786         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
3787         * image.h: Add mono_image_fixup_vtable.
3788         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
3789         support.
3790         * coree.h: New file.
3791         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
3792         unsupported native code.
3793         (mono_marshal_set_callconv_from_modopt): New function splitted from
3794         mono_marshal_get_managed_wrapper.
3795         (mono_marshal_get_managed_wrapper): Use
3796         mono_marshal_set_callconv_from_modopt.
3797         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
3798         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
3799         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
3800         that results in a deadlock when the runtime is loaded in _CorDllMain.
3801         * Makefile.am: Add coree.c and coree.h.
3803         Contributed under MIT/X11 license.
3805 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3807         * generic-sharing.c: Search for type arguments in array element
3808         types as well.
3810 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3812         * class-internals.h, generic-sharing.c: New, small runtime generic context.
3814         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
3816         * object.c: Don't setup the RGCTX when the vtable is created,
3817         because we're setting it up lazily now.
3819 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
3821         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
3822         64 bit support.
3824 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3826         * verify.c (verify_class_for_overlapping_reference_fields): 
3827         If class is under fulltrust allow reference types to overllap
3828         if they have the same RVA.
3830 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3832         * pedump.c: Added new flag valid-only, that makes the verifier
3833         behaves just like --security=validil. It won't fail type load
3834         due to unverifiable restrictions.
3836 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3838         * class-internals.h (struct MonoMethod): Added a verification_success
3839         field to cache verifier executions. Reduced MonoMethod:slot size by
3840         one bit.
3842 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
3844         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
3845         instead of a 'vt' argument to save an indirection and to allow these to be used
3846         for valuetypes.
3847         (scan_vtype): New helper function to scan an area using a gc descriptor.
3848         (mono_gc_wbarrier_value_copy): Implement this.
3849         (handle_remset): Add support for REMSET_VTYPE.
3850         (find_in_remset_loc): Ditto.
3851         (mono_gc_base_init): Allow some debugging options to be controlled through the
3852         use of the MONO_GC_DEBUG env variable.
3853         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
3854         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
3856 2008-04-23  Martin Baulig  <martin@ximian.com>
3858         * domain.c (mono_domain_create): Move the call to
3859         mono_debug_domain_create() down, after allocating the domain id.
3861 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3863         verify.c (verify_class_for_overlapping_reference_fields): Skip
3864         static fields while verifying for overlapping fields as they
3865         don't matter at all.
3867 2008-04-23  Marek Habersack  <mhabersack@novell.com>
3869         * domain-internals.h: added a declaration of
3870         mono_make_shadow_copy.
3872         * assembly.c (mono_assembly_open_full): shadow copying of
3873         assemblies moved to here, so that all the assemblies within the
3874         application domain's private binary directories can be
3875         processed. Fixes bug #380546
3877         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
3878         mono_make_shadow_copy and made non-static. The decision whether
3879         to shadow-copy an assembly is made based on its location - it's
3880         copied if it's in one of the private application domain binary
3881         directories and its different to the target file in the shadow
3882         directory. Fixes bug #380546
3884 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
3886         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
3888         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
3889         types.
3891         * reflection.c (mono_image_create_token): Handle 
3892         Method/ConstructorOnTypeBuilderInst.
3893         (resolve_object): Ditto.
3894         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
3895         so it can be called from resolve_object. Also handle the case when the inflated
3896         class already has its methods setup.
3898 2008-04-21  Martin Baulig  <martin@ximian.com>
3900         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
3902 2008-04-20  Geoff Norton  <gnorton@novell.com>
3904         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
3905         pointer dereference.
3907 2008-04-15  Marek Habersack  <mhabersack@novell.com>
3909         * appdomain.c (try_load_from): if IOMAP is in effect, call the
3910         portability API to look up the assembly file. Fixes behavior in
3911         situations when the application has a bin/ directory, but the
3912         assembly search patch refers to Bin/ (and thus the requested file
3913         name is Bin/SomeLibrary.dll). Fixes bug #379888
3915 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3917         verify.c (mono_type_is_generic_argument): Extracted this check
3918         from a dozen places to here.
3920         verify.c: Fixed all issues related to boxing generic arguments
3921         and their constraints.
3923 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3925         verify.c (mono_class_interface_implements_interface): Fix win32 build.
3927 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
3929         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
3930         isn't finished yet. Fixes #363447.
3932 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
3934         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
3935         Fixes #346419.
3937 2008-04-13  Jb Evain  <jbevain@novell.com>
3939         * domain.c: update the 2.1 profile versions.
3940         Merged from the Moonlight 2 branch.
3942 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
3944         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
3945         mscorlibs for the non-refonly case as well.
3947         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
3948         in mono_assembly_load_from_full (). Fixes #378924.
3950 2008-04-11  Geoff Norton  <gnorton@novell.com>
3952         * icall.c: The global extern environ doesn't exist on Mac.  We
3953         need to call NSGetEnviron instead.
3955 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3957         verify.c: Add generic method constraint verification.
3959 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3961         class.c (mono_class_inflate_generic_method_full): Add a long
3962         explanation to the is_mb_open hack. Remove the FIXME.
3964 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3966         * verify.c (mono_method_verify): Mark all unknown opcodes
3967         as invalid. Mark jmp as unverifiable.
3969 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3971         * verify.c: Add code to do type constraint verification on class instances.
3973         * verify.c (mono_verifier_verify_class): Use the type constraint 
3974         verification code.
3976 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3978         * class.c (mono_class_get_field_default_value): Don't pass cindex
3979         as hint to mono_metadata_get_constant_index. The local is not initialized
3980         and should contain garbage most of the time. This could only work
3981         with a lot of luck.
3983 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3985         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
3987 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3989         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
3991         * class.c (mono_class_from_generic_parameter): Save the token of the
3992         generic param in MonoClass::sizes.generic_param_token.
3994         * reflection.c (mono_custom_attrs_from_class): If the class type is
3995         VAR or MVAR retrieve the attributes of the generic param.
3997 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3999         * class.c (mono_class_init): Do class verification if the verifier
4000         is enabled.
4002 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4004         * verify-internal.h: Added mono_verifier_verify_class.
4006         * verify.c: Added mono_verifier_verify_class. It checks for
4007         classes with explicit layout that have overlapping reference fields.
4009         * pedump.c: Init the verifier state prior to verification. Fixed
4010         command line arguments.
4012 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4014         * Makefile.am: Added verify-internals.h, hopefully fix the build.
4016 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
4018         * verify-internals.h: Fix a warning.
4020 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4022         * verify-internals.h: New header with the verifier configuration
4023         extracted from mini.c.
4025         * verify.c: Implemented the new functions exported by verify-internals.h.
4027 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4029         * verify.c: Add proper verification of ckfinite.
4031 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4033         * verify.c (do_conversion): Improved error message to something
4034         more meanfull.
4036         * verify.c (check_is_valid_type_for_field_ops): Fix to work
4037         with primitive types.
4039 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4041         * verify.c: Added tail prefix checking. Marked icall
4042         as unverifible.
4044 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4046         * verify.c: Fix the detection of branches to the middle
4047         of an instruction.
4049 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4051         * verify.c: Implemented verification of volatile. and
4052         unaligned. prefix. Check if a type is valid after retrieving it.
4054 2008-04-01  Dick Porter  <dick@ximian.com>
4056         * process.c (process_get_fileversion): If there's no string block,
4057         set the file language to en_US.  Fixes the other new part of bug
4058         374600.
4060 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
4062         * class.c: New functions mono_method_can_access_field_full and
4063         mono_method_can_access_method_full. They perform type visibility
4064         and type site check.
4066         * class-internal.h: Added exported functions.
4068         * verify.c: Use new functions to implement proper visibility checks.
4070 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
4072         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
4074 2008-03-28  Dick Porter  <dick@ximian.com>
4076         * process.c (process_get_fileversion): Use the first language ID
4077         we see, rather than insisting on an invariant language.  Fixes bug
4078         374600.
4080 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
4082         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
4083         the streams to fix reading of invalid memory later.
4085         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
4086         to ease debugging.
4088 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
4090         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
4091         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
4093 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
4094         * threads.h: Added MonoThreadManageCallback type and
4095         mono_thread_set_manage_callback prototype
4096         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
4097         (used to store the mono_thread_manage callback).
4098         * threads.c: Added mono_thread_set_manage_callback, and handle
4099         "MonoThread->manage_callback" in build_wait_tids.
4101 2008-03-26  Dick Porter  <dick@ximian.com>
4103         * process.c (process_get_fileversion): Set FileVersionInfo strings
4104         to Empty when the resource doesn't have the particular info.
4105         Fixes bug 355717.
4107 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
4109         * verify.c (mono_method_verify): Proper prefix validation.
4111 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
4113         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
4114         itself in a separate argument instead of throwing them. Fixes #373448.
4116         * appdomain.c: Bump corlib version.
4118 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4120         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
4122 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
4124         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
4125         version macros.
4127 2008-03-20  Mark Probst  <mark.probst@gmail.com>
4129         * generic-sharing.c, class-internals.h: Code for putting
4130         reflection types into the runtime generic context.
4132 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4134         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
4135         Fixes #340662. 
4138 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
4140         * verify.c (VerifyContext): Added instruction prefix data to the struct.
4142         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
4144         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
4146         * verify.c (do_cast): Let the result value keep the boxed status.
4148         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
4150 2008-03-17  Jb Evain  <jbevain@novell.com>
4152         * reflection.c: when running on a 2.0 runtime, emit
4153         unconditionally the #~ header version as 2.0, and the
4154         CLI header version as 2.5, for symmetry's sake with csc.
4156 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
4158         * class.c: Remove the unused cache_interface_offsets stuff.
4160         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
4161         profiler.c: Fix warnings.
4163 2008-03-16  Mark Probst  <mark.probst@gmail.com>
4165         * generic-sharing.c, class-internals.h: Support for putting
4166         methods into the runtime generic context.
4168 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
4170         * class.c (mono_class_setup_fields): Ignore calls made to this function for
4171         classes which are generic instances of not-yet finished typebuilders. Fixes
4172         #351172.
4174         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
4176 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
4178         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
4180         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
4181         field, replace it with a hash table in MonoDynamicImage.
4183         * reflection.c (inflate_mono_method): Access the generic definition object from
4184         image->generic_def_objects instead of imethod->reflection_info.
4186         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
4188         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
4189         
4190         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
4191         function in reflection.c so it is easier to keep in sync with the dynamic image
4192         creation code.
4194         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
4195         mono_image_close ().
4197 2008-03-15  Mark Probst  <mark.probst@gmail.com>
4199         * class.c (mono_class_generic_sharing_enabled): Disable generic
4200         sharing for all architectures except AMD64 and x86 to fix build.
4202 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4204         * verify.c: Use the generic definition MonoGenericContext when available.
4205         Remove code for checking generics instance compatibility in favor of
4206         mono_class_is_assignable_from.
4208 2008-03-14  Mark Probst  <mark.probst@gmail.com>
4210         * marshal.c, marshal.h, metadata-internals.h, image.c,
4211         wrapper-types.h: New wrapper for invoking a shared static method
4212         without having to pass the runtime generic context argument.
4214 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4216         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
4218 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
4220         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
4221         
4222         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
4223         create a token from a FieldOnTypeBuilderInst.
4224         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
4225         (resolve_object): Ditto.
4227         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
4228         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
4230 2008-03-14  Martin Baulig  <martin@ximian.com>
4232         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
4234         * debug-mono-symfile.h
4235         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
4236         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
4238 2008-03-10  Martin Baulig  <martin@ximian.com>
4240         * debug-mono-symfile.h
4241         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
4242         `lexical_block_table_offset'.
4243         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
4244         `lexical_blocks'.
4245         (MonoSymbolFile): Added `version'.
4247         * mono-debug.h
4248         (MonoDebugLexicalBlockEntry): Removed.
4249         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
4250         `lexical_blocks'.
4252         * mono-debug.c (mono_debug_add_method): Don't compute lexical
4253         blocks here; the debugger now does this internally.
4255 2008-02-27  Martin Baulig  <martin@ximian.com>
4257         * object.c (mono_runtime_exec_main): Call
4258         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
4259         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
4261 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4263         * verify.c (verify_type_compatibility_full): Allow native int to be converted
4264         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
4266 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4268         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
4269         ldftn with a virtual method.
4271 2008-03-13  Geoff Norton  <gnorton@novell.com>
4273         * decimal.c:  Only include memory.h if the platform has it.
4275 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
4277         * assembly.c, class.c, metadata-internals.h: make sure public key
4278         tokesns are compared in a case-insensitive way. Also, all
4279         the lookups in the GAC use a lowercase public key token
4280         (gaacutil already does the lowercasing on install). Fixes
4281         bug #369541.
4283 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
4285         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
4286         and return value.
4288 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
4290         * image.c: when someone loads a mscorlib from a file, return the
4291         currently loaded mscorlib (fixes bug #369253).
4293 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4295         * class.c: handle types with no parents by forcing them to have
4296         System.Object as a parent and marking them as broken (this currently
4297         allows the first part of bug #369173 to work as well, likely because
4298         we don't check for typeload exceptions everywhere yet).
4300 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
4302         * class.c: more complete check that types belong to corlib
4303         (fixes second part of bug #369173).
4305 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
4307         * generic-sharing.c:  Including glib.h for the MSVC builds to define
4308           "inline" to "__inline" before including mono-membar.h.
4309           
4310         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
4311           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
4312           MSVC builds.
4314         Contributed under MIT/X11 license.
4316 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4318         * verify.c (do_invoke_method): Remove return type validation.
4320         * verify.c (do_ret): Do return type validation at return site instead of
4321         call site.
4323 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4325         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
4327         * verify.c: Some todos cleaned and improved a few error messages.
4329 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
4331         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
4333 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
4335         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
4336         system types correctly.
4338         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
4339         function.
4341 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4343         * assembly.c (build_assembly_name): Fix a warning.
4345 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
4347         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
4348         the called function takes an object type argument. Fixes storing or
4349         valuetypes across remoting as well as reducing memory usage.
4350         * image.c, metadata-internals.h: remove now unused ldfld_remote and
4351         stfld_remote wrapper caches.
4353 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4355         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
4356         is not found.
4358         * reflection.c (mono_image_register_token): New helper function to save
4359         a token->object mapping.        
4361         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
4362         managed code.
4364         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
4365         one dimension arrays. Fixes #367670.
4366         (mono_reflection_get_type_internal): Ditto.
4368 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
4370         * marshal.c: mono_load_remote_field_new() always returns object.
4371         so use the proper signature (fixes bug #366445).
4373 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4374         
4375         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
4376         add an 'inline_failure' flag instead.
4378 2008-03-04  Mark Probst  <mark.probst@gmail.com>
4380         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
4381         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
4382         contains the location of "this", used for exception handling.
4384 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4386         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
4387         their size on all platforms for perf reasons.
4389 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4391         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
4392         object-internal.h
4394         * object-internal.h: Same.
4396 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4398         * reflection.h: Fix the build I just broke.
4400 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4402         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
4403         Test if a token is valid, this remove explicit usage of 
4404         MonoDynamicImage::tokens from the verifier code.
4406         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
4408         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
4409         instead of direct access to MonoDynamicImage::tokens.
4411 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4413         * verify.c (token_bounds_check): Fix the build I just broke.
4415 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4417         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
4419         * verify.c (verifier_load_method): Fixed the errors message.
4421         * verify.c (mono_method_verify): Fixed a debug message.
4423 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
4425         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
4426         mono-perfcounters.h, class-internals.h: support for predefined
4427         writable counters, query of categories and counters, bugfixes.
4429 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4431         * verify.c (do_refanytype): Verify the refanytype opcode.
4433         * verify.c (mono_method_verify): Use do_refanytype.
4435 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4437         * verify.c (do_mkrefany): Verify the mkrefany opcode.
4439         * verify.c (mono_method_verify): Use do_mkrefany.
4441 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
4443         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
4444         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
4445         implementation.
4447 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4449         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
4450         the type load exception.
4452 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4454         * verify.c: Added a few FIXME for method signatures
4456         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
4457         of mono_method_get_signature and get vararg call working. Removed unused
4458         checks for return value.
4460         * verify.c (do_refanyval): Verify the refanyval opcode.
4462         * verify.c (mono_method_verify): Implemented verification of arglist and
4463         use do_refanyval.
4465 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4467         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
4468         vtypes to marshal.c.
4470         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
4471         it works for AOT as well.
4473 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4475         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
4476         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
4477         the system time is adjusted.
4479 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
4481         * icall.c, icall-def.h: use the new time functions (fixes the
4482         non-monotonic behaviour of TickCount).
4484 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
4486         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
4487         it breaks the build.
4488         
4489         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
4490         cattr is not finished yet.
4492 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4494         * verify.c: Proper token validation for field, method and type.
4496 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4498         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
4500         * loader.c (method_from_memberref): Generate type load error instead of method missing
4501         if the type is not found.
4503 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
4505         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
4506         some of the conversions caused the generation of a marshal directive exception.
4508 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4510         verify.c: Report which exception should be thrown by the JIT.
4511         Added a lot of FIXME notes.
4513 2008-02-22  Mark Probst  <mark.probst@gmail.com>
4515         * generic-sharing.c: Runtime generic context slots are not
4516         instantiated on init anymore.  Instead, provide function to do the
4517         instantiating on demand.
4519         * class-internals.h: Added vtable to runtime generic context.
4520         Macros for encoding direct and indirect slot offsets in one
4521         guint32.
4523 2008-02-21  Mark Probst  <mark.probst@gmail.com>
4525         * object.c, generic-sharing.c: Moved some generic sharing code
4526         from object.c to generic-sharing.c.
4528         * generic-sharing.c: Added support for extensible runtime generic
4529         context.
4531         * metadata-internals.h: Two new hash tables in MonoImage for
4532         extensible runtime generic context support.
4534         * domain.c: Unregister generic vtables upon domain unloading.
4536         * image.c: Destroy new hash tables upon image unloading.
4538         * metadata.c: Unregister generic subclasses upon image unloading.
4540         * class-internals.h: New data structure for runtime generic
4541         context template.  New fields in the runtime generic context for
4542         extensible part.
4544         * Makefile.am: Added generic-sharing.c.
4546 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4548         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
4549         there is a pending loader exception, raise it.
4551         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
4552         same.
4554         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
4555         same.
4557         Fixes #363450.
4559 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
4561         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
4563         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
4564         
4565         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
4566         ref-only requests for compatibility with MS.
4568 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4570         * reflection.c (mono_custom_attrs_from_method): Don't silently
4571         return an empty list for generic method instances.
4572         (mono_custom_attrs_from_param): Likewise.
4574 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
4575             Raja R Harinath  <harinath@hurrynot.org>
4577         Fix #354757
4578         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
4579         * class.c (mono_class_inflate_generic_method_full): Initialize it
4580         when a fully-open method is instantiated.
4581         * metadata.c (inflated_method_equal, inflated_method_hash): Update
4582         to new field.
4583         * reflection.c (inflate_mono_method): Don't create a temporary context.
4585 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4587         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4588         Compute correct value, to prepare for imethod->reflection_info going away.
4590 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
4592         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
4594 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4596         * verify.c: Implement skip visibility flag.
4598 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4600         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
4601         which contains an extra field to tell the kind of exception that should be thrown.
4603         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
4605 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
4607         * loader.c (mono_method_get_param_names): Initialize 'klass' after
4608         'method' is updated.
4610 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
4612         * class.c (mono_class_layout_fields): Set class->min_align for classes using
4613         explicit layout as well. Fixes #360375.
4615 2008-02-11  Geoff Norton  <gnorton@novell.com>
4617         * loader.c: Guard and dereference against inflated generic methods
4619 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
4621         * class.c: Include Retargetable spec in assembly name.
4622         * assembly.c: Always include PublicKeyToken spec in assembly name
4623         (with value "null" if assembly is not signed), and include
4624         Retargetable spec.
4625         * icall-def.h: Added icall for Assembly.get_fullname.
4626         * icall.c: Added icall returning the fullname of an assembly.
4628 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
4630         * class.c (mono_class_setup_vtable_general): Add a missing call to
4631         mono_class_setup_methods () which is needed in the AOT case.
4633 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
4635         * verify.c (mono_type_get_stack_name): Added. Return the name for the
4636         stack type of the given MonoType.
4638         * verify.c (verify_type_compatibility_full): Handle the void type.
4640         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
4641         way stack merging works.
4643         * verify.c (store_local): Improved verification message.
4645         * verify.c (do_branch_op): If the merging is invalid, the method
4646         is unverifiable and not invalid. Improved error message.
4648         * verify.c (merge_stacks): Properly merge a boxed valuetype and
4649         a reference type diferent than System.Object. Improved error
4650         message.
4652 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
4654         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
4656         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
4657         type of an enum even if the argument is byref.
4659         * verify.c: Replace all explicit uses of enumtype and enum_basetype
4660         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
4662         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
4664         *verify.c (verify_type_compatibility_full): Make enum types
4665         compatible with their base types.
4667         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
4668         types are compatible for the special case of a boxed valuetype and
4669         System.Object.
4671         * verify.c (verify_stack_type_compatibility): The function
4672         is_compatible_boxed_valuetype was extracted from here.
4674         * verify.c (push_arg): Only set ctx->has_this_store if the method
4675         is not static.
4677         * verify.c (do_ldelem): Fixed a typo in an error message and added
4678         strict check for mixing int32 and native int as the array type
4679         and ldelem type.
4681         * verify.c (merge_stacks): Consider boxed valuetypes in the
4682         compatibility checks.
4684 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
4685         * profiler.h: (MonoGCEvent): Added start-stop the world events.
4687 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4688         *class.c: use_new_interface_vtable_code: renamed the env var to have
4689         a "MONO_" prefix, and fix the logic to enable it by default.
4691 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4692         *class.c:
4693         mono_class_setup_vtable_general: rewrote the way in which interface
4694         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
4695         makes the code more maintainable.
4696         For now the old code is still there, and can be activated setting
4697         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
4699 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
4701         * verify.c: guarded some debug functions around and #ifdef.
4703         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
4705 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
4707         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
4708         changes for now since they seem to break too many things.
4710 2008-02-05  Mark Probst  <mark.probst@gmail.com>
4712         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
4713         mono_marshal_find_nonzero_bit_offset): Added macro and function
4714         for finding the byte- and bit-offset of a bitfield within a
4715         struct.
4717 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
4719         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
4720         (mono_marshal_get_struct_to_ptr): Ditto.
4722         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
4723         cctor_signature.
4725 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
4727         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
4728         between methods for non-corlib types.
4730 2008-02-02  Geoff Norton  <gnorton@novell.com>
4732         * loader.c (mono_method_get_param_names): Populate the parameter name for 
4733         generic parameters as well. (Fixes #342536)
4735 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
4737         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
4739         * verify.c (do_invoke_method): Fix for calling with byref structs.
4741         * verify.c (do_cast): push a boxed value type based on the type token and not
4742         the type of stack.
4744 2008-01-31  William Holmes  <billholmes54@gmail.com>
4746         * process.c (process_module_string_read): Check the size returned form 
4747           VerQueryValue to avoid out of memory exception. 
4749 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
4751         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4752         Handle properly modules which are not in the moduleref table. Fixes
4753         #356938.
4755 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
4757         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
4758         the dynamic case which is now in managed code.
4759         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
4761         * marshal.c (mono_string_to_bstr): Fix a warning.
4762         (init_com_provider_ms): Ditto.
4764         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
4766         * exception.c (mono_get_exception_out_of_memory): New helper function.
4768 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
4770         * marshal.c: Add support for BSTR marshalling
4771         using other COM systems.
4773         Code is contributed under MIT/X11 license.
4775 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4777         * object.c (mono_runtime_invoke_array): reverted previous
4778         commit as it breaks the build.
4780 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4782         * object.c (mono_runtime_invoke_array): Verify arguments for
4783         invalid types. Fixes #348522.
4785 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4787         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
4788         non-final virtual calls using call. 
4790         * verify.c (do_invoke): fixed some TODOs.
4792         * verify.c (push_arg): set has_this_store for "ldarga 0".
4794 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
4796         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
4797         which belong to an inflated class. Fixes #356531.
4799 2008-01-26  Robert Jordan  <robertj@gmx.net>
4801         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
4802         which resort to FindFirstFile when a certain error condition
4803         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
4804         Code is contributed under MIT/X11 license.
4806 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
4808         * marshal.c (emit_marshal_string): Fix out string marshalling
4809         to use specified encoding. Fixes #323900.
4811         Code is contributed under MIT/X11 license.
4813 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
4815         * class.c (mono_class_inflate_generic_method_full): Don't modify
4816         iresult->context after cache check.
4818 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
4820         * class.c (mono_class_inflate_generic_method_full): Change the
4821         struct assignments to memcpy for better visibility and add some comments.
4823 2008-01-23  Dick Porter  <dick@ximian.com>
4825         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
4826         procedure, and make it work on windows.
4828 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
4830         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
4831         a MonoReflectionTypeBuilder since it is always of that type.
4833         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
4835         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
4837         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
4838         
4839         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
4841         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
4843         * reflection.c (mono_reflection_create_runtime_class): Remove already created
4844         instantiations from the type cache.
4846 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4848         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
4850         * verify.c (do_unbox_value): push a controled mutability managed pointer.
4852 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4854         * verify.c (do_ldstr): added, verifies if the #US token is valid.
4856         * verify.c (mono_method_verify): removed old TODO
4858 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4860         * verify.c (do_newobj): add visibility check.
4862 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4864         * verify.c (do_load_function_ptr): add visibility check.
4866 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
4867         *class.c:
4868         mono_generic_class_get_class: hook profiler events.
4869         mono_field_get_offset: added to support heap-shot in the new profiler.
4870         *class.h: exported mono_field_get_offset.
4871         * reflection.c:
4872         mono_reflection_setup_internal_class: hook profiler events.
4874 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
4876         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
4877         argument here too and use it to avoid checking for pending exceptions if 
4878         possible.
4880 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
4882         * assembly.c (build_assembly_name): add arg for passing the assembly
4883         flags. Do not consider a PublicKey with value "null" valid.
4884         (mono_assembly_name_parse_full): added boolean argument that will be
4885         set if the assembly name contains a PublicKeyToken spec. Added support
4886         for the Retargetable spec for which only Yes or No are allowed as valid
4887         value. Consider assembly name invalid if Retargetable spec is set, but
4888         either version, culture or public key (token) are not specified.
4889         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
4890         with implementation in assembly.c.
4891         * icall.c (fill_reflection_assembly_name): also copy assembly flags
4892         from MonoAssemblyName.
4893         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
4894         introduced argument for mono_assembly_name_parse_full to know if the
4895         assembly name has a PublicKeyToken spec, and if it has instruct
4896         fill_reflection_assembly_name to use default value for keyToken (if
4897         PublicKeyToken is null).
4899 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4901         * verify.c (mono_method_verify): fixed ovf ops with
4902         float values. They are unverifiable now.
4904 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4906         * class.c (set_failure_from_loader_error): add BadImageException to the
4907         list of exceptions that can cause a type to fail to load.
4909         * class.c (mono_class_get_exception_for_failure): same.
4911 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
4913         * verify.c (in_any_exception_block): added, check if offset
4914         is part of any exception handling clause.
4916         * verify.c (get_stack_type): added VAR and MVAR types.
4918         * verify.c (do_stobj): better error messages.
4920         * verify.c (do_cpobj): added, check cpobj.
4922         * verify.c (do_initobj): added, check initobj.
4924         * verify.c (do_sizeof): added, check sizeof.
4926         * verify.c (do_localloc): added, check localloc.
4928         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
4930 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
4932         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
4933         save_lmf/restore_lmf opcodes.
4935         * threads.c (mono_threads_install_notify_pending_exc): New function to
4936         install a callback notifying the JIT there is a pending exception on a thread.
4937         (mono_thread_request_interruption): Call the new callback.
4938         (mono_thread_get_and_clear_pending_exception): New function to return the
4939         exception pending on a thread.
4941         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
4942         to turn off checking for pending exceptions.
4943         (mono_marshal_get_native_wrapper): Ditto.
4945 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4947         * threads-types.h: Get rid of the unnecessary extern declarations.
4949 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
4951         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
4952         return field from parent class if not private.
4953         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
4954         returns fields from parent class if they are not private.
4955         (method_nonpublic): added function to determine if a given method
4956         should be considered non-public. Returns false for private methods
4957         on parent class, and internal methods from parent on the 1.0 profile.
4958         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
4959         use method_nonpublic function to determine whether method should be
4960         returned.
4961         (property_accessor_public): use newly introduced method_nonpublic
4962         function to determine whether accessor is non-public. 
4963         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
4964         event from parent class if not private. Only return static event if
4965         Static flag is set, and only return static event from parent class if
4966         FlattenHierarchy flag is set.
4967         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
4968         include non-private events from parent class.
4970 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4972         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
4973         warning.
4975 2008-01-16  Wade Berrier <wberrier@novell.com>
4977         * security.c: Add assembly.h header to appease some warnings
4979 2008-01-16  Dick Porter  <dick@ximian.com>
4981         * process.c (process_module_string_read): Remove trailing null
4982         when saving string.
4984 2008-01-16  Mark Probst  <mark.probst@gmail.com>
4986         * class-internals.h: A new data structure describing the layout of
4987         a runtime generic context (MonoRuntimeGenericContextTemplate).
4989         * metadata-internals.h: Added a hash table to MonoDomain that maps
4990         from open generic classes to their runtime generic context
4991         templates.
4993         * object.c: Building of the runtime generic context, including
4994         proper handling of generic type arguments of superclasses.
4995         Building of the runtime generic context according to the template.
4997 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
4999         * class.c (mono_class_setup_fields): Set field.count for generic instances.
5000         Fixes #350856.
5002         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
5003         mono_portability_find_file (). Fixes #325466.
5004         (mono_image_get_public_key): Fix a warning.
5006 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
5008         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
5009         Fixes #353550.
5010         (mono_class_from_name_case): Ditto.
5012 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
5014         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
5015           common storage for the tables used in the System/NumberFormatter class.
5017 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
5019         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
5021 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
5023         * verify.c (get_boxable_mono_type): check if the token is valid.
5025         * verify.c (set_stack_value): changed to add an error if an
5026         invalid type is set on stack. Changed all callers due to signature change.
5028         * verify.c (do_stobj): implement stobj validation.
5030 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
5032         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
5033         set container->is_method, it was set earlier.
5035         * metadata.c (type_in_image): Handle MVARs which belong to not finished
5036         generic methods.
5038         * reflection.c (mono_reflection_initialize_generic_parameter): Set
5039         is_method of the generic container to TRUE for methods.
5041 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
5043         * metadata.c (type_in_image): Handle type parameters properly.
5045         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
5046         memory ownership of this structure.
5048 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
5050         * verify.c (get_boxable_mono_type): make typedref types been just
5051         unverifiable. check for void type.
5053         * verify.c (do_unbox_any): added, verify opcode unbox.any.
5055         * verify.c (do_load_function_ptr): accept method spec tokens.
5057 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
5059         * marshal.c (mono_class_native_size): Always set *align even if this is called
5060         recursively.
5062 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
5064         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
5065         out-of-date.
5067 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
5069         * verify.c: removed some old unused tables. A huge bunch of small fixes
5070         to things found while testing the verifier with mono basic.
5072         * verify.c (dump_stack_value): dump null literal flag to.
5074         * verify.c (verify_type_compatibility_full): fix comparison
5075         for types that have a generic super type.
5077         * verify.c (verify_stack_type_compatibility): fix compatibility
5078         between null literals and reference types. fix compatibility between
5079         boxed valuetypes and object. fix corner case test for enums.
5081         * verify.c (do_cmp_op): proper verification of cgt.un in case
5082         of reference types.
5084         * verify.c (do_invoke_method): fix error message.
5086         * verify.c (do_store_indirect
5088         * verify.c (check_is_valid_type_for_field_ops): proper verification
5089         of managed pointers to valuetypes and boxed valuetypes. proper verification
5090         of null literals.
5092         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
5093         allow token to be a reference type.
5095         * verify.c (do_cast): proper handling of boxes valuetypes.
5097         * verify.c (do_stelem): proper handling of storing a boxed valuetype
5098         in object[].
5100         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
5101         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
5102         fixed the decoding of unbox_any
5104 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
5106         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
5108 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
5110         * verify.c (do_newobj): do delegate verification.
5112         * verify.c (verify_delegate_compatibility): perform delegate
5113         verification.
5115         * verify.c (verify_ldftn_delegate): perform tests related to
5116         ldftn delegates.
5118         * verify.c (mono_delegate_signature_equal): perform the
5119         slightly diferent signature comparison required by delegates.
5121         * metadata.c (mono_metadata_type_equal_full): added and exported
5122         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
5123         allows signature only comparison.
5125         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
5126         as MONO_INTERNAL.
5128 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
5130         * verify.c: added a bunch of stack_slot_* functions to
5131         make access to stack slot type easier. This is required to
5132         allow optional flags, like null literal, boxed value and
5133         this pointer.
5134         All access paths to IlStackDesc::stype have been changed 
5135         to use these new funcions.
5136         Removed a bunch of unused functions and cleared all warnings.
5137         This patch introduces the usage of the this pointer and 
5138         boxed value flags.
5140 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
5142         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
5144 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
5146         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
5147         match managed version.
5149         * appdomain.c: Bump corlib version.
5150         
5151         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
5152         argument.
5154 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
5156         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
5157         Set public key token to zero-length byte array if assembly is not
5158         strongnamed.
5160 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
5162         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
5163         writing a vtype array elem.
5165 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
5167         * assembly.c (build_assembly_name): return FALSE if length of token is
5168         not 16 (if not "null").
5169         (mono_assembly_name_parse_full): return FALSE if value of version,
5170         culture, token or key is 0.
5171         * icall.c (fill_reflection_assembly_name): add boolean arguments to
5172         specify whether public key and public key token must be set to default
5173         value (zero-length byte array) if not available. Set versioncompat to
5174         SameMachine. If public key is available or the default is set, then
5175         set PublicKey flag.
5176         (ves_icall_System_Reflection_Assembly_FillName): if no public key
5177         is available, use empty byte array as default value. On the 2.0
5178         profile, use default value for public key token if not set.
5179         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
5180         profile, use default value for public key if not set. On the 2.0
5181         profile, use default value for public key token if not set.
5182         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
5183         default values for public key and public key token.
5185 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
5187         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
5188         field to keep it in synch with the managed object.
5190         * marshal.c (emit_marshal_object): Add support for byref marshalling of
5191         delegates. Fixes #351520.
5193         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
5194         contains defined memory.
5195         
5196         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
5198         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
5199         
5200         * sgen-gc.c (check_consistency): New helper function to do a consistency check
5201         of the GC data structures.
5203         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
5205         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
5206         
5207         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
5208         barrier.
5209         (mono_array_clone_in_domain): Ditto.
5210         (mono_array_clone_in_domain): Ditto.
5212         * threads.c (start_wrapper): Register the thread start argument as a GC root.
5213         (cache_culture): Use a write barrier.
5215         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
5216         (ves_icall_get_property_info): Ditto.
5218         * object.h (MONO_STRUCT_SETREF): New macro.
5220         * class-internals.h (MonoStats): Add some GC statistics.
5222         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
5224 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
5226         * exception.c (mono_exception_from_name_two_strings):
5227         Break from loop after method is found.
5229 2008-01-04  Dick Porter  <dick@ximian.com>
5231         * process.c (process_module_string_read): Rename variable to
5232         reflect correct usage, after fixing bug 345972.
5234 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
5236         * verify.c (mono_type_create_fnptr_from_mono_method): 
5237         created a MonoType function pointer instance to be used during
5238         verification. The verifier releases this memory at end.
5240         * verify.c (mono_method_is_constructor): extracted repeated
5241         checks for constructor into a single class.
5243         * verify.c (do_push_field): use new extracted method
5244         for constructor check.
5246         * verify.c (do_newobj): same.
5248         * verify.c (do_ldftn): renamed to do_load_function_ptr
5249         and make it verify ldvirtftn too.
5251         * verify.c (mono_method_verify: proper verification
5252         of ldvirtftn. release created MonoMethod instances.
5254 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5256         * verify.c (token_bounds_check): added.
5258         * verify.c (do_ldftn): added.
5260         * verify.c (mono_method_verify): proper verificartion of ldftn.
5262 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5264         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
5265         than the table row count. It's the resposibility of the caller to
5266         make the bounds check and raise the correct error.
5268         * metadata.c (mono_metadata_decode_row_col): Same.
5270         * loader.c (mono_get_method_from_token): perform bounds check
5271         on token for methoddef table.
5273 2007-12-29  Miguel de Icaza  <miguel@novell.com>
5275         * icall.c
5276         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
5277         assert into a negative result, the managed code already coped with
5278         that.
5280         Some folks on Windows reported this error. 
5282 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
5284         * appdomain.c: Bump corlib version.
5285         * icall.c:
5286         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
5287         CultureInfo.CreateCulture to create CultureInfo for name.
5288         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
5289         create CultureInfo for name. Fixes bug #347174.
5291 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5293         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
5294         flags.
5296         * verify.c (is_valid_branch_instruction): allow branching to the
5297         first instruction of the protected block.
5299         * verify.c (is_valid_cmp_branch_instruction): same.
5301         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
5302         avoid double initialization.
5304         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
5305         detect which cases the eval stack should just be copied.
5307         * verify.c (mono_method_verify): check if the eval stack
5308         is empty when entering a protected block.
5310 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5312         * verify.c: added is_clause_in_range, is_clause_inside_range,
5313         is_clause_nested and verify_clause_relationship. They perform
5314         the verifications stated in P1 12.4.2.7.
5316         * verify.c (mono_method_verify): remove some unused variables,
5317         add the new exception clause checks, add instruction border
5318         checks for protected block start/end, improved some error 
5319         messages and fixed a bug in the way invalid instruction access
5320         is detected.
5322 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
5324         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
5325         from GC 7.0 if available.
5327         * object.c: Remove an unused define.
5328         
5329         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
5331         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
5333         * null-gc.c (mono_gc_make_descr_for_array): Implement.
5335         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
5337         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
5338         to take the same arguments as the other make_descr functions.
5340         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
5342         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
5343         directly.
5345         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
5346         mini.c.
5348         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
5349         call to boehm-gc.c.
5351         * boehm-gc.c (mono_gc_register_root): Fix a warning.
5353         * null-gc.c (mono_gc_register_root): Fix a warning.
5355         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
5357         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
5358         (mono_gc_base_init): Call GC_init ().
5360         * null-gc.c: Define mono_gc_register_root () as a no-op.
5362         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
5364 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
5366         * verify.c: add prototype for merge_stacks at top
5368         * verify.c (do_switch): added.
5370         * verify.c (merge_stacks): on some cases the stack merging
5371         was not happening properly. Unequal stack sizes at merge
5372         points should be invalid.
5374         * verify.c (mono_method_verify): added more debug info on stack state.
5375         verify switch properly.
5377 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
5379         * method-builder.h: New file, moved the mono_mb_ declarations here from 
5380         marshal.h.
5382         * boehm-gc.c marshal.c: Include method-builder.h.
5384         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
5386         * marshal.c: Remove some code which is now in method-builder.c.
5388 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
5390         * method-builder.c: New file, extraction of the method builder functionality 
5391         from marshal.c.
5393         * marshal.c: Move the mb functions into method-builder.c.
5395         * marshal.h marshal.c: Export some mono_mb_... functions.
5397         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
5399         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
5400         the caller.
5402         * class.c (mono_class_get_full): Check the token type in the dynamic case.
5404         * loader.c (mono_field_from_token): Ditto.      
5406         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
5407         type as well.
5408         
5409         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
5410         Fixes #342565.
5412         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
5413         a helper function for setting it.
5415         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
5417         
5418         * assembly.c: Significally simplify code now that referenced assemblies are 
5419         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
5421         * threads.h: Don't include  the internal threads-types.h header file. Fixes
5422         #349952.
5424 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
5426         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
5427         instructions that were target of branches or are at protected block boundaries.
5429         * verify.c (in_same_block): handle filter clauses.
5431         * verify.c (is_valid_branch_instruction): added. checks the target of
5432         instructions br or brtrue/false.
5434         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
5435         binary branch instructions such as beq and bge.
5437         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
5438         and made it pin the instruction as been part of the exception block.
5440         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
5441         of in_same_block.
5443         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
5444         of in_same_block.
5446         * verify.c (do_ret): ret from a protected block is unverifiable and
5447         not invalid.
5449         * verify.c (do_static_branch): verify br and br.s instructions.
5451         * verify.c (merge_stacks): add extra param to support detection
5452         of branches in the middle of instructions.
5453         
5454         * verify.c (mono_method_verify): verify branches and exception blocks
5455         that target the middle of instructions. Proper verification of br and br.s.
5457 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
5459         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
5460         skip_visibility field.
5461         (reflection_methodbuilder_from_dynamic_method): Ditto.
5463         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
5464         registrations. Fixes #348193.
5466         * threads.h: Move the internal mono_thread_get_pending_exception () to
5467         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
5469 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
5471         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
5472         icall registration. Fixes #348193.
5474         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
5475         for corlib classes into object. Fixes #349621.
5477 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
5479         * icall.c (property_accessor_nonpublic): new function to determine
5480         whether an accessor allows a property to be considered non-public.
5481         Returns false for private accessor(s) from parent class, and internal
5482         accessor(s) from parent on 2.0 profile (and higher).
5483         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
5484         to determine whether property should be included if NonPublic flag
5485         is set. Fixes bug #349078.
5487 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
5489         * verify.c (init_stack_with_value): added.
5491         * verify.c (mono_method_verify): extracted common
5492         code for exception initialization into init_stack_with_value.
5494         * verify.c (mono_method_verify): initialize the exception
5495         for handler clauses as well.
5497         * verify.c (mono_method_verify): fix the exception clause
5498         ordering rules, it should use handler end offset and not
5499         start offset.
5501 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
5503         * rawbuffer.c: remove useless warning.
5505 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
5507         * threads.h, threads-types.h: move functions to the correct header
5508         (fixes bug#349952).
5510 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5512         * verify.c (mono_method_verify): proper verification
5513         of exception handling clauses ranges and fallthru in
5514         and out of protected blocks.
5516 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5518         * verify.c (mono_method_verify): fixed compilation issue.
5520 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5522         * verify.c (mono_method_verify): a printf slipped in, changed
5523         to use verifier debug macro.
5525 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
5527         * verify.c (is_correct_leave): check for filter clauses.
5529         * verify.c (do_filter): added.
5531         * verify.c (mono_method_verify): property verification of leave.
5534 2007-12-18  Mark Probst  <mark.probst@gmail.com>
5536         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
5537         Win32 build, until we figure out how to do the proper thing on
5538         Win32.
5540 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
5542         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
5543         by the previous patch.
5544         
5545         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
5546         the assembly resolve handler for refonly assemblies.
5548 2007-12-17  Mark Probst  <mark.probst@gmail.com>
5550         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
5551         Make sure only one thread is allowed to commence shutdown, and
5552         don't allow new threads to be started once shutdown is in
5553         progress.
5555 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
5557         * verify.c (is_correct_endfilter): added.
5559         * verify.c (is_unverifiable_endfilter): added.
5561         * verify.c (do_endfilter): added.
5563         * verify.c (mono_method_verify): property verification of endfilter
5564         and fixed a corner case or endfinally.
5566 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
5568         * verify.h: new flags to support fail fast of unverifiable code and
5569         do non-strict verification. Non-strict verification is required to
5570         have MS runtime compatibility. There are a huge amount of unverifiable
5571         code that it accepts as verifiable. The strict mode verifies the code
5572         as the specs says.
5573         Non-strict mode will be required in cases where code needs to be
5574         accepted as verifiable but fails under strict mode.
5576         * pedump.c: added support to fail fast and non-strict verification.
5578         * verify.c: added support for both fail fast and non-strict verification.
5580 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
5582         * verify.c (is_correct_endfinally): added.
5584         * verify.c (mono_method_verify): property verification of endfinally.
5586 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5588         * verify.c (in_any_block): check for filter clauses.
5590         * verify.c (is_correct_rethrow): added.
5592         * verify.c (mono_method_verify): property verification of rethrow.
5594         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
5596 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5598         * verify.c (do_throw): added.
5600         * verify.c (mono_method_verify): property verification of throw
5602 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
5604         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
5605         assemblies. Fixes #346425.
5607 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
5609         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
5610         FieldBuilders.
5612         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
5614         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
5615         prevent asserts when this is called with a token which might not be valid.
5617         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
5618         lookup_dynamic_token_class with valid_token == FALSE.
5620         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
5622         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
5624         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5625         
5626 2007-12-10  Mark Probst  <mark.probst@gmail.com>
5628         * gc.c: Don't delay threadpool thread finalization unless Mono is
5629         shutting down.
5631 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5633         * threads.c: turn an assert into a non-fatal warning.
5635 2007-12-09  Robert Jordan  <robertj@gmx.net>
5637         * icall.c (GetVirtualMethod): Add missing argument validation.
5639 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5641         * verify.c (do_cast): added.
5643         * verify.c (mono_method_verify): property verification of castclass and isinst.
5646 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5648         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
5650         * verify.c (do_stelem): added.
5652         * verify.c (mono_method_verify): property verification of stelem.X.
5654 2007-12-07  Mark Probst  <mark.probst@gmail.com>
5656         * class.c, class-internals.h: Introduce an environment variable
5657         (MONO_GENERIC_SHARING) through which the extent of generic code
5658         sharing can be controlled (share all classes, share only corlib
5659         classes, or share nothing).
5661         * object.c: Only create runtime generic context for classes for
5662         which sharing is enabled.
5664 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5666         * verify.c (do_ldelem): refactor it to work with ldelem.any.
5668         * verify.c (mono_method_verify): property verification of ldelem.any.
5670 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5672         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
5673         added ldelem.X opcodes.
5675         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
5677         * verify.c: proper verification of ldelem.X 
5679 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
5681         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
5683 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5685         * verify.c (mono_method_verify): null literal requires special handling,
5686         the value pushed on stack need to be flagged as so.
5688         * verify.c (do_ldelema): Verify ldelema properly.
5690 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5692         * verify.c: Verify ldlen properly.
5694 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
5696         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
5697         to the target object's type. Fixes #346160.
5699 2007-12-05  Dick Porter  <dick@ximian.com>
5701         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
5702         Solaris needs the same workaround as BSD-derived systems.  Fixes
5703         bug 323524, patch by Burkhard Linke
5704         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
5706 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
5708         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
5709         handle to use when error dialog is shown; otherwise, update mask
5710         to show no error dialog when an error occurs.
5712 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
5714         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
5716         * class.c (mono_class_get_field_default_value): New helper function to initialize
5717         field->def_type and field->data.
5719 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
5721         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
5722         the general one.
5724         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
5726         * marshal.c: Avoid depending on delegate->method_info being set.
5728         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
5729         
5730         * object.c (mono_delegate_ctor): Set delegate->method.
5732         * object-internals.h (struct _MonoDelegate): Add 'method' field.
5734         * appdomain.c: Bump corlib version.
5736 2007-11-27  Raja R Harinath  <harinath@gmail.com>
5738         * metadata.c (mono_generic_inst_equal_full): Short-circuit
5739         equality check if we're comparing canonicalized MonoGenericInsts.
5741 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
5743         * class.c (generic_array_methods): Call mono_class_setup_methods () before
5744         accessing class->methods.
5746 2007-11-22  Dick Porter  <dick@ximian.com>
5748         * threads.c: Ensure that the synch_cs is set before trying to use
5749         it.
5751 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
5753         * profiler.c: r89126 broke the statistial profiler, unbreak.
5755 2007-11-22  Martin Baulig  <martin@ximian.com>
5757         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
5759         * mono-debug.c
5760         (mono_debug_debugger_version): Bump to 3.
5761         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
5762         -> mono_debugger_class_initialized().
5764         * mono-debug-debugger.c
5765         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
5767         * class.c
5768         (mono_debugger_start_class_init_func): Removed.
5769         (mono_debugger_class_loaded_methods_func): Added.
5770         (mono_class_setup_methods): Call it here.
5772 2007-11-22  Martin Baulig  <martin@ximian.com>
5774         * mono-debug.c
5775         (mono_debug_add_delegate_trampoline): New public method.
5776         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
5778         * mono-debug.h
5779         (MonoSymbolTable): Added `global_data_table'.
5780         (MonoDebuggerTypeKind): Removed.
5782 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
5784         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
5785         these methods.
5787         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5788         
5789 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
5791         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
5793 2007-11-20  Martin Baulig  <martin@ximian.com>
5795         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
5797         * mono-debug-debugger.c
5798         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
5799         (mono_debugger_remove_breakpoint): Likewise.
5800         (mono_debugger_check_breakpoints): Likewise.
5801         (mono_debugger_register_class_init_callback): New public method.
5802         (mono_debugger_remove_class_init_callback): Likewise.
5803         (mono_debugger_add_type): Likewise.
5805         * mono-debug-debugger.h
5806         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
5808 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
5810         * class.c: more interface implementations needed for the
5811         array enumerator (fixes bug #341112).
5813 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
5815         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
5816         fix ParamName of ArgumentNullExceptions.
5818 2007-11-17  Miguel de Icaza  <miguel@novell.com>
5820         * reflection.c (mono_reflection_encode_sighelper): Generate the
5821         modopts and modreqs.   I have a useless test that crashes monodis,
5822         but that shows the code working.
5824 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
5826         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
5827         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
5829 2007-11-15  Dick Porter  <dick@ximian.com>
5831         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
5832         When joining a thread, it's the thread that's calling Join that
5833         gets WaitSleepJoin state not the target.  Fixes the standalone
5834         test case in bug 334740, and hopefully the whole bug too.
5836 2007-11-15  Dick Porter  <dick@ximian.com>
5838         * process.c: Read file version info from the files pointed at by
5839         process modules, not the current process.  Fixes bug 315969.
5841         Use windows typedef names in some places to fix warnings on the
5842         windows build.
5844 2007-11-15  Mark Probst  <mark.probst@gmail.com>
5846         * image.c, metadata-internals.h: Added a generic_class_cache hash
5847         to MonoImage for looking up generic classes when sharing generics.
5849 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
5851         * sgen-gc.c: warning cleanups.
5853 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
5855         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
5856         inherited properties.
5858 2007-11-14  Mark Probst  <mark.probst@gmail.com>
5860         * object.c, class-internals.h: Added more information to the
5861         runtime generic context.
5863 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
5865         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
5866         instead of just the target method. Generalize the abstract method handling to
5867         handle any non-static method.
5869         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5870         mono_marshal_get_delegate_invoke () signature change.
5872 2007-11-13  Mark Probst  <mark.probst@gmail.com>
5874         * class.c, class-internals.h: Made
5875         mono_type_get_basic_type_from_generic () public.  Fixed member
5876         access check for shared generics.
5878         * loader.c: Don't insert field into field cache if it's part of a
5879         non-inflated generic class.
5881         * domain.c, domain-internals.h: The generic sharing context is now
5882         part of the jit info data structure.  Added two accessor
5883         functions.
5885 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
5887         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
5888         the array Get/Set/Address methods, since the JIT inlines them.
5890         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
5892         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
5893         (mono_image_init): Initialize runtime_invoke_direct_cache.      
5895         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5896         mono_marshal_get_delegate_invoke signature change.
5898         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
5899         an additional argument. Add support for invoking abstract methods.
5901         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
5903         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
5905 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5907         * class.c: Do field layout for open generic classes as well.
5909 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5911         * gc.c, gc-internal.h: Don't finalize threadpool threads with
5912         other objects, because the threadpool is still around.  Put them
5913         in a list instead and after finalizing all other objects in the
5914         root domain shut down the thread pool and then finalize the
5915         threads.  Fixes bug #337383.
5917         * threads.c, thread-types.h: New mono_thread_create_internal()
5918         function for marking a thread with the threadpool flag before it
5919         started.  Set synch_cs to NULL after freeing it.
5921         * threadpool.c: Mark threadpool threads before they start.
5923 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
5925         * reflection.h, reflection.c: don't export random functions
5926         and lazy load dbnull and missing objects.
5928 2007-11-07  Jonathan Chambers <joncham@gmail.com>
5930         * class.c: Initialize COM types if COM interfaces
5931         are present (not just COM classes).
5932         
5933         Code is contributed under MIT/X11 license.
5935 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5936         * reflection.c:
5937         create_dynamic_mono_image: hook module profiler events (dynamic case).
5938         mono_image_basic_init: hook assembly profiler events (dynamic case).
5940 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5941         * profiler.c:
5942         simple_appdomain_unload: completely terminate the profiler
5943         instead of only processing the statistical samples.
5944         simple_shutdown: make sure this is really called exactly once,
5945         even in multithreaded applications, and always listen to
5946         appdomain events.
5947         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
5948         here, the "[un]load" functions will do it.
5949         Fixes bugs #333791 and #325261.
5951 2007-11-07  Geoff Norton  <gnorton@novell.com>
5953         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
5954         rather than depend on __APPLE__.
5956 2007-11-07  Mark Probst  <mark.probst@gmail.com>
5958         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
5960 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
5962         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
5963         UTF16 MonoString. Fix the crash from bug #335488
5965 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
5967         * marshal.c: Correct (for non-Win32 OS) length != size in 
5968         mono_string_from_bstr. Fix #339530.
5970 2007-11-06  Geoff Norton  <gnorton@novell.com>
5972         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
5973         to succeed
5975 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
5977         * process.c: Added run-time GetProcessId API detection for Windows.
5979 2007-11-04  Miguel de Icaza  <miguel@novell.com>
5981         * reflection.c  (mono_param_get_objects): If a parameter has the
5982         attribute [System.Runtime.InteropServices.Optional] we should
5983         set the DefaultValue of the ParameterInfo to be
5984         System.Reflection.Missing instead of DBNull.
5986         See bug #339013.
5988         (mono_get_reflection_missing_object): New method,
5989         returns the System.Reflection.Missing.Value singleton instance.
5991 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5993         * culture-info-table.h : regenerated.
5995 2007-11-02  Jonathan Chambers <joncham@gmail.com>
5997         * icall.c: Use GetEnvironmentStrings on windows
5998         so we are using the same environment block as 
5999         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
6000         #333740.
6001         
6002         Code is contributed under MIT/X11 license.
6004 2007-10-31  Martin Baulig  <martin@ximian.com>
6006         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
6008         * mono-debug-debugger.h
6009         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
6011 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
6013         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
6014         classes.
6016 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
6018         * culture-info-table.h : regenerated.
6020 2007-10-30  Robert Jordan  <robertj@gmx.net>
6022         * icall-def.h, icall.c:
6023         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
6025         Code is contributed under MIT/X11 license.
6027 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
6029         * class.c (mono_class_setup_vtable): Find the inflated methods in the
6030         inflated class instead of inflating them again.
6031         
6032         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
6033         dynamic case.
6035         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
6036         Call setup_supertypes () after klass->parent is set.
6037         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
6039         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
6040         for inflated instances of not yet created dynamic generic classes.
6041         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
6042         times from inflated_method.
6043         (methodbuilder_to_mono_method): Ditto.
6045 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
6047         * gc.c: code cleanup and removed old untested option of not creating the
6048         finalizer thread.
6050 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
6052         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6053         creating a jump trampoline for dynamic methods.
6055 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
6057         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
6058         generic TypeBuilders when called from another method of the same type (bug #335131).
6061 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
6063         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
6064         doesn't seem to work perfectly.
6065         
6066         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
6067         called multiple times.
6068         (methodbuilder_to_mono_method): Ditto.
6069         (resolve_object): Inflate FieldBuilder's.
6071 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6073         * string-icalls.c, string-icalls.h, appdomain.c: patch from
6074         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
6075         RemoveEmptyEntries in the string.Split implementation (bug #322375).
6077 2007-10-26  Dick Porter  <dick@ximian.com>
6079         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
6080         Thread initialisation changes
6082 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
6084         * verify.c: fix compatibility check between arrays and System.Array
6086 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
6088         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
6089         too. Fixes #336999.
6091 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
6093         * object.c (mono_value_box): Use typed allocation here.
6095 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
6097         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
6098         trampoline instead of compiling the method right away.
6100         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
6102 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
6104         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
6105         related fields for dynamic classes. Fixes #334493.
6107 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
6109         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
6110         
6111         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
6113         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
6114         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
6116         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
6118         * reflection.c (create_generic_typespec): Initialize klass->generic_container
6119         if needed.
6120         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
6122 2007-10-18  Jonathan Chambers <joncham@gmail.com>
6124         * marshal.c: Use correct key when removing item
6125         from ccw_hash.
6126         
6127         Code is contributed under MIT/X11 license.
6129 2007-10-17  William Holmes  <billholmes54@gmail.com>
6131         *marshal.c: Adding a case to marshal booleans to U1
6133         Code is contributed under MIT/X11 license.
6135 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
6137         * class.c (mono_class_from_name): Search the modules compromising dynamic
6138         assemblies. Fixes #331601.
6140 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
6142         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
6143         exception if the type name contains an assembly component. Fixes #334203.
6145         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
6146         modules inside dynamic assemblies. Fixes #334200.
6147         
6148         * reflection.c: Set image->public_key and image->public_key_length;
6150         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
6151         fields.
6153         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
6154         
6155 2007-10-16  Mark Probst  <mark.probst@gmail.com>
6157         * metadata.c: Implemented correct comparing of generic classes.
6158         An inflated generic class can be equal to a non-inflated one if it
6159         is inflated with generic type variables as type arguments.  Fixes
6160         bug #333798.
6162 2007-10-15  Dick Porter  <dick@ximian.com>
6164         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
6165         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
6166         81646.
6168         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
6169         instead of a monitor lock.  This means that monitor_try_enter and
6170         co can set the thread state safely.
6171         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
6172         thread_interrupt_requested, so interrupt actually works.
6174         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
6175         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
6176         state accessor function
6178 2007-10-15  Martin Baulig  <martin@ximian.com>
6180         * mono-debug.h
6181         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
6182         the debugger with the current runtime.
6184 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
6186         * object.c, object-internals.h: added the ability to set a single
6187         trampoline for all the slots in a vtable.
6189 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6191         * marshal.c: deal with a possible race condition during multicast
6192         delegate invocation.
6194 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6196         * class.c: ensure value type methods don't have the synchronized
6197         flag set.
6199 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
6201         * string-icalls.c, string-icalls.h: reverted unapproved patch that
6202         breaks the build.
6204 2007-10-11  Joel Reed  <joelwreed@comcast.com>
6206         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
6207         to take an options parameter so that empty entries can be removed during
6208         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
6210 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6212         * marshal.c: make sure we don't store the signature from a dynamic
6213         method into the runtime invoke cache (bug #327189).
6215 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6217         * marshal.c: make sure the wrapper methods are properly initialized.
6219 2007-10-11  Mark Probst  <mark.probst@gmail.com>
6221         * metadata.c, metadata-internals.h: Generalized
6222         mono_type_stack_size() to mono_type_stack_size_internal() which
6223         takes an additional argument specifying whether it allows open
6224         types.
6226 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6228         * verify.c (do_invoke_method): handle typedbyref params
6229         correctly and check for unverifiable return values.
6231         * verify.c (do_newobj): fix a warning.
6233 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6235         * verify.c: don't tread typedbyref as allways unverifable,
6236         so uses, like (ld/st)loc.0 are valid. verify for the cases
6237         that it matters, like boxing related operations.
6239 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6241         * verify.c: add verification of the newobj opcode. verification
6242         of delegate instantation still missing due ldftn and virldftn not
6243         pushing the function type on stack
6245 2007-10-08  Mark Probst  <mark.probst@gmail.com>
6247         * class-internals.h: Runtime generic context data structure
6248         definition.
6250         * object.c: Initialization of runtime generic context at runtime
6251         vtable creation time.
6253 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
6254         * class.c (mono_class_create_from_typedef,
6255         mono_class_from_generic_parameter, mono_ptr_class_get,
6256         mono_fnptr_class_get, mono_bounded_array_class_get)
6257         * domain.c (mono_domain_create, mono_domain_free)
6258         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
6259         * image.c (do_mono_image_load, mono_image_close):
6260         Hooked up load-unload profiler events.
6262 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
6264         * domain.c: track statistics about the actual amount of native code
6265         allocated.
6267 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6269         * class.c: the valuetype enumerators don't have the additional
6270         supertypes interfaces.
6272 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6274         * class.c: need more interfaces setup for the IEnumerator<T>
6275         object created for arrays (tests/ienumerator-interfaces.2.cs).
6277 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
6279         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
6281 2007-10-05  Alp Toker  <alp@atoker.com>
6283         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
6284         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
6285         #315863.
6287 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6289         * verify.c (verify_type_compatibility_full): verification of
6290         compatibility improved, validates correctly non-strict checks between
6291         native int and I4 types different than (unsigned)int32.
6293         * verify.c (do_store_indirect): added, do all verification of
6294         ldind.X opcodes. 
6296         * verify.c (get_load_indirect_mono_type): renamed to
6297         get_indirect_op_mono_type, as it now returns the MonoType for 
6298         ldind.X and stind.X opcodes.
6300 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6302         * reflection.c: Fix the encoding of generic type definition for
6303         TypeBuilders.
6305         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
6306         mono_image_typedef_or_ref but allows to specify if typespec lookups should
6307         be made. Typespec check is done prior to typeref cache lookup.
6309         * reflection.c (mono_image_typedef_or_ref): now just delegate to
6310         mono_image_typedef_or_ref_full.
6312         * reflection.c (encode_generic_class): encode the generic class
6313         directly instead of calling encode_type.
6315         * reflection.c (encode_type): encode the generic type definition
6316         MonoClass as a generic instantiation.
6318         * reflection.c (create_typespec): cache typespec tokens in
6319         the assembly->typespec cache. Don't create typespec for a generic
6320         instance MonoClass. Create typespec for the generic type defintion.
6322         * reflection.c (create_generic_typespec): encode the generic
6323         class directly instead of calling encode_type.
6325         * reflection.c (mono_image_create_token): encode the generic
6326         type definition not using a typespec for MonoType instances.
6329 2007-10-04  Raja R Harinath  <rharinath@novell.com>
6331         Fix #328812
6332         * class.c (mono_image_init_name_cache): Don't return nested
6333         'protected internal' classes.
6334         (mono_class_from_name_case): Likewise.
6336 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6338         * icall-def.h, icall.c : get_bundled_machine_config() is now the
6339           common function used by both DefaultConfig in System.dll and
6340           InternalConfigurationHost in System.Configuration.dll.
6342 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6344         * class.c: automatically add to vectors only a few essential explicit
6345         generic interfaces. The rest of the interfaces that arrays should
6346         provide are currently implicitly added (but still not lazily, see the
6347         design in the discussion of bug#325495 for the details of what is
6348         needed for that). Additionally, implicit interfaces are assigned the
6349         same vtable slot as the explicit interfaces (as they are compatible):
6350         this enables huge memory savings since we don't need to instantiate
6351         as many memthods and as large vtables anymore. Also, Since
6352         GetEnumerator<T> returns an instance of a type that is required to
6353         support a similarly large set of interfaces as arrays, we add
6354         implicit interfaces and interface offset sharing support to those
6355         types, too. This change adds all the required interfaces so that
6356         the anonarray.cs test case in the bug report works (we don't add
6357         all the interfaces to arrays of arrays 3-level deep and more because
6358         of the memory requirements explained in the bug and since they are much
6359         less common: the lazy-loading support will enabled them to work, too).
6361 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6363         * verify.c (merge_stacks): major clean up, all type compatibility
6364         checks are done by verify_type_compatibility. This fix my earlier lack
6365         of understanding of the CLR type system and merge_stacks no longer looks
6366         scary.
6368         * verify.c: fixed some bad spelling.
6370 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6372         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
6373         a given stack slock.
6374         
6375         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
6376         verify_type_compatibility_full. This removed a near indentical function and fixed
6377         handling of Int32 and IntPtr across all opcodes.
6379 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6381         * class.c: only vectors have the additional generic interfaces.
6383 2007-10-01  Jonathan Chambers <joncham@gmail.com>
6385         * mono-config.c: Use g_strcasecmp instead of
6386         strcasecmp like everywhere else to fix
6387         compilation with MSVC.
6388         
6389         Code is contributed under MIT/X11 license.
6391 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6393         * object.c, object-internals.h: refactored the IMT code to enable
6394         building a single slot at a time and lazily creating the IMT trampolines
6395         and thunks.
6397 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
6399         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
6401         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
6402         Fixes #328501.
6403         
6404 2007-09-29  Raja R Harinath  <harinath@gmail.com>
6406         * loader.c (method_from_methodspec): Rearrange to avoid
6407         un-necessary exposition.  Don't assert out if the method's
6408         declaring type is a generic type definition.
6410 2007-09-28  Martin Baulig  <martin@ximian.com>
6412         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
6414 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
6416         * class-internals.h: optimize field layout of MonoClass to
6417         requires less cachelines at runtime and save a few bytes on 64 bit
6418         systems.
6420 2007-09-28  Jb Evain  <jbevain@novell.com>
6422         * reflection.c: when encoding type names in custom attributes,
6423         if the type is a closed generic type, its generic arguments
6424         have to be serialized as AssemblyQualifiedName, so that when
6425         they are deserialized, it's possible to re-create them properly.
6426         Fixes #329450.
6429 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6431         * object.c, class-internals.h: added delegate-creation counter.
6433 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
6435         * class.c: cleanup of the code that synthetizes interfaces for
6436         arrays in 2.0: saves quit a bit of corlib mempool memory.
6437         Code to fix bug #325495 ifdeffed out for now until the issues
6438         with memory usage and O(n^2) behaviour are fixed.
6440 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6442         * marshal.c: when possible, do not duplicate the name of the methods
6443         in the method builder and in the generated MonoMethod.
6445 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6446         * verify.c: added support for type checking ldind_* opcodes.
6448 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6450         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
6451         which is used to distinguish the fully open instantiation of a TypeBuilder
6452         with the rest. This temporary hack is required to restore the property that
6453         the fully open instantiation is the same type of the generic type definition.
6455         * class-internals.h (mono_generic_class_is_generic_type_definition):
6456         new function as part of the internal API.
6458         * class.c (inflate_generic_type): return NULL when the generic inst is
6459         fully open. The fully open generic type is now the same as the generic type
6460         definition for non TypeBuilder types.
6462         * class.c (mono_generic_class_get_class): removed assert since it is
6463         no longer valid, gklass->cached_class can point to the generic type definition.
6465         * class.c (mono_generic_class_is_generic_type_definition): new.
6467         * metadata.c (mono_generic_class_hash): added is_tb_open field
6468         to the hash calculation.
6470         * metadata.c (free_generic_class): if the generic class is associated
6471         with the generic type definition, its field will come from the mempool and
6472         must not be freed.
6474         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
6475         new, this function identifies the corner case of a TypeBuilder fully open
6476         instantiation.
6478         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
6479         for lookup. Set gclass->cached_class to be the container class in case of
6480         the fully open instantiation of non TypeBuilder types.
6482         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
6483         to compare generic classes.
6485         * reflection.c (method_encode_methodspec): remove assert that
6486         no longer is valid.
6488         * reflection.c (mono_reflection_generic_class_initialize): add
6489         an aditional assert to ensure the proper type is used.
6491 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
6493         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
6494         to enjoy it.
6496 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6498         * verify.c (push_arg): Fixed support for ldarga
6499         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
6500         MonoType used as first arg in case of instance calls.
6502 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6504         * verify.c: Support for verifying VAR and MVAR types, 
6506 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
6508         * icall.c (ves_icall_get_property_info): Set the reflected type of the
6509         accessors correctly.
6511 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
6513         * threads.c: support OSX and other systems in
6514         mono_thread_get_stack_bounds (bug #328026).
6516 2007-09-25  Martin Baulig  <martin@ximian.com>
6518         * mono-debug.h
6519         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
6521 2007-09-24  Martin Baulig  <martin@ximian.com>
6523         * mono-debug.h
6524         (MonoDebugClassEntry): Moved the definition of this struct into
6525         mono-debug.c to make it private.
6527         * mono-debug.c
6528         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
6529         type table per symbol file, we don't need to store the symfile id
6530         any longer.
6532 2007-09-24  Martin Baulig  <martin@ximian.com>
6534         Create one type table per symbol file, since a `MonoClass *' gets
6535         invalid when its image is unloaded.
6537         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
6538         (MonoDebugHandle): Added `type_table'.
6540 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
6542         * mempool.c, mempool.h: added mono_mempool_new_size () API
6543         to be able to specify a smaller initial size for the pool.
6544         Adjusted the code to slowly increase pool size before using
6545         the previous default size.
6546         * image.c: use a small initial size for image mempools.
6548 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
6550         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
6551         Fixes ##320990.
6553         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
6554         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
6556 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
6558         * metadata.c (mono_type_create_from_typespec): Remove an invalid
6559         free. Fixes #327438.
6561 2007-09-21  Raja R Harinath  <harinath@gmail.com>
6563         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
6564         generic instantiations, etc.
6565         <MONO_TYPE_ARRAY>: Likewise.
6567 2007-09-21  Martin Baulig  <martin@ximian.com>
6569         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
6570         these structs were never defined.
6571         (MonoDebugHandle): Removed the `_priv' field, it was never used.
6573 2007-09-21  Martin Baulig  <martin@ximian.com>
6575         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
6577 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
6579         * image.c: removed the guid hash tables: we can get the same info
6580         without the additional memory usage hit (partially fixes also bug #327052).
6582 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6584         * profiler.h, profiler-private.h, profiler.c: add a new profiler
6585         event to handle unloading methods. After the event is called, the
6586         corresponding MonoMethod* must be considered invalid.
6587         * loader.c (mono_free_method): call the new mono_profiler_method_free
6588         event.
6590 2007-09-20  Mark Probst  <mark.probst@gmail.com>
6592         * domain-internals.h: New flag in MonoJitInfo which marks shared
6593         generic methods.  New hash table (shared_generics_hash) in
6594         MonoDomain to keep track of shared generic methods.  Prototypes
6595         for functions to register and lookup shared generic methods.
6597         * domain.c: Support for registering and looking up shared generic
6598         methods via a hash table (shared_generics_hash) in MonoDomain.
6600         * class-internals.h: New exception to signal failure of shared
6601         compilation of a generic method.  New counters for generics
6602         sharing in MonoStats.
6604 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
6606         * image.c, metadata-internals.h: don't keep a file descriptor open
6607         for loaded assemblies (bug#325988).
6609 2007-09-19  Raja R Harinath  <rharinath@novell.com>
6611         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
6612         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
6613         use the corresponding datatypes.
6614         (type_in_image): Update to changes.
6615         (CleanForImageUserData): Simplify.
6616         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
6617         Avoid quadratic behaviour in handling the "stolen" list by
6618         separating the filter predicate out, and by prepending the stolen
6619         items rather than appending them.
6620         (steal_ginst_in_image): Likewise.
6621         (mono_metadata_clean_for_image): Update to changes.
6623 2007-09-19  Martin Baulig  <martin@ximian.com>
6625         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
6627 2007-09-19  Martin Baulig  <martin@ximian.com>
6629         * mono-debug.c (mono_debug_cleanup): Don't call
6630         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
6632 2007-09-19  Raja R Harinath  <harinath@gmail.com>
6634         Fix crash on 'make run-test' in mcs/errors
6635         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
6636         Avoid more potential allocations in mono_class_from_mono_type.
6637         (ginst_in_image): Update to changes.
6638         (gclass_in_image): Rearrange slightly.
6640 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6642         * class.c (mono_class_init): Move the code that sets up class->methods to 
6643         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
6645         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
6646         canonical instance of an inflated generic signature.
6647         (mono_type_create_from_typespec): Remove an invalid free.
6649         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
6651 2007-09-18  Marek Habersack  <mhabersack@novell.com>
6653         * domain-internals.h: added a declaration of the
6654         mono_assembly_load_full_nosearch internal function.
6656         * assembly.c (mono_assembly_load_with_partial_name): use
6657         mono_try_assembly_resolve return value properly.
6658         (mono_assembly_load_full_nosearch): copied the function body from
6659         mono_assembly_load_full, without the code to invoke assembly
6660         search hooks.
6661         (mono_assembly_load_full): calls the above new function and if the
6662         assembly is not resolved, invokes the search hooks.
6664         * appdomain.c (mono_runtime_init): restore the global postload
6665         assembly search handlers.
6667 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6669         * class.c (mono_class_init): Make sure class->methods and class->properties
6670         are never NULL in the generics case.
6672         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
6674 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
6676         * metadata.c (free_generic_class): Disable some code to fix the build.
6678         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
6680         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
6681         from the image mempool.
6683         * metadata.c (free_generic_class): Free more data from the inflated class.
6685         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
6687         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
6688         mempool.
6689         (mono_type_create_from_typespec): Ditto.
6691         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
6692         MonoImage to the caller.
6693         (mono_init_internal): Save the opened image in a global variable.
6694         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
6696         * reflection.c (resolve_object): Fix a leak.
6698         * metadata.c: Fix the freeing of data in the generics caches.
6699         
6700         * metadata.c (free_generic_inst): Comment this out to fix the build.
6701         (free_generic_class): Ditto.
6703         * metadata.c: Free cached generic methods, instantinations and classes when
6704         they are removed from the caches.
6705         (mono_metadata_free_type): Free the type itself.
6707         * class.c: Free the result of mono_class_inflate_generic_type () in a few
6708         places.
6710 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6712         * boehm-gc.c: restrict managed allocs to __thread supporting
6713         architectures.
6715 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
6717         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
6718         (mono_generic_class_get_class): Fix a leak.
6720         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
6721         mono_metadata_free_type ().
6722         (mono_metadata_inflate_generic_inst): Fix a leak.
6724 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6726         * mono-debug.c (free_header_data): Fix a leak missed earlier.
6728         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
6729         mempool.
6731         * mono-debug.c (mono_debug_close_image): Fix call to 
6732         g_hash_table_remove ().
6734 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6736         * icall-def.h: redirect all the string ctor to the managed
6737         CreateString () methods.
6738         * string-icalls.c, string-icalls.h: removed dead code for string
6739         ctors and icalls.
6741 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6743         * mono-debug.c: Fix memory leaks.
6745 2007-09-14  Jonathan Chambers <joncham@gmail.com>
6747         * threads-types.h: Implement mono_hazard_pointer_set and 
6748         mono_hazard_pointer_clear macros using do/while(0) to fix
6749         compilation with MSVC.
6750         
6751         Code is contributed under MIT/X11 license.
6753 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6755         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
6756         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
6758 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6760         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
6761         icalls.
6763 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6765         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
6766         managed-code allocated as well.
6768 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6770         * class.c (mono_class_is_assignable_from): Add support for generic variance.
6772 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
6774         * boehm-gc.c: fixed the build after the AOT changes.
6776 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6778         * wrapper-types.h: Add an ALLOC wrapper type.
6780         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
6781         reference managed allocator methods.
6783 2007-09-12  Marek Safar  <marek.safar@gmail.com>
6785         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
6786         of Type array and not MonoType, a fix suggested by Hari.
6787         
6788 2007-09-12  Jonathan Chambers <joncham@gmail.com>
6790         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
6791         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
6792         
6793         Code is contributed under MIT/X11 license.
6795 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6797         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
6799 2007-09-12  Marek Habersack  <mhabersack@novell.com>
6801         * image.c (do_mono_image_open): if assembly file fails to open and
6802         MONO_IOMAP is in effect, try to find the path in a
6803         case-insensitive way.
6805         * appdomain.c (mono_runtime_init): do not install postload hooks -
6806         tests show that MS.NET doesn't use anything of that sort to
6807         trigger the AppDomain.AssemblyResolve event.
6808         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
6809         made non-static.
6810         (mono_runtime_init): init portability helpers here.
6812         * assembly.c (mono_assembly_load_with_partial_name): if other   
6813         attempts fail, trigger the AppDomain.AssemblyResolve event handler
6814         to resolve the assembly.
6816         * domain-internals.h: added mono_try_assembly_resolve and marked
6817         it as internal.
6819 2007-09-11  Jb Evain  <jbevain@novell.com>
6821         * object-internals.h (MonoReflectionDynamicMethod): add
6822         a `MonoReflectionType *owner` field. The owner is used
6823         * reflection.c:
6824         (mono_reflection_create_dynamic_method): use the owner of the dynamic
6825         method as the class declaring the dynamic method.
6826         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
6827         dynamic method to the declaring type of the methodbuilder.
6829 2007-09-11  Mark Probst  <mark.probst@gmail.com>
6831         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
6832         rules for calling methods via reflection.
6834 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
6836         * reflection.c (resolve_object): Add support for MonoGenericClass. 
6837         Inflate MonoType's.
6839 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
6841         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
6842         provide a managed method that does fast allocations without needing
6843         a managed->unmanaged transition. Boehm GC implementation currently
6844         enabled for ptrfree objects on sane architectures.
6846 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6848         * marshal.c, marshal.h: exported a couple of useful functions and
6849         added mono_mb_get_label () to easily handle backward branches.
6851 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
6853         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
6855 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6857         * loader.c (find_method): Fixed the regression introduced while
6858         fixing bug #81466.
6860 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
6862         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
6863         well.
6864         
6865         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
6866         icall.c reflection.c: Pass a MonoGenericContext argument to 
6867         mono_lookup_dynamic_token ().
6869         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
6870         #82744.
6871         
6872 2007-09-09  Robert Jordan  <robertj@gmx.net>
6874         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
6875         for generic methods.
6877         * object.c (mono_object_get_virtual_method): Handle generic methods.
6878         Fixes bug #78882.
6880         Code is contributed under MIT/X11 license.
6882 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6884         * image.c: fix locking in mono_image_load_file_for_image ().
6886 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
6888         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
6889         used only as a cache: added an icall to fill it.
6891 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
6893         * reflection.h: exposed mono_reflection_free_type_info
6894         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
6895         since mono_reflection_bind_generic_parameters makes a copy of it.
6896         * reflection.c (free_type_info): subinfos should be freed.
6897         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
6898         made non static.
6899         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
6900         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
6901         this fixes #82695 and #81726.
6902    
6904 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
6906         * process.h, process.c:  added support for user profile/info in
6907           ProcessStartInfo. For now only Windows works.
6909 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6911         * metadata.c: consider the generic arguments when comparing
6912         signatures (bug #82614).
6914 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6916         * cil-coff.h, image.c: updated assembly loader to cope with the
6917         PE32+ 64 bit file format.
6919 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6921         * assembly.c, class.c, domain.c, loader.c: remove useless
6922         inclusion of cil-coff.h.
6924 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
6926         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
6927         if interface is marked with CoClassAttribute. 
6928    
6929         Code is contributed under MIT/X11 license.
6931 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6933         * sgen-gc.c: ensure no object from the to space is copied again or finalized
6934         if it's seen twice in major collections.
6936 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6938         * sgen-gc.c: big objects are not copied to the gray area, but they
6939         need to be considered for scanning, too, if they are brought alive
6940         by an object ready for finalizations or a survived one.
6942 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6944         * sgen-gc.c: properly account the number of disappearing links when
6945         they are nullified.
6947 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6949         * sgen-gc.c: share the code to scan the registered roots between the
6950         different types of collections.
6952 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6954         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
6956 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6958         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
6959         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
6961 2007-08-28  Mark Probst  <mark.probst@gmail.com>
6963         * security-manager.c (mono_security_manager_get_methods):
6964         LinkDemandSecurityException now has 2 arguments instead of 3.
6966 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
6968         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
6969         platforms which need it.
6971 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6973         * sgen-gc.c: unregister thread data structures with a pthread_key_t
6974         dtor.
6976 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6978         * threads.c: free the thread static data on thread exit.
6980 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
6982         * class.c: walk the hierarchy to find the generic definition for
6983         a class (fixes runtime part of bug #82498).
6985 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6987         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
6988         ...
6990         * image.c (mono_image_close): Here. Hopefully fixes #82510.
6992 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6994         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
6996 2007-08-24  Robert Jordan  <robertj@gmx.net>
6998         * appdomain.c: don't perform the ':'->';' substitution on Win32.
7000 2007-08-24  Jb Evain  <jbevain@novell.com>
7002         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
7003         for byref types.
7005 2007-08-24  Mark Probst  <mark.probst@gmail.com>
7007         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
7008         #82286.
7010 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
7012         * assembly.c: Fix a warning.
7013         
7014 2007-08-23  Marek Habersack  <mhabersack@novell.com>
7016         * appdomain.c: parse the <runtime> section looking for the probing
7017         element with the 'privatePath' attribute, which sets additional
7018         directories in which the runtime should look for assemblies.
7020 2007-08-23  Robert Jordan  <robertj@gmx.net>
7022         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
7023         Fixes #82499.
7025 2007-08-23  Martin Baulig  <martin@ximian.com>
7027         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
7028         _mono_debug_init_corlib() and remove it from the header file.
7030 2007-08-23  Martin Baulig  <martin@ximian.com>
7032         * mono-debug-debugger.c
7033         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
7034         don't notify the debugger about it.
7036         * mono-debug-debugger.h
7037         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
7039 2007-08-23  Robert Jordan  <robertj@gmx.net>
7041         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
7042         Code is contributed under MIT/X11 license.
7044 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
7046         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
7048 2007-08-22  Martin Baulig  <martin@ximian.com>
7050         * mono-debug.c: Store debugging info on a per-domain basis and
7051         free it on domain unload.  Add support for unloading symbol files.
7053         * mono-debug.h
7054         (MonoDebugList): New typedef.
7055         (MonoSymbolTable):
7056         - add `data_tables and `type_table'.
7057         - replace 'symbol_files' and `num_symbol_files' with a
7058           `MonoDebugList *'.
7059         (mono_debug_data_table): Removed.
7060         (mono_debug_list_add): New public function.
7061         (mono_debug_list_remove): New public function.
7062         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
7063         (mono_debug_init_2_memory): Renamed into
7064         mono_debug_open_image_from_memory().
7065         (mono_debug_close_image): New public function.
7066         (mono_debug_domain_create): Likewise.
7067         (mono_debug_domain_unload): Likewise.
7068         (MONO_DEBUGGER_VERSION): Bump to 60.
7070         * mono-debug-debugger.h
7071         (MonoDebuggerEvent):
7072         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
7073         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
7074         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
7075         - rename `THREAD_CREATED' and `THREAD_EXITED' into
7076           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
7077         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
7078           meaning.
7079         (mono_debugger_add_symbol_file): Removed.
7080         (mono_debugger_add_type): Removed.
7081         (mono_debugger_lookup_type): Removed.
7082         (mono_debugger_lookup_assembly): Removed.
7084         * domain.c
7085         (mono_domain_create): Call mono_debug_domain_create().
7086         (mono_init_internal): Call mono_debug_init_corlib().
7088         * assembly.c
7089         (mono_assembly_close): Call mono_debug_close_image().
7091 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
7093         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
7094         mmap call.
7096 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7098         * sgen-gc.c: ensure section->pin_queue_end is initialized
7099         correctly when non pinning objects in the section have been found.
7101 2007-08-22  Marek Habersack  <mhabersack@novell.com>
7103         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
7104         containing a list of directories separated by ':'. MSDN docs say
7105         the directories should be separated with ';'. Part of a bugfix for
7106         bug #81446
7108 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
7110         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
7111         it should MonoType and not MonoClass.
7113 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
7115         * culture-info-table.h : regenerated.
7117 2007-08-20  William Holmes  <billholmes54@gmail.com>
7119         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
7120          to call ReplaceFile Kernel32 on windows or in io-layer.
7121         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
7122         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
7123          as an internal call.
7125         Code is contributed under MIT/X11 license.
7127 2007-08-20  Jb Evain  <jbevain@novell.com>
7129         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
7130         and MONO_EXCEPTION_FIELD_ACCESS.
7132         * debug-helpers.[c|h]: new mono_field_full_name function.
7134 2007-08-20  Mark Probst  <mark.probst@gmail.com>
7136         * class.c: Removed class_security_level() and moved it to
7137         security-core-clr.c.
7139         * security-core-clr.c, security-core-clr.h: class_security_level()
7140         is now public and renamed to mono_security_core_clr_class_level().
7141         It also looks for security attributes in the classes a class is
7142         nested in.
7144 2007-08-20  Mark Probst  <mark.probst@gmail.com>
7146         * security-core-clr.c, security-core-clr.h: CoreCLR security
7147         utility functions.
7149         * Makefile.am: Added security-core-clr.[ch].
7151         * security-manager.c, security-manager.h: Functions and enum for
7152         setting and getting the security mode.
7154         * class.c: CoreCLR security checks.
7156 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
7158         * icall-def.h, process.c, process.h: implemented icall to get
7159         user/system processor times.
7161 2007-08-17  Mark Probst  <mark.probst@gmail.com>
7163         * domain.c, threads.c, class-internals.h, domain-internals.h: New
7164         reader-lock-free jit_info_table.
7166 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
7168         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
7170         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
7172         * object-internals.h (MonoException): Add missing _data member.
7174 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7176         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
7177         checking that only methods with matching qname or fqname are picked
7178         from implemented interfaces.
7180 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7182         * verify.c (do_newarr):added, do type verification of
7183         newarr ops, push the right value on the eval stack.
7184         * verify.c (mono_method_verify): use do_newarr
7187 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7189         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
7190         factored the common code into get_boxable_mono_type, which
7191         is now using mono_type_get_full, this fixed byref related tests.
7193 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7195         * class.c: added mono_type_get_full, this function has the same
7196         behavior of mono_class_get_full but the returned MonoType has
7197         all metadata of the associated token in case of a typespec token.
7198         * class.c: added mono_type_retrieve_from_typespec, used by 
7199         mono_type_get_full to retrieve the token type.
7200         * class.c (mono_class_create_from_typespec): changed to use
7201         mono_type_retrieve_from_typespec.
7202         * class.c (mono_ldtoken): changed to use mono_type_get_full
7203         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
7204         * class-internals.h: exported mono_type_get_full for internal use.
7206 2007-08-16  Jb Evain  <jbevain@novell.com>
7208         * domain.c (supported_runtimes): add entry for
7209         the 'moonlight' runtime version.
7211 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7213         * verify.c (mono_method_verify): small typo sliped in.  
7215 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7217         * verify.c (do_unbox_value): added, do type verification of
7218         unboxing ops
7219         * verify.c (mono_method_verify): use do_unbox_value
7222 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7224         * verify.c (dump_stack_value): fixed typo, was printing string
7225         instead of object on stack.
7226         * verify.c (do_box_value): moved the byref check up as it leads
7227         to invalid code and should be done earlier.
7228         * verify.c: improved error messages for and ldobj
7230 2007-08-15  William Holmes  <billholmes54@gmail.com>
7232         * marshal.c (emit_marshal_custom): Omit the call to 
7233           marshal_native_to_managed when calling native to managed 
7234           and the argument is specified as an out argument.
7236         Code is contributed under MIT/X11 license.
7238 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7240         * verify.c: fixed the type checks for generics, function pointers and vectors.
7241         Added type verification for ldobj and ldtoken. The verifier
7242         would segfault if header or signature of a method contained references
7243         to non-existant types.
7245 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7247         * marshal.c (cominterop_get_ccw): Patch from
7248         Bill Holmes to no walk up interface hierarchy. 
7249         All parent methods should be present in the interface for COM.
7250    
7251         Code is contributed under MIT/X11 license.
7253 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7255         * marshal.c (emit_marshal_com_interface): Patch from
7256         Bill Holmes to handle COM Interfaces as return values
7257         for native->managed calls.
7258    
7259         Code is contributed under MIT/X11 license.
7261 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
7263         * marshal.c (cominterop_get_idispatch_for_object): Implement
7264         for runtime callable wrappers.
7265    
7266         Code is contributed under MIT/X11 license.
7268 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
7270         * pedump.c (main): changed from mono_init to mono_init_from_assembly
7271         so 2.0 types are accessible
7274 2007-08-13  Miguel de Icaza  <miguel@novell.com>
7276         * domain.c (mono_init_internal): Call mono_assembly_load_friends
7277         once we load mscorlib.   Due to the order in which we initialize,
7278         the mono_assembly_load_full routine that loads mscorlib did not
7279         load friends.   We now load it once we load the
7280         mono_defaults.internals_visible_class class. 
7282         * assembly.c: Expose the mono_load_friend_assemblies method.
7284 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
7286         * verify.c: improved the handling of boxing, better
7287         type checking for unary ops and conversion. Fix bug
7288         regarding managed pointer compatibility checking
7290 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
7292         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
7294         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
7296 2007-08-09  Raja R Harinath  <rharinath@novell.com>
7298         * reflection.c (dup_type): Remove.
7299         * class.c (dup_type): Remove.
7300         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
7301         instead of the dodgy 'dup_type'.
7302         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
7303         handle the case where 'dup_type' needed the second argument.
7305 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
7307         * domain.c: Fix a warning.
7309 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7311         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
7312         checking that methods with the same fqname are not overridden
7313         with a method from an ancestor.
7315 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
7317         * threads.c (free_thread_static_data_helper): Avoid a crash if
7318         thread->static_data is not yet set.
7320 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
7322         * marshal.c: Use correct image when emitting
7323         native wrapper for COM calls.
7324    
7325         Code is contributed under MIT/X11 license.
7327 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
7329         * icall-def.h, security.c, security.h :
7330           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
7332 2007-08-07  Martin Baulig  <martin@ximian.com>
7334         * mono-debug-debugger.h
7335         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
7337         * domain.c (mono_domain_free): Call
7338         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
7340 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
7342         * verify.c (check_underflow, check_overflow): error message now returns IL offset
7343         * verify.c (in_same_block): code should test if either offset is inside the clauses
7344         * verify.c (mono_method_verify): push the exception into the eval stack of exception
7345         and filter blocks
7347 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7349         * image.c (mono_image_close): Fix a leak.
7351         * object.c (mono_runtime_invoke_array): Avoid using alloca.
7353         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
7355 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
7357         * domain.c, threads.c, threads-types.h: fix memory retention issue
7358         with thread static variables not being cleared on domain unload.
7359         Reuse thread static slots after domain unload.
7361 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7363         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
7364         nullable type.
7366         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
7367         now done in mono_runtime_invoke_array.
7369         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
7370         receiver is a nullable type.
7372         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
7373         generic parameter.
7375 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
7377         * marshal.c: Implement COM Objects as return type for 
7378         managed->unmanaged calls. Added Release calls for COM Object
7379         out/return values in managed->unmanaged calls.
7381         Code is contributed under MIT/X11 license.
7383 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
7385         * threads.h, threads-type.h: move the hazard pointer declarations
7386         to the private header.
7388 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
7390         * file-io.c, appdomain.c: memory leak fixes.
7392 2007-08-02  Dick Porter  <dick@ximian.com>
7394         * socket-io.c
7395         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
7396         SO_REUSEADDR setting into io-layer/sockets.c.
7398 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
7400         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
7401         from Object when called on a generic parameter. Fixes #82211.
7403 2007-08-01  Dick Porter  <dick@ximian.com>
7405         * file-io.c (convert_share): Test FileShare values bit-by-bit.
7406         Fixes bug 79250 yet again.
7408 2007-07-30  Martin Baulig  <martin@ximian.com>
7410         Merged the `debugger-dublin' branch.
7412         * mono-debug.h
7413         (MonoDebugDataTable): New typedef.
7414         (MonoDebugMethodAddressList): New typedef.
7415         (MonoDebugWrapperData): Removed.
7416         (MonoDebugSymbolTable): Removed `current_data_table',
7417         `current_data_table_size', `current_data_table_offset'.
7418         (MonoDebugDataItemType): Moved into mono-debug.c.
7419         (MonoDebugMethodJitInfo): Remove `address'.
7420         (mono_debug_data_table): New global variable.
7421         (mono_debug_lookup_method_addresses): New public function.
7422         (mono_debug_find_method): Take a `MonoMethod *', not a
7423         `MonoDebugMethodInfo *'.
7425         * mono-debug.c: Drop support for the old symbol tables.
7427 2007-06-28  Martin Baulig  <martin@ximian.com>
7429         * mono-debug.c (mono_debug_debugger_version): New public variable.
7431 2007-07-31  William Holmes  <billholmes54@gmail.com>
7433         * metadata.c Changed mono_type_create_from_typespec to not insert
7434           the type into the hash map until after
7435           do_mono_metadata_parse_type has completed.
7436         Fixes Bug #82194
7437         Code is contributed under MIT/X11 license.
7439 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
7441         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
7442         generic parameter. Fixes #82211.
7444 2007-07-27  Jb Evain  <jbevain@novell.com>
7446         * pedump.c (dump_metadata, dump_metadata_header): dump
7447         versions contained in the metadata header.
7449 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
7451         * threads.c: register small_id_table with the GC.
7453 2007-07-27  Mark Probst  <mark.probst@gmail.com>
7455         * threads.c, threads.h, class-internals.h, object-internals.h:
7456         Hazard pointers, to be used by lock-free parallel algorithms.
7458 2007-07-26  Dick Porter  <dick@ximian.com>
7460         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
7461         routine on non-windows platforms, as I've not managed to think of
7462         a non-kludgy way of doing this.  Finishes off bug 78739.
7464 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
7466         * object.c: properly setup interface_bitmap in proxy vtables.
7468 2007-07-25  Marek Habersack  <mhabersack@novell.com>
7470         * appdomain.c (get_shadow_assembly_location): do not use TickCount
7471         to create unique shadow copy target directories, use the domain's
7472         serial number instead. Each domain gets a unique target directory
7473         that way.
7475         * domain.c (mono_domain_create): added code to increment domain
7476         shadow copy serial number and cache the value in the current
7477         domain structure.
7479         * domain-internals.h (struct _MonoDomain): added a new field -
7480         shadow_serial to hold the serial number used in generation of
7481         shadow-copy directories. This is to make sure that the directory
7482         name is unique for each and every domain created. We avoid a race
7483         condition with overriding assemblies already in use by other app
7484         domains.
7486 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
7488         * class.c (mono_bounded_array_class_get): fixed memory leak when 
7489         binding generic parameters.
7491 2007-07-24  Raja R Harinath  <rharinath@novell.com>
7493         * metadata.c (do_mono_metadata_parse_generic_class): Use
7494         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
7495         error.
7497 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
7499         * loader.c, class-internals.h, reflection.c: removed the per-method
7500         generics hashtable: we use the global one through the call of
7501         mono_class_inflate_generic_method ().
7503 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7505         * class.c, metadata.c, class-internals.h: introduce yet another
7506         generics global cache for inflated methods (fixes 98% of the perf
7507         issue in bug #81806).
7509 2007-07-23  Raja R Harinath  <rharinath@novell.com>
7511         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
7512         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
7513         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
7514         return a MonoGenericInst containing (a copy) of those types.
7515         (mono_metadata_inflate_generic_inst): Update to changes.
7516         (mono_metadata_parse_generic_inst): Likewise.
7517         (mono_get_shared_generic_inst): Likewise.
7518         * reflection.c (mono_class_bind_generic_parameters): Likewise.
7519         (mono_reflection_bind_generic_method_parameters): Likewise.
7520         * metadata-internals.h: Likewise.
7521         * icall.c (free_generic_context): Kill.
7522         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
7524         * reflection.c (reflection_methodbuilder_to_mono_method): Use
7525         mono_metadata_type_dup.
7526         * marshal.c (mono_mb_create_method): Likewise.
7528         * metadata.c (mono_metadata_type_dup): Rename from
7529         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
7530         MonoImage.  Handle a few more cases, esp. when no mempool is given.
7531         * marshal.c, metadata-internals.h: Update to changes.
7533 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7535         * class.c: fixed a small leak for array classes and removed warning.
7537 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
7539         * loader.c (mono_method_get_param_token): Make this work on generic methods.
7540         Return 0x8000000 for return parameters. Fixes #82161.
7542 2007-07-21  Marek Habersack  <grendello@gmail.com>
7544         * appdomain.c (get_shadow_assembly_location): append the current
7545         ticks value to the path. Avoids overwriting the same assemblies by
7546         several threads at the same time.
7548 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7549         and Raja R Harinath  <rharinath@novell.com>
7551         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7552         Simplify slightly.
7553         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
7554         property for testing if a method is a generic method definition.
7556 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7558         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
7560 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7562         * verify.c: used function from private branch, reverted to the one in class.h 
7564 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7566         * verify.c: a typo slipped in and the code wont compile
7568 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7570         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
7571         disabled box instruction as it is doing the wrong thing
7572         improved stack dump messages, now it is easier to debug type related issues
7575 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
7577         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
7579 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7581         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
7582         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
7583         grouped with class and valuetype. This change will simply 
7584         the code as it should be handled just like unmanaged pointers.
7586 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7588         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
7590 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7592         * verify.c: several stack merge issues fixed, reference comparisons now
7593         check the type size. strict type check now works correctly.
7594         added more uses of IS_MANAGED_POINTER macro.
7595         fixed issues pointed by running the test suite against .net.
7596         
7598 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7600         * class.c, loader.c, class-internals.h: Removed the
7601         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
7602         defines.
7604         * icall.c: Better error checking in some internal reflection
7605         methods.
7607 2007-07-18  William Holmes  <billholmes54@gmail.com>
7609         * filewatcher.c : removed unused variable 'filename' in 
7610           ves_icall_System_IO_FSW_SupportsFSW
7612 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
7614         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
7615         obsolete, removed.
7617 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
7619         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
7620         
7621         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
7623 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
7625         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7626         Implement generics support.
7627         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7629         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
7630         type_args and method_args arguments.
7631         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
7632         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7633         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
7635 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
7637         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
7638           It adds a rootimage parameter to mono_reflection_get_type_internal,
7639           adds new function mono_reflection_get_type_with_rootimage and use
7640           the rootimage to resolve the types instead of the current image
7642 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7644         * culture-info-table.h: Forgot to update after r78304.
7646 2007-07-13  Raja R Harinath  <rharinath@novell.com>
7648         * class.c (mono_class_is_open_constructed_type)
7649         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
7651 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
7653         * class.c (mono_bounded_array_class_get):  method fails if used with
7654         an incomplete TypeBuilder enum (no basetype field), fixed it by 
7655         avoiding calculating the size for such array as it cannot be instantiated.
7656         Fix bug #82015
7658 2007-07-12  Raja R Harinath  <rharinath@novell.com>
7660         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
7661         field.
7662         * metadata.c, reflection.c: Update to changes.
7664 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
7666         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
7667         mono_class_is_valid_enum, they are used to valide a enum when loading.
7668         * reflection.c: used new functions to throw TypeLoadException when and
7669         invalid enum is build with TypeBuilder. Fixes #82018
7670   
7671 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7673         * object.c: forgot commit of mono_class_setup_methods () to access
7674         iface->methods.
7675         * object-internals.h: added a few more handy fields to
7676         MonoIMTCheckItem.
7678 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
7680         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
7681         iface->methods.
7683 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7685         * class-internals.h, object-internals.h, object.c: IMT-based
7686         interface invocation core from Massimiliano Mantione
7687         (massi@ximian.com) with a reworked arch-specific interface,
7688         bsearch implementation and a few bugfixes and memory savings by me.
7690 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
7692         * class.c (mono_class_create_from_typedef): mono would segfault if 
7693         an enum did not have a __value field. It now throws a TypeLoadException
7694         for such cases. Fix bug #82022
7696 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7698         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
7700 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7702         * class.c (mono_class_init): If a class is already inited but has
7703         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
7705 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7707         * class.c: Properly handle the case of an unimplemented interface
7708         method.  Fixes: 81673.
7710 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7712         * class-internals.h, object.c: cleanup patch from massi: use
7713         MonoVTable->interface_bitmap since the vtable interfaces offset array
7714         is going away.
7716 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7718         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
7719         GetMDStreamVersion icall instead.
7721 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
7723         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
7724         not use mono_dl_build_path() with a full library name: makes
7725         fallbacks to libgaim and libfam work.
7727 2007-07-06  William Holmes  <billholmes54@gmail.com>
7729         * assembly.c: Added a continue statement in probe_for_partial_name when
7730          parse_assembly_directory_name fails.  Fixes : 82002
7732 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
7734         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
7735         and added a verification  for TYPEDBYREF.
7736         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
7737         make native int interchangeable with int32 and some small cleanup and formating.
7738         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
7739         handle byref of byref.
7740         * verify.c (push_local): handle byref of byref.
7741         * verify.c (do_binop): invalid mix of values is unverifiable
7742         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
7743         added visibility checks
7744         * verify.c (field related method): added visibility checks
7745         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
7747 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
7749         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
7750         string.
7752 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
7754         * profiler.c (mono_profiler_load): Fix an off-by-one error.
7756         * marshal.c (emit_marshal_string): When returning a string from managed code,
7757         allways make a copy even for unicode strings. Fixes #81990.
7759 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
7761         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
7762         of byref generic inst types (bug #81997).
7764 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
7766         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
7767         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
7769 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
7771         * marshal.c (emit_marshal_string): Add support for unicode strings in
7772         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
7774 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
7776         * verify.c: field load/store are now verified, missing only access checks now
7778 2007-06-28  Martin Baulig  <martin@ximian.com>
7780         * mono-debug.c (mono_debug_debugger_version): New public variable.
7782 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
7784         * locales.c: When constructing DateTimeFormat or NumberFormat for
7785         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
7786         MonoCultureInfo contructed from the current locale is always
7787         read-only and has UseUserOverride set to true. All MonoCultureInfo
7788         instances returned for GetCultures have both IsReadOnly and
7789         UseUserOverride set to true. Fixes part of bug #81930.
7791 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
7793        * icall-def.h: Update System.__ComObject icalls
7794        * marshal.c: Avoid managed transition (and object creation)
7795        when looking up COM interface in RCW.
7796        * marshal.h: Ditto.
7797        
7798        Code is contributed under MIT/X11 license.
7800 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
7802         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
7803         to avoid crashes during assembly unloading.
7805 2007-06-22  Raja R Harinath  <rharinath@novell.com>
7807         Fix MethodInfo.IsGenericMethodDefinition
7808         * reflection.c (mono_reflection_bind_generic_method_parameters):
7809         Rearrange code to ensure we always uses a generic method definition.
7810         * class.c (mono_class_inflate_generic_method_full): Set
7811         'generic_container' field only for generic method definitions.
7812         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7813         Use presense of 'generic_container' field as indication of being a
7814         generic method definition.
7816 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
7818         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7820         * object-internals.h: Reflect changes in the layout of the managed Delegate
7821         class.
7822         
7823         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
7824         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
7825         runtime memory used by the dynamic method. Fixes #77146.
7827 2007-06-21  Dick Porter  <dick@ximian.com>
7829         * file-io.h: 
7830         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
7831         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
7832         81767.
7834 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7836         * reflection.c (method_encode_methodspec): Add a tripwire.
7837         * class.c (inflate_generic_type): The fully open generic type is
7838         not the same as the generic type definition.
7840 2007-06-21  Martin Baulig  <martin@ximian.com>
7842         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
7844         * mono-debug-debugger.h
7845         (MonoDebuggerBreakpointInfo): Removed.
7846         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
7847         (mono_debugger_remove_breakpoint): Likewise.
7848         (mono_debugger_breakpoint_callback): Likewise.
7849         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
7851 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7853         * metadata.c (mono_metadata_lookup_generic_class): The fully open
7854         generic type is not the same as the generic type definition.
7855         * class.c (mono_generic_class_get_class): Likewise.
7857 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
7859         * icall.c: The second argument to 
7860         System.Reflection.MethodBase.GetMethodFromHandleInternalType
7861         is a MonoType not a MonoClass.
7863 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7865         * verify.c: support for function pointers in the verifier
7867 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7869         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
7871 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
7873         * assembly.c: removed Mono.Data.SqliteClient from the list of
7874         forward-compatible assemblies as it breaks the ABI (bug #81899).
7876 2007-06-19  Raja R Harinath  <rharinath@novell.com>
7878         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
7879         lookup/update with the loader lock.
7880         * reflection.c (mono_class_bind_generic_parameters): No need to
7881         protect mono_metadata_lookup_* with the loader lock.
7882         * class.c (inflate_generic_type): Likewise.
7883         
7884         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
7885         on a generic instantiated type.
7887 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
7889         *verify.c: produce meanfull error messages on verification error
7890         *verify.c: fixed some cases of verification errors reported as validation errors
7891         *pedump.c: fixed the error name array, now it shows validation errors properly
7892         *verify.h: fixed the contant that should be used for verification errors
7894 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
7896         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
7897         for bug #77596, 81858 and 80743 (generics data structures on domain
7898         unload).
7900 2007-06-15  Raja R Harinath  <rharinath@novell.com>
7902         Avoid allocating 'MonoGenericContext' on the heap.
7903         * class-internals (_MonoMethodInflated::context): Make field
7904         inline, not a pointer.
7905         * loader.c (method_from_methodspec): Allocate 'new_context' on the
7906         stack.  Use the context embedded within the inflated method as the
7907         hash key, rather than 'new_context'.
7908         * class.c (inflate_generic_context): Simplify.  Return a struct
7909         rather than allocating on the heap.
7910         (mono_class_inflate_generic_method_full): Update to changes.  Now,
7911         doesn't salt away a copy of the context -- simplifying the
7912         lifetime rules of a 'MonoGenericContext *'.
7913         (mono_method_get_context): Return pointer to embedded context.
7914         (setup_generic_array_ifaces): Allocate temporary context on stack.
7915         * reflection.c (inflate_mono_method): Likewise.
7916         (mono_reflection_bind_generic_method_parameters): Likewise.
7917         Use the context embedded within the inflated method as the hash key.
7919         Avoid a source of allocation of 'MonoGenericContext'.
7920         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
7921         and 'cached_context' fields into embedded 'MonoGenericContext' field.
7922         * class.c: Update to changes.
7923         (mono_generic_class_get_context): Simplify drastically.  Now just
7924         returns a pointer to the field.
7925         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
7926         argument as a const pointer.
7927         (mono_metadata_generic_context_equal): Likewise.
7928         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
7929         Update to changes.
7931 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
7933         * verify.c improved the handling of brtrue/brfalse, factored out common code
7935 2007-06-14  Raja R Harinath  <rharinath@novell.com>
7937         Kill MonoGenericMethod.
7938         * class-internals.h (MonoGenericContext::method_inst): Rename from
7939         'gmethod' and convert to a MonoGenericInst.
7940         (MonoGenericMethod): Remove.
7941         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
7942         * loader.c (method_from_methodspec): Update to changes.  Use a
7943         MonoGenericContext as the key to the hashtable.
7944         * metadata.c (mono_metadata_generic_context_equal): Rename from 
7945         'mono_metadata_generic_method_equal' and take MonoGenericContext.
7946         (mono_metadata_generic_context_hash): Likewise from
7947         'mono_metadata_generic_method_hash'.  Change hash function.
7948         (mono_metadata_load_generic_params): Update to changes.
7949         (mono_get_shared_generic_method): Remove.
7950         * metadata-internals.h (mono_get_shared_generic_method): Remove.
7951         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
7952         (inflate_generic_context): Likewise.
7953         (mono_class_inflate_generic_method_full): Likewise.
7954         (setup_generic_array_ifaces): Likewise.
7955         (mono_class_create_from_typespec): Likewise.
7956         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
7957         (method_encode_methodspec): Update callsite.
7958         (reflection_methodbuilder_to_mono_method): Update to changes.
7959         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
7960         MonoGenericContext as the key to the hashtable.
7961         (inflate_mono_method): Update to changes.
7963         * class-internals.h (MonoGenericMethod::container): Remove.
7964         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
7966 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
7968         * profiler-private.h, profiler.c, profiler.h: added API to profile
7969         exception events.
7971 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7973         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
7975 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7977         * verify.c: method invocation is now validated, now we verify parameter types on stack.
7978         Fixed overflow and underflow not aborting the verification process.
7980 2007-06-13  Mark Probst  <mark.probst@gmail.com>
7982         * class-internals.h (MonoStats): Added stats entries for dynamic
7983         code allocations.
7985 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
7987         * loader.c (mono_free_method): Free header->locals and header->clauses.
7989         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
7990         dynamic case.
7992         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
7994         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
7996 2007-06-12  Raja R Harinath  <rharinath@novell.com>
7998         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
7999         the tables.
8001 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8003         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
8005 2007-06-11  Raja R Harinath  <harinath@gmail.com>
8007         MonoGenericMethod on a diet
8008         * class-internals.h (_MonoMethodInflated::reflection_info): Move
8009         here ...
8010         (_MonoGenericMethod::reflection_info): ... from here.
8011         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
8012         Update to changes.
8013         * reflection.c (inflate_mono_method): Likewise.
8014         (mono_reflection_bind_generic_method_parameters): Likewise.
8016 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8018         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
8019         *verify.c: factored long ldarg forms to share code with short forms
8021 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8023         *verify.c: fixed code formating factored some duplicate code
8024         into a new function
8026         *verify.h: fixed binary incompatibility introduced earlier
8028         *pedump.c: fixed formating
8030 2007-06-11  Raja R Harinath  <harinath@gmail.com>
8032         Fix assertion when disassembling Mono.C5.dll
8033         * loader.c (method_from_methodspec): Avoid inflating a method
8034         twice with the same context.  If the methodref is inflated, use
8035         the declaring method instead.
8037         * class.c (mono_class_from_generic_parameter): Fix case similar to
8038         bug #81830 handled below, but for method containers.
8040 2007-06-10  Raja R Harinath  <harinath@gmail.com>
8042         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
8043         get_shared_generic_class.  Directly inflate the instance.
8044         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
8045         (inflate_generic_class): Delete.
8046         (get_shared_generic_class): Delete.  Move setting of
8047         'cached_class' and 'cached_context' ...
8048         * metadata.c (mono_metadata_lookup_generic_class): ... here.
8050         * metadata.c (mono_metadata_lookup_generic_class): Change
8051         signature to take the components of a MonoGenericClass rather than
8052         an allocated MonoGenericClass.  Change semantics to be intern-like.
8053         * reflection.c (mono_class_bind_generic_parameters): Update to
8054         changes.  Make locking region tighter.
8055         * class.c (inflate_generic_class): Update to changes.
8056         (get_shared_generic_class): Likewise.
8057         * metadata-internals.h: Likewise.
8059         * reflection.c (mono_class_bind_generic_parameters): Take and
8060         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
8061         (mono_reflection_bind_generic_parameters): Use
8062         'mono_class_bind_generic_parameters' rather than duplicate the code.
8063         * class.c (mono_bounded_array_class_get): Update to changes.
8064         * object-internals.h: Likewise.
8066         * reflection.c (mono_class_bind_generic_parameters): Only support
8067         parameterizing generic type definitions.  Remove support for other
8068         open types.
8070 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
8072         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
8074         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
8075         in the dynamic case.
8077 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
8079         * threads.c: When cleaning up thread, reset the Background bit.
8080         Fixes bug #81720.
8082 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
8084        * metadata.c: Move variable declarations to top of scope.
8085        * verify.c: Move variable declarations to top of scope.
8087        Code is contributed under MIT/X11 license.
8089 2007-06-08  Raja R Harinath  <rharinath@novell.com>
8091         * reflection.c (mono_class_bind_generic_parameters): Replace
8092         open-coded loop with mono_metadata_inflate_generic_inst.
8094         * class.c (get_shared_generic_class): Don't call
8095         mono_get_shared_generic_inst.  Use the container's own
8096         'class_inst'.
8098         * metadata.c (mono_metadata_load_generic_params): Move
8099         initialization of 'context' field here from ...
8100         * class.c (mono_class_create_from_typedef): ... here, and ...
8101         * loader.c (mono_get_method_from_token): ... here.
8103         * class.c (get_shared_generic_class): Rename from
8104         mono_get_shared_generic_class and make static.
8105         (mono_get_shared_generic_inst): Move to metadata.c.
8106         * loader.c (mono_get_shared_generic_method): Likewise.
8107         * class-internals.h, metadata-internals.h: Update to changes.
8109         Fix #81830
8110         * class.c (mono_class_from_generic_parameter): Don't assume a
8111         generic container owner exists.  Generic containers from monodis
8112         don't have any.
8114 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
8116         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
8117         * verify.h: new typedefs to returns the non-verifiable status
8118         * verify.c: initial implementation of generics, stack merging and object compatibility check
8120 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8122         * class.c, image.c, class-internals.h (MonoImage): class_cache is
8123         a MonoInternalHashTable again (fixed bug in internal hash table
8124         code).
8126 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8128         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
8129         MonoInternalHashTable again (fixed bug in internal hash table
8130         code).
8132 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8134         * class.c, image.c, class-internals.h, domain.c,
8135         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
8136         changes.  Have to figure out what makes them break the SWF
8137         regression.
8139 2007-06-04  Mark Probst  <mark.probst@gmail.com>
8141         * class.c, image.c, class-internals.h (MonoImage): class_cache is
8142         a MonoInternalHashTable now.
8144 2007-06-04  Mark Probst  <mark.probst@gmail.com>
8146         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
8147         MonoInternalHashTable now.
8149 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
8151         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
8152         invoke_impl code.
8154         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
8156         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
8157         dependent trampoline.
8159         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8161         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
8163 2007-05-29  Robert Jordan  <robertj@gmx.net>
8165         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
8167 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
8169         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
8171 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
8173        * marshal.c: Fix interface lookup loops for
8174        cominterop_get_com_slot_for_method and 
8175        cominterop_get_method_interface. Only need to lookup
8176        if type is a class, else use interface type method is on.
8178        Code is contributed under MIT/X11 license.
8180 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
8182         * reflection.c: HasSecurity can be present even if no specially 
8183         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
8184         SecurityAttribute). Fix CAS regression tests on buildbot.
8186 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
8188        * appdomain.c: Add configure checks for header files.
8189        * image.c: Add configure checks for header files.
8190        * file-io.c: Add configure checks for header files.
8191        * debug-mono-symfile.c: Add configure checks for header files.
8192        * threadpool.c: Add configure checks for header files.
8193        * console-io.c: Add configure checks for header files.
8194        * profiler.c: Add configure checks for header files.
8195        * rawbuffer.c: Add configure checks for header files.
8196        * icall.c: Add configure checks for header files.
8197        * rand.c: Add configure checks for header files.
8198        * socket-io.c: Add configure checks for header files.
8200        Code is contributed under MIT/X11 license.
8202 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
8204         * reflection.c (mono_custom_attrs_from_builders): Remove the 
8205         assertion as it breaks the build.
8206         
8207         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
8209         * reflection.c (lookup_custom_attr): Make a copy here too.
8211         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
8212         dynamic images.
8214         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
8215         images.
8217         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
8218         info.
8220 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
8222         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
8223         (load_cattr_value): Ditto.
8225 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
8227         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
8229 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
8231         * threads.c: In "start_wrapper", set apartment_state to MTA if
8232         apartment_state is Unknown and we're running on 2.0 profile or
8233         higher.
8234         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
8235         to main method, then set apartment_state to Unknown on 1.0 profile,
8236         and MTA on 2.0 profile.
8238 2007-05-16  Jb Evain  <jb@nurv.fr>
8240         * class-internals.h (MonoDefaults): Add an attribute_class and
8241           customattribute_data_class.
8242         * domain.c (mono_init_internal): Populate them.
8243         * reflection.c: Use them to remove duplicates. Make a vew
8244         MonoClass variables `static'.
8246 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
8248         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
8249         step in implementing IMT, so that all isinst checks now can go
8250         through the bitmap.
8251         This was needed because vtables for TransparentProxy need to look
8252         like the vtable of the "target" class, so they need to point to
8253         its interface bitmap directly.
8255         * object.c: inside "mono_class_create_runtime_vtable" and
8256         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
8258 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8260         * object-internals.h
8261           culture-info.h : added territory field in MonoCulture and
8262           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
8263         * locales.c : fill territory field above too.
8264         * culture-info-table.h : regenerated.
8266 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
8268         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
8269         Fixes #81599.
8271 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
8273         * object.c: Always initialize apartment, even if 
8274         there is no custom attributes on entry point.
8275         
8276         Code is contributed under MIT/X11 license.
8278 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
8280         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
8281         * metadata.c: If no encoding is set, check for unicode
8282         on class.
8283         
8284         Code is contributed under MIT/X11 license.
8286 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8288         * threads.c: Handle if mono_thread_current returns NULL 
8289         
8290         Code is contributed under MIT/X11 license.
8292 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8294         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
8295         in start_wrapper. Added mono_thread_init_apartment_state and
8296         mono_thread_cleanup_apartment_state.
8297         * object.c: Initialize thread apartment state on main thread
8298         by checking for STAThreadAttribute on entry point.
8299         * object-internals.h: Add apartment_state field to MonoThread.
8300         * threads-types.h: Add unmanaged definition of 
8301         System.Threading.ApartmentState, MonoThreadApartmentState.
8302         
8303         Code is contributed under MIT/X11 license.
8304         
8305 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
8307         * class.c: Fix windows build.
8308         * class-internals.h: Fix windows build.
8309         
8310         Code is contributed under MIT/X11 license.
8312 2007-05-08  Robert Jordan  <robertj@gmx.net>
8314         * process.c (CreateProcess_internal):
8315         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
8316         .CreateNoWindow was specified. Fixes #81496.
8318 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8320         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
8321         step in implementing IMT, replaced it with two compact arrays
8322         (interfaces_packed and interface_offsets_packed) and a bitmap that
8323         is used for isinst checks (interface_bitmap).
8325         * class.c: (compare_interface_ids): compare function to pass to
8326         bsearch when looking for an interface with a given id.
8327         (mono_class_interface_offset): reimplemented using bsearch on
8328         interfaces_packed, getting the offset from interface_offsets_packed.
8329         (print_implemented_interfaces): utility debugging function.
8330         (setup_interface_offsets): reworked to initialize interfaces_packed,
8331         interface_offsets_packed and interface_bitmap.
8333         * object.c: replaced all accesses to "MonoClass.interface_offsets"
8334         with uses of interfaces_packed and interface_offsets_packed.
8336 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8338         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
8339         mono_class_interface_offset prototype to wrap all accesses to
8340         "MonoClass.interface_offsets".
8342         * class.c: Implemented mono_class_interface_offset, and wrapped all
8343         accesses to "MonoClass.interface_offsets".
8345         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
8346         "MonoClass.interface_offsets".
8348 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
8350         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
8351         GetMethodFromHandle overloads (bug #78637).
8353 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8355         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
8356         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
8358 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
8360         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
8361         #81498.
8363         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
8364         gracefully.
8365         (mono_custom_attrs_from_index): Ditto.
8367         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
8368         Fixes #81501.
8370 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
8372         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
8373         is now allocated from a mempool.
8375 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
8377         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
8378         caller holds threads_lock, leading to deadlocks. Fixes #81476.
8380 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
8382         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
8383         mono_loader_clear_error () too late. Fixes #81463.
8385 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
8387         * culture-info-table.h : regenerated.
8389 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
8391         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
8392         is missing.
8394 2007-04-25  Dick Porter  <dick@ximian.com>
8396         * Makefile.am: Put the mingw enforced-optimisation back into the
8397         PLATFORM_WIN32 section.
8399 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
8401         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
8402         patch.
8404         * image.c (mono_image_load_module): New API function to load a module reference.
8406         * image.c (load_modules): Load modules lazily. Fixes #80812.
8408         * class.c (mono_class_from_typeref): Use mono_image_load_module.
8409         
8410         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
8412         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
8413         to mono_image_load_module_dynamic.
8415 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
8417         * marshal.c: Fix calling convention for CCW on non-windows
8418         platforms. STDCALL on windows, CDECL everywhere else to work 
8419         with XPCOM and MainWin COM.
8420         
8421         Code is contributed under MIT/X11 license.
8423 2007-04-23  Martin Baulig  <martin@ximian.com>
8425         Fix #80969.
8427         * loader.c
8428         (method_from_memberref): Added `gboolean *used_context' argument.
8429         (mono_get_method_from_token): Likewise.
8430         (mono_get_method_full): Don't insert the method in the cache when
8431         `used_context' is true.
8433 2007-04-23  Raja R Harinath  <rharinath@novell.com>
8435         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
8437         * reflection.c (mono_reflection_bind_generic_parameters): Don't
8438         create new MonoTypes for returned types.
8439         * class.c (mono_generic_class_get_class): Export mono-internal.
8440         * class-internals.h: Update to changes.
8442 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
8444         * threadpool.c, threadpool.h, icall-def.h: patch from
8445         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
8447 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
8449         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
8450         
8451         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
8453         * threads.c (mono_thread_get_stack_bounds): New helper function.
8455         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
8456         Correctly compute stack bounds when attaching. Fixes #81394.
8458 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
8460         * reflection.c: fix handling of doubles in custom attributes
8461         for the arm-fpa format (bug #81368).
8463 2007-04-18  Raja R Harinath  <rharinath@novell.com>
8465         * reflection.c (assembly_add_win32_resources): Mildly relax an
8466         bounds check to let the end pointer point just past the end of the
8467         allocated buffer.  (may fix #81384)
8469 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
8471         * culture-info-table.h : regenerated.
8473 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
8475         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
8476         the thread is aborted early.
8478 2007-04-05  Dick Porter  <dick@ximian.com>
8480         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
8481         FindFirstFile()/FindNextFile() to find entries.  This lets the
8482         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
8483         81038.
8485         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
8486         the parameters of
8487         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
8489 2007-04-04  Martin Baulig  <martin@ximian.com>
8491         * debug-helpers.c
8492         (mono_method_desc_full_match): Add support for nested classes.
8494 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
8496         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
8498 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
8500         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
8501         waiting for too many threads.
8503 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
8505         * environment.c: Fix return value check on uname so we can get the 
8506         executing version on Solaris operating systems.
8508 2007-03-28  Jb Evain  <jbevain@gmail.com>
8510         * class.c (mono_type_get_name_recurse): Complete the
8511         fix for the creation of assembly qualified names for
8512         pointer types. Fixes #81208.
8514 2007-03-27  Dick Porter  <dick@ximian.com>
8516         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
8517         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
8518         changed.
8520         * threads.c
8521         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
8522         the value of ReleaseMutex().
8524 2007-03-27  Dick Porter  <dick@ximian.com>
8526         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
8527         in little-endian order, not network endian, so must be converted
8528         to host endian here.  Fixes bug 80593.
8530 2007-03-22  Jb Evain  <jbevain@gmail.com>
8532         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
8533         qualified names for pointer types. Fixes #81208.
8535 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
8537         * marshal.c: Add support for PreserveSigAttribute. 
8538         
8539         Code is contributed under MIT/X11 license.
8541 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
8543         * process.c: Fix endianness issues. Fixes #81126.
8545         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
8546         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
8548         * image.c (mono_image_lookup_resource): Make this work on big-endian
8549         machines.Change API contract so the caller needs to free the return value.
8550         
8551         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
8552         API change.
8553         
8554 2007-03-14  Martin Baulig  <martin@ximian.com>
8556         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
8557         mono_type_get_desc() as well.
8559 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
8561         * icall.c:  Fix environ access in VS.  
8562         
8563 2007-03-13  Alp Toker  <alp@atoker.com>
8565         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8566         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8567         #63841.
8569 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
8571         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
8572         circular references among dynamic methods. Fixes #81091.
8574         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
8576 2007-03-09  Martin Baulig  <martin@ximian.com>
8578         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
8580 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
8582         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
8583         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
8584         
8585         Code is contributed under MIT/X11 license.
8586         
8587 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
8589         * loader.c: Reapply patch for bug #79424.
8591 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8593         * metadata.c (mono_type_to_unmanaged): Only convert object to
8594         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
8596 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
8598         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
8599         (and incorrectly set) is_reference field from MonoGenericInst.
8601 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8603         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
8604         a little earlier.
8606         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
8608         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
8610 2007-03-05  Miguel de Icaza  <miguel@novell.com>
8612         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
8613         FileOptions.1 value to mean "temporary", map that to
8614         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
8616         Fixes 80688
8618 2007-03-03  Marek Habersack  <mhabersack@novell.com>
8620         * appdomain.c: implement MS .Net style shadow copying. Copies of
8621         the assemblies are made in a subdirectory of the dynamic base
8622         directory, the assembly names are preserved.
8623         Copy .mdb and .config files along with the assemblies being shadowed.
8625 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8627         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
8628         (emit_marshal_handleref): Ditto.
8630         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
8631         on Visual C++. Fixes #80671.
8633 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
8635         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
8636         for clone operations.
8638 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8640         * marshal.c: Fix warnings.
8642 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
8644         * loader.c: allow case-insensitive matching of the dll name
8645         in dllmap handling when prefixed with "i:".
8647 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
8649         * threads.c: Fix #ifdef for dummy_apc function for VS.
8651 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
8653         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
8655 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
8656         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
8657         giving precedence to the methods with a fully qualified name
8658         (InterfaceName.MethodName) when building the interface sections
8659         of the vtable.
8661 2007-02-16  Dick Porter  <dick@ximian.com>
8663         * threadpool.c (append_job): Fix fast-path array handling, so it's
8664         less likely the array will grow exponentially when the load is
8665         heavy.
8667 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8669         * metadata-internals.h, loader.c: fix dllmap lookup order
8670         for non-function maps, too, and prepare for fallback code.
8672 2007-02-12  Robert Jordan  <robertj@gmx.net>
8674         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
8675         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
8676         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
8677         GlobalFree. Fixes a part of bug #77075.
8679 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
8681         * loader.c: implemented typedef parent in field memberref.
8683 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
8685         * marshal.c: Fix warnings and remember to call Release on
8686         IUnknown of RCW.
8687         
8688         Code is contributed under MIT/X11 license.
8690 2007-02-10  Miguel de Icaza  <miguel@novell.com>
8692         * class-internals.h: Add MonoHandleRef definition, and
8693         handleref_class to mono_defaults. 
8695         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
8696         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
8698         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
8699         (do nothing on this stage)
8700         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
8701         (emit_marshal_handleref): New method, used for argument handling
8702         of HandleRefs. 
8704 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
8706         * class.c (mono_class_setup_parent): Lazily init com types.
8707         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
8708         init com types.
8709         * object.c (mono_remote_class_vtable): Lazily init com types.
8710         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
8711         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
8712         * domain-internals.h: Expose mono_init_com_types.
8713         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
8714         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
8715         Add support for COM Callable Wrapper marshalling.
8716         * marshal.h: Add icall definitions.
8717         * gc.c: Handle freeing of CCWs in finalizer code.
8718         
8719         Code is contributed under MIT/X11 license.
8721 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
8723         * reflection.c: changed all the signature encoding code to use
8724         a variable-sized buffer.
8726 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8728         * marshal.c: locking fixes: never take the loader lock
8729         or other runtime locks when holding the marshal lock
8730         (fixes bug#80664).
8732 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
8734         * marshal.c: make the delegate function pointer mapping
8735         work for the moving GC.
8737 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
8739         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
8740         for bug #80618.
8742 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8744         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
8745         gmodule.
8747 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
8749         * threadpool.c: made the code moving-GC safe.
8751 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8753         * assembly.c, boehm-gc.c, class-internals.h, class.c,
8754         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
8755         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
8756         warning cleanup.
8757         * reflection.c: warning cleanup, some threading and moving GC fixes.
8759 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
8761         * class.c, loader.c: create the needed Set/Get/Address array methods
8762         as well as the .ctors in mono_class_init (), fixes bug #80567.
8764 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
8766         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
8767         we doesn't decrease its alignment. Should fix the sparc build.
8769 2007-01-24  Dick Porter  <dick@ximian.com>
8771         * socket-io.c
8772         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8773         Create the returned object if we need to ignore an unsupported
8774         socket option.  Fixes a segfault reported by Atsushi.
8776 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8778         * class.c, object.c: restrict GC-tracked fields to
8779         UIntPtr fields used inside corlib, so we provide better
8780         type info to the GC and also allow broken packing as in
8781         bug #80580.
8783 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
8785         * sgen-gc.c: removed duplicated function.
8787 2007-01-19  Miguel de Icaza  <miguel@novell.com>
8789         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
8790         value that means that the value is not supported, but that we
8791         should not return a failure, but instead report this as a
8792         successful operation.
8794 2007-01-19  Raja R Harinath  <rharinath@novell.com>
8796         Fix tests/bug79956.2.il
8797         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
8798         (mono_generic_class_get_class): If the generic definition in an
8799         enum, copy over other fields related to it.
8801 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
8803         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
8804         genericinst enums (bug #79215).
8806 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
8807         * class.c: Fix bug 80307.
8809 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
8811         * image.c: if the file table is not present, try to load
8812         all the modules, since we don't have info about them
8813         having or not metadata (bug #80517).
8814         * assembly.c: allow mono_assembly_load_references () to
8815         work for netmodules.
8817 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8819         * image.c, metadata-internals.h, object.c: execute module
8820         cctors when running on the 2 runtime if present (bug #80487).
8822 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8824         * icall.c: optimized InitializeArray() on bigendian.
8826 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
8828         * icall.c: fix for the broken ARM FPA double format.
8830 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
8832         * icall.c: handle endian issues for r4 and r8 types, too, in
8833         the InitializeArray() icall.
8835 2007-01-15  Miguel de Icaza  <miguel@novell.com>
8837         * loader.c (mono_loader_error_prepare_exception): Clear the error
8838         once we have extracted the information from it, do this before we
8839         call into the JIT's class loading mechanisms.
8841         * object.c (mono_class_create_runtime_vtable): Do not clear the
8842         loader error before calling mono_class_get_exception_for_failure
8843         as the loader error is needed inside
8844         mono_class_get_exception_for_failure to throw the error (thinko).
8846         Fixes #80521
8847         
8848 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
8850         * reflection.c: align fields rva data so it's faster to load at
8851         runtime.
8853 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8855         Prepare to simplify GenericMethod handling.
8856         * class-internals.h (mono_method_get_context): New accessor function.
8857         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
8858         rather than directly accessing '->context' field.
8860         * class-internals.h (_MonoGenericParam.method): Move ...
8861         (_MonoGenericContainer): ... here.  Add into union with klass field.
8862         * class.c, icall.c, loader.c, metadata.c, reflection.c:
8863         Update to changes.
8865 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
8867         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
8868         the wrapper type enum and reduce relocations.
8870 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8872         * reflection.c (inflate_mono_method): Reuse method instantiation
8873         from the generic method, if available.
8875 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8877         * marshal.c (emit_marshal_variant): Fix conv_arg
8878         type in last commit, based on whether parameter is byref.
8879         
8880 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8882         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
8883         marshalling.
8884         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
8885         MONO_TYPE_OBJECT back for VARIANT support.
8887 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8889         * marshal.c, marshal.h, icall-def.h: Implement 
8890         Marshal.ReAllocCoTaskMem.
8892 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
8894         * marshal.c: memory retention fixes: use the proper
8895         image cache for runtime_invoke method lookups.
8897 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
8899         * mempool.c: added code to help debug mempool allocations.
8901 2007-01-11  Dick Porter  <dick@ximian.com>
8903         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
8904         support (experimenting with faking it with IP_MTU_DISCOVER for
8905         systems that don't have IP_DONTFRAGMENT.)
8906         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
8907         icall.
8909         * icall-def.h: new System.Net.Sockets.Disconnect icall.
8911         * socket-io.h: Add new fields to MonoSocketAsyncResult
8912         corresponding to the new ones in Socket.cs.
8914 2007-01-11  Raja R Harinath  <rharinath@novell.com>
8916         Fix IronPython regression mentioned in #80249
8917         * metadata.c (do_mono_metadata_parse_generic_class): Clear
8918         'cached_context' field, since it may have been initialized as a
8919         side-effect of metadata parsing.
8921         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
8922         (_MonoGenericClass.cached_class): Move here and rename from lone
8923         remaining field of ...
8924         (_MonoInflatedGenericClass): ... this.  Remove.
8925         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
8926         to changes.
8928         Fix mcs/tests/test-128.cs regression.
8929         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
8930         2007-01-10 change below.
8931         [MONO_TYPE_OBJECT]: Recurse into array case.
8933 2007-01-11  Raja R Harinath  <harinath@gmail.com>
8935         * class-internals.h (mono_get_inflated_generic_class): Remove.
8936         * class.c (mono_get_inflated_generic_class): Remove.
8937         (mono_generic_class_get_class): Rename from
8938         mono_class_create_generic.
8939         (mono_class_from_mono_type) [GENERICINST]: Use it.
8940         * reflection.c, metadata.c: Update to changes.  Use
8941         'mono_class_from_mono_type'.
8943 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
8945         * reflection.c: use passed type when encoding an array element
8946         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
8948 2007-01-09  Robert Jordan  <robertj@gmx.net>
8950         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
8951         result arguments (someDelegate.EndInvoke (unrelatedAres)).
8952         Fixes bug #80392.
8954 2007-01-09  Raja R Harinath  <rharinath@novell.com>
8956         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
8958         * object.c (set_value): Avoid aliasing between type->data.klass
8959         and type->data.generic_class.
8961         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
8963 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8965         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
8966         between type->data.klass and type->data.generic_class.
8968 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
8970         * marshal.c: In MS.NET, StringBuilder objects are not copied by
8971         value in out parameters.
8973 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8975         Simplify invariant for MonoGenericClass::klass field.
8976         * class.c (mono_class_create_generic): Verify 'klass' is null.
8977         * metadata.c (do_mono_metadata_parse_generic_class): Don't
8978         initialize 'klass' field.
8980 2007-01-05  Raja R Harinath  <rharinath@novell.com>
8982         Ongoing work to avoid redundant data and simplify invariants.
8983         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
8984         'generic_class', and change type to a GenericInst.
8985         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
8986         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8988 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8990         * class.c : skip io-layer under PLATFORM_WIN32.
8992 2007-01-03  Tor Lillqvist  <tml@novell.com>
8994         Fix #80305: In a bundled executable, look in the bundled exe
8995         assembly to determine the runtime version. Add the possibility to
8996         bundle also the machine.config file.
8997         
8998         * assembly.c (mono_assembly_open_from_bundle): Make
8999         non-static. Allow being called even if we have no bundled
9000         assemblies, and return NULL right away in that case.
9002         * domain-internals.h: Declare mono_assembly_open_from_bundle()
9003         here.
9005         * domain.c (app_config_parse): Take an assembly exe file name as
9006         parameter instead of a config file name. Check for a bundled
9007         config file for that assembly by calling
9008         mono_config_string_for_assembly_file() (see below) before looking
9009         for one in the file system.
9010         (get_runtimes_from_exe): Corrsponding change to call of
9011         app_config_parse().
9012         (get_runtimes_from_exe): Check for bundled assembly exe file first
9013         by calling mono_assembly_open_from_bundle(). If no bundled
9014         assembly exe file is found, call mono_image_open() as before to
9015         look it up in the file system.
9017         * mono-config.c: Add variable bundled_machinec_onfig.
9018         (mono_config_string_for_assembly_file): New function.
9019         (mono_config_for_assembly): Move code snippet that looks for a
9020         bundled assembly .config file into the above new function. Call
9021         it.
9022         (mono_register_machine_config, mono_get_machine_config): New
9023         functions to set and retrieve
9025         * assembly.h: Declare mono_register_machine_config().
9027         * mono-config.h: Declare mono_get_machine_config() and
9028         mono_config_string_for_assembly_file().
9030         * icall.c: No declaration of environ necessary on Win32. It is
9031         declared (as a macro expanding to a function call) in stdlib.h.
9032         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
9033         New internal mono function. Returns the value of
9034         mono_get_machine_config() as a Mono string.
9036         * icall-def.h: Add get_bundled_machine_config().
9038 2007-01-04  Raja R Harinath  <rharinath@novell.com>
9040         Remove redundant field
9041         * class-internals.h (_MonoGenericContext.container): Remove field.
9042         * loader.c (mono_method_get_signature_full): Don't parse a
9043         "container" for a signature parse when the signature is inflated
9044         immediately.
9045         (method_from_methodspec): Likewise, for a generic_inst.
9046         * class.c, metadata.c, reflection.c: Update to changes.
9048 2006-01-04  Raja R Harinath  <rharinath@novell.com>
9050         * class-internals.h (_MonoGenericClass): Rename 'context' field to
9051         'cached_context', and change semantics -- it starts off NULL, and
9052         is initialized on demand.
9053         * class.c (mono_generic_class_get_context): New accessor to
9054         replace 'context' field accesses.
9055         (mono_class_get_context): New helper.
9056         (*): Update to changes.
9057         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
9059 2007-01-03  Miguel de Icaza  <miguel@novell.com>
9061         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
9062         before the memcpy.   Fixes Marshal2 regression.
9064 2007-01-02  Jb Evain  <jbevain@gmail.com>
9066         * blob.h: add a MONO_TYPE_ENUM definition
9067         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
9068         fix the encoding of arrays of enums in custom attributes.
9070         Fixes #79666.
9072 2007-01-01  Miguel de Icaza  <miguel@novell.com>
9074         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
9075         string is null terminated, but only cut the string short if it
9076         overflows the buffer.   
9077         
9078         (mono_string_to_byvalstr): Also fix this routine.   The code here
9079         was not properly terminating a string (it was only terminated
9080         because of the previous catch-all memset). 
9082         I left the memset, because I do not know if applications expect
9083         the runtime to clear this region. 
9085         Fixes #79944.
9087         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
9088         Clear the error before returning to unmanaged code to prevent the
9089         runtime from being confused later on (fixes  80420).
9090         (ves_icall_type_from_name): Always call mono_loader_clear_error
9091         after parsing a type that could have failed.
9092         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
9094         * loader.c (mono_loader_clear_error): Fix indentation.
9096 2006-12-28  Martin Baulig  <martin@ximian.com>
9098         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
9100 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
9102         * reflection.c: patch from Rolf Bjarne Kvinge to fix
9103         getting a token for an EnumBuilder.
9105 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
9107         * reflection.c: be more careful in case resource generation
9108         fails to create the data array.
9110 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
9112         * sgen-gc.c: write barrier for clone and fix unregister handles.
9114 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
9116         * reflection.c: some fixes needed in the generics code for the moving GC.
9118 2006-12-22  Robert Jordan  <robertj@gmx.net>
9120         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
9121         account. Fixes bug #80299.
9123 2006-12-21  Raja R Harinath  <rharinath@novell.com>
9125         Fix WaitHandle usage in delegates.
9126         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
9127         * object.c (mono_wait_handle_new): Use the property set method to
9128         initialize the handle.
9129         (mono_wait_handle_get_handle): New.
9130         * threadpool.c (mono_async_invoke): Use it.
9131         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
9132         Likewise.
9133         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
9135 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
9137         * marshal.c (emit_marshal): Call emit_marshal_variant and
9138         emit_marshal_com_interface when applicable.
9139         (emit_marshal_variant, emit_marshal_com_interface): Add
9140         methods for this case and remove if's from emit_marshal_object.
9141         
9142 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
9144         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
9146 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
9148         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
9149         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
9150         and GlobalFree on Windows. Remove FIXME.
9152 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
9154         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
9155         implementation for managed objects.
9157 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
9159         * object.c: implemented code to be used for checking
9160         that no reference field overlaps with non-references.
9162 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9164         * threadpool.c: fix queue code to be compatible with the
9165         moving GC.
9167 2006-12-18  Miguel de Icaza  <miguel@novell.com>
9169         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
9170         in structures by throwing ArgumentNullException.
9172         (emit_marshal_safehandle): Also when they are null parameters.
9174         (emit_marshal_safehandle): Add support for ref
9175         SafeHandles parameters
9177 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
9179         * profiler.c: updated to use the mono-dl API instead of
9180         gmodule.
9182 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9184         * profiler.c: updated to use the mono-dl dynamic loading
9185         API instead of gmodule.
9187 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
9189         * profiler.c: use readlink, older versions of glib don't have
9190         g_file_read_link ().
9192 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9194         * profiler.c: try to detect the path to mono if libc fails to provide
9195         a useful name (bug #80286).
9197 2006-12-16  Raja R Harinath  <rharinath@novell.com>
9199         Fix #80242
9200         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
9201         instance, use the generic type definition instead.
9202         (ves_icall_Type_GetNestedTypes): Likewise.
9203         * class.c (mono_class_create_generic): Always set the
9204         nested_classes of a generic instance to NULL, even if the generic
9205         type definition has nested types.
9207 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
9209         * marshal.c (mono_string_from_bstr): Revert previous Windows change
9210         and fix on Linux.
9211         
9212 2006-12-15  Miguel de Icaza  <miguel@novell.com>
9214         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
9215         my arguments were in the wrong order.   I also fixed the Windows
9216         version which seems to have had the same issue.
9218         (mono_free_bstr): On Unix, this is g_free.
9219         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
9220         conversions (for the tests in corlib to pass).
9222 2006-12-14  Miguel de Icaza  <miguel@novell.com>
9224         * marshal.c (emit_ptr_to_object_conv): For now, ignore
9225         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
9226         exception if a ref SafeHandle in a struct has changed).
9227         
9228         (emit_struct_conv): Do not perform layout checks for classes
9229         derived from SafeHandle, as those are specially handled. 
9231         (emit_object_to_ptr_conv): Add support for
9232         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
9234         (emit_marshal_safehandle): Implement conversion of return values
9235         of safehandles (MARSHAL_ACTION_CONV_RESULT).
9236         
9237         * threads.c: WaitHandle now is compiled with two different handles
9238         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
9239         for 2.0.
9240         
9241         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
9242         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
9243         these routines to cope with both kinds of fields.
9245 2006-12-12  Miguel de Icaza  <miguel@novell.com>
9247         * metadata.c (mono_type_to_unmanaged): Handle the case where
9248         type->data.klass is a SafeHandle, and in that case, return the
9249         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
9250         MONO_MARSHAL_CONV_SAFEHANDLE. 
9252 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9254         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
9255         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
9256         calling emit_marshal_object.
9258         (emit_marshal_safehandle): Implement marshalling of
9259         SafeHandle parameters (no ref support yet).
9261         (MarshalAction): Document the defines as I implement
9262         them for SafeHandle.
9264         (emit_marshal_object): indentation police.
9266         * class-internals.h: Define MonoSafeHandle.
9267         Add safehandle_class to MonoDefaults type.
9269         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
9270         list of classes to check for fields. 
9272         * domain.c (mono_init_internal): Add SafeHandle to the list of
9273         mono_defaults loaded.
9275 2006-12-15  Raja R Harinath  <rharinath@novell.com>
9277         Fix #80253
9278         * reflection.c (mono_reflection_bind_generic_parameters): If the
9279         generic type definition is a type builder, ensure that it is fully
9280         initialized before instantiating it.  Kill some dead code.
9282 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
9284         * object.c: clear the loader_error () before loading
9285         more metadata stuff (bug #80258).
9287 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
9289         * icall.c, icall-defs.h: type modifiers icalls for
9290         parameters and properties.
9292 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
9294         * object.c, icall.c: fixed warnings.
9296 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9298         * marshal.c: fixed a couple of leaks and coding style in a few places.
9300 2006-12-08  Dick Porter  <dick@ximian.com>
9302         * process.c: Cope with NULL ProcessStartInfo arguments on windows
9303         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
9304         80173.
9306 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
9308         * process.c: ProcessStartInfo may have only filename set and
9309         arguments can be NULL.
9311 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9313         * icall.c: fix leak found by Robert Jordan.
9315 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9317         * marshal.c, marshal.h: generate managed method to access an element
9318         of a multi-dimensional array.
9320 2006-11-30  Paolo Molaro (lupus@ximian.com)
9322         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
9324 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9326         * icall.c: back out GetFields () fix until the serialization code is
9327         fixed to not depend on the incorrect behaviour.
9329 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
9331         * profiler.c: provide defaults if none are set.
9333 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
9335         * Makefile.am, attrdefs.h: new public header file with
9336         constants for attributes for use by embedders.
9338 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
9340         * icall.c: GetFields () fix for bug #80064.
9342 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
9344         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
9345         removed long unused icalls.
9347 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
9348   
9349         * marshal.c: 
9350                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
9351                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
9352                 can be generated without a delegate class.
9353                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
9354         
9355         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9357 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9359         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
9360         #80069.
9362 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
9364         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
9365         icall-def.h: added icalls needed by System.GC.
9367 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
9369         * loader.c: ensure the class in catch clauses is handled
9370         correctly for generics methods (fixes bug#79980).
9372 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
9374         * monitor.h, monitor.c: added mono_locks_dump () function
9375         to help debug deadlocks involving managed locks.
9377 2006-11-13  Dick Porter  <dick@ximian.com>
9379         * file-io.c (get_file_attributes): If the file is a symlink try
9380         and get the stat data for the target, but also add the
9381         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
9382         the specs for the windows symlink support, but will probably have
9383         to be reworked when I have test data from a vista machine.  Fixes
9384         bug 79887.
9386 2006-11-13  Dick Porter  <dick@ximian.com>
9388         * gc.c (mono_domain_finalize): 
9389         * marshal.c (mono_delegate_begin_invoke): 
9390         * threadpool.c (socket_io_init, mono_thread_pool_init)
9391         (mono_thread_pool_finish): 
9392         * monitor.c (mono_monitor_try_enter_internal): 
9393         * threads.c (mono_thread_resume, mono_thread_init)
9394         (mono_thread_suspend_all_other_threads)
9395         (mono_thread_execute_interruption): 
9396         * appdomain.c (mono_domain_unload): Check for NULL error returns
9397         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
9398         75733.
9400 2006-11-11  Miguel de Icaza  <miguel@novell.com>
9402         * process.c
9403         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
9404         Only close the handle if the value of the handle is not
9405         INVALID_HANDLE_VALUE.  This just makes the process a bit more
9406         robust.
9408         Improvement for #75733, so that we do not run into this problem. 
9410         
9411         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
9412         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
9413         internal variables.  Fixes #79462 
9414         
9416 2006-11-09  Dick Porter  <dick@ximian.com>
9418         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9419         Use poll() not select().  Fixes bug 79397.
9421 2006-11-09  Raja R Harinath  <rharinath@novell.com>
9423         Fix #79872
9424         * assembly.c (mono_assembly_load_from_full): Check that the given
9425         image has an assembly manifest.
9427 2006-11-09  Ankit Jain  <jankit@novell.com>
9429         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
9430         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
9431         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
9433 2006-11-07  Dick Porter  <dick@ximian.com>
9435         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9436         Put the old resolver behaviour back for pre-2.0 profiles.
9438 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
9440         * threadpool.c: precise GC and locking fixes.
9442 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
9444         * class.c: don't load types that have an explicit unaligned
9445         managed reference. Provide better info in the TypeLoad exception.
9446         Part of the fix for bug #79744.
9447         * object.c: use the correct check for class type load issues.
9449 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
9451         * class.c: enforce alignment of fields with managed references
9452         even when Pack=1 is forced by the user (bug #77788).
9454 2006-11-03  Dick Porter  <dick@ximian.com>
9456         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9457         If the address reverse lookup fails, return it as the hostname
9458         anyway.  Fixes bug 79721.
9460 2006-11-03  Dick Porter  <dick@ximian.com>
9462         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
9463         Fix build on Windows.
9465 2006-11-02  Dick Porter  <dick@ximian.com>
9467         * icall-def.h: 
9468         * object-internals.h: 
9469         * exception.c (mono_get_exception_thread_interrupted): 
9470         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
9471         Fixes bug 74525.
9473         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
9474         Check for pending Thread.Interrupt.
9476 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
9477         * loader.c: Fixed bug 79684.
9479 2006-10-27  Dick Porter  <dick@ximian.com>
9481         * file-io.c (get_file_attributes): Force symlinks to directories
9482         to be returned as a regular file.  Fixes bug 79733.
9483 2006-10-26  Dick Porter  <dick@ximian.com>
9485         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
9486         CreateFile to open a directory then we need to set the
9487         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
9489 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
9491         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
9492         friends.
9494 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9496         * sgengc.c: small cleanup of timer code.
9498 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
9500         * sgen-gc.c: fix some warnings and start adding support for
9501         complete object removal on domain unload.
9503 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
9505         * assembly.c: build_assembly_name should not consider a version
9506         number without build or revision number invalid. Fixes bug #79715.
9508 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
9510         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
9511         call kernel32 function OutputDebugString directly.
9512         
9513         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9514         
9515 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
9517         * reflection.c: small cleanup, using a function to insert a MonoString
9518         in the string heap.
9520 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
9522         * reflection.c: moving GC fixes.
9524 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
9526         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
9527         all the objects with finalizers belonging to an unloading appdomain.
9529 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
9531         * sgen-gc.c: added ability to allocate even when the nursery is fully
9532         pinned and fixed a couple of bugs.
9534 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9536         * threads.h: Revert the last change for now.
9538         * threads.h (mono_thread_get_pending_exception): Rename this to
9539         mono_thread_get_undeniable_exception ().
9541 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
9543         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
9544         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
9545         when fname does not refer to valid assembly. This result in a more
9546         meaningful error message.
9547         * exception.c: added mono_get_exception_bad_image_format2 which 
9548         constructs a BadImageFormatException using the ctor taking a custom
9549         message and the file name. Passing in a NULL msg results in a default
9550         message.
9551         * exception.h: define mono_get_exception_bad_image_format2 function.
9552         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
9553         when file name pointed to an invalid IL image. Use 
9554         mono_get_exception_file_not_found2 to construct FileNotFoundException,
9555         as this results in a more meaningful error message.
9557 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9559         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
9560         #79465.
9562 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
9564         * metadata.c (mono_type_size): Change the align parameter to guint32 for
9565         consistency with the other _size functions.
9566         (mono_type_stack_size): Ditto.
9568         * class.c object.c icall.c: Fix warnings caused by the above change.
9570         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
9572         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
9574         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
9576 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
9578         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
9579         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
9580         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
9581         threadpool.h, threads-types.h: mark more internal functions.
9583 2006-10-11  Dick Porter  <dick@ximian.com>
9585         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9586         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
9587         reproduce the bug even before applying the fix.)
9589 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
9591         * reflection.c: allow retrieving attributes for arguments in generic
9592         methods (bug #79241).
9594 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
9596         * debug-mono-symfile.c: properly check fopen () result (found by
9597         coverity).
9599 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
9601         * reflection.c: make error message clearer and fixed two
9602         issuelets found by Coverity.
9604 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
9606         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
9608 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9610         * object-internals.h, gc-internal.h, profiler-private.h:
9611         mark internal functions.
9613 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9615         * reflection.c: put data in the text section.
9616         * icall.c: recognize more types in type_from_typename ().
9617         * process.c, marshal.c: added some GC FIXMEs.
9619 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9621         * loader.c: check for NULL before initializing.
9623 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
9625         * gc.c (finalizer_thread): Use a non-alertable wait here.
9627         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
9628         until the correct solution is found.
9630 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9632         * reflection.c (mono_module_get_object): Avoid an assert when operating on
9633         modules with no metadata. Fixes #79596.
9635         * image.c (load_metadata_ptrs): Put back the error message when
9636         the #- heap is encountered since the support is not complete yet.
9638 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9640         * gc.c: do not allow the user to SuppressFinalize () a
9641         delegate because it would leak the trampoline if present.
9643 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9645         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
9646         PropertyPtr table.
9648 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
9650         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
9652         * metadata.c (mono_metadata_get_param_attrs): Ditto.
9654         * row-indexes.h: Add definitions for *Ptr tables.
9656         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
9658         * metadata.c (mono_metadata_translate_token_index): New helper function to
9659         translate table indexes used in uncompressed metadata.
9660         (mono_metadata_decode_table_row): Ditto.
9661         (mono_metadata_decode_table_row_col): Ditto.
9663         * metadata.c: Add table schema for *Ptr tables.
9665         * class.c loader.c: Use the new helper function to access the affected metadata
9666         tables.
9667         
9668         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
9669         #38532.
9670         
9671 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
9673         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
9674         sequences which can be unbounded in size. Fixes #79583.
9676 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
9678         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
9679         static initialization.
9681         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
9683         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
9685         * domain.c (mono_domain_free): Free up type_init_exception_hash.
9687         * object.c (mono_runtime_class_init): Implement correct semantics when a static
9688         ctor fails, i.e. throw the same exception on subsequent accesses.
9689         
9690 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
9692         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
9693         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
9694         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
9695         Handle marshalling of interfaces and VARIANTs contained in structs.
9696         
9697         Code is contributed under MIT/X11 license.
9698         
9699 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
9701         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
9702         
9703         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
9704         mempool.
9706 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9708         * console-io.c: ignore previous SIGINT handler.
9710 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
9712         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
9713         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
9714         #79460, #79461, #79485.
9716         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
9718         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
9719         #79217.
9721 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
9723         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
9724         could be generated from it.
9726 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
9728         * rand.c: fix read loop to correctly handle EINTR.
9730 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9732         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
9733         internal calls are defined to keep methods closer to the declaring
9734         type and allow a significant reduction in runtime relocations and
9735         memory usage.
9737 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
9739         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
9740         exception message to have FileNotFoundException use the default
9741         assembly load error message. Fixes bug #79426.
9742         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
9744 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9746         * threadpool.c: (start_thread_or_queue) use the root domain when
9747         creating the thread instead of the async object one.
9749 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
9751         * class.c, object.c, class-internals.h, reflection.c:
9752         for arrays, store element_size inside MonoClass (speedup
9753         for array object creation).
9755 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
9757         * icall.c: fixed CodeBase to use the file name and not the module
9758         name (bug #79365).
9760 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9762         * mono-debug.c, mono-debug.h: export find_method as
9763         mono_debug_find_method ().
9765 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9767         * debug-helpers.c, class-internals.h: added a few functions useful
9768         when debugging under gdb.
9770 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9772         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
9773         characters that need special handling.
9775 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
9777         * mono-config.c: make the os/cpu specification more flexible,
9778         allowing lists and negation.
9780 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
9782         * marshal.c: COM Interop fixes. Handle case where method->klass.
9783         is interface. Handle BSTR/MonoString when null. Use CDECL as 
9784         calling convention on non-windows platforms. This is for
9785         compatibility with XPCOM and MainWin COM.
9786         
9787         Code is contributed under MIT/X11 license.
9788         
9790 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
9792         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
9793         correctly. Fixes #79217.
9795         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
9797 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
9799         * mono-config.c: allow both an os and cpu attribute for dllmap
9800         and dllentry elemnets to enable a single config file to be used
9801         for multiple architectures.
9803 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
9805         * loader.c: MonoLoaderError was cleared too soon on load failure.
9806         Fixes bug #79424.
9808 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
9810         * icall.c: use the defining class vtable when accessing a
9811         static field, not a pobblibly derived class.
9813 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
9815         * icall.c string-icalls.c: Remove references to unicode.h.
9817         * unicode.h unicode.c Makefile.am: Remove these unused source files.
9819         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
9821         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
9822         indicating the image where custom marshaller types should be looked up.
9823         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
9824         custom marshallers, instead of corlib. Fixes #79425.
9826 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
9828         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
9830 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
9832         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
9833         Implement Environment.ProcessorCount.
9834         
9835         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
9836         Implement Environment.ProcessorCount.
9837         
9838         * icall.c: 
9839         Add Environment.ProcessorCount icall.
9840         
9841         Patch by Jason McFall.
9843 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9845         * assembly.c: don't append .exe/.dll when the filename already contains
9846         one of those extensions.
9848 2006-09-12  Martin Baulig  <martin@ximian.com>
9850         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
9851         to array interfaces.
9853 2006-09-11  Martin Baulig  <martin@ximian.com>
9855         * reflection.c (mono_image_build_metadata): Create the
9856         MethodImpl's after emitting all types and methods, so we don't
9857         need another fixup pass for them.
9859 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
9861         * class.c (mono_class_from_name_case): Fix regression introduced by the last
9862         change.
9864 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
9866         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
9867         unload.
9869 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
9871         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
9872         args is not set. Fixes #78926.
9874 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
9876         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
9878         * image.c (load_class_names): Move this to class.c, and rename it to 
9879         'mono_image_init_name_cache'.
9880         (load_modules): Fix a warning.
9882         * class.c icall.c image.c: Initialize image->name_cache lazily.
9884         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
9885         on its name using information in the AOT file.
9887         * class.c (mono_class_from_name): Use the new hook function.
9889 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
9891         * reflection.c (mono_param_get_objects): Handle enum default parameter values
9892         correctly.
9894         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
9895         Fixes #79289.
9896         
9897 2006-09-06  Martin Baulig  <martin@ximian.com>
9899         * icall.c (mono_lookup_internal_call): Small fix.
9901 2006-09-05  Raja R Harinath  <rharinath@novell.com>
9903         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
9904         double g_free.
9906 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
9908         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
9909         when --debug is specified.
9911 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
9913         * class.c (setup_generic_array_ifaces): Fix a warning.
9915 2006-09-04  Miguel de Icaza  <miguel@novell.com>
9917         * Temporarily remove the patch to assemly.c that checks the
9918         assembly versions as it breaks our gacutil.
9920 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
9922         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
9924         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
9925         a net 1.0 runtime.
9927         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
9928         created using the default ctor. Fixes #79152.
9929         (mono_string_builder_to_utf16): Ditto.
9931 2006-09-01  Martin Baulig  <martin@ximian.com>
9933         Fix handling of the generic array interfaces.
9935         * class-internals.h
9936         (MonoDefaults): Removed `generic_array_class' and added
9937         `generic_ilist' class.
9939         * class.c
9940         (mono_bounded_array_class_get): Add the new generic array interfaces.
9941         (setup_generic_array_ifaces): New static method; create vtable
9942         entries for each method in the generic array interfaces.
9944         * metadata.c
9945         (select_container): Allow "parent-less" generic methods.
9947         * marshal.c
9948         (mono_marshal_get_generic_array_helper): New public method.
9950         * icall.c
9951         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
9952         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
9953         moved the interncall into System.Array.
9955 2006-09-01  Raja R Harinath  <rharinath@novell.com>
9957         A few more cases of avoiding work on types with ->byref set.
9958         Has the real fix for #79238
9959         * icall.c (is_generic_parameter): New helper.
9960         (ves_icall_Type_GetGenericParameterPosition): Use it.
9961         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
9962         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9963         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
9964         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
9965         reference types.
9966         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
9967         reference types.
9968         (ves_icall_Type_get_IsGenericInstance): Likewise.
9969         (ves_icall_Type_get_IsGenericType): Likewise.
9971 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
9973         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
9974         class if possible.
9976         * mempool.h (mono_mempool_get_allocated): New helper function.
9978         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
9979         change.
9981         * mempool.c: Fix warnings and the calculation of stats.
9983         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
9985         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
9987         * loader.c (mono_get_method_from_token): Update method_count stat.
9989         * class-internals.h (MonoStats): Add some stats.
9991 2006-08-31 Robert Jordan  <robertj@gmx.net>
9993         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
9994         with managed variants.
9995         All code is contributed under the MIT/X11 license.
9996         
9997 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
9999         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
10000         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
10002         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
10004         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
10005         with cycles in classes.
10007         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
10009         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
10010         missing a [MarshalAs] directive. Fixes #79203.
10012         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
10013         klass->marshal_info. Fixes #79217.
10015 2006-08-30  Martin Baulig  <martin@ximian.com>
10017         Committing a patch from Joachim Ante <joe@otee.dk>:
10018         Add support for binary data symbol stores.
10020         * debug-mono-symfile.c
10021         (mono_debug_open_mono_symbol_file): Renamed into
10022         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
10023         arguments.
10025         * mono-debug.c
10026         (mono_debug_open_image): Added `raw_contents' and `size' args.
10027         (mono_debug_init_2_memory): New public function.
10029 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
10031         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
10033 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10035         * appdomain.c: implement support for ShadowCopyFiles.
10037 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
10039         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
10040         when value is NULL (and should remove CID #51).
10042 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10044         * image.c: moved 2 functions to ../utils.
10046 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
10048         * gc.c: cope with the target object of a GC handle being NULL
10049         (bug #78877).
10051 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
10053         * class.c: recursively check parent's explicit implementations
10054         of interface methods (fixes bug #79125).
10056 2006-08-19  Miguel de Icaza  <miguel@novell.com>
10058         * filewatcher.c: Avoid warnings when building, do not redefine
10059         constants that are defined.
10061         Remove warnings.
10063 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10065         * image.c: don't fail when the link points to an absolute path.
10067 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
10069         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
10070         Fix CID #3.
10072 2006-08-17  Miguel de Icaza  <miguel@novell.com>
10074         * image.c (full_path): A new method used to obtain the actual path
10075         of an assembly even in the presence of symbolic links.  
10077         This is necessary for the case where we are running a binary that
10078         has been GACed, but we are using the "published" path name
10079         ($prefix/mono/1.0/blah.exe) which happens to point to the real
10080         file in the GAC.
10082         This was the source of the failure for the `xsp' command with the
10083         recent AppDomain changes, as far as the runtime was concerned,
10084         there were two different assemblies: $prefix/mono/1.0/blah.exe and
10085         $prefix/mono/gac/blah/version/blah.exe.
10087         (do_mono_image_open): use full path
10089 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10091         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
10093 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
10095         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
10096         domain_id is supplied. Fix CID #241 and corlib's unit tests.
10098 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10100         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
10101         small structures. Fixes #78990.
10103 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10105         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
10107         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
10109 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10111         * appdomain.c:
10112         * marshal.c: don't load all the assemblies from a domain into newly
10113         created ones. The new domains might have different rules and load
10114         assemblies from different locations. Fixes bug #76757.
10116         Patch by Lluis. Conflicts resolved by Brian Crowell.
10118 2006-08-16  Alp Toker  <alp@atoker.com>
10120         * socket-io.c: First half of the fix for #79084.
10121         Set sa_size to the length of the content, not that of the struct.
10122         Don't add NULL suffix to the content, this should be done in
10123         managed code if needed.
10125 2006-08-14  Raja R Harinath  <rharinath@novell.com>
10127         Fix part of #79012
10128         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
10129         mono_metadata_parse_type returns NULL.
10131 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
10133         * normalization-tables.h : new file for string normalization data.
10134         * locales.c, locales.h, icall.c :
10135           added load_normalization_resource() for string normalization,
10136           and icall as well.
10137         * Makefile.am : added normalization-tables.h to the sources.
10139 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
10141         * marshal.c: Add more helper functions to reduce code duplication and use them
10142         everywhere.
10144 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
10146         * marshal.c: Fix non-x86 stdcall warnings.
10147         
10148         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
10149         them everywhere.
10151 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
10153         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
10154         type check on multi-dimensional arrays. Fixes #79000.
10156 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
10158         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
10159         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
10160         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
10161         * class-internals.h: add is_com_object to class structure.
10162         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
10163         null checks to COM object marshalling. Fix .ctor call on RCW.
10164         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
10165         
10166         All code is contributed under the MIT/X11 license.
10168 2006-08-09  Dick Porter  <dick@ximian.com>
10170         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
10171         racing mono_monitor_allocator_lock() somewhere, so don't delete
10172         the critical section for now.  Found by running and exiting
10173         monodevelop.
10175 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
10177         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
10178         (ves_icall_System_ComObject_FindInterface): Ditto.
10179         (ves_icall_System_ComObject_CacheInterface): Ditto.
10181         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
10182         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
10184 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10186         * threadpool.c: treat pipes from process asynchronous reads as sockets
10187         when reading from them, so we get select/poll or epoll to wait for
10188         data.
10190 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
10192         * loader.c: Fix a typo (CID #233) in the null check.
10194 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
10196         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
10197         Hopefully fixes #78949.
10198         
10199         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
10200         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
10201         bytes. Fixes #78972.
10203 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10205         * filewatcher.c: we need to set errno here.
10207 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10209         * filewatcher.c: let Win32Exception get the error value.
10211 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10213         * filewatcher.c: translate errno into win32 errors for Win32Exception
10214         to know what happened.
10216 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
10218         * threadpool.c: Fix more warnings.
10220         * assembly.c (search_loaded): Fix warnings.
10222         * threadpool.c (mono_thread_pool_finish): Fix warnings.
10223         (mono_async_invoke): Ditto.
10225 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
10227         * object.c (mono_remote_class_vtable): Need to create proxy vtable
10228         entries for __ComObject type in addition to ComImport types.
10229         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
10230         about hash table.
10231         
10232         All code is contributed under the MIT/X11 license.
10234 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
10236         * image.c: avoid tentative loading of modulerefs that contain
10237         no metadata (P/Invoke library names).
10239 2006-07-28  Dick Porter  <dick@ximian.com>
10241         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
10242         mono_loader_lock() somewhere, so don't delete the critical section
10243         for now.  Found by running and exiting monodevelop.
10245 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10247         * filewatcher.c: define the inotify syscalls when we're building on
10248         linux and have sys/syscall.h. The build system might not have support
10249         for inotify but the target system might have it.
10251 2006-07-26  Miguel de Icaza  <miguel@novell.com>
10253         * domain.c: Documentation updates.
10255         * loader.c (mono_free_method): Do not release the method
10256         information if we are being profiled, as profilers will use this
10257         information at shut down to present some data to the user.
10259         This is needed so that the profiler does not crash, as the
10260         profiler tends to keep MonoMethods around, and they might become
10261         invalid if we free these.
10263         (mono_get_method_constrained): Return the original CIL stream
10264         method as well, so verification can be performed against it.
10266 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10268         * filewatcher.[ch]: support for inotify file system watcher.
10269         * icall.c: add new internal calls for the inotify file system watcher.
10271 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10273         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
10274         #78888.
10276 2006-07-20  Dick Porter  <dick@ximian.com>
10278         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
10279         warning.
10281 2006-07-20  Dick Porter  <dick@ximian.com>
10283         * threads.c (start_wrapper): Do the thread cleanup while we still
10284         hold a reference to its object.  Fixes bug 78123.
10286 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
10288         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
10289         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
10290           "managed-to-managed".
10291         * icall.c: Redirect string constructors that take sbyte* to
10292           ves_icall_System_String_ctor_RedirectToCreateString.
10293         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
10294           to CreateString () methods with matching signature.
10295         * reflection.c: Use original security informations for
10296           MONO_WRAPPER_MANAGED_TO_MANAGED.
10297         * security-manager.c: Use original security informations for
10298           MONO_WRAPPER_MANAGED_TO_MANAGED.
10299         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
10300           that is a placeholder and only its address should be used.
10301         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
10302           that is a placeholder and only its address should be used.
10304 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
10306         Begin implementing COM Interop.
10307         * appdomain.c: Increment corlib version.
10308         * class.c: Set ComImport classes' parent to __ComObject.
10309         * loader.c: Mark cominterop methods as such.
10310         * domain.c: Add __ComObject class to MonoDefaults structure.
10311         * image.c: Add 2 hashtables to the image for COM Interop related methods
10312         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
10313         using the mempool allocator
10314         
10315         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
10316         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
10317         declaration for mono_metadata_type_dup_mp.
10318         
10319         * debug-helpers.c: Added strings for two additional wrapper types
10320         * object.c: Create proxy objects for ComImport classes
10321         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
10322         and added __ComObject class to MonoDefaults structure.
10323         
10324         * object-internals.h: Finish MonoRealProxy definition, and add definition of
10325         MonoComInteropProxy and MonoComObject.
10326         
10327         * marshal.c: Added support for COM Interop
10328         (signature_cominterop): Converts managed signature to corresponding
10329         unmanaged COM signature.
10330         (cominterop_get_function_pointer): gets unmanaged function pointer via
10331         COM object vtable
10332         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
10333         (cominterop_get_method_interface): returns interface type that method is defined on
10334         (mono_mb_emit_cominterop_call): emits native call to function pointer
10335         gotten from vtable
10336         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
10337         that matches signature of unmanaged function.
10338         (cominterop_get_native_wrapper): wrapper around adjusted method call.
10339         (cominterop_get_invoke): forwards call from proxy to __ComObject
10340         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
10341         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
10342         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
10343         
10344         * marshal.h: Added Marshal icall declarations.
10345         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
10346         so we can access them in finalizer
10347         
10348 2006-07-14  Dick Porter  <dick@ximian.com>
10350         * object.c (mono_type_initialization_cleanup): Fix a race
10351         condition by temporarily commenting out the critical section
10352         deletion.
10354 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
10356         * reflection.c (create_custom_attr): Fix some warnings.
10357         (create_custom_attr_data): Ditto.
10358         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
10359         types. Fixes #78855.
10361 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
10363         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
10365         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
10367 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
10369         * reflection.c (resolve_object): Add support for DynamicMethod.
10371         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
10372         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
10374 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
10376         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
10377         don't leak GPtrArray's pdata has we have no use (nor free) for it.
10379 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
10381         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
10382         Fixes #77888.
10384 2006-06-30  Raja R Harinath  <rharinath@novell.com>
10386         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
10387         slightly: remove a shadow local variable.
10389 2006-06-29  Raja R Harinath  <rharinath@novell.com>
10391         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
10392         definition that introduces the virtual function slot.
10393         Also fix Coverity #105.
10395 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
10397         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
10398         for dynamic assemblies. Fixes #78724.
10400 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
10402         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
10403         Fixes #78722.
10405 2006-06-21  Martin Baulig  <martin@ximian.com>
10407         * reflection.c
10408         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
10409         fixes #76484.
10411 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
10413         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
10415 2006-06-20  Raja R Harinath  <rharinath@novell.com>
10417         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
10418         nor TYPEREFs.
10419         * class.c (mono_class_create_from_typespec): Add 'context' argument.
10420         Inflate result if necessary.
10421         (mono_class_get_full): Remove old version.  Rename from
10422         'mono_class_get' and add 'context' argument.  Pass it to
10423         ..._create_from_typespec.
10424         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
10425         (mono_ldtoken): Revert change below.
10427 2006-06-20  Martin Baulig  <martin@ximian.com>
10429         * class.c (mono_ldtoken): Don't pass the generic context to
10430         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
10432 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
10434         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
10435         and later freeing it. Fixes #78638.
10437 2006-06-15  Miguel de Icaza  <miguel@novell.com>
10439         * icall.c (mono_class_get_throw): Revert over-zealous error
10440         throwing, the caller for mono_class_get_throw will cope with
10441         errors when classes are not properly initialized already.
10443         The code still copes with loader exceptions though.
10445         Fixes the regression in reftype1 and reftype3 from the CAS tests.
10446         
10447 2006-06-14  Miguel de Icaza  <miguel@novell.com>
10449         Fixes the `make run1' version of RuntimeAbort (to be commited,
10450         source is in Bugzilla).
10451         
10452         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
10453         FALSE on class loading failure instead of returning true.
10455         * class.c (mono_class_create_from_typedef): It is possible for
10456         mono_metadata_interfaces_from_typedef_full to fail if a class is
10457         not found, cope with this.
10458         
10460 2006-06-14  Dick Porter  <dick@ximian.com>
10462         * socket-io.c: 
10463         * process.c: Fix a bunch of signed/unsigned warnings from gcc
10464         4.1.1
10466 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
10468         * culture-info-table.h : oops, forgot to make it nsync with r61548.
10470 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10472         * icall.c: Another fix for building mono in Visual Studio.
10474 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10476         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
10477         
10478 2006-06-09  Martin Baulig  <martin@ximian.com>
10480         * debug-mono-symfile.c: Put this back and really fix it this
10481         time. Sorry for all the trouble.
10483 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
10485         * icall.c (mono_class_get_throw): Fix a warning.
10486         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
10487         ReflectionTypeLoadException if needed. Fixes #78606.
10489         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
10490         (mono_class_init): Ditto.
10492         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
10493         ref_only exceptions.
10494         (mono_loader_clear_error): Make this work even if there is no error.
10496 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
10498         * object-internals.h marshal.c marshal.h icall.c: Implement method 
10499         Marshal.GetComSlotForMethodInfo using internal call.
10501 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
10503         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
10504         a function for signalling it.
10506         * class.c (mono_class_from_typeref): Use the new kind of loader error when
10507         a referenced assembly is not found.
10509         * loader.c (mono_loader_error_prepare_exception): Add support for 
10510         LOADER_ERROR_ASSEMBLY. Fix formatting.
10512 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10514         * domain.c appdomain.c class-internals.h marshal.c: Add support 
10515         for VARIANT marshalling on windows and increment corlib version
10516         since Variant struct was added.
10518 2006-06-03  Miguel de Icaza  <miguel@novell.com>
10520         * debug-mono-symfile.c: Revert Martin's previous patch which broke
10521         stack trace line information:
10523         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
10524         (Martin) when looking up B which is between A and C, return A not C.
10526         Bug is #78573.
10528         Thanks to Alexander Olk for tracking this down.
10530 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
10532         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
10533         
10534         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
10535         avoid clobbering its value.
10536         (mono_string_to_lpstr): Fix a warning on windows.
10538 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10540         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
10542         * reflection.c loader.c: Removed references to 'dummy' flag.
10544         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
10546         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
10547         it gets GC tracking.
10549         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
10550         GC tracking.
10551         
10552         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
10554         * marshal.c threadpool.c: Update callers of mono_async_result_new.
10556         * appdomain.c: Bump corlib version.
10558 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10560         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10561         CEE_STIND_REF when working with object references.
10563 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10565         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
10566         Fixes #78539.
10568 2006-05-30  Miguel de Icaza  <miguel@novell.com>
10570         * loader.c (method_from_memberref): Fix argument value for
10571         mono_loader_set_error_method_load (I was passing the MonoClass
10572         instead of the class name char *).
10574 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10576         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10577         CEE_STIND_REF when working with object references.
10579 2006-05-30  Martin Baulig  <martin@ximian.com>
10581         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
10582         mono_method_full_name() change and replace the ':' with a '.'
10583         here.
10585 2006-05-30  Martin Baulig  <martin@ximian.com>
10587         * debug-mono-symfile.c
10588         (mono_debug_symfile_lookup_location): Fix the algorithm:
10589         when looking up B which is between A and C, return A not C.
10591 2006-05-29  Martin Baulig  <martin@ximian.com>
10593         * mono-debug.h
10594         (MonoDebugMethodInfo): Make the typedef public.
10595         (MonoDebugSourceLocation): New public struct.
10597         * mono-debug.c
10598         (mono_debug_source_location_from_address): Removed.
10599         (mono_debug_source_location_from_il_offset): Removed.
10600         (mono_debug_il_offset_from_address): Removed.
10601         (mono_debug_address_from_il_offset): Removed.
10602         (mono_debug_lookup_method): New public function.
10603         (mono_debug_lookup_source_location): New public function; replaces
10604         the old mono_debug_source_location_from_*() functions; see the
10605         inline documentation.
10606         (mono_debug_free_source_location): New public function.
10607         (mono_debug_print_stack_frame): New public function; see the
10608         inline documentation.
10610         * debug-mono-symfile.c
10611         (mono_debug_find_source_location): Renamed into
10612         mono_debug_symfile_lookup_location(); only take a
10613         `MonoDebugMethodInfo *' and an `offset' argument; added inline
10614         documentation.
10615         (mono_debug_find_method): Renamed into
10616         mono_debug_symfile_lookup_method().
10618 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
10620         * assembly.c (mono_assembly_open_full): Dont overwrite the status
10621         returned by mono_image_open_full ().
10623         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
10624         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
10625         #78517.
10627         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
10628         #78518.
10630 2006-05-27  Miguel de Icaza  <miguel@novell.com>
10632         * class.c (mono_class_from_typeref): handle missing images
10633         earlier, deals with bug #78418.   Refactor code; 
10635         Fix a warning introduced in my previous commit (some stale code
10636         from before I revisited my patch).
10638         * class.c (mono_class_create_from_typedef): On failure, remove the
10639         class from the MonoImage->class_cache as the class is not
10640         initialized;   Fixes the leak pointed out by Paolo.
10642 2006-05-25  Dick Porter  <dick@ximian.com>
10644         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
10645         DeleteCriticalSections until I figure out which one may still be
10646         sometimes locked when mono_thread_cleanup is called.
10648 2006-05-24  Dick Porter  <dick@ximian.com>
10650         * threads.c (mono_thread_cleanup): Move the threading cleanup out
10651         of mono_thread_manage and back into its own function, so it can be
10652         called after the finalizer thread has finished.
10654         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
10656 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
10658         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
10659         Fixes #78495.
10661         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
10662         with non-blittable elements.
10663         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
10665 2006-05-24  Martin Baulig  <martin@ximian.com>
10667         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10668         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
10670         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
10671         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
10672         `mono_debugger_event_handler' to NULL.
10674 2006-05-24  Martin Baulig  <martin@ximian.com>
10676         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
10678 2006-05-24  Martin Baulig  <martin@ximian.com>
10680         * mono-debug-debugger.h
10681         (mono_debugger_create_notification_function): Added
10682         `MonoCodeManager *' argument.
10684 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
10686         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
10688 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
10690         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
10691         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
10692         implementation.
10694 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
10696         * icall.c: precise GC support: objects can't be stored in unmanaged
10697         memory anymore, even if they are kept alive by other references: since
10698         they can move the GC needs to be able to always find them.
10700 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10702         * object.c: precise GC support for static fields. Support
10703         for moving GCs: write barriers and pinned allocation for interned
10704         strings.
10706 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10708         * domain.c, domain-internals.h: precise GC support for the MonoDomain
10709         structure.
10711 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10713         * class.c, gc.c: sgen and precise GC updates.
10715 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10717         * marshal.h, marshal.c: added write barrier wrapper and precise type
10718         fixes.
10720 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
10722         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
10723         support.
10725 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
10727         * reflection.c: precise and sgen GC updates.
10729 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10731         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
10733 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
10735         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
10737 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
10739         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
10740         MONO_TYPE_OBJECT. Fixes #78462.
10742 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
10744         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
10745         and blittable types.
10747 2006-05-17  Miguel de Icaza  <miguel@novell.com>
10749         * class.c (mono_class_get_exception_for_failure): Implement parts
10750         of a TODO: if the loader error is set (instead of the class
10751         error), we return a Loader exception that can be properly thrown
10752         elsewhere.
10754         This was exposed by some Winforms 2.0 code that I tried to run
10755         (Atsushi pointed me to it).
10757 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
10759         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
10760         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
10761         
10762         * marshal.c (emit_marshal_vtype): Add limited support for 
10763         UnmanagedType.LPStruct. Fixes #78427.
10765         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
10766         Applied a patch from kangaroo to fix #77523.
10768 2006-05-17  Martin Baulig  <martin@ximian.com>
10770         * threads.c
10771         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
10772         (debugger_thread_created): Removed.
10773         (debugger_thread_exited): Removed.
10775 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
10777         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10779         * object-internals.h (MonoReflectionResource): Sync with managed version.
10781 2006-05-12  Wade Berrier <wberrier@novell.com>
10783         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
10785 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
10787         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
10788         functions try to allocate from the image mempool.
10790 2006-05-12  Dick Porter  <dick@ximian.com>
10792         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
10794 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
10796         * object.c: The FieldGetter and FieldSetter methods require the full
10797         name of the class, not only the name. Fixes bug #78277.
10799 2006-05-11  Miguel de Icaza  <miguel@novell.com>
10801         * loader.c (method_from_memberref): Do not pass the NULL klass to
10802         mono_loader_set_error_() methods.  Pass the non-NULL value
10803         (class). 
10805 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
10807         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
10808         (mono_assembly_close): Null out assembly->image->references after freeing it.
10810         * image.c (mono_image_close): Free image->references.
10811         
10812         * reflection.c (mono_image_basic_init): Fix a small memory leak.
10814 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10816         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
10817         before checking if it's NULL (g_assert).
10819 2006-05-10  Martin Baulig  <martin@ximian.com>
10821         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
10822         I thought I already killed that two months ago, but now it somehow reappeared.
10824 2006-05-10  Martin Baulig  <martin@ximian.com>
10826         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
10828 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
10830         * reflection.c: Allocate memory for dynamically created methods in the image
10831         mempools.
10833 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10835         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
10836         don't use the ad pointer before checking if it's NULL (g_assert).
10838 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
10840         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
10841         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
10843         * marshal.c: Allocate all signatures from mempools.
10845         * marshal.c: Allocate some more signatures from mempools.
10847 2006-05-09  Miguel de Icaza  <miguel@novell.com>
10849         * object.c (mono_load_remote_field): The code used to provide a
10850         temporary variable for returning results if the user did not
10851         provide a result pointer.  But our temporary variable was allocted
10852         on the satck.
10854         Fix calling code to always pass a result area.   Coverity ID 103.
10856 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
10858         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
10859         value, not the old. Fixes #78312.
10860         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
10862         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
10863         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
10864         per-image cache.
10866         * assembly.c (mono_assembly_close): Free image->references.
10868         * assembly.c (mono_assembly_names_equal): Fix a warning.
10869         (mono_assemblies_cleanup): Cleanup more global data.
10871         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
10873         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
10874         ptr_cache and image->modules.
10876         * image.c (mono_image_init): Allocate array_cache lazily.
10877         
10878 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10880         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
10881         behavior was changed recently and has bad side effects.
10883 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
10885         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
10886         
10887         * assembly.c (mono_assembly_close): Remove a debug printf.
10889         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
10891         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
10892         to also allow for temporary references between mono_image_open ()/close ().
10894         * domain.c (get_runtimes_from_exe): Add a FIXME.        
10896 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
10898         * marshal.c: Fix support for dynamic methods.
10900         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
10902         * marshal.c (mono_marshal_cleanup): New cleanup function.
10904         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
10905         image mempools.
10907         * class.c (mono_class_init): Fix leaking class->nested_classes.
10909         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
10911         * image.c (mono_image_init): Initialize the new cashes.
10913         * image.c (mono_image_close): Destroy the new cashes.
10915         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
10917         * mempool.c (mono_mempool_strdup): New helper function.
10919         * class-internals.h: Add prototype for mono_loader_unlock ().
10921         * domain.c (mono_jit_info_table_find): Fix a warning.
10922         (mono_debugger_check_runtime_version): Ditto.
10924         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
10925         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
10926         functions to these modules.
10928         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
10929         metadata modules.
10930         
10931         * marshal.c (mono_free_bstr): Fix a warning.
10933         * assembly.c (mono_assembly_open_full): Fix another small leak.
10935         * object.c: Fix some unload leaks in the remoting code.
10937         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
10938         function.
10940         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
10942         * reflection.c: Fix some unload leaks in dynamic assemblies.
10944 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
10946         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
10947         * marshal.h: Add BSTR support on Win32
10948         * icall.c: Add BSTR icalls
10949         * metadata.h: Add BSTR enums
10951 2006-04-28  Miguel de Icaza  <miguel@novell.com>
10953         Work to catch the crash from #76795 and turn it into an
10954         exception.   As I stubbed out pieces of the VisualBasic support,
10955         I found a number of places where the code was failing and I added
10956         checks to those places. 
10957         
10958         * metadata.c (do_mono_metadata_parse_generic_class): Make this
10959         function return a status code.  If we fail to parse the signature
10960         from mono_metadata_parse_generic_inst, return FALSE.
10962         * loader.c (mono_get_method_from_token): If we fail to load the
10963         method (mono_class_get) return NULL.   
10965         * (method_from_memberref): Return NULL if we are unable to parse
10966         the method signature
10968         (mono_loader_error_prepare_exception): Since we now use the
10969         loader_error flag internally to stop processing, and obtaining
10970         exceptions that might be thrown will walk this code path the
10971         proper way of going from a MonoLoaderError into a
10972         MonoException was convoluted.   This new routine encapsulates the
10973         process of turning the error into an exception and *clearing* the
10974         error afterwards.
10975         
10976 2006-04-27  Miguel de Icaza  <miguel@novell.com>
10978         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
10979         with missing assemblies), and to cope with:
10981                 * Missing fieldref from a non-existing assembly.
10982                 * Missing methodref from a non-existing assembly.
10984         The first batch of work to address *some* of the issues from 76661.
10985         
10986         * object.c (mono_class_create_runtime_vtable): If we fail to
10987         initialize the class raise the exception here. 
10989         * metadata.c (mono_class_get_overrides_full): If any methods fail
10990         to load return the failure to the caller.
10992         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
10993         flagging assemblies that failed to load.   
10995         Do not crash if we are unable to load the assembly.
10997         (mono_assembly_close): Do nothing with REFERENCE_MISSING
10998         assemblies. 
11000         * loader.c (mono_loader_set_error_type_load): Change the
11001         convention to always pass unallocated strings, so we make our own
11002         copies (I know our own code had duplicated strings before, but
11003         this keeps the normal conventions).
11004         (method_from_memberref): Call mono_loader_set_error_method_load
11005         for all possible failures of loading the class. 
11006         Remove assert, turn into a loader error.
11008         (mono_loader_error_to_exception): Move this routine from mini
11009         (mini_loader_error_to_exception) there was no need to have that in
11010         mini. 
11012         * class.c (mono_class_from_typeref): If we were not able to load
11013         the assembly with mono_assembly_load_reference, call the
11014         mono_loader_set_error_type_load to register the problem.
11016         (mono_class_setup_fields): If we fail to load the type from
11017         mono_metadata_parse_type_full, call mono_class_set_failure and
11018         break from the loop.
11020         If class->exception_type is set, we do not layout the fields as
11021         that might crash the runtime, and instead return (from breaking
11022         from the previous loop).
11024         (mono_class_setup_vtable): This now returns a boolean indicating
11025         whether the table was properly setup.   The decision is driven by
11026         mono_class_get_overrides_full which might run into non-existing
11027         methods. 
11028         
11029         (mono_class_init): Returns TRUE on success or FALSE if there was a
11030         problem in loading the type (incorrect assemblies, missing
11031         assemblies, methods, etc).
11033         When we call mono_class_setup_fields we also check for a potential
11034         error inside this call (either a class exception or a general
11035         loader exception).
11037         (mono_class_create_from_typedef): If the parent fails to load
11038         (calling mono_class_get_full) return NULL.
11039         
11040         ** Important **
11042         calls to mono_metadata_parse_type_full should be checked
11043         everywhere and set the mono_class_set_failure
11044         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
11046         The current patch checks the places where my manually constructed
11047         tests show the errors are showing up, but we should do it
11048         everywhere. 
11050         ** Important2 **
11052         mono_class_init return values should be tested everywhere, like
11053         the previous case this is something that we should audit
11054         everywhere and not only on the cases exposed by the tests I
11055         created. 
11057 2006-04-26  Miguel de Icaza  <miguel@novell.com>
11059         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
11060         boolean parameter and instead pass the information on `options'
11061         parameter (FileOptions).
11063         * icall.c: Register the new signature for MonoIO.Open.
11065         * debug-helpers.c (dis_one): Trying to understand how coverity
11066         works.  Fix Run 5, item 78.
11068 2006-04-26  Dick Porter  <dick@ximian.com>
11070         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
11071         dereference.
11073 2006-04-25  Martin Baulig  <martin@ximian.com>
11075         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
11077         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
11078         debugger_thread_created().
11079         (debugger_gc_push_all_stacks): Don't handle the main thread in any
11080         special way.
11081         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
11082         (mono_debugger_finalize_threads): New function; undo the effects
11083         of mono_debugger_init_threads().
11084         (mono_debugger_create_all_threads): Removed.
11086 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
11088         * image.c (mono_image_close): Tidy up trace messages.
11090         * assembly.c (mono_assembly_close): Ditto.
11092         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
11093         no longer references an already freed assembly. Fixes #78168.
11095 2006-04-21  Dick Porter  <dick@ximian.com>
11097         * threads.c (mono_thread_detach): Fix reference counting when
11098         detaching threads.
11100 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
11102         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
11103         #78155.
11105 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
11107         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
11108         (mono_type_to_stind): Ditto.
11110         * marshal.c: Use the new helper functions to simplify code.
11112         * image.c (mono_image_close): Add some code for help debug assembly unloading
11113         problems.
11115         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
11116         image mempool.
11118         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
11119         assembly was already loaded in another appdomain. Fixes #78083.
11121 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
11123         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
11124         referenced assemblies.
11125         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
11127         * domain.c (mono_domain_free): Add a trace message.
11129         * appdomain.c (add_assemblies_to_domain): Ditto.        
11131         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
11132         field.  
11134 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11136         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
11138 2006-04-12  Martin Baulig  <martin@ximian.com>
11140         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
11141         `USE_INCLUDED_LIBGC'.   
11143 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11145         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
11146         the patch contains ../ and a small directory name later. Hopefully fixes
11147         #78035.
11149 2006-04-10  Martin Baulig  <martin@ximian.com>
11151         Clean up the debugger's thread-handling code.
11153         The debugger's thread-handling code has been moved from
11154         ../mini/debug-debugger.c to threads.c.  We now iterate directly
11155         over the `threads' hash, keep track of exiting threads and also
11156         use proper locking.
11158         We can now debug XSP and XSP based applications with the debugger.
11160         * object-internals.h (MonoThread): Added `gpointer end_stack'.
11162         * threads.h
11163         (MonoThreadCallbacks): Removed; this was only used by the debugger.
11164         (mono_install_thread_callbacks): Likewise.      
11166         * threads.c (mono_thread_callbacks): Removed.
11167         (debugger_thread_created, debugger_thread_exited): New static functions.
11168         (start_wrapper): Call debugger_thread_created().
11169         (thread_cleanup): Call debugger_thread_exited().
11170         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
11171         (mono_debugger_init_threads): New public function.
11172         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
11173         iterate directly over the `threads' hash and also use proper locking.
11175         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
11177         * mono-debug-debugger.h
11178         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
11180 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11182         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
11183         argument type=array. Fixes #78057.
11185 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
11187         * culture-info-table.h : regenerated. Fixed bug #69652.
11189 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
11191         * loader.c metadata.c: Reapply a variant r59116.
11192         
11193         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
11195         * class.c (mono_class_setup_interface_offsets): New internal function.
11197         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
11198         interfaces too. Fixes #77398.
11200         * reflection.c (encode_cattr_value): Add support for 
11201         parameter type=object, argument type=array.
11202         (load_cattr_value): Ditto. Fixes #77916.
11204         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
11205         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
11207         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
11208         a byval char array and CharSet is Ansi.
11210         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
11212 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
11214         * metadata.c: Add some locking comments.
11215         
11216         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
11217         mempool.
11218         (mono_metadata_free_method_signature): Don't free the signature itself.
11220         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
11222         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
11223         reference the same MonoImage.
11224         (mono_assembly_load_from_full): Add an assert.
11226 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
11228         * image.c (mono_image_close): Don't put the image we are about to free into the
11229         loaded_images_guid_hash.
11231         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
11232         to reduce code duplication.
11234         * marshal.c: Register the native functions called by this module as icalls, to
11235         somewhat centralize the creation of MonoMethodSignature's.
11237         * loader.c (mono_method_signature): Add a cache for method signatures.
11239         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
11240         the parameter attributes of a method.
11241         (mono_metadata_parse_method_signature_full): Refactored the computation of
11242         parameter attributes into a separate function. Also avoid one allocation in
11243         most cases.
11245         * assembly.c (mono_assembly_close): Ditto.
11247         * image.c (mono_image_close): Log trace messages with INFO level.
11249         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
11251         * image.c reflection.c: Correct reference counting of image modules.
11252         
11253         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
11254         of this function from the image mempool.
11255         
11256         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
11257         to allow more cached types to be used.
11259         * mono-debug.c (mono_debug_add_method): Appled patch from
11260         David S. Miller  <davem@sunset.davemloft.net>: Access 
11261         minfo->lexical_blocks[] entry elements using read32().
11263 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
11265         * loader.c (mono_free_method): No longer free the method header for non-dynamic
11266         methods as it is allocated from the mempool.
11268         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
11269         image mempool.
11271         * metadata-internals.h: Add comments describing the reference counting scheme
11272         used for MonoImage and MonoAssembly.
11274         * image.c assembly.c reflection.c: Rework reference counting of images and 
11275         assemblies so they are freed when the runtime is shut down. Free some 
11276         additional memory structures when an image is unloaded.
11277         
11278 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
11280         * class.c loader.c reflection.c: Allocate more data structures in
11281         the image mempool.
11283 2006-03-31  Miguel de Icaza  <miguel@novell.com>
11285         * icall.c
11286         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
11287         build on pre glib 2.4 systems.
11289 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
11291         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
11293         * icall.c: Fix some warnings.
11295 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
11297         * culture-info-table.h : regenerated.
11299 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
11301         * threads.c, object-internals.h, verify.c: changed the culture caching
11302         code to use a normal MonoArray for storage so the GC can keep track of
11303         them easily. Fixed bits of the cache logic, too and simplified the
11304         code.
11306 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
11308         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
11309         thread for non-Boehm GCs.
11311 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
11313         * domain.c, object.c, domain-internals.h: reduce the amount of memory
11314         needed to keep track of the data for static fields.
11316 2006-03-29  Raja R Harinath  <rharinath@novell.com>
11318         Fix #75172
11319         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
11320         for interface classes.  Use 'num_methods' instead.
11321         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
11322         before using '->vtable_size' field.
11324 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11326         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
11327         doesn't contain managed pointers, so use a normal hashtable.
11329 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
11331         * reflection.c, class-internals.h, domain.c: fixed handling of types
11332         used as values for objects in custom attributes (bug #77915):
11334 2006-03-24  Martin Baulig  <martin@ximian.com>
11336         * class.c (mono_class_setup_fields): Added support for generic
11337         instances; fixes #77580.
11339 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11341         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
11343 2006-03-24  Dick Porter  <dick@ximian.com>
11345         * file-io.c (get_file_attributes): More stat macro breakage.
11346         Fixes bug 77759.
11348 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
11350         * profiler.c: added the file=filename option in the default profiler
11351         to output the profile data to filename.
11353 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11355         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
11356         bug #77877.
11358 2006-03-22  Martin Baulig  <martin@ximian.com>
11360         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
11361         allocated `MonoClassField *' in `fb->handle'.
11363 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11365         * class.c, image.c, metadata-internals.h: implemented new mechanism to
11366         allocate interface ID to save memory and allow better ID reuse on
11367         appdomain unload. setup_generic_vtable () removal from Martin.
11369 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11371         * object.h, appdomain.c, domain.c, exception.c, icall.c,
11372         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
11373         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
11374         write barriers for reference stores with managed objects accessed with
11375         C structures in the runtime and in embedding programs.
11377 2006-03-20  Raja R Harinath  <rharinath@novell.com>
11379         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
11380         'interface_id' and 'max_interface_id' fields of MonoClasses
11381         representing open generic types.
11383 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
11385         * object.h, object.c, icall.c: added functions to deal with
11386         storing valuetypes that contain references in managed objects.
11387         * reflection.c, string-icalls.c, threads.c, marshal.c: small
11388         fixes and comments around uses of mono_array_addr ().
11390 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
11392         * object.h, icall.c, monitor.c: object.GetHashCode ()
11393         implementation that supports the moving garbage collector.
11395 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
11397         * icall.c, threads-types.h, threads.c: implemented finalizer for
11398         LocalDataStoreSlot.
11400 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
11402         * metadata.c (mono_type_size): Add a fixme.
11403         (mono_type_stack_size): Ditto.
11405         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
11406         'type_forwarders' field.
11408         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
11409         attribute from net 2.0.
11411         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
11412         from class.c.
11414         * class.c (mono_class_setup_fields): Fix a warning.
11415         
11416         * class.c (mono_class_from_name): Add support for assemblyref entries
11417         in the EXPORTEDTYPE table.
11419         * reflection.c: Add support for handling type forwarders under net 2.0.
11421         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
11422         
11423 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
11425         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
11426         overwriting entries in ModuleBuild->types, also clean up the code
11427         a little. Fixes #77774.
11429 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11431         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
11432         load friend assembly info when present.
11434 2006-03-14  Raja R Harinath  <rharinath@novell.com>
11436         Fix crasher on gtest-158.cs.
11437         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
11438         the return value if the MonoClass we want is yet in an
11439         inconsistent state.
11440         * class.c (mono_class_create_from_typedef): Add an comment
11441         explaining an order dependency between mono_class_setup_parent and
11442         mono_class_setup_mono_type.
11444 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
11446         * class.c: documentation updates and events bug fix.
11448 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11450         * class.c: some cleanup, locking fixes.
11452 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11454         * class.c: fix the generics code to setup nested
11455         type info to the instantiated type (bug #77770).
11457 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11459         * marshal.c: fixed a few type correctness issues.
11461 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11463         * loader.c: the Set/Get/Addrtess array methods should be public.
11465 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11467         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
11468         
11469         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
11470         info->wrapper.
11472 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
11474         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
11476         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
11478         * mempool.c (mono_mempool_alloc): Speed this up a bit.
11479         (mono_mempool_alloc0): Ditto.
11481 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11483         * socket-io.c:
11484         (create_object_from_sockaddr): it was allocating 4 extra bytes
11485         for the AF_UNIX data. Fixes bug #77747.
11487 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
11489         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
11491 2006-03-09  Dick Porter  <dick@ximian.com>
11493         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
11494         Fixes bug 76966 again.
11496 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
11498         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
11499         names from r57532
11500         * appdomain.c: Bumped corlib version to 48 (due to r57532)
11502 2006-03-07  Martin Baulig  <martin@ximian.com>
11504         * object.c
11505         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
11507 2006-03-07  Martin Baulig  <martin@ximian.com>
11509         * class.c
11510         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
11511         regression introduced in r56970; see gtest-252.cs.
11513         * loader.c (mono_get_method_constrained): Correctly handle generic
11514         methods; see gtest-253.cs.
11516 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
11518         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
11520 2006-03-04  Martin Baulig  <martin@ximian.com>
11522         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
11523         compute the parent type at runtime, just like we're already doing
11524         it for interfaces.
11526         * reflection.c
11527         (mono_reflection_bind_generic_parameters): Don't compute the
11528         parent type anymore.
11530         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
11532 2006-03-04  Martin Baulig  <martin@ximian.com>
11534         * mono-debug-debugger.h
11535         (mono_debugger_create_notification_function): Allocate memory at
11536         runtime and return a pointer to it.
11538 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
11540         * assembly.c: Fix windows build.
11541         
11542         * assembly.c: Fix build.
11544         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
11546         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
11547         
11548 2006-03-03  Dick Porter  <dick@ximian.com>
11550         * process.c
11551         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11552         Check parameters before dereferencing them.  Fixes Aaron's part of
11553         bug 77393.
11555 2006-03-03  Raja R Harinath  <rharinath@novell.com>
11557         Fix performance regression.
11558         * loader.c (find_method_in_class): Add 'from_class' argument.
11559         Rename 'klass' argument to 'in_class'.  The signature is compared
11560         against the method in 'in_class', and the corresponding method is
11561         returned from 'from_class'.
11562         (find_method): Walk both 'in_class' and 'from_class' in parallel.
11563         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
11564         type definition and generic instantiation in parallel.
11565         (mono_get_method_constrained): Update to changes.
11567 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11569         * threads.c: make sure the domain is correct, too when doing
11570         mono_thread_attach ().
11572 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
11574         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
11575         windows. Fixes #77683.
11577 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11579         * object.h, *: introduced specific way to set elements of an array
11580         of references to be used as write barrier. Still need to audit the
11581         uses of mono_array_addr.
11583 2006-03-01  Miguel de Icaza  <miguel@novell.com>
11585         * object-internals.h: New field to cache the assmebly name, patch
11586         from Tambet Ingo (tambet@ximian.com)
11588 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11590         * decimal.h, class-internals.h, metadata-internals.h,
11591         file-io.h: mark a few function declarations as internal, to
11592         reduce the number of PLT entries.
11594 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11596         * file-io.c: fix typo in warning message.
11598 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
11600         * loader.c: on unix, lookup the "*A" version of a function
11601         if charset is auto as a second option before failing.
11603 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11605         * class.h (mono_class_inflate_generic_method): Revert to two
11606         argument version.
11607         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
11608         (mono_class_inflate_generic_method_full): Add.
11609         * class.c (mono_class_inflate_generic_method_full): Rename from
11610         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
11611         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
11612         * loader.c, reflection.c: Update to changes.
11614 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11616         * icall.c: const fixes and small improvements.
11618 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11620         * threadpool.c: for asynchronous connect(), enable the same workaround
11621         for BSD 6 as for the Mac. Fixes bug #77637.
11623 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11625         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
11626         formatted classes. Fixes #77524.
11628 2006-02-24  Raja R Harinath  <rharinath@novell.com>
11630         * class.c (inflate_generic_type): Add a couple more
11631         micro-optimizations.
11632         (inflate_generic_context): Don't use the 'gmethod' from
11633         'inflate_with'.
11634         (mono_class_inflate_generic_method): If the method has generic
11635         parameters, but the passed-in context doesn't have a 'gmethod',
11636         create one.  Use the possibly simplified generic instantiation
11637         from the declaring class instead of the one passed in.
11639 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11641         Make generic method signature and method header handling lazy.
11642         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
11643         (inflate_generic_header): Likewise.
11644         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
11645         parameter to avoid inflating types.
11646         (mono_get_inflated_method): Empty out.
11647         * class.h (mono_class_inflate_generic_method): Update to changes.
11648         * loader.c (mono_get_method_from_token): Don't parse signature for
11649         generic methods, nor methods of generic classes.
11650         (mono_method_signature): Rename from 'mono_method_signature'.
11651         Inflate signature on demand.
11652         (mono_method_get_header): Inflate method header on demand.
11653         * reflection.c: Update to changes.
11655 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11657         * metadata.c (mono_metadata_inflate_generic_inst): If the
11658         instantiation is closed, don't bother expanding it in the new
11659         context.
11660         * class.c (inflate_generic_class): If the generic instantiation
11661         doesn't change after inflation, return the argument itself.
11662         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
11663         Add bounds checks.
11664         (inflate_generic_context): If neither the generic class nor the
11665         generic method instantiations change, return the original context.
11666         * reflection.c (mono_method_get_object): Do
11667         'mono_get_inflated_method' before accessing the ->klass field.
11668         (inflate_mono_method): Don't create a MonoGenericMethod unless
11669         necessary.
11670         (inflate_method): Don't pass a constructed type as the declaring
11671         type of a methodbuilder.
11673 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
11675         * object.c: fix memory overwrite.
11677 2006-02-22  Dick Porter  <dick@ximian.com>
11679         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
11680         it doesn't work any more.
11681         (mono_threads_request_thread_dump): Fix unused variable warnings.
11683 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11685         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
11686         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
11687         the public header file.
11689 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
11691         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
11693 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11695         * class-internals.h, object.c: reduce the size of MonoVTable
11696         and store the interface_offsets array at negative offsets.
11698 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11700         * metadata.c: tweak table descriptors data structures to reduce
11701         size and runtime relocations.
11703 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11705         * marshal.c: fix some types and opcodes to be type-safe
11706         in marshaling wrappers.
11708 2006-02-21  Ankit Jain  <jankit@novell.com>
11710         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
11712 2006-02-21  Raja R Harinath  <rharinath@novell.com>
11714         * metadata.c (get_constraints): Relax debugging checks for monodis.
11716 2006-02-21  Ankit Jain  <jankit@novell.com>
11718         * metadata.c (mono_metadata_load_generic_params): Move the code
11719         checking for ambiguous generic params from here to mono/dis/get.c
11720         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
11722 2006-02-21  Raja R Harinath  <harinath@gmail.com>
11724         Fix assertion triggered when compiling nemerle.
11725         * class.c (mono_get_shared_generic_inst): Rename from
11726         get_shared_inst and make non-static.
11727         * loader.c (mono_get_shared_generic_method): New.  Used to create
11728         the MonoGenericContext-equivalent of a MonoGenericContainer.
11729         (mono_get_method_from_token): Initialize the 'context' field of
11730         the created MonoGenericContainer.
11731         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
11732         * metadata.c (get_constraints): Add sanity check.
11733         * class-internals.h: Add new internal methods.
11735         * reflection.c (verify_safe_for_managed_space): New sanity check.
11736         Currently checks that owner-less generic parameters aren't allowed
11737         in managed space.
11738         (mono_type_get_object): Use it.
11739         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
11740         that are now in mono_type_get_object.
11741         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
11743 2006-02-19  Raja R Harinath  <harinath@gmail.com>
11745         * metadata.c (mono_type_create_from_typespec): Rename from
11746         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
11747         argument and caching of types in the generic container.
11748         (unwrap_arrays, find_generic_param): Remove.
11749         * metadata-internals.h: Update.
11750         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
11752 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
11754         * class.c (mono_class_get_exception_for_failure): Fix a warning.
11756         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
11757         return values. Fixes #77581.
11759         * class.c (mono_fnptr_class_get): Switch name and name_space.
11761         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
11762         classes and add support for [In, Out] attributes.
11763         (mono_marshal_free_asany): Ditto. Fixes #77524.
11765 2006-02-18  Raja R Harinath  <harinath@gmail.com>
11767         * class.c (mono_class_from_generic_parameter): Make more robust to
11768         incomplete MonoGenericContainers from monodis.
11770 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11772         * class-internals.h: added some more exception types.
11773         * class.c, metadata.c: added a few checks to handle missing
11774         types.
11776 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11778         Use owner-less generic-params some more.
11779         * class.c (my_mono_class_from_generic_parameter): Remove.
11780         (mono_class_from_generic_parameter): Handle null image,
11781         param->name and param->owner.
11782         (mono_class_from_mono_type): Update.
11783         (mono_class_create_from_typespec): Remove 'container' parameter.
11784         If that parameter is non-null, the result is always inflated by
11785         'mono_class_get_full' anyway.
11786         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
11787         parameter.
11788         (mono_class_get_full): Update.
11790         * class.c (inflate_generic_type) [GENERICINST]: If the generic
11791         instance is not open, don't bother inflating.
11792         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
11793         parse metadata for inflated classes.
11794         (_mono_class_get): Change GenericContext* parameter to
11795         GenericContainer*.
11796         (mono_class_create_from_typespec): Likewise.  Simplify, and
11797         implement trivially.  All the cases are handled in
11798         mono_class_from_mono_type.  Don't inflate returned class.
11799         (mono_class_get_full): Delegate GENERICINST optimization to
11800         inflate_generic_type.
11801         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
11803 2006-02-16  Dick Porter  <dick@ximian.com>
11805         * socket-io.c (create_object_from_sockaddr): Fix typo.
11806         (create_sockaddr_from_object): Check array lengths before
11807         potentially accessing items off the end.
11808         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
11809         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
11810         (ves_icall_System_Net_Sockets_Socket_Send_internal)
11811         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
11812         length checks to avoid wraparound overflows.
11813         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
11814         contents of the array of sockets
11815         (hostent_to_IPHostEntry2)
11816         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
11817         Check return value of inet_ntop ().
11818         (addrinfo_to_IPHostEntry): Fix typo
11820 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11822         Type metadata parsing doesn't use generic-instantiation information.
11823         * metadata.c (mono_metadata_parse_array_full): Change
11824         MonoGenericContext* parameter to MonoGenericContainer*.
11825         (mono_metadata_parse_type_full): Likewise.
11826         (mono_type_create_from_typespec_full): Likewise.
11827         (mono_metadata_parse_mh_full): Likewise.
11828         (mono_metadata_parse_generic_inst): Likewise.
11829         (do_mono_metadata_parse_generic_class): Likewise.
11830         (do_mono_metadata_parse_type): Likewise.
11831         * metadata-internals.h: Update to changes.
11832         * class.c (mono_class_find_enum_basetype): Likewise.
11833         (mono_class_setup_fields): Likewise.
11834         (mono_class_create_from_typespec): Likewise.
11835         * loader.c (method_from_methodspec): Likewise.
11836         (mono_get_method_from_token): Likewise.
11837         (mono_method_get_header): Likewise.
11839 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11841         * marshal.c: handle additional GENERICINST case (patch from
11842         Thong Nguyen <tum@veridicus.com>).
11843         Fix a few cases where LDIND_I/STIND_I was used for references.
11845 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11847         * reflection.c (mono_reflection_get_token): Remove unused variable.
11849 2006-02-16  Martin Baulig  <martin@ximian.com>
11851         * reflection.c (mono_reflection_get_token): Add support for fields
11852         in instantiated generic types.
11854         * icall.c
11855         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
11857 2006-02-15  Martin Baulig  <martin@ximian.com>
11859         * icall.c
11860         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
11861         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
11862         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
11863         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
11865 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11867         * class.c, metadata.c, metadata.h, object.c, icall.c,
11868         marshal.c: changed mono_type_get_underlying_type () to do
11869         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
11870         Fixed handling of instantiated generic valuetypes (bug #75479).
11872 2006-02-15  Raja R Harinath  <rharinath@novell.com>
11874         * metadata.c (mono_metadata_decode_signed_value): Simplify.
11875         Delegate to mono_metadata_decode_value, and work on the returned value.
11877         * icall.c (ves_icall_MonoType_GetGenericArguments):
11878         Add consistency check here too.
11879         
11880 2006-02-15  Ankit Jain  <jankit@novell.com>
11882         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
11883         char/short etc.
11885 2006-02-15  Ankit Jain  <jankit@novell.com>
11887         * metadata.c (mono_metadata_decode_signed_value): New function to decode
11888         signed values, used only for representing lower bounds of arrays.
11889         (mono_metadata_parse_array_full): Use new
11890         mono_metadata_decode_signed_value to decode lower bounds.
11892 2006-02-14  Martin Baulig  <martin@ximian.com>
11894         * reflection.c
11895         (mono_reflection_get_token): Support "MonoGenericMethod" and
11896         "MonoGenericCMethod" and allow generic instances / methods.
11898 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11900         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
11901         to obtain the terminal size using an ioctl.
11903         * object.c (mono_nullable_init): Revert this as nullable reference
11904         types are not valid.
11905         (mono_nullable_box): Ditto.
11907 2006-02-09  Dick Porter  <dick@ximian.com>
11909         * threads.c (mono_thread_detach): Drop a reference to the thread
11910         we're detaching.
11912 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11914         * object.c (mono_nullable_init): Handle nullable reference types.
11915         (mono_nullable_box): Ditto. Fixes #77446.
11917 2006-02-07  Martin Baulig  <martin@ximian.com>
11919         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
11921 2006-02-07  Ankit Jain  <jankit@novell.com>
11923         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
11924         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
11925         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
11926         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
11927         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
11928         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
11930 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
11932         * class.c (mono_class_create_generic): Set type_token as well.
11934         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
11935         compatible with MS.
11937 2006-02-02  Martin Baulig  <martin@ximian.com>
11939         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
11940         has never been used so far.
11942 2006-02-02  Martin Baulig  <martin@ximian.com>
11944         * mono-debug-debugger.h: Changed comment at the top of this file;
11945         the header is not installed, but it's safe to #include it from
11946         within the JIT.
11948         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
11949         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
11951 2006-02-02  Martin Baulig  <martin@ximian.com>
11953         * mono-debug.h
11954         (MonoSymbolTable): Removed the `metadata_info' field.
11956         * mono-debug.c
11957         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
11959         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11960         (mono_debugger_add_builtin_types): Removed.
11961         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
11962         (mono_debugger_create_notification_function): We now operate on a
11963         pre-allocated area; take a `gpointer' and return `void'.
11965         * mono-debug-debugger.c
11966         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
11967         (mono_debugger_add_builtin_types): Removed.
11969 2006-02-02  Martin Baulig  <martin@ximian.com>
11971         * threads.c (mono_debugger_create_all_threads): New public method.
11973 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11975         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
11976         breaks on several platforms.
11978 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
11980         * assembly.c: the VS.NET build doesn't supply default values for
11981         MONO_ASSEMBLIES and MONO_CFG_DIR.
11983 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
11985         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
11986         helper function.
11988         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
11990         * loader.c (method_from_memberref): Fix a warning.
11992         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
11994         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
11995         with explicit layout. Fixes #77433.
11997 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
11999         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
12000         max_interface_id is initialized before using it. Fixes #77398.
12001         (ves_icall_Type_GetInterfaces): Ditto.
12003 2006-01-30  Raja R Harinath  <rharinath@novell.com>
12005         * metadata.c (mono_metadata_parse_method_signature_full): Don't
12006         allocate memory for parameter attributes when parsing memberref
12007         signatures.
12008         * loader.c (mono_loader_set_error_method_load): Don't warn.
12009         (method_from_memberref): Ensure MissingMethodException gets thrown
12010         if method is not found.  Make warning more informative.
12012 2006-01-29  Raja R Harinath  <harinath@gmail.com>
12014         Fix #77397
12015         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
12016         return true if is byref.
12017         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
12018         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
12019         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
12021 2006-01-27  Raja R Harinath  <rharinath@novell.com>
12023         Fix tests/find-method.2.il
12024         * loader.c (find_method, find_method_in_class): Remove is_inflated
12025         argument.  Revert 2006-01-18 change.
12026         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
12027         is generic, search for method in its generic definition.
12028         * class.c (mono_class_setup_vtable_general): Print generic
12029         arguments of generic types in debugging printf.
12031 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
12033         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
12035         * threads.c (mono_threads_request_thread_dump): New helper function.
12037 2006-01-25  Raja R Harinath  <rharinath@novell.com>
12039         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
12041 2006-01-25  Ankit Jain  <jankit@novell.com>
12043         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
12044         move definition to ..
12045         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
12046         
12047 2006-01-25  Ankit Jain  <jankit@novell.com>
12048             Raja R Harinath  <rharinath@novell.com>
12050         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
12051         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
12052         as necessary.
12054 2006-01-25  Martin Baulig  <martin@ximian.com>
12056         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
12057         `MonoDebuggerThread' into debug-debugger.c.
12059 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
12061         * profiler.c: fix printing of data.
12063 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
12065         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
12066           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
12068 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
12070         * object.c: fix deadlock related to string interning.
12072 2006-01-23  Martin Baulig  <martin@ximian.com>
12074         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
12076         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
12078 2006-01-23  Martin Baulig  <martin@ximian.com>
12080         * mono-debug.h: Moved the prototypes of some functions which are
12081         used by the JIT here from mono-debug-debugger.h.
12083 2006-01-21  Martin Baulig  <martin@ximian.com>
12085         * Makefile.am: Don't install mono-debug-debugger.h.
12087 2006-01-21  Martin Baulig  <martin@ximian.com>
12089         * mono-debug-debugger.h: Enforce the private status of this header
12090         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
12091         Moved some stuff from mono-debugger-jit-wrapper.h here.
12093 2006-01-20  Raja R Harinath  <rharinath@novell.com>
12095         * class.c (mono_class_from_typeref): Add a sanity test to help
12096         catch lack of assembly load/search hooks.
12098 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
12100         * marshal.c (emit_struct_conv): Relax the fields with same offset
12101         check even more. Fixes #77230.
12103 2006-01-18  Martin Baulig  <martin@ximian.com>
12105         * loader.c (find_method_in_class): Added `gboolean is_inflated'
12106         argument; if false, we compare the uninstantiated signatures.
12107         (method_from_memberref): Compare the uninstantiated signatures;
12108         fixes #76417.
12110 2006-01-18  Robert Jordan  <robertj@gmx.net>
12112         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
12113         Clear the weak link. Fixes bug #77170.
12115         * gc.c (mono_gchandle_free):
12116         Reflect *-gc.c changes (tiny optimization).
12118 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
12120         * metadata.c (mono_metadata_signature_dup): Applied patch from
12121         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
12122         Fixes #77288.
12124 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
12126         * marshal.c (emit_struct_conv): Allow fields with the same offset when
12127         marshalling from native to managed code. Fixes #77230.
12129 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12131         * threadpool.c: fix problem (Mac only) when more than one asynchronous
12132         connect. Fixes bug #77020.
12134 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
12136         * class.c: fixed id assignement for nested interfaces (bug #77275).
12137         Added also better info for --print-vtable debugging.
12139 2006-01-12  Martin Baulig  <martin@ximian.com>
12141         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
12142         interfaces on-the-fly; fixes #76625.
12144         * class-internals.h
12145         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
12146         don't need that anymore.
12148 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12150         * socket-io.c
12151         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
12152         To avoid initing the nested_classes when not needed I turned the
12153         PeerCredData as a toplevel internal class, as it has to be shared
12154         anyways. 
12156         Fixes the CASA issue.
12158 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
12160         * domain.c: Accessors for MonoJitInfo
12162         * profiler-private.h: Add jitinfo to the end jit hook
12164         * profiler.[ch]: Define new hooks, called after jitting which give
12165         the MonoJitInfo that was compiled
12167 2006-01-10  Martin Baulig  <martin@ximian.com>
12169         * class.c (mono_class_setup_events): Add support for generic
12170         classes; fixes #76440.
12172 2006-01-06  Raja R Harinath  <rharinath@novell.com>
12174         Fix #77160.
12175         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
12176         on passed-in method.
12178 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12180         * object.c (mono_runtime_invoke_array): Add Nullable support.
12182         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
12184 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
12186         * file-io.c: Don't consider sockets as directory and avoid an endless
12187         loop. Fix bug #76966.
12189 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12191         * object.c (mono_nullable_init): New helper function.
12192         (mono_nullable_box): Ditto.
12194         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
12196         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
12198         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
12199         
12200 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
12202         * class.c (mono_class_is_assignable_from): Make T assignable to 
12203         Nullable<T>.
12205 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
12207         * appdomain.c: Bump corlib version to 46.
12208         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
12209         serialization purpose) and changed ves_icall_System_Reflection_
12210         Assembly_get_code_base signature to accept a boolean (to escape, or 
12211         not, the assembly code base).
12213 2005-12-23  Dick Porter  <dick@ximian.com>
12215         * icall.c: 
12216         * threads-types.h: 
12217         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
12218         CreateEvent icall now returns "created" boolean parameter.
12220 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
12222         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
12223         #76967.
12225         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
12226         when attr_klass is an interface. Fixes #77045.
12228 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
12230         * marshal.c (emit_struct_conv): Fix previous patch.
12231         
12232         * marshal.c (emit_struct_conv): Add a check for fields with the same
12233         offset.
12235 2005-12-20  Raja R Harinath  <rharinath@novell.com>
12237         Fix regression in Mono.C5.
12238         * class.c (mono_class_create_generic): If 'klass' is an interface
12239         set up the interface offsets.
12240         (mono_class_is_assignable_from): Don't throw away generic arguments.
12242 2005-12-19  Raja R Harinath  <rharinath@novell.com>
12244         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
12245         type parameters.
12247 2005-12-15  Raja R Harinath  <rharinath@novell.com>
12249         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
12250         dead store.
12251         (do_mono_metadata_parse_generic_class): Don't pass the current
12252         generic context when parsing the type being instantiated: it
12253         cannot use it, anyway.
12255         * loader.c (method_from_memberref): Don't inflate a signature if
12256         it doesn't contain any type parameters.
12258 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
12260         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
12262 2005-12-14  Martin Baulig  <martin@ximian.com>
12264         * class.c
12265         (mono_type_get_name_recurse): Don't return null for type
12266         parameters and open generic classes.
12267         (mono_class_setup_methods): Don't exclude generic instances.
12268         (mono_get_unique_iid): Use different IDs for different
12269         instantiations of the same generic type.
12270         (mono_class_setup_vtable): Only use setup_generic_vtable() for
12271         open generic instances; create a normal vtable for closed generic
12272         instances.
12273         (mono_class_setup_vtable_general): We're now also called for
12274         closed generic instances.
12276         * reflection.c
12277         (mono_reflection_bind_generic_parameters): Correctly use
12278         mono_metadata_lookup_generic_inst() everywhere.
12280 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
12282         * object.c (mono_class_create_runtime_vtable): Call 
12283         mono_class_setup_vtable ().
12285         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
12286         function.
12287         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
12288         #76959.
12290         * loader.c (mono_loader_set_error_type_load): Print the type load
12291         warnings to the console so they are more visible to the user.
12292         (mono_loader_set_error_method_load): Ditto.
12294         * reflection.c (ensure_runtime_vtable): Revert the last change as it
12295         is still broken.
12296         
12297         * reflection.c (ensure_runtime_vtable): Fix build.
12299         * reflection.c (ensure_runtime_vtable): Disable an optimization which
12300         doesn't work in all cases.
12302 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
12304         * object.c (mono_array_new_full): Treat a single dimensional array
12305         with 0 lower bounds as an szarray. Fixes #76973.
12307         * reflection.c (custom_attr_visible): Really fix this.
12309 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
12311         * reflection.c (custom_attr_visible): Allow nested public attributes
12312         as well.
12314         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
12315         interface check.
12317 2005-12-12  Raja R Harinath  <harinath@gmail.com>
12319         * class.c (set_generic_param_owner): Delete.
12320         (mono_class_create_from_typedef): Don't set ->owner field of
12321         generic parameters to "param containers" of enclosing classes.
12322         * reflection.c (mono_reflection_initialize_generic_parameter):
12323         Likewise.
12325 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
12327         * reflection.c (custom_attr_visible): Fix build.
12329 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
12331         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
12332         private attributes.
12333         
12334         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
12335         handling of null parameter defaults.
12337 2005-12-09  Raja R Harinath  <rharinath@novell.com>
12339         * class.c (mono_class_from_generic_parameter): Don't set
12340         klass->generic_container.
12341         (my_mono_class_from_generic_parameter): Likewise.
12343 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
12345         * reflection.c (load_public_key): Fix a warning.
12346         (method_encode_code): Fix unaligned accesses.
12348 2005-12-07  Martin Baulig  <martin@ximian.com>
12350         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
12352         * reflection.c
12353         (write_generic_param_entry): Encode our custom attrs.
12355         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
12357 2005-12-07  Martin Baulig  <martin@ximian.com>
12359         * reflection.c (encode_new_constraint): Removed; we don't use the
12360         `NewConstraintAttribute' anymore.
12362 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
12364         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
12365         not fire a TypeResolve event when Assembly.GetType () is called.
12367 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
12369         Beginning of support for nullable types in the runtime. Parts of
12370         this patch are from Martin.
12372         * appdomain.c (MONO_CORLIB_VERSION): Bump
12374         * domain.c (mono_init_internal): get the nullable type
12376         * class.c (mono_class_is_nullable): New method
12377         (mono_class_get_nullable_param): New mehod
12378         (mono_class_create_generic): In types T? set cast_class to T
12380         * class-internals.h (MonoDefaults): new nullable default class
12381         (mono_class_get_nullable_param, mono_class_get_nullable_param):
12382         new methods.
12384 2005-12-05  Raja R Harinath  <rharinath@novell.com>
12386         * metadata.c (select_container): New.  Refactor code to select the
12387         appropriate GenericContainer given the type of generic parameter
12388         we are looking for.
12389         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
12390         not a MonoGenericContext.  Use select_container.  Update parameters.
12391         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
12392         and MONO_TYPE_MVAR.
12393         (unwrap_arrays): Remove duplicate tests.
12394         (find_generic_param): Rename from 'has_same_context'.  Now walks a
12395         generic instantiated class to find any arguments that are generic
12396         parameters.
12397         (mono_type_create_from_typespec_full): Use find_generic_param to
12398         avoid evicting some generic instantiations from the typespec
12399         cache.
12401 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
12403         * reflection.c: fixed writing of doubles on ARM FPA.
12405 2005-12-02  Robert Jordan  <robertj@gmx.net>
12407         * icall.c: Fixed EventInfo.ReflectedType (#76829).
12409 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12411         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
12412         least on SUSE 10 they are not the same (on debian, they are just the
12413         same thing).
12415 2005-12-01  Raja R Harinath  <rharinath@novell.com>
12417         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
12418         DeclaringType for VARs and MVARs.
12419         * class.c (set_generic_param_owner): Fix initialization of owner
12420         fields.
12422 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
12424         * icall.c: fixed Enum.ToObject() to correctly convert the values.
12426 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12428         * threadpool.c: workaround for a bug that shows up on the Mac:
12429         select()+connect() on a blocking socket is not like it should
12430         be, so we proceed to connect() in that case, wasting the I/O
12431         threadpool thread until connect succeedes. Fixes bug #75436.
12433 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12435         * threadpool.c: fix typo when setting file descriptor states.
12437 2005-11-28  Raja R Harinath  <rharinath@novell.com>
12439         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
12440         * metadata.c (mono_metadata_parse_method_signature_full): Don't
12441         create a temporary signature container.
12442         (mono_metadata_parse_generic_param): Update to changes.
12443         (mono_type_create_from_typespec_full): Update to changes.
12444         * loader.c (method_from_memberref): Don't use a
12445         MonoGenericContainer while parsing a memberref signature.
12446         (method_from_methodspec): Remove dead-store of the 'container'
12447         variable.  It's overwritten before use.
12449         * metadata.c (mono_type_create_from_typespec_full): Make debugging
12450         checks tighter.
12451         (mono_metadata_parse_generic_param): Likewise.
12452         * loader.c (find_method_in_class): Does not need a
12453         MonoGenericContainer.  Use 'mono_method_signature' rather than
12454         'mono_method_signature_full'.
12455         (find_method, mono_get_method_constrained, method_from_memberref):
12456         Update to changes.
12458         * metadata.c (mono_type_create_from_typespec_full): Ensure that
12459         owner-less generic-parameters are never evicted from the typespec
12460         cache.
12462         * loader.c (method_from_memberref): Don't use the current context
12463         when parsing signatures.
12464         (method_from_methodspec, mono_get_method_from_token): Update to changes.
12466         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
12467         side-effects in g_assert.
12468         * loader.c (mono_get_method_from_token): Resolve klass earlier so
12469         that we don't potentially lose information.
12471 2005-11-26  Dick Porter  <dick@ximian.com>
12473         * icall.c:
12474         * threads.c: icalls to implement basic (ie, not named)
12475         System.Threading.Semaphore.
12477 2005-11-24  Dick Porter  <dick@ximian.com>
12479         * process.c
12480         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
12481         Use GetProcessId() if it's available.
12483 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
12485         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
12487 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12488             Ankit Jain  <jankit@novell.com>
12490         * loader.c (mono_get_method_from_token): Initialize 'method' field
12491         of all generic parameters before parsing the signature.  Remove
12492         code that "fixed"-up MVAR references.
12494 2005-11-23  Ankit Jain  <jankit@novell.com>
12496         * metadata.c (mono_metadata_has_generic_params):
12497         (mono_metadata_load_generic_param_constraints):
12498         (mono_metadata_load_generic_params): Move duplicate code ...
12499         (mono_metadata_get_generic_param_row): ... here. Returns the
12500         first row-id in GenericParam table for a given owner (token).
12501         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
12502         prototype.
12504 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12505             Ankit Jain  <jankit@novell.com>
12507         * metadata.c (mono_metadata_class_equal): Pass signature_only when
12508         comparing VARs too.
12509         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
12510         type->data.generic_param only if the type is an MVAR.
12511         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
12512         leak owner-less VARs and MVARs into managed space.
12514 2005-11-21  Martin Baulig  <martin@ximian.com>
12516         * class-internals.h
12517         (MonoMethod): Moved the `generic_container' here from
12518         `MonoMethodNormal' since we now also need it for
12519         `MonoMethodPInvoke';
12520         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
12521         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
12522         an union containing both `MonoMethodNormal' and
12523         `MonoMethodPInvoke'.
12525         * loader.c
12526         (mono_get_method_from_token): Allow implementing generic methods
12527         as interncalls.
12529         * threads.c
12530         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
12531         icall.
12533 2005-11-17  Dick Porter  <dick@ximian.com>
12535         * icall.c: 
12536         * process.h: 
12537         * process.c: Split the Process Start_internal icall into
12538         ShellExecuteEx_internal and CreateProcess_internal, which are
12539         called depending on whether UseShellExecute is true.  Fixes bug
12540         76670.
12542         * appdomain.c (MONO_CORLIB_VERSION): Incremented
12544 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
12546         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
12547         'msize' parameters, use the information in 'mspec' instead.
12548         (emit_object_to_ptr_conv): Ditto.
12550         * marshal.c (emit_struct_conv): Handle explicit layout structs with
12551         fields out of order. Fixes #76733.
12553 2005-11-17  Ankit Jain  <jankit@novell.com>
12555         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
12557 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
12559         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
12560           bug #76575.
12562 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12564         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
12565         for types with non-auto layout. Fixes #76717.
12567 2005-11-16  Ankit Jain  <jankit@novell.com>
12569         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
12570         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
12571         if generic_context is null.
12572           (mono_metadata_generic_param_equal): param->owner can be null.
12573           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
12574         null.
12576 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12578         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
12579         the correct value.
12581 2005-11-15  Martin Baulig  <martin@ximian.com>
12583         * object.c (set_value): Use mono_class_from_mono_type() instead of
12584         the hack for generic instances; fixes #76136.
12586 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
12588         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
12589         fields.
12591         * image.c (load_metadata_ptrs): Initialize the new fields.
12593         * reflection.c (create_dynamic_mono_image): Ditto.
12595         * reflection.c (build_compressed_metadata): Use the new fields.
12597         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
12598         icall.
12600         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
12601         icall.
12602         
12603 2005-11-15  Ankit Jain  <jankit@novell.com>
12604             Raja R Harinath  <harinath@gmail.com>
12606         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
12607         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
12608         new per-generic_container cache if the cached MonoType's context matches
12609         the current context.
12610           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
12611         to the expected context.
12612           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
12614 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12616         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
12617         we changed the signature of an icall.
12618         * icall.c: Modify to mono_double_ParseImpl return true/false 
12619         depending on the success, instead of throwing the exception. This will
12620         help us in Double.TryParse methods.
12621         
12622 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
12624         * marshal.c (emit_marshal_object): Throw an exception when
12625         marshalling 'object' instead of crashing. Fixes #76696.
12627 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12629         * class-internals.h: Add prototype for mono_type_get_full_name ().
12631 2005-11-11  Dick Porter  <dick@ximian.com>
12633         * threads.c (mono_thread_manage): Make sure the main thread has
12634         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
12636 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12638         * loader.c (mono_loader_set_error_type_load): Log a warning to the
12639         console about the missing type.
12640         (mono_loader_set_error_method_load): Ditto.
12642 2005-11-09  Miguel de Icaza  <miguel@novell.com>
12644         * mono-config.c (mono_get_config_dir): Set the system defaults if
12645         none is specified.
12647         * assembly.c (mono_set_dirs): New API entry point to set the
12648         assembly and the config directory in one call
12650 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
12652         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
12653         the ftnptr was created from a delegate in a domain other than the
12654         current domain. Fixes #75377.
12656         * exception.h exception.c: Add mono_get_exception_not_supported ().
12658 2005-11-08  Martin Baulig  <martin@ximian.com>
12660         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
12662 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
12664         * security-manager.h: Added definitions to deal with strongname key 
12665         pairs bigger (and smaller) than 1024 bits.
12666         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
12667         adjust wrt the public key length being used.
12669 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12671         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
12672           Windows build (r51396-51397).
12674 2005-11-03  Martin Baulig  <martin@ximian.com>
12676         * class.c (mono_class_setup_vtable_general): Also add generic
12677         methods to the vtable; fixes #76581.
12679 2005-11-01  Miguel de Icaza  <miguel@novell.com>
12681         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
12682         sure that we lookup GetString method from the System.Text.Encoding
12683         class, not the derived class or we get an empty method.
12685         Fixed class #76612.
12687 2005-10-25  Miguel de Icaza  <miguel@novell.com>
12689         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
12690         if it has been previously set (embedders). 
12692         Make mono_set_rootdir available also on Unix.
12694 005-10-24  Robert Jordan  <robertj@gmx.net>
12696         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
12698 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12700         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
12701         only calls which are made to native code use this flag.
12703         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
12705 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12707         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
12708         Add support for FieldBuilders.
12710 2005-10-29  Martin Baulig  <martin@ximian.com>
12712         * mono-debug.c
12713         (mono_debug_using_mono_debugger): New public method; returns
12714         whether we're running inside the debugger.
12716 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
12718         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
12719         for Method/Constructor/FieldBuilders.
12721 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12723         * reflection.c (module_add_cattrs): Save custom attributes for global methods
12724         and fields as well.
12726 2005-10-26  Martin Baulig  <martin@ximian.com>
12728         * mono-debug-debugger.c
12729         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
12731 2005-10-24  Raja R Harinath  <harinath@gmail.com>
12733         * icall.c (base64_to_byte_array): Don't pass an out-of-range
12734         integer to isspace.
12736 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12738         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
12739         when passing valuetypes byref. Fixes #76502.
12741 2005-10-19  Jackson Harper  <jackson@ximian.com>
12743         * profiler.c: Don't put a . in front of types that are not in a
12744         namespace.
12746 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12748         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
12750 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
12752         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
12753         #76436.
12754         (mono_marshal_get_ldflda_wrapper): Fix a warning.
12756 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12758         * assembly.c metadata-internals.h icall.c: Define an additional
12759         parameter for mono_assembly_name_parse_full, so we can avoid creating
12760         S.R.AssemblyName.Version when no version info wasn't passed.
12761         
12762 2005-10-09  Miguel de Icaza  <miguel@novell.com>
12764         * class.c (mono_type_get_full_name): Reimplement method that was
12765         removed. 
12767         * image.c: Some docs
12769 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12771         * profiler.c (output_newobj_profile): Fix printing of Total memory
12772         on x86.
12774 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12776         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
12778 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
12780         * threads.c: remove debug output.
12782 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12784         * threads.c (mono_thread_manage): Fix crashes if more than 64
12785         threads need to be aborted. Hopefully fixes #75899.
12787         * assembly.c (mono_stringify_assembly_name): New helper function.
12789         * class.c: Use mono_stringify_assembly_name instead of the similar
12790         static function.
12792         * assembly.h assembly.c: Add support for calling a postload search 
12793         hook if an assembly cannot be loaded.
12795         * appdomain.c: Register new search hooks which call the AssemblyResolve
12796         events in AppDomain. Fixes #75231
12798 2005-10-07  Martin Baulig  <martin@ximian.com>
12800         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
12801         methods without debug info.
12803 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12805         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
12806         wrappers.
12808 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12810         * file-io.c: now that we return symlinks, use lstat and, when the file
12811         is a symbolic link, stat, to get the file attributes. Also avoid the
12812         conversion to/from utf16/external.
12814 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
12816         * class.c (mono_class_layout_fields): Compute klass->has_references
12817         correctly if an embedded valuetype is not yet initialized. Fixes
12818         #76331.
12820 2005-10-04  Martin Baulig  <martin@ximian.com>
12822         * metadata.c
12823         (mono_metadata_load_generic_param_constraints): New public
12824         function; splitted the constraints loading out from
12825         mono_metadata_load_generic_params().
12827         * class.c (mono_class_create_from_typedef): Call
12828         mono_metadata_load_generic_param_constraints() after setting up
12829         the type and creating our parent; fixes #75329.
12831 2005-10-04  Martin Baulig  <martin@ximian.com>
12833         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
12834         non-dynamic parent classes.
12836 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12838         * file-io.c : win32 build fix (ETXTBSY seems not found).
12840 2005-10-04  Martin Baulig  <martin@ximian.com>
12842         * reflection.c
12843         (mono_image_get_methodspec_token): Make the cache actually work;
12844         fixes #75974.
12846 2005-10-04  Martin Baulig  <martin@ximian.com>
12848         * class.c (mono_class_name_from_token): Removed the unneccessary
12849         `MonoGenericContext *' argument.
12851 2005-10-04  Martin Baulig  <martin@ximian.com>
12853         * loader.c
12854         (method_from_methodspec): Make the caching work again; fixes the
12855         performance regression from #76262.
12857 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12859         * file-io.c:
12860         * file-io.h:
12861         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
12862         GetFileSystemEntries that performs the same work but without going
12863         into io-layer, locking, etc.
12865 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12867         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
12868         ThreadState_Stopped as well. Fixes #76047.
12870 2005-09-29  Martin Baulig  <martin@ximian.com>
12872         * class.c
12873         (inflate_generic_context): If the new context has a `gmethod', set
12874         its `container' that that gmethod's `container'.
12876         * metadata.c
12877         (mono_metadata_parse_generic_param): Simplify things;
12878         `generic_container = generic_context->container;' is just fine.
12880         * loader.c (method_from_methodspec): Code cleanups.
12882 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
12884         * decimal.c: fix warning (and let gcc generate correct
12885         code on ARM with optimizations).
12887 2005-09-28  Martin Baulig  <martin@ximian.com>
12889         * loader.c
12890         (method_from_memberref): Added `MonoGenericContext *class_context'
12891         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
12892         (method_from_methodspec): If we're a memberref, use the enclosing
12893         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
12895 2005-09-28  Martin Baulig  <martin@ximian.com>
12897         * object.c (mono_runtime_invoke_array): Added support for
12898         MONO_TYPE_GENERICINST; fixes #75917.
12900 2005-09-27  Martin Baulig  <martin@ximian.com>
12902         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
12903         `k->byval_arg.type' to determine the actual type.
12905         * loader.c (method_from_methodspec): Removed some hacks.
12907 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12909         * class-internals.h (mono_field_is_deleted): Do the test for
12910         rtspecialname before we check the actual name of the field. This
12911         prevents us from dereferencing a pointer into the string table,
12912         saving us from accessing a few pages
12914         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12915         macros. This will allow a deadlock debugger to easily be plugged
12916         in.
12918 2005-09-27  Martin Baulig  <martin@ximian.com>
12920         * loader.c (method_from_methodspec): Create a "signature"
12921         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
12923 2005-09-27  Martin Baulig  <martin@ximian.com>
12925         * class.c
12926         (inflate_generic_class): Correctly set the new context's
12927         container.
12929         * loader.c
12930         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
12931         instead of a `MonoGenericContext *'.
12932         (mono_method_signature_full): Take a `MonoGenericContainer *'
12933         instead of a `MonoGenericContext *'.
12935         * metadata.c
12936         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
12937         instead of a `MonoGenericContext *'.
12938         (mono_metadata_parse_method_signature_full): Likewise.
12940 2005-09-26  Martin Baulig  <martin@ximian.com>
12942         * class.c
12943         (mono_class_from_generic_parameter): Set `klass->generic_container'
12944         (mono_class_from_generic_parameter): Likewise.
12945         (mono_bounded_array_class_get): We inherit the generic container
12946         from the element class.
12948         * loader.c
12949         (find_method, find_method_in_class): Take a `MonoGenericContext *'
12950         argument rather than computing it here.
12951         (method_from_memberref): Correctly set the generic context before
12952         parsing the signature.  Fixes #75681.
12954 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12956         * object.c (mono_class_has_special_static_fields): Fix warnings.
12958 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12960         * assembly.c: Add parse_public_key function, to
12961         par the public keys. Also added mono_assembly_name_parse_full,
12962         to define it the parsed key should be freed or not.
12963         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
12964         to parse a long format assembly name.
12965         * metadata-internals.h: Keep mono_assembly_name_parse_full as
12966         private, since calling it to preserve the key requires
12967         freeing it manually.
12968         
12969 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
12971         * locales.c : removed HAVE_ICU part.
12973 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12975         * object.c (mono_class_create_runtime_vtable): Avoid calling 
12976         field_is_special_static if the klass has no special static fields.
12978         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
12979         (MonoCachedClassInfo): Likewise.
12981         * object.c (mono_class_has_special_static_fields): New helper function.
12983 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12985         * class.c (mono_class_create_from_typedef): Don't call 
12986         interfaces_from_typedef_full for enums.
12987         (mono_class_create_from_typedef): Compute the base types of enums directly
12988         without calling mono_class_setup_fields ().
12989         (mono_class_find_enum_basetype): New helper function.
12991         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
12992         one place inside the string heap.
12993         
12994 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
12996         * class.c: locking fixes, code cleanups, some docs added.
12997         Allocate some data structures in the image mempool.
12999 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13001         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
13002         the example code.
13003         
13004 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
13006         * class-internals.h, class.c, reflection.c: reduce memory taken by
13007         MonoClass.
13009 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
13011         * metadata.c, metadata.h, loader.h: documentation updates, code and
13012         API cleanups.
13014 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13016         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
13017         the example code.
13019         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
13020         page faults caused by the runtime while reading metadata.
13022 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13024         * socket-io.c: the field names were changed 3 months ago and no one
13025         realized until bug #76077 got filed!
13027 2005-09-20  Martin Baulig  <martin@ximian.com>
13029         * icall.c (assembly_icalls): Removed some unused debugger icalls.
13031 2005-09-20  Martin Baulig  <martin@ximian.com>
13033         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
13034         write the rank into the class entry.
13036 2005-09-20  Martin Baulig  <martin@ximian.com>
13038         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
13040 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
13042         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13044         * icall.c (custom_attrs_defined_internal): New icall.
13046         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
13047         function.
13048         (mono_custom_attrs_construct_by_type): New helper function.
13050 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
13052         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
13053         terminate the resulting string. Fixes #76123.
13055 2005-09-16  Martin Baulig  <martin@ximian.com>
13057         * mono-debug.c
13058         (mono_debug_add_method): Ignore inflated methods for the moment.
13060 2005-09-14  Martin Baulig  <martin@ximian.com>
13062         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
13064 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
13066         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
13067         return a success/failure indication.
13068         (mono_metadata_interfaces_from_typedef_full): Ditto.
13069         (get_constraints): Ditto.
13071 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
13073         * marshal.c (emit_marshal_array): Fix handling of null arrays.
13074         
13075         * marshal.c (emit_marshal_array): Add support for returning string
13076         arrays from delegates. Fixes #76063.
13078         * marshal.c: Use the emit_ldloc/stloc macros where possible.
13080 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
13082         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
13083         icall.
13085 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
13087         * reflection.c icall.c: Fix after mono_get_exception_type_load
13088         signature change.
13090         * assembly.c (mono_assembly_get_assemblyref): New helper function.
13091         (mono_assembly_load_reference): Use the new helper.
13093         * class-internals.h (MonoLoaderError): New structure containing 
13094         information about type loading errors.
13096         * class-internals.h loader.c: Add APIs to store per-thread loader
13097         error information.
13099         * loader.c class.c: Set the loader error if needed.
13101         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
13103 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
13105         * decimal.c: fixed to handle the broken ARM fp format.
13107 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
13109         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
13110         broken.
13112 2005-09-06  Martin Baulig  <martin@ximian.com>
13114         * domain.c (supported_runtimes): Added v2.0.50727.
13116 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
13118         * culture-info.h: reduce the size of some structures.
13120 2005-09-05  Martin Baulig  <martin@ximian.com>
13122         Reflect latest API changes in the August CTP.
13124         * icall.c
13125         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
13126         ("MonoType.HasGenericArguments"): Removed.
13127         ("MonoMethod.BindGenericParameters"): Renamed to
13128         "MakeGenericMethod".
13129         ("MethodBuilder.BindGenericParameters"): Renamed to
13130         "MakeGenericMethod".    
13132 2005-09-05  Martin Baulig  <martin@ximian.com>
13134         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
13136 2005-09-05  Martin Baulig  <martin@ximian.com>
13138         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13140         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
13141         generic_container is non-NULL.
13143 2005-09-05  Martin Baulig  <martin@ximian.com>
13145         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13147         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
13149 2005-08-29  Michal Moskal  <malekith@nemerle.org>
13151         * reflection.c (encode_locals,
13152         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
13153         for large generic types.
13155 2005-09-05  Martin Baulig  <martin@ximian.com>
13157         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13159         * class.c (mono_dup_array_type): New public method.
13160         (mono_metadata_signature_deep_dup): New public method.
13161         (dup_type): Correctly duplicate array and function types.
13163 2005-09-05  Martin Baulig  <martin@ximian.com>
13165         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13167         * reflection.c (get_default_param_value_blobs): Handle generic types
13168         and generic methods.
13170 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
13172         * class.c: Fixed error reporting (method/class were inversed) for 
13173         inheritance demands.
13174         * security-manager.c|h: Added the AppDomain when calling the managed
13175         System.Security.SecurityManager.InheritanceDemand method.
13177 2005-09-01  Raja R Harinath  <rharinath@novell.com>
13179         * reflection.c (encode_marshal_blob): 'marshaltype' and
13180         'marshaltyperef' are alternate sources for the custom marshaler
13181         name.
13183 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
13185         * class.c: fix creation of array classes with rank == 1
13186         (patch by Ankit Jain <jankit@novell.com>).
13188 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
13190         * object.c: fix check for creating the bound data for arrays vs
13191         szarrays.
13193 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13195         * object.c: configuration file name is now based on the executable name,
13196         not the image name. Fixes bug #75931.
13198 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
13200         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
13201         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
13203 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
13205         * rand.c: Use wincrypt.h instead of WinCrypt.h.
13207 2005-08-24  Ankit Jain  <jankit@novell.com>
13208             Raja R Harinath  <rharinath@novell.com>
13210         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
13211           called by it recursively.
13212           (mono_class_init): Remove special case in pending_init handling, since it's
13213           superseded by the fix to mono_class_from_typeref.
13215 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13217         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
13218         BROKEN_THREAD_START stuff.
13220 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
13222         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
13223         trampoline.
13225         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
13226         
13227         * object.c (mono_delegate_ctor): Replace the original function address with
13228         a delegate trampoline.
13230 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
13232         * icall.c: add boolean argument to base64_to_byte_array and 
13233         InternalFromBase64String to control whether a whitespace-only string
13234         is allowed (or should casue a FormatException to be thrown). We need
13235         this as the behavior has changed between MS.NET 1.x and 2.0, and we
13236         to match the MS behaviour in both profiles.
13237         * appdomain.c: Bump corlib version.
13239 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13241         This patch implements a big portion of publisher policy
13242         support, used to bind assembly versions and redirect
13243         one assembly from version A to version B.
13245         * assembly.c:
13246         New GSList loaded_assembly_bindings, for storing the cached
13247         assembly bindings.
13248         (assembly_binding_maps_name): New static function for checking if a 
13249         assembly binding information maps an assembly name.
13250         (mono_assembly_binding_info_free): New function for freeing
13251         assembly binding information resources.
13252         (get_publisher_policy_info): New static function for retrieving 
13253         assembly binding information from a MonoImage.
13254         (compare_versions): New static function for comparing an assembly
13255         binding information data and the version of an assembly name.
13256         (check_policy_versions): New static function for checking if an
13257         assembly binding info mapping an assembly name is valid for it.
13258         (mono_assembly_load_publisher_policy): New static function for
13259         loading the 'policy.major.minor.MyAssembly' image for an assembly
13260         with an assembly name 'aname'.
13261         (mono_assembly_bind_version): New static function for updating
13262         assembly redirection.
13263         (mono_assembly_apply_binding): New static function for applying
13264         assembly binding.
13265         (search_binding_loaded): New static function for searching 
13266         loaded assembly binding infos in the cache domain.
13267         (mono_assembly_load_full): Don't apply assembly binding for
13268         reflection only assemblies.
13270         * metadata-internals.h: Add MonoAssemblyBindingInfo,
13271         which contains information about assembly binding. Also
13272         declare signature for mono_config_parse_publisher_policy ()
13273         function, used to retrieve pub policy info.
13274         
13275         * mono-config.c:
13276         (publisher_policy_start): New static function used to parse publisher 
13277         policy config files.
13278         (publisher_policy_parser): New static MonoParseHandler containing 
13279         the functions used when parsing config files.
13280         (mono_config_parse_publisher_policy): New function for parsing
13281         publisher policy files.
13282         
13283 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
13285         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
13287         * marshal.c (mono_delegate_free_ftnptr): Ditto.
13289         * object.c (mono_get_addr_from_ftnptr): New helper function.
13291         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
13293         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13295 2005-08-19  Dick Porter  <dick@ximian.com>
13297         * threads.c, threads.h, appdomain.c, appdomain.h,
13298         profiler-private.h, monitor.c, object.c, object-internals.h,
13299         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
13300         store the thread ID, so it can hold a 64 bit value if needed.
13302 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
13304         * reflection.c (mono_reflection_create_dynamic_method): Store the
13305         handle class into the method references as well so ldtoken works in
13306         dynamic methods.
13308         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
13309         types.
13311 2005-08-19  Ankit Jain <jankit@novell.com>
13313         Fix #75847.
13314         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
13315           here rather than using the method signature of a arbitrary function
13316           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
13317           two arguments.
13318           Hack done with Harinath.
13320 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13322         * threadpool.c: disable printing stack traces when we get a exception
13323         in a threadpool thread. I need to do more testing to figure out which
13324         cases actually print this. Fixes bug #75828.
13326 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13328         * icall.c: there might be ignored whitespace after the last '='. This
13329         fixes length computation and bug #75840.
13331 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
13333         * assembly.c (mono_assembly_load_full): Consider .exe extension as
13334         well. Fixes #75809.
13336         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
13337         #75784.
13338         
13339         * reflection.c (create_custom_attr_data): Ditto.
13341 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
13343         * locales.c, culture-info.h : removed RegionLCIDMap.
13344         * culture-info-tables.h : regenerated.
13346 2005-08-16  Martin Baulig  <martin@ximian.com>
13348         * class.c (mono_type_get_name_recurse): Small fix.
13350 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13352         * locales.c : indentation fixie.
13354 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
13356         * object-internals.h,
13357           locales.h,
13358           locales.c,
13359           culture-info.h,
13360           icall.c : added RegionInfo table support.
13361         * culture-info-table.h : regenerated for region support.
13363 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
13365         * reflection.c (resolve_object): handle all kinds of MonoMethod
13366         including generic ones
13368 2005-08-12  Ankit Jain <jankit@novell.com>
13370         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
13371           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
13373 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
13375         * process.c: Don't close a thread handle when it's NULL. This is a
13376         workaround for bug #75733.
13378 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
13380         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
13382 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
13384         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
13386 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13388         * threadpool.c: if a work item in the thread pool has a callback that
13389         catches a exception, don't propagate it after invoking the callback.
13390         Fixes bug #75336.
13392 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
13394         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
13396         * class-internals.h (MonoCachedClassInfo): Add some new fields.
13398         * class.c (mono_class_init): Load field info lazily in the AOT case.    
13400         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
13402 2005-08-03  Ankit Jain  <jankit@novell.com>
13404         Fix #75683.
13405         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
13406           PInvoke calling convention is 0.
13408 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
13410         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
13411         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
13413 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
13415         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
13416         to handle threads not started by the GC (patch by Michael Meeks
13417         <michael.meeks@novell.com>).
13419 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
13421         * reflection.c: Make buffer used in emitting types larger for some
13422         big generic types (patch by Michal Moskal).
13424 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
13426         * mono-debug.c: Fix some (not all) alignment problems.
13428 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13430         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
13431         Invoke mono_image_load_from_data_full passing the refonly
13432         parameter.
13434         * assembly.c
13435         (mono_assembly_open_from_bundle): Add the refonly argument, 
13436         in order to pass it to other methods it calls to.
13437         (do_mono_assembly_open): Add the refonly argument, in order 
13438         to pass it to other methods it calls to.
13439         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
13440         the refonly parameter to it.
13442         * image.c: Add loaded_images_refonly_hash and
13443         loaded_images_refonly_guid_hash to cache the reflection
13444         only loaded images.
13445         (mono_images_init): Initialize the hash tables used for
13446         caching the reflection only images.
13447         (load_modules): Invoke mono_image_open_full passing the refonly
13448         parameter to load the modules the correct way.
13449         (build_guid_table): Add the refonly argument, to re-build the 
13450         correct hash table.
13451         (do_mono_image_open): Added the refonly argument, in order to
13452         define it for the loaded image.
13453         (mono_image_loaded_full): New function, which receives an
13454         additional parameter to look for the image in the refonly or
13455         non-refonly section.
13456         (mono_image_loaded): Updated, using mono_image_loaded_full.
13457         (mono_image_loaded_by_guid_full): The same case that happens
13458         with mono_image_loaded_full.
13459         (mono_image_loaded_by_guid): Likewise.
13460         (register_image): Use the ref_only variable inside MonoImage
13461         to decide in which hash table store the current image.
13462         (mono_image_open_from_data_full): Rename
13463         mono_image_open_from_data to mono_image_open_from_data_full,
13464         adding the refonly argument, to define the ref_only variable 
13465         inside MonoImage.
13466         (mono_image_open_from_data): Return 
13467         mono_image_open_from_data_full.
13468         (mono_image_open_full): Rename mono_image_open to
13469         mono_image_open_full, receiving the new refonly argument,
13470         to pass it to inner methods.
13471         (mono_pe_file_open): Update this function, to open
13472         a MonoImage as a non-refonly image.
13473         (mono_image_close): Use the refonly variable inside
13474         MonoImage to remove the image from the correct caches.
13476         * image.h: Add the signatures of mono_image_open_full,
13477         mono_image_open_from_data_full, mono_image_loaded_full,
13478         mono_image_loaded_by_guid_full.
13480         * metadata-internals.h: Add the ref_only field to 
13481         MonoImage.
13482         
13483 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13485         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
13486         Fix the last behavior, which used to load the assemblies and
13487         extract MonoReflectionAssemblyName information, instead of
13488         extract it from the metadata tables. Needed for Reflection
13489         Only assemblies.
13490         
13491 2005-07-29  Martin Baulig  <martin@ximian.com>
13493         * mono-debug-debugger.c
13494         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
13495         not initialized.
13497         * mono-debug.c
13498         (mono_debug_address_from_il_offset): Check whether we have
13499         debugging support before attempting to take the lock.
13500         (mono_debug_source_location_from_address): Likewise.
13501         (mono_debug_source_location_from_il_offset): Likewise.
13502         (mono_debug_il_offset_from_address): Likewise.
13503         (mono_debug_address_from_il_offset): Likewise.
13505 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
13507         * class.c (mono_class_from_name_case): Add support for dynamic images.
13508         Fixes #75650.
13510         * object.c (mono_class_compute_gc_descriptor): Add a workaround
13511         for #75479.
13513 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13514         
13515         * reflection.c (mono_method_get_object): Fix warning.
13517 2005-07-28  Martin Baulig  <martin@ximian.com>
13519         * mono-debug.c
13520         (mono_debug_add_wrapper): Also write the wrapper type.
13522 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13524         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
13525         
13526         * class.c (mono_class_init): Avoid reading nested classes if the AOT
13527         data indicates the class has none.
13529 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
13531         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
13532         loader lock with the debugger lock. Prevents deadlocks for beagle.
13534         Beagle can now run on an smp box for a weekend without any
13535         issues. Woohoo!
13537 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
13539         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
13540         in a module. Fixes #75629.
13542 2005-07-26  Martin Baulig  <martin@ximian.com>
13544         * mono-debug.c (mono_debug_add_wrapper): New static method.
13545         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
13546         interncall or a wrapper.
13548         * mono-debug.h (MonoDebugWrapperData): New public typedef.
13549         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
13550         (MONO_DEBUGGER_VERSION): Bump to 51.
13552         * mono-debug-debugger.c
13553         (mono_debugger_add_type): Removed this empty function.
13554         (mono_debugger_add_method): Likewise.
13556 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
13558         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
13559         before accessing method->slot.
13561 2005-07-21  Jb Evain  <jbevain@gmail.com>
13563         * reflection.c (method_encode_clauses/class): Handle filters clauses.
13564         Fixes #75010.
13566 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13568         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
13569         #75587.
13571 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13573         * image.h image.c: Add mono_image_get_guid () API function.
13575 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
13577         There were issues when multiple threads tried to load
13578         assemblies. A deadlock was created between assemblies_mutex and
13579         mono_domain_assemblies_lock. This fixes the issue by making the
13580         assembly ref counting be lock free. See bug 75586.
13581         
13582         * image.c (mono_image_close): The add ref function here was using
13583         Interlocked operations while the unref was using a mutex and a
13584         --. I don't think this was ever a bug that would be exposed in a
13585         non-pendantic way (ie, by an embedder doing a ref on one thread
13586         and an unref on another), but for the sake of correctness, this is
13587         now Interlocked.
13589         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
13590         (mono_assembly_load_reference): Call mono_assembly_addref rather
13591         than touching the refcount ourselves.
13592         (mono_assembly_close): Use InterlockedDecrement to unref the
13593         assembly. Don't acquire the lock unless it is actually needed.
13595 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13597         * class.c (mono_class_layout_fields): Fix calculation of has_references
13598         for generic types.
13600 2005-07-12  Martin Baulig  <martin@ximian.com>
13602         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13604         * metadata.c
13605         (mono_type_hash): Provide better hashing for generic instances.
13606         (mono_generic_inst_hash): Improve hashing.
13607         (mono_generic_class_hash): Likewise.
13609         * reflection.c (mymono_metadata_type_hash): Improve hashing for
13610         generic instances.
13612 2005-07-12  Martin Baulig  <martin@ximian.com>
13614         * reflection.c (mono_reflection_create_runtime_class): Remove the
13615         hack for generic type definitions and non-`Run' assemblies.
13616         (mono_reflection_bind_generic_parameters): Also use
13617         `klass->wastypebuilder' to check for TypeBuilders.
13619 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13621         * class.c (mono_class_layout_fields): Fix calculation of has_references
13622         for generic types.
13624         * class.c (inflate_generic_class): Fix a leak.
13625         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
13626         for generic types.
13628 2005-07-11  Martin Baulig  <martin@ximian.com>
13630         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
13631         on error.
13633 2005-07-11  Martin Baulig  <martin@ximian.com>
13635         * loader.c (find_method): Also lookup in
13636         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
13638 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13640         * appdomain.c (mono_domain_unload): Don't free the error message
13641         before passing it to mono_get_exception_...
13643         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
13644         
13645 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
13647         * threads.c: try to better guess an available RT signal (bug #75387).
13649 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13651         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
13652         and CACHE_OBJECT.
13654 2005-07-07  Martin Baulig  <martin@ximian.com>
13656         * class.c (mono_type_get_name_full): Return NULL for
13657         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
13658         fixes #75408.
13660 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13662         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
13663         exit the appdomain as well being aborted.
13665         * threadpool.c: Create all threadpool threads inside the root appdomain, and
13666         change back to the root domain after calling managed code. This enables
13667         appdomains using threadpools to be unloaded.
13669 2005-07-07  Martin Baulig  <martin@ximian.com>
13671         * class-internals.h
13672         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
13673         into `MonoDynamicGenericClass' since we only need it for dynamic
13674         types.
13676         * reflection.c (mono_class_bind_generic_parameters): We don't need
13677         to compute the `parent' here.
13679 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
13681         * culture-info-table.h : regenerated.
13683 2005-07-06  Martin Baulig  <martin@ximian.com>
13685         * icall.c
13686         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
13688         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
13690 2005-07-06  Martin Baulig  <martin@ximian.com>
13692         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
13693         we're doing a signature-only comparision; fixes #74945.
13695 2005-07-06  Martin Baulig  <martin@ximian.com>
13697         * class-internals.h (MonoGenericClass): Moved some things out into
13698         a new `MonoInflatedGenericClass' type.  
13699         (MonoInflatedGenericClass): New type; the `klass' of a
13700         `MonoGenericClass' is now computed lazyly in
13701         mono_get_inflated_generic_class().      
13703         * class.c (mono_get_inflated_generic_class): New public function.
13704         (mono_class_inflate_generic_method): Removed the unused
13705         `MonoClass *' argument.
13706         (setup_generic_vtable): Don't call mono_get_inflated_method() on
13707         all the methods.
13708         (mono_class_create_generic): Make this static and merge it with
13709         mono_class_create_generic_2(); we're now called automatically from
13710         mono_get_inflated_generic_class().
13712         * loader.c (mono_method_signature): Call
13713         mono_get_inflated_method() here.
13715 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
13717         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
13718         type of fields with RVA.
13720         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
13721         for this pseudo class.
13722         (my_mono_class_from_generic_parameter): Likewise.
13723         (mono_class_init): Allow interfaces to have cctors.
13725 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13727         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
13728         lazily for AOT methods.
13730 2005-07-05  Martin Baulig  <martin@ximian.com>
13732         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
13733         returns FALSE for a successful match, not TRUE.
13735 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13737         * loader.c (mono_method_get_index): Optimize this a bit.
13739 2005-07-04  Martin Baulig  <martin@ximian.com>
13741         * class.c
13742         (class_compute_field_layout): Move the check for generic type
13743         definitions into mono_class_layout_fields().  Fixes #74684.
13744         (mono_class_from_generic_parameter): Correctly compute
13745         `klass->parent'; fixes #75457.
13747         * reflection.c (register_assembly, register_module): Make sure
13748         `domain->rejobject_hash' is already created.
13750 2005-07-02  Martin Baulig  <martin@ximian.com>
13752         * class-internals.h
13753         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
13754         `MonoDynamicGenericClass'.      
13756 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
13758         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
13759         returned by a field getter is null, since null is a valid value.
13761 2005-07-01  Martin Baulig  <martin@ximian.com>
13763         * reflection.c (mono_reflection_generic_class_initialize): Update
13764         the `dgclass->fields [i].parent' to the correct class.
13765         (mono_image_get_fieldref_token): Use the declaring type, not the
13766         reflected type.
13768 2005-07-01  Martin Baulig  <martin@ximian.com>
13770         * loader.c (find_method): Also look in the interfaces; fixes #75429.
13772 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
13774         * threads.c (thread_cleanup): assert that thread != NULL
13775         (wait_for_tids_or_state_change): We were using the wrong variable
13776         when accessing wait->threads. `i' was always out of the bounds of
13777         the array.
13779 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13781         * loader.c: map user32 and kernel32 to libMonoSupportW
13783 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13785         * appdomain.c (unload_thread_main): Mark this as WINAPI.
13787 2005-06-28  Martin Baulig  <martin@ximian.com>
13789         * loader.c (method_from_methodspec): Fix #75334.
13791 2005-06-28  Martin Baulig  <martin@ximian.com>
13793         Fix #74953 - Arrays now implement the generic IList<T> interface
13794         on the 2.0 platform.
13796         * class-internals.h (MonoDefaults): Added `generic_array_class'.
13798         * reflection.c (mono_class_bind_generic_parameters): New public
13799         function; similar to mono_reflection_bind_generic_parameters(),
13800         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
13802         * domain.c (mono_init_internal): Try to initialize.
13803         `mono_defaults.generic_array_class' here; this'll only succeed if
13804         we're using the 2.0 corlib.
13806         * icall.c
13807         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
13808         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
13809         (mono_lookup_internal_call): Added support for nested classes.
13811         * loader.c
13812         (mono_get_method_from_token): Set `result->signature->pinvoke' if
13813         we're an interncall and have generic arguments.
13815         * class.c
13816         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
13817         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
13818         instance of System.Array.InternalArray<T> for arrays, so they
13819         implement the generic IList<T> interface.
13821 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
13823         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
13824         (chastamar@yahoo.com). Fixes #75374.    
13826 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
13828         * culture-info-table.h: regenerated.
13830 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13832         * icall.c: handle spaces correctly for base64 strings.
13834 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13836         * *.c: Kill some warnings.
13838 2005-06-23  Duncan Mak  <duncan@novell.com>
13840         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
13841         that this builds on Solaris 10 (x86).
13843 2005-06-23  Martin Baulig  <martin@ximian.com>
13845         * class.c
13846         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
13847         generic type definitions.
13849 2005-06-23  Martin Baulig  <martin@ximian.com>
13851         Fix #75331.
13853         * metadata.c (mono_class_get_overrides): Renamed to
13854         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
13855         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
13856         pass it to mono_get_method_full().
13858 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
13860         * reflection.c (mono_reflection_create_runtime_class): take the
13861         mono_domain_lock in this method. Prevents deadlocks
13863 2005-06-22  Martin Baulig  <martin@ximian.com>
13865         * loader.c (method_from_methodspec): Fix #75330.
13867 2005-06-22  Martin Baulig  <martin@ximian.com>
13869         * reflection.c (type_get_qualified_name): Use
13870         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
13871         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
13872         argument; use it if we don't have an assembly name.
13874 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
13876         * object.c: In mono_message_init, set "copy out" flag for in
13877         parameters with the [Out] flag.
13879 2005-06-21  Martin Baulig  <martin@ximian.com>
13881         * class.c
13882         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
13883         and MONO_TYPE_PTR.
13885 2005-06-21  Martin Baulig  <martin@ximian.com>
13887         * class.c (mono_class_init): Don't initialize `class->fields' for
13888         generic instances since they're initialized again in
13889         compute_field_layout(). 
13890         (compute_field_layout): Set the field's `generic_info' here; fix
13891         #75320. 
13893 2005-06-21  Martin Baulig  <martin@ximian.com>
13895         * class-internals.h
13896         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
13898         * metadata.c (mono_metadata_generic_method_equal): Also
13899         distinguish the `generic_class'; fixes #75334.
13901 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13903         * domain.c:
13904         * appdomain.c:
13905         * domain-internals.h:
13906         * reflection.c: 'domain_assemblies' field is now protected by its own
13907         lock. Don't call into managed code to run the AssemblyLoad event if we
13908         now there are no registered delegates for it.
13910 2005-06-20  Martin Baulig  <martin@ximian.com>
13912         * class.c (mono_class_is_assignable_from): Use a custom version of
13913         mono_class_has_parent() to make things work for generic instances;
13914         fix #75300.
13916 2005-06-20  Martin Baulig  <martin@ximian.com>
13918         * loader.c (method_from_methodspec): Apply a patch from
13919         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
13921 2005-06-20  Martin Baulig  <martin@ximian.com>
13923         * class.c (mono_class_init): Reverted Zoltan's last change; it
13924         breaks generics.
13926 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13928         * threads.c (wait_for_tids_or_state_change): Add missing locking.
13930 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13932         * socket-io.c: fix the index in the socket array for writable/error
13933         sockets. Fixes bug #75306.
13935 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13937         * class.c (mono_class_init): Allow interfaces to have static ctors.
13939 2005-06-17  Martin Baulig  <martin@ximian.com>
13941         * loader.c (method_from_methodspec): Use `context->container' when
13942         parsing the `gmethod->inst'.
13944 2005-06-17  Martin Baulig  <martin@ximian.com>
13946         * class.c (mono_type_get_name_recurse): Don't add the assembly
13947         name for type arguments.
13949 2005-06-15  Martin Baulig  <martin@ximian.com>
13951         * reflection.c (mono_image_get_inflated_method_token): Encode
13952         correct klass; fixes #75260.
13954 2005-06-13 Michal Moskal <malekith@nemerle.org>
13956         * icall.c: Make GetCorrespondingMethod/Constructor take
13957         MonoReflectionMethod method not MonoMethod. Removed
13958         MonoType.GetCorrespondingField, and make
13959         MonoGenericType.GetCorrespondingField take name not
13960         MonoClassField.
13962 2005-06-13  Michal Moskal <malekith@nemerle.org>
13964         * reflection.c (field_encode_signature, encode_locals):
13965          Make sizes of buffers for types larger (for big generic types).
13966          (create_generic_typespec,
13967          mono_reflection_sighelper_get_signature_local,
13968          mono_reflection_sighelper_get_signature_field):
13969          Add asserts for too small buffers.
13971 2005-06-15  Martin Baulig  <martin@ximian.com>
13973         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
13974         if our parent is not a dynamic type.
13976 2005-06-15  Martin Baulig  <martin@ximian.com>
13978         * class-internals.h (MonoTypeNameFormat): New enum.
13980         * class.c
13981         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
13982         (mono_type_get_full_name): Removed.
13983         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
13984         argument instead of the boolean's.
13986         * icall.c (ves_icall_System_MonoType_getFullName):
13987         Added `gboolean assembly_qualified'.    
13989         * reflection.h
13990         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
13992         * reflection.c (mono_reflection_parse_type): Parse the new type
13993         name format.
13995 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13997         * icall.c: no need to convert from utf16 to utf8 and then back again
13998         after the call to GetLogicalDrives.
14000 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14002         * icall.c: frombase64. Fix problems exposed by new tests.
14004 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14006         * icall.c: added internal calls for converting char [] and strings in
14007         base64 into byte [].
14009 2005-06-10  Martin Baulig  <martin@ximian.com>
14011         * class.c (mono_class_create_generic_2): Read the nested classes
14012         from the metadata rather than from `gklass->nested_classes' since
14013         `gklass' might not be initialized yet.
14015 2005-06-09  Duncan Mak  <duncan@novell.com>
14017         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
14018         all public headers. Fixes #74919.
14020 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
14022         * domain.c: The key for proxy_vtable_hash is now a pointer
14023         array. Added new GHashFunc and GCompareFunc functions for this.
14025         * class.h: The list of interfaces in MonoRemoteClass is known in
14026         advance and can't grow (we create a new MonoRemoteClass if needed),
14027         so now the interface array can be allocated together with
14028         MonoRemoteClass.
14029         
14030         * object.c: Added a new method create_remote_class_key.
14031         Fixed mono_remote_class so it does not depend on
14032         mono_upgrade_remote_class.
14033         Removed extend_interface_array.
14034         Added new method clone_remote_class(), which makes a copy of a remote
14035         class and adds a new interface or class to it.
14036         mono_upgrade_remote_class() now creates a new remote class (or gets
14037         it from the cache) if an vtable upgrade is needed. In this way
14038         we make sure that other objects sharing the same remote class
14039         don't get the new vtable with unwanted interfaces.
14040         
14041         * object-internals.h:
14042         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
14043         
14044         * marshal.c: Track changes in mono_upgrade_remote_class().
14046 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
14047         * icall.c: Add runtime methods for obtaining members of inflated
14048         class, which were created from supplied non-inflated members. It
14049         is used in internal Get{Method,Constructor,Field} methods in
14050         System.Type
14052 2005-06-09  Martin Baulig  <martin@ximian.com>
14054         * reflection.c
14055         (mono_reflection_bind_generic_method_parameters): Fix #75169.
14057 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14058         * reflection.c (mono_image_basic_init): Define
14059         Version in MonoDynamicAssembly. 
14060         
14061 2005-06-08  Martin Baulig  <martin@ximian.com>
14063         Fix #75136.
14065         * loader.c
14066         (mono_method_signature_full): New public method; takes a
14067         `MonoGenericContext *'.
14068         (find_method): Use mono_method_signature_full() and pass the
14069         klass'es context to it.
14071         * class.c (mono_class_is_inflated_method): Use
14072         mono_method_signature_full() and pass the context to it.
14074 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
14076         * object.c: add proper locking in mono_remote_class_vtable(),
14077         fixes possible memory corruption.
14079 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
14081         * marshal.c (mono_remoting_marshal_init): set
14082         initialized after initialization.
14084 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14086         * locales.c : hush.
14088 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
14090         * object.c (extend_interface_array): fix really silly
14091         memory corrupting / comparison bug.
14093 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14095         * reflection.c: Functions added to support the creation
14096         of CustomAttributeData, which includes Attribute data
14097         used by ReflectionOnly methods.
14099         * reflection.h:  mono_reflection_get_custom_attrs_data and
14100          mono_custom_attrs_data_construct added (functions exposed).
14102          * icall.c: Added mono_reflection_get_custom_attrs_data
14103          as icall.
14104         
14105 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
14107         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
14108         lupus's request.
14110 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
14112         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
14114         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
14115         dynamic DllImportAttribute.
14117         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
14118         dynamic DllImportAttribute.
14120         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
14121         Fixes #75162.
14123 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14125         * threads.c: avoid segfault when an unstarted thread is aborted.
14127 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
14129         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
14130         Returns the name and version of the runtime for reporting.
14132 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14134         * appdomain.c: bump corlib version.
14135         * object-internals.h: new field in MonoReflectionAssembly.
14137 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14139         * object-internals.h: Carlos forgot to add this field.
14141 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14143         * icall.c: Added create_version to create instances
14144         of Version of MonoReflectionAssemblyName. This change helps
14145         the AssemblyName tests to keep running fine.
14146         
14147 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
14148   
14149         * object.c (mono_method_return_message_restore): A somehow less
14150         intrusive fix for #75138.
14152 2005-06-03  Raja R Harinath  <rharinath@novell.com>
14154         * object.c (mono_method_return_message_restore): Fix computation
14155         of expected number of out args.
14157 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
14159         * reflection.c (mono_image_get_method_info): Fix the case when the
14160         charset is empty.
14162 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
14164         * object.c: Added missing null check in
14165           mono_method_return_message_restore.
14167 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
14169         * reflection.c (mono_image_get_method_info): Handle the case when
14170         dllentry is empty.
14172 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
14174         * object.c: When creating the vtable for a proxy, take into account
14175         all inherited interfaces, not only the ones registered in
14176         iclass->interfaces. This fixs bug #74996.
14177         Also, in mono_method_return_message_restore, verify that the array
14178         of out args has the expected lengh.
14180 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14182         * socket-io.c: update the timeout in Poll when the call is interrupte.
14184 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14186         * socket-io.c: support abort/suspend in Select_internal after last
14187         change.
14189 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14191         * threadpool.c: remove warning.
14193 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14195         * icall.c:
14196         * socket-io.[ch]: Select_internal uses poll() now when available, thus
14197         removing the 1024 limit from select(). Runtime part of the fix for
14198         bug #71203.
14200 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14202         * socket-io.c: when resolving the addresses for the same
14203         host returned by gethostname(), get the local IPs from the interface
14204         list. Loopback addresses are discarded if the are interfaces up with
14205         non-loopback ones. Fixes bug #63265.
14207 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
14209         * appdomain.c, verify.c, object-internals.h, reflection.c:
14210         bumped corlib number to 36, and added new extra_flags field
14211         to ReflectionMethodBuilder and friends.  Fixes #75060.
14213 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
14215         * gc.c: register a new weak link only if the object is non-null
14216         (fixes bug#75047).
14218 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14220         * culture-info.h : short time pattern too.
14222 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14224         * culture-info.h : expand long time pattern string length.
14226 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14228         * culture-info-table.h : update (more French date format; #72788).
14230 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
14232         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
14233         the method is static. Fixes #75029.
14235 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
14237         * reflection.c: Update the table_idx field of method builders after
14238         saving the module, since it can change. This is a workaround for
14239         bug #74914. 
14241 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14243         * culture-info-table.h : update (additional French date format).
14245 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
14247         * icall.c (ves_icall_type_Equals): Revert last change.
14248         
14249         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
14251         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
14253 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
14255         * class-internals.h: Added executioncontext_class field to 
14256         MonoDefaults structure.
14257         * domain.c: Cache System.Threading.ExecutionContext class in 
14258         mono_defaults.
14259         * object.c: Capture the ExecutionContext for asynchroneous calls in
14260          mono_async_result_new.
14261         * object-internals.h: Added execution_context and original_context 
14262         fields to MonoAsyncResult. Added execution_context to MonoThread.
14263         * security-manager.c|.h: Added mono_get_context_capture_method to 
14264         return the capture method (if required by the security manager or by
14265         the framework version used).
14266         * threadpool.c: Apply capture (if present) ExecutionContext in 
14267         mono_async_invoke and revert to original context after it completes.
14269 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
14271         * culture-info-table.h : updated (real hacky solution for zh-CHT).
14273 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
14275         * culture-info-table.h : zh-CHT related workaround.
14277 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14279         * marshal.c (emit_marshal_custom): Add some error checking and call the
14280         methods in the ICustomMarshaler interface. Fixes #74875.
14281         
14282         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
14283         native->managed wrappers.
14285 2005-05-12  Martin Baulig  <martin@ximian.com>
14287         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
14288         here and use the loader lock.
14290         * mono-debug.c: Properly lock when the debugger is not attached.
14291         (mono_debug_init): Release the initial lock if we're not running
14292         in the debugger.
14294 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14296         * marshal.c (emit_marshal_custom): Pass through NULL values without
14297         calling the custom marshalling routines.
14299         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
14300         conversion in structures. Fixes #74882.
14302 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
14304         * culture-info-table.h : zh-* cultures were missing.
14306 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
14308         * threads.c: Added a new event background_change_event which is signaled
14309         when a thread changes its background mode.
14310         Moved here several checks previously done in managed code. The checks
14311         require the thread lock, and using the thread lock in managed code
14312         can result in deadlocks.
14313         Merged Start_internal and Thread_internal into a single method. Now 
14314         Thread_internal does all work of creating and starting a thread.
14315         Added icalls for setting and getting the state of the object. Moved from
14316         managed code to avoid locking there.
14317         Added wait_for_tids_or_state_change() which is called instad of
14318         wait_for_tids when waiting for non-backround threads to end. This method
14319         will return if one of the threads ends or the background_change_event
14320         is signaled.
14321         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
14322         the background mode. This method signals the background_change_event
14323         event.
14324         * icall.c:
14325         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
14326         removed Start_internal.
14327         
14328 2005-05-11  Martin Baulig  <martin@ximian.com>
14330         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
14331         to order of some fields to get proper alignment on 64-bit machines.
14333 2005-05-11  Martin Baulig  <martin@ximian.com>
14335         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
14336         changes as they're broken and completely fuck up the debugger.
14338         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
14340 2005-05-10  Martin Baulig  <martin@ximian.com>
14342         * reflection.c (mono_reflection_generic_class_initialize): Don't
14343         call mono_class_setup_parent() here.
14345 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14347         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
14348         send/receive timeout use an integer in milliseconds. We were using a
14349         struct timeval.
14351 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14353         * locales.c:
14354         (internal_get_cultures): reserve the first slot of the array for the
14355         InvariantCulture, which will be filled in managed code.
14357 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
14359         * reflection.c (mono_image_fill_module_table): Initialize the
14360         GENERATION field as well.
14362 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14364         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
14365         Monitor.Enter on the object.
14367 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
14369         * threads.c: Enable the wait for running threads when exiting.
14370         * icall.c: Suspend all threads before exiting.
14372 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
14374         * assembly.c (mono_assembly_load_reference): Fix warning.
14376 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14378         * threadpool.c: changed the default number of threads per cpu. From now
14379         on, the default will be 20 + (5 * number of cpus) instead of 50.
14381 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
14383         * loader.c (mono_method_get_signature_full): Add locking here.
14385 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
14387         * appdomain.c: Moved methods for parsing and freeing assembly
14388         names to assembly.c.
14389         * assembly.c, domain-internals.h: Created public methods for parsing
14390         assembly names. Fixed mono_assembly_load_with_partial_name:
14391         it now finds the best match, taking into account the version,
14392         token and culture specified in the partial name. Also return
14393         the latest version if no version information is specified.
14395 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
14397         * threadpool.c: replace check for SocketAsyncCall class.
14399 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14401         * threadpool-internals.h:
14402         * Makefile.am: added threadpool-internals.h
14404         * threadpool.c: call mono_unhandled_exception on exceptions not handled
14405         that happen in threadpool threads (tested on MS).
14406         (mono_thread_pool_remove_socket): new function that dispatch any pending
14407         AIO call on a socket that is closing. By now only epoll really needs it,
14408         as select/poll wake up when the socket closes.
14411         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
14413 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
14415         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
14417 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
14419         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
14421 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
14423         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
14424         has an abort request, convert it into a suspend request.
14426 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
14428         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
14429         warning for the usage of `UnmanagedFunctionPointerAttribute' which
14430         is not supported yet.
14432 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14434         * image.c: register assemblies loaded from data (bundles) in the loaded
14435         assemblies hash. Fixes bug #74772.
14437 2005-04-29  Martin Baulig  <martin@ximian.com>
14439         * class.c (mono_type_get_name_recurse): Update to the new naming
14440         schema from the latest .NET 2.x beta2.
14441         (mono_class_setup_vtable_general): If we're a generic instance,
14442         copy the vtable from our generic type definition and inflate all
14443         the methods in it.
14445         * loader.c (find_method): Update to the new naming schema from the
14446         latest .NET 2.x beta2.
14448 2005-04-29  Raja R Harinath  <harinath@gmail.com>
14450         * class.c (mono_class_init): Add a mono_loader_unlock to the
14451         #74734 fix.
14453 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
14455         * icall.c (ves_icall_System_Environment_Exit): Remove the 
14456         suspend_all_other_threads () call for the time being, since it can hang.
14458         * threads.c (mono_thread_manage): Similarly, disable the waiting for
14459         the background threads to exit, since it can also hang.
14461         * class.c (mono_class_init): Applied patch from Ankit Jain 
14462         (radical@gmail.com). Avoid pending init errors when a field refers
14463         to a nested class using a typeref. Fixes #74734.
14465         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
14466         this for dynamic modules.
14468 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14470         * threads.c: don't wait for threads that are in the process of aborting
14471         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
14472         and waiting for background threads to finish. This makes xsp and
14473         mod-mono-server exit without random length delays and/or hangs.
14475 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14477         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
14479 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
14481         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
14482         dynamic types to prevent infinite loops. Fixes #74727.
14484         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
14485         ..._is_assignable_to.
14487 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
14489         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
14491 2005-04-25  Martin Baulig  <martin@ximian.com>
14493         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
14495         * domain.c
14496         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
14498         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
14500         * reflection.c (build_compressed_metadata): Set metadata header
14501         version to 2.0.
14503 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
14505         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
14506         number into an integral and a decimal part. Fixes #70473.
14508         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
14510 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
14512         * culture-info-table.h : reflected the latest locale-builder output.
14514 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14516         * threadpool.c: check for SuspendRequested too when deciding if
14517         mono_thread_interruption_checkpoint should be called.
14519 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14521         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
14522         * threads.c: remove interruption_mutex and use Interlocked instead. When
14523         suspending all the threads, wait for all the suspended events at once.
14524         If we're shutting down and get an APC that is going to be queued,
14525         call mono_thread_execute_interruption immediately, as the thread might
14526         be sleeping on a pthread condition or mutex.
14528         * icall.c: call mono_runtime_set_shutting_down before suspending the
14529         threads.
14531         Fixes bug #74693. And now xsp is happier when exiting.
14533 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
14535         * loader.c (mono_stack_walk): Fix #74690.
14537 2005-04-22  Martin Baulig  <martin@ximian.com>
14539         * mono-debug.h (MonoDebugMethodJitInfo): Added
14540         `MonoDebugMethodJitInfo *jit'.
14542         * mono-debug.c (mono_debug_read_method): Cache the
14543         MonoDebugMethodJitInfo in `address->jit'.
14544         (mono_debug_free_method_jit_info): New public method.
14546 2005-04-22  Martin Baulig  <martin@ximian.com>
14548         * class.c (mono_class_is_assignable_from): Disallow
14549         type parameter -> interface.
14551 2005-04-21  Dick Porter  <dick@ximian.com>
14553         * threads.c (mono_thread_create): Turn an assertion into an error.
14555 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
14557         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
14558         
14559         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
14560         Fix some gcc 4.0 warnings.
14562 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
14564         * file-io.c: fix alt dir separator char on unix systems
14565         and cleanup (fixes bug #71214).
14567 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
14569         * marshal.c: Use CALLVIRT instead of CALL when dispatching
14570         a call to a remote domain, since the method may be an
14571         interface method in the client domain. This fixes bug #74192.
14573 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14575         * threadpool.c: recv/send are now performed before going back to managed
14576         code to save one transition.
14578 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14580         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
14582         * metadata/threadpool.c: removed hack to workaround the bug above.
14584         Fixes bug #74618.
14586 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
14588         * reflection.c reflection.h: Fix handling of parameter defaults in
14589         dynamic methods. Also fixes handling of parameter attributes.
14590         Fixes #74609.
14592         * mono-debug.c (mono_debug_close_image): Fix warning.
14594 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14596         * socket-io.h: replaced old unused field with new 'blocking'.
14597         * threadpool.c: restore socket blocking state on windows(tm).
14599 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
14601         * icall.c: don't return the codebase in the AssemblyName[] returned by
14602         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
14603         * object-internals.h: Removed FIXME (fields were presents) and fixed
14604         versioncompat declaration.
14606 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14608         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
14609         not closed, so don't cleanup when it happens.
14611 2005-04-13  Chris Toshok  <toshok@ximian.com>
14613         * mono-debug-debugger.h: change prototype for
14614         mono_debugger_lookup_type.
14616         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
14617         this function, although it should probably be named
14618         mono_debugger_init_type.
14620 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14622         * threadpool.c: fix non-AIO case.
14624 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
14626         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
14627         the built-in profiler to measure just JIT compilation times.
14629 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14631         * threadpool.c: the epollfd might be closed by another thread at
14632         any time, so ignore EBADF at treat it as a "we're closing" sign.
14634 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14636         * threadpool.c: release the semaphores with a count equals to the number
14637         of working threads in both IO and regular pools. Fixed typo that messed
14638         up the count of IO pool threads. Don't initialize the pipe handles if
14639         we're using epoll.
14641 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14643         * threadpool.c: some systems don't like a NULL when deleting the socket
14644         from epoll.
14646 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14648         * threadpool.c: fix semaphore allocation.
14650 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14652         * threadpool.c: added epoll() based implementation for asynchronous IO
14653         that is used instead of the default poll() when available.
14654         It can be disabled by setting MONO_DISABLE_AIO.
14656 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14658         * threadpool.c: windows needs 'closesocket' and instead of returning
14659         0 when the stream is closed while in select, it returns -1. Fixes bug
14660         #74573.
14662 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
14664         * class.c (class_compute_field_layout): Fix the regression caused by
14665         the previous try.
14667 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14669         * threadpool.c: separate pool for socket async. IO.
14670         * threadpool.h: mono_max_worker_threads is not a global any more.
14672 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
14674         * class.c (class_compute_field_layout): Fix #74549.
14676 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14678         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
14679         use 2 connected sockets instead.
14681 2005-04-08  Miguel de Icaza  <miguel@novell.com>
14683         * mono-config.c: Add new entry point for mkbundle
14684         mono_config_parse_memory. 
14686 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14688         * threadpool.c: removed another unused function.
14690 2005-04-08  Ankit Jain  <radical@corewars.org>
14692         * reflection.c (get_default_param_value_blobs): Add 'types'
14693         parameter to get the types encoded in the constant table.
14694         (mono_param_get_objects): Use the type from the constant table,
14695         not the type of the parameter, when creating default values.
14696         Handle null default values correctly.
14698 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14700         * file-io.c:
14701         * file-io.h:
14702         * threadpool.c:
14703         * threadpool.h:
14704         * icall.c:
14705         * socket-io.c: removed dead code for async IO.
14707 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14709         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
14711         * threadpool.c: intercept socket async. calls and pass them to a thread
14712         that is polling and dispatching the job items to the threadpool as
14713         socket become ready. Fixes bugs #71217, #71933.
14715         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
14716         between char and short/ushort arrays.
14718         * socket-io.c: remove dead code.
14720 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14722         * locales.c,
14723           icall.c : removed InternalToUpper_Comp() and
14724           InternalToLower_Comp().
14726 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14728         * char-conversions.h : The tables were incorrectly generated. Should
14729           be generated against invariant culture.
14731 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
14733         * object.c (mono_runtime_invoke_array): Fix return value when 
14734         passing pre-created valuetype objects to ctors.
14736         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
14737         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
14738         Fixes #74338.
14740 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
14742         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
14743         only used with --security and hides the wrong corlib version error.
14745 2005-03-30  Joshua Tauberer  <tauberer@for.net>
14747         * class.c: Changed mono_class_name_from_token so that types
14748         outside of a namespace don't have an initial period.  Improved
14749         the g_warning message used in _mono_class_get when loading
14750         fails.
14751         * assembly.c: In mono_assembly_load_reference, when an assembly
14752         can't be found, "No such file or directory" is misleading and
14753         unhelpful because a few paths were checked for the presence of
14754         the assembly.  When that happens (ENOENT), display a nicer
14755         message indicating the directories that were searched.  In all
14756         cases, the warning is made easier to read for non-hackers.
14758 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
14760         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
14761         project/solution.
14762         * appdomain.h|domain.c: Removed inline from functions.
14763         * appdomain.c: Reduced warnings when compiling on windows.
14764         * icall.c: Fixed output_debug declaration to gunichar2*.
14765         * mono-config.c: Reduced warnings when compiling on windows.
14766         * rand.c: Added missing "windows.h". Added missing return value.
14767         * rawbuffer.c: Added missing winsock2.h for windows.
14768         * sysmath.h: Added mono-compiler.h header to allow/ease 
14769         compilation with non-GCC compilers.
14770         * threads.c: Fixed declarations to compile with VS.NET C compiler.
14771         Removed cast warnings.
14773         Adapted from the work of J Lothian (for VC6).
14775 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
14777         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
14778         from default_path.
14780 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
14782         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
14783         the 2.0 profile.
14785 2005-03-27  Raja R Harinath  <harinath@gmail.com>
14787         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
14788         has to be in $(exec_prefix).  $(prefix) is for arch-independent
14789         stuff, and it would probably use $(prefix)/share rather than
14790         $(prefix)/lib.
14792 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14794         * console-io.c: added 2 includes that might be missing.
14796 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
14798         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
14799         profile.
14801         * reflection.c (create_custom_attr): Allocate the params array using
14802         alloca so it gets GC tracking.
14804 2005-03-23  Chris Toshok  <toshok@ximian.com>
14806         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
14807         out some spew.
14809 2005-03-24  Raja R Harinath  <rharinath@novell.com>
14811         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
14812         changes to pick up any changes in prefix, etc.
14814 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14816         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
14817         
14818         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
14819         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
14821 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14823         * class-internals.h object-internals.h class.c reflection.c: Extend the
14824         mono_lookup_dynamic_token () function to return the class of the
14825         token as well. 
14827         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
14828         well. Fixes #73848.
14830 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
14832         * security-manager.c: Skip inheritance checks for intra-corlib
14833         class inheritance and method overrides. This skips a lot of checks
14834         and (anyway) permissions cannot work until corlib is loaded.
14836 2005-03-23  Martin Baulig  <martin@ximian.com>
14838         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
14839         MONO_TYPE_GENERICINST.  
14841 2005-03-23  Martin Baulig  <martin@ximian.com>
14843         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
14845 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14847         * class.c: added locking comments to some functions.
14848         Cache the interface offsets arrays (saves about 20 KB
14849         of runtime memory in a typical app).
14850         Reduce the time overhead in mono_class_setup_supertypes ().
14852 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
14854         * icall.c: speedup and fix leaks in GetMethodsByName and
14855         GetPropertiesByName.
14857 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14859         * reflection.c: some locking fixes.
14861 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14863         * metadata.c: added missing break in case statement.
14865 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
14867         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14868         typedbyref return values. Fixes #73941.
14870 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
14872         * security-manager.c|h: Added demandunmanaged method and 
14873         suppressunmanagedcodesecurity class to MonoSecurityManager.
14874         Renamed aptc class to allowpartiallytrustedcallers.
14876 2005-03-17  Martin Baulig  <martin@ximian.com>
14878         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
14880 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14882         * file-io.c: disabled file async. IO using aio_*. It uses the
14883         threadpool now. Workaround for bug #73718.
14885 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14887         * assembly.h, mono-config.c: added code to deal with bundled configs
14888         for bundled assemblies.
14890 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
14892         * *.c, private.h: cleanup, removing old private.h header file.
14894 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
14896         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
14897         and throw_on_unmappable_char attributes.
14899 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
14901         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
14902         _ProcessName_internal.
14904 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
14906         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
14907         #73631.
14909         * icall.c threads.c threads-types.h: Remove slothash icalls as they
14910         are no longer used.
14912 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
14914         * object.c (compute_class_bitmap): Add support for generics. Fixes
14915         #73527.
14917 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14919         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
14921 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14923         * filewatcher.c: commented out the code for windows watcher, as we don't
14924         use it (we use the managed implementation instead).
14926 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14928         * object-internals.h (MonoThread): Remove 'unused1' field.
14930         * appdomain.c: Bump corlib version.
14932         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
14934         * reflection.c (mono_reflection_create_runtime_class): Remove the
14935         AssemblyBuilder.Save optimization since it causes too many problems.
14937 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
14939         * exception.c|h: Added mono_get_exception_reflection_type_load to
14940         create a ReflectionTypeLoadException object.
14941         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
14942         to return NULL is a InheritanceDemand fails during reflection. Updated
14943         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
14944         ReflectionTypeLoadException if an InheritanceDemand fails during 
14945         reflection. Added icall mapping for GetLinkDemandSecurity.
14946         * security-manager.c|h: Added ves_icall_System_Security_
14947         SecurityManager_GetLinkDemandSecurity internal call to return the
14948         class and methods permissions set for a LinkDemand. Removed unused
14949         fields in MonoSecurityManager.
14951 2005-03-10  Martin Baulig  <martin@ximian.com>
14953         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
14954         it's a generic instance.
14956 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
14958         * reflection.c (mono_get_object_from_blob): Applied patch from
14959         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
14961         * class.c (mono_class_is_assignable_from): Another try at fixing 
14962         #73469 without breaking anything.
14964 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
14966         * class.c: (mono_class_is_assignable_from): Revert the last changes
14967         since they don't work with generics.
14968         
14969         * class.c (mono_class_is_assignable_from): Fix build bustage.
14971         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
14972         the managed IsAssignableFrom method. Fixes #73469.
14974         * reflection.c (mono_reflection_call_is_assignable_from): New helper
14975         function.
14977 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
14979         * object.c (mono_load_remote_field_new): Fix returning uninitialized
14980         memory when the remoting callback does not sets the out arguments.
14981         Fixes #73007.
14983         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
14984         by mistake.
14986         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
14988         * object-internals.h (MonoStackFrame): Sync with managed object layout.
14990         * appdomain.c: Bump corlib version.
14992 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
14994         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
14995         function.
14997         * threads.c (mono_thread_attach): Detect threads which are not started
14998         by the GC pthread wrappers.
15000 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
15002         * icall.c: Added new icall for RNG.
15003         * rand.c|h: Added new icall to open the RNG. This allows to share a 
15004         single handle on Linux to access /dev/urandom and fix #73183.
15006 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
15008         * object.c: setting the new vtable in a transparent proxy object must
15009         not change the GC descriptor.
15011 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15013         * object.c: fixed compilation without GCJ support.
15014         * reflection.c: for runtime-created types ensure klass->has_references
15015         is correct (bug #73215).
15017 2005-03-02  Martin Baulig  <martin@ximian.com>
15019         * class.c (mono_class_is_assignable_from): Make this work if
15020         `oklass' is a generic instance; fixes #72831.
15022 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
15024         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
15025         with hasthis set.
15026         
15027         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
15029         * marshal.c: Reorganize native->managed marshalling code to also use
15030         the emit_marshal_... functions.
15032 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
15034         * object.c: typed allocs have issues with bitmap sizes > 30,
15035         so check for max_set >= 30.
15037 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
15039         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
15040         managed code. Fixes #73012.
15042         * metadata.h (MonoMarshalSpec): Add elem_mult field.
15044         * metadata.c reflection.c: Load/Emit elem_mult as well.
15045         
15046         * metadata.h (MonoMarshalSpec): Add comment.
15048         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
15050         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
15051         num_elem to -1 if not given.
15053         * object-internals.h (MonoReflectionMarshal): Add has_size field.
15055         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
15056         given values.
15058 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
15060         * null-gc.c (mono_gc_free_fixed): Was not compilable.
15062 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
15064         * reflection.c (encode_marshal_blob): Encode param_num field as well.
15066         * object-internals.h (MonoReflectionMarshal): Add param_num field.
15068 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
15070         * object.c: generalized the reference bitmap creation
15071         and added hooks for the new GC.
15072         * class-internals.c: removed the gc_bitmap field from MonoClass.
15074 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15076         * domain.c: help the compiler to produce better code
15077         in mono_jit_info_table_find ().
15079 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
15081         * object.c: make all allocations look typed.
15083 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15085         * socket-io.c: load Mono.Posix if it's not loaded already
15086         (fixes bug#73033).
15088 2005-02-24  Martin Baulig  <martin@ximian.com>
15090         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
15091         * reflection.c (dup_type): Likewise.
15093 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
15095         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
15096         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
15098 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15100         * domain.c, threads.c, object-internals.h: make the critical thread
15101         local vars use the fast access mode (even when we're compiled in
15102         a lib). Provide accessors to be used by the jit during codegen.
15104 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15106         * appdomain.c: Changed hook functios behavior to include
15107         support for the reflection only assemblies. Some icalls were changed
15108         to support the mentioned assemblies too. Signatures of static methods
15109         try_assembly_resolve and real_load now have an additional parameter:
15110         refonly.
15112         * assembly.c: General changes to mono_assembly_ methods to support
15113         reflection only api. Functions mono_assembly_open, mono_assembly_load,
15114         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
15115         suffix, to support an additional gbool parameter to specify whether
15116         the assembli is reflection only or not. Created some new hook functions 
15117         to add support for reflection only assemblies. Signatures of static 
15118         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
15119         have now an additional parameter: refonly.
15121         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
15122         indicating whether the assembly is reflection only or not.
15124         * exception.c: Add mono_get_exception_invalid_operation.
15126         * icall.c: Throw an InvalidOperationException when trying to invoke
15127         a property/method/event, or trying to set/get the value of a field.
15128         Also add an icall to retrieve the ref_only flag to the
15129         MonoReflectionAssembly.
15131 2005-02-23  Chris Toshok  <toshok@ximian.com>
15133         Part of fix for #72827.
15134         * mono-debug.c (mono_debug_add_method): add lexical block data to
15135         the info we write.  Kind of a hack at the moment - we copy the
15136         lexical block info from the MonoDebugMethodInfo to the
15137         MonoDebugMethodJitInfo here, before writing it.
15138         (mono_debug_read_method): read the lexical block info.
15140         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
15142         * debug-mono-symfile.h: add lexical block support.
15144         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
15145         support.
15147 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
15149         * loader.c (mono_lookup_pinvoke_call): Fix warning.
15151         * object.c (mono_runtime_free_method): Call mono_free_method () and
15152         put the TODOs there.
15154         * loader.c (mono_free_method): Free up most memory allocated for 
15155         dynamic methods.
15157 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15159         * reflection.c: properly flag a Type argument to a
15160         named custom attr value (bug #72248).
15162 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15164         * reflection.c: reduce code duplication in named custom
15165         attribute encoding.
15167 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
15169         * reflection.c: properly encode custom attrs of type object
15170         (bug #72649).
15172 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
15174         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
15176 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
15178         * socket-io.c: load System.dll if it's not loaded already
15179         (bug #72850 and #70477).
15181 2005-02-21  Martin Baulig  <martin@ximian.com>
15183         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
15184         generic instances.
15186 2005-02-21  Martin Baulig  <martin@ximian.com>
15188         * reflection.c (mono_image_build_metadata): We also need to
15189         "fixup" the MethodImpl table after we computed the final method
15190         indices.  Call fixup_methodimpl() to do that.
15191         (fixup_methodimpl): New private method.
15193 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
15195         * assembly.c: special case mscorlib.dll (bug#72536),
15196         patch from Carlos Alberto Cortez.
15198 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
15200         * threads-types.h threads.c: Fix build bustage.
15202         * threads.c: Use a union for long<->double conversions.
15204         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
15205         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
15207         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
15208         containing the checkpoint call with NOT_TAKEN.
15209         
15210         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
15211         checkpoint before pushing the arguments, so they won't have to be
15212         spilled to stack.
15214 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15216         * domain.c, assembly.c, domain-internals.h: make some data
15217         const and relocation-free.
15219 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
15221         * object.c, appdomain.c, class-internals.h: introduce the
15222         MonoClassRuntimeInfo structure to hold the info needed to
15223         use a class at runtime. Made mono_class_vtable() lock-free
15224         for all the appdomains.
15226 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
15228         * metadata-internals.h, image.c: introduce a per-image mempool to
15229         be used for memory that has the same lifetime as the image.
15231 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
15233         * domain.c: In mono_init_internal(), instead of selecting the first
15234         runtime version supported by an executable, get a list of all
15235         supported versions and select the one for which an mscorlib exists
15236         (since even if the runtime supports a given version, it doesn't mean
15237         that the framework for that version is installed).
15238         Modified get_runtimes_from_exe to support this behavior.
15239         In supported_runtimes, added information about additional system
15240         assembly versions.
15241         
15242         * assembly.c: Added support for more than one system assembly version
15243         per runtime version. Updated the assembly list.
15244         In mono_assembly_remap_version, removed the initial version check,
15245         since we don't know to which version we need to compare until we
15246         get the version set on which the assembly is based.
15247         Moved the code for loading corlib into the new method
15248         mono_assembly_load_corlib(), so it can be used by the initialization
15249         code.
15250         
15251         * domain-internals.h: Updated data structures and added declaration
15252         for mono_assembly_load_corlib.
15254 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15256         * reflection.c (resolve_object): Fix the creation of the signature in 
15257         the SignatureHelper case.
15259         * assembly.c (mono_assembly_remap_version): Fix binary search.
15260         
15261 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
15263         * class.c: Added inheritance check when a method is overloaded (from a
15264         virtual method or when implementing an interface) and when a class is
15265         inherited. Added functions to set a failure for a class and to 
15266         retreive the exception from a failure.
15267         * class-internals.h: Added fields to MonoClass to keep the exception
15268         information status for inheritance (or other exceptions) to be thrown
15269         later (i.e. not at load time).
15270         * object.c: Throw the inheritance SecurityException when a type is to 
15271         be created with either class or method inheritance violations.
15272         * reflection.c|h: Fix when getting declsec from a class. Removed 
15273         unrequired code for class. Improved sanity in parameter naming.
15274         * security-manager.c|h: Added functions to check for class and method
15275         inheritance.
15277 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15279         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
15280         and has_finalize in dynamic types as well.
15282 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
15284         * culture-info-table.h : fixed currency format for en-GB (and so on).
15286 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
15288         * gc.c: ensure the GC handles never have 0 as a value.
15290 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15292         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
15293         a pointer to a struct to unmanaged code. Fixes #72625.
15295 2005-02-16  Martin Baulig  <martin@ximian.com>
15297         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
15299 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15301         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
15303 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15305         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
15307         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
15308         UnmanagedFunctionPointerAttribute, use it for determining calling convention
15309         etc. Fixes #71471.
15311         * reflection.c (mono_custom_attrs_get_attr): New helper function.
15313         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
15315 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
15317         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
15318         changes to make the current context a field in MonoThread.
15320 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15322         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
15323         the last change.
15324         
15325         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
15326         extracted from mono_marshal_get_native_wrapper.
15328         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
15329         to create wrappers around native functions.
15331         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
15332         delegates for arbitrary function pointers. Fixes #71472.
15334 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15336         * threads.c: cleaned up the code a little.
15338 2005-02-15  Martin Baulig  <martin@ximian.com>
15340         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
15341         the data table.
15343         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
15344         allocate larger chunks if needed.
15346 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15348         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
15349         in by mistake.
15351 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
15353         * domain.c: keep the domains in an array and ensure the domain ids
15354         are kept small, so they can be used as indexes to domain-specific data
15355         with a small memory overhead.
15357 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15359         * icall.c: Handle byref types in Type icalls. Fixes #72544.
15361 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
15363         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
15365 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
15367         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
15369         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
15370         values.
15372         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
15373         
15374 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
15376         * domain-internals.h: add the hashtable here.
15378         * class-internals.h: Remove `info' from MonoMethod
15380         * domain.c: Add a new hashtable, jit_trampoline_hash
15382 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15384         * object.c: don't set the value of static fields
15385         (fixes bug#72494).
15387 2005-02-11  Martin Baulig  <martin@ximian.com>
15389         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
15390         (mono_debug_add_method): Silently ignore the method if it's too big.
15391         (mono_debug_add_type): Likewise.
15393 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
15395         * threads.c, appdomain.c: remove #ifdefs from the code.
15397 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
15399         * metadata-internals.h: Added flags to MonoAssembly to cache the most
15400         common security informations. This allows us to stay in unmanaged code
15401         when doing LinkDemand and it's special cases (except for the first 
15402         time for initialization). The flags a very much used with --security.
15403         * reflection.c|h: Added code to get declarative security attributes 
15404         for LinkDemand and InheritanceDemand. This required to refactor the
15405         existing code for Demand.
15406         * security-manager.c|h: Added new method fields for the special cases
15407         of LinkDemand.
15409 2005-02-10  Martin Baulig  <martin@ximian.com>
15411         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
15412         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
15414 2005-02-10  Martin Baulig  <martin@ximian.com>
15416         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
15417         debugging code; this is almost a complete rewrite.
15419         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
15421 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15423         * domain.c, object.h: expose mono_string_equal () and 
15424         mono_string_hash ().
15425         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
15426         it's implemented in managed code.
15428 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15430         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
15431         lo leak objects between appdomains.
15433 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15435         * assembly.c: old compilers compilation fix from 
15436         robertj@gmx.net (Robert Jordan).
15438 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
15440         * class-internals.h: Little reminder for the future.
15442         * debug-helpers.c: Fix up wrapper_type_names
15444 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15446         * image.c, metadata-internals.h: when loading an image from a file,
15447         mmap all of it and use the same codepaths as when using a
15448         in-memory image: the code is simpler and we use less memory
15449         (both writable and readonly).
15451 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15453         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
15454         API to alloc runtime data structures that need to be tracked by the
15455         GC and contain pointers.
15456         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
15457         make the code more readable and eventually use a different GC.
15459 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
15461         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
15462         for out arguments.
15463         
15464 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
15466         * object.c: In release_type_locks(), don't release the cctor lock
15467         if it has already been released. This fixes a crash in the
15468         thread5 test.
15470 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15472         * gc.c, marshal.c, icall.c: register a delegate for finalization
15473         only when the native function pointer has been allocated for it.
15475 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15477         * object.c: cleaned up some code, allocate objects that are
15478         pointer free with the atomic malloc variant. Allocate memory
15479         for static data from the mempool if it's pointer-free.
15480         Allocate the bounds array at the end of the array data, when needed.
15481         * object-internals.h, object.h: move a private function in a private
15482         header.
15483         * class.c: handle missing case in tracking references in fields.
15485 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15487         * class.c, class-internals.h: keep track if a type has
15488         reference fields in either the instance or static fields.
15490 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
15492         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
15493         and renamed to MonoRuntimeInfo. Added fields to store the expected
15494         framework assembly version. Changed mono_get_framework_version and
15495         mono_get_runtime_version for a single mono_get_runtime_info method.
15496         
15497         * assembly.c: Added method to remap system assembly versions to the
15498         current executing runtime version. Removed old mapping code.
15499         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
15500         
15501         * icall.c, reflection.c: Track api changes.
15503 2005-02-06  Miguel de Icaza  <miguel@novell.com>
15505         * loader.c (method_from_memberref): Improve error reporting,
15506         produce the class name instead of the typeref/typedef index. 
15508 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
15510         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
15512 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15514         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
15515         stdcall and charset name mangling.  Reorganize the code and add
15516         some tracing stuff.
15518 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15520         * monodiet.c: More iters!
15522         * marshal.c: Iter usage.
15524         * icall.c: Iter usage.
15526         * object.c: Use iters.
15528         * debug-helpers.c: More iters
15530 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15532         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
15533         under win32.
15535 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15537         * mono-debug-debugger.c: use iters
15539         * class.c, class-internals.h: mono_class_setup_events is static
15540         now
15542         * All callers: use iters
15544 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15546         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
15547         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
15549 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15551         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
15553         * marshal.h: Add prototypes for ldfld/stfld_remote.
15555         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
15556         this is called during startup.
15557         
15558 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
15560         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
15561         MonoThreadsSync struct private in monitor.c. Changed the way
15562         MonoThreadsSync is allocated so it's faster and there is no
15563         need to keep track of it with a finalizer and it uses less memory.
15564         This also finally allows us to allocate mono objects as ptrfree when
15565         there are no reference fields.
15567 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
15569         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
15570         disappearing link to the GC interface and use them to simplify
15571         the gchandles code.
15573 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15575         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
15576         stfld_remote which call mono_load/store_field_new. This allows methods
15577         calling ldfld/stfld wrappers to be AOTed.
15579         * console-io.c: Include sys/filio.h under solaris.
15580         
15581         * console-io.c: Include curses.h if needed correctly.
15583 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15584         
15585         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
15586         method->klass as well.
15588         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
15590         * class.c (mono_class_init): Switch on lazy initialization of 
15591         methods.
15593         * class.c (mono_class_get_finalizer): Handle the case when the 
15594         finalizer is inherited.
15596 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15598         * console-io.c: <curses.h> is needed by term.h on solaris.
15600 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
15602         * icall.c, class-internals.h, monodiet.c, class.c: Remove
15603         mono_class_setup_properties where possible. Remove this ftn from
15604         the header file, and make it static.
15606 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15608         * loader.c: Add missing setup_... call.
15610         * class.c: Add missing setup_... calls.
15612         * class.c (mono_class_init): Switch on lazy initialization of 
15613         the generic vtable.
15614         
15615         * class.c (mono_class_init): Fix generics broken by the recent changes.
15617         * monodiet.c (handle_type): Add missing setup_... calls.
15619         * class.c: Back out garbage in previous patch.
15620         
15621         * class.c: Add missing setup_... calls.
15623         * class.c (mono_class_get_method_from_name_flags): Avoid calling
15624         mono_class_setup_methods () if possible.
15626         * class-internals.h (MonoClass): Add 'has_cctor' flag.
15628         * class-internals.h (MonoCachedClassInfo): New structure.
15630         * class.c: Initialize properties and events fields of MonoClass lazily.
15632         * class.c: Add infrastructure for lazily initializing the methods and
15633         vtable fields of MonoClass. Not yet used.
15635         * class.c (mono_class_get_finalizer): New helper function.
15637         * class.c: Add infrastructure for loading some class related data from
15638         an AOT file.
15640         * object.c: Add infrastructure for initializing the vtable from data
15641         in the AOT file.
15643         * gc.c (run_finalize): Use mono_class_get_finalizer ().
15645         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
15646         appropriate initialization function before accessing parts of the
15647         MonoClass structure.
15649         * marshal.c: Fix warnings.
15650         
15651         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
15653         * mono-debug-debugger.c (get_exception_message): Use 
15654         mono_class_get_method_from_name_flags ().
15656 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
15658         * reflection.c, appdomain.c: Replace a few manual searches that
15659         Zoltan missed. (Paolo approved this part of my initial patch).
15661 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
15663         * profiler.c: disable recording statistical events at report time.
15665 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15667         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
15668         to byteswap arrays of enum values, too (bug #72080).
15670 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15672         * appdomain.c (set_domain_search_path): Allow this to be called if
15673         domain->setup is not yet set.
15675         * loader.c (mono_method_get_index): New helper function.
15677         * loader.c reflection.c: Use mono_method_get_index ().
15679         * class.c (mono_class_get_method_from_name_flags): New helper method.
15681         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
15682         this.
15684         * class.c (mono_class_get_cctor): New helper method.
15686         * string-icalls.c object.c class.c marshal.c reflection.c: Use
15687         mono_class_get_method () to look up methods.
15689 2005-02-01  Miguel de Icaza  <miguel@novell.com>
15691         * console-io.c: Fix the build, this should work on Windows.
15693 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
15695         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
15696         be set to null to keep things valid
15698 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15700         * icall.c: added Console 2.0 icalls.
15701         * Makefile.am: added console-io.[ch]
15702         * console-io.[ch]: internal calls for Console 2.0 API.
15704 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15706         * class.c: make sure we consider all the interfaces
15707         when calculating max_interface_id (bug found by
15708         Jeroen Frijters running ikvm).
15710 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15712         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
15713         valuetype fields to null.
15715         * object.c (set_value): Ditto. Fixes #71669.    
15717 2005-01-31  Martin Baulig  <martin@ximian.com>
15719         * metadata.c (mono_metadata_has_generic_params): New public
15720         function; checks whether something is a generic method.
15722 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15724         * appdomain.c: fix infinite recursion when adding assemblies.
15726 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
15728         * object.c: Fix small typo to return all items for Environment.
15729         GetCommandLineArgs.
15731 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15733         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
15734         reflection.c: more domain and assembly-unload related fixes
15735         and memory leaks plugs.
15737 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15739         * 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.
15741 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15743         * loader.c (mono_method_signature): Make this method lazy
15744         (mono_get_method_from_token): Don't computate the signature here.
15746         Doing this saves quite a bit of memory. I got 90 kb on starting up
15747         monodoc. It should also save some disk reads on startup.
15749         * *: MonoMethod->signature might be NULL now. You *MUST* use
15750         mono_method_signature.
15752 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
15754         * object.c (mono_runtime_get_main_args): Return an array from the
15755         current domain here. Fixes #71938.
15757 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
15759         * monitor.c: formatting changes to comply with the
15760         mono coding style and remove #ifdefs from the code.
15762 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15764         * metadata.c, private.h: remove some unneeded data
15765         and use a more compact representation for table schemas.
15767 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
15769         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
15770         to get a better distribution in hash tables.
15771         * *.c: use mono_aligned_addr_hash() where appropriate.
15772         * assembly.c: make var static.
15774 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15776         * domain-internals.h: Put MonoJitInfo on a diet.
15778         * domain.c: Fix a warning.
15780 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15782         * gc.c: rework the gc handles code to reuse handles
15783         when freed.
15785 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15787         * domain.c: fixed long standing bug in mono_string_equal() which
15788         was brought to light with the ldstr changes.
15790 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
15792         * reflection.c: Remove warning by adding missing include for marshal.h
15794 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15796         * domain.c, object.c: change the ldstr_table to hold
15797         MonoString* as keys: makes the runtime isinterned lookup
15798         faster and simplifies memory management.
15800 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
15802         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
15803         possible to add imperative security checks before calling the icall.
15804         * reflection.c: Return security attributes on the original MonoMethod
15805         (and not the wrapped one). This fix permissions on icalls.
15807 2005-01-25  Dick Porter  <dick@ximian.com>
15809         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
15810         the check for mktime() support actually test the mktime() return
15811         value.  "Fixes" bug 71682, though the output is still different to
15812         MS.
15814 2005-01-25  Martin Baulig  <martin@ximian.com>
15816         * class.c (mono_class_is_assignable_from): Make this work for
15817         generic instances.
15819 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
15821         * marshal.c (mono_string_utf8_to_builder)
15822         (mono_string_builder_to_utf16): We might not have ownership of the
15823         string. In thise case, we need to create a new buffer.
15825         * object-internals.h (mono_stringbuilder_capacity): sb->str might
15826         be null, in which case, use the default capacity.
15828 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15830         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
15831         GC events to the profiler.
15833 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15835         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
15836         if you don't want the GC to run.
15838 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
15840         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
15841         start providing a GC API and keeping different implementations in
15842         their own file.
15843         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
15845 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
15847         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
15848         mmap rather than allocating a huge buffer.
15849         (mono_debug_close_mono_symbol_file): Free the buffer allocated
15850         above.
15852 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
15854         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
15855         and CheckExecutionRights.
15856         * reflection.c|h: Keep the index of the declarative security to be 
15857         used, instead of the pointer, when AOT compiler is used. Also add 
15858         class initialization when requesting demands.
15859         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
15860         CheckExecutionRights. Both properties are now FALSE by default, and
15861         unmodifiable, unless the --security option is used.
15863 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15865         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
15866         reflection.c: properly refcount images and assemblies, many leaks fixed.
15868 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15870         * threadpool.c: increase the timeout for threads in the thread pool to
15871         10s.  Fixes bug #67159.
15873 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
15875         * class-internals.h: Sun's compiler insists on explicit
15876         signed on bit fields to handle then correctly.
15878 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15880         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
15881         Make the size of the array fit only the number of invalid path
15882         chars that we have.
15884         * class.c (_mono_class_get): Improve the error reporting when a
15885         class referenced is not found, to assist debugging. 
15887 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
15889         * threads.c: fix off-by-one error.
15890         * domain.c: free data allocated in the domain.
15892 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15894         * reflection.c (mono_method_body_get_object): Fill out exception info
15895         as well.
15897         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
15898         structure.
15899         
15900 2005-01-19  Martin Baulig  <martin@ximian.com>
15902         * loader.c (mono_get_method_constrained): Make this work again.
15904 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15906         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
15907         guint16 to match the managed side.
15909         * reflection.c (mono_reflection_body_get_object): Fill out local
15910         variables array.
15912         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
15913         as well.
15915         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
15916         'local_var_sig_token'.
15918 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
15920         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
15921         System.Drawing.
15923         * reflection.c (mono_method_body_get_object): Handle abstract and
15924         runtime methods.
15926 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
15928         * marshal.c, loader.c, class-internals.h, reflection.c:
15929         store the emthod data for a wrapper in an array instead of a list.
15931 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
15933         * marshal.c: change the code to allocate memory more
15934         conservatively for method wrappers.
15936 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
15938         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
15939         fields from MonoClass to the marshal info structure where they belong.
15941 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15943         * class.c, object.c, class-internals.h, marshal.c: rearrange
15944         some fields and tweak some types to lower memory usage.
15946 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
15948         * threads.c (signal_thread_state_change): Handle the case when the
15949         target thread is the current thread.
15951         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
15953         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
15954         emit_ptr_to_object_conv. 
15956         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
15957         marshalling. Fixes #71352.
15959 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15961         * metadata.h, blob.h: move table enum to blob.h so it can be included
15962         in any header.
15963         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
15964         cut the size of MonoImage/MonoDynamicImage.
15966 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
15968         * profiler.c (mono_profiler_install_simple): Fix default arguments.
15970 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
15972         * reflection.c, reflection.h, icall.c: add a function to check
15973         if an attribute type is defined for a metadata object.
15975 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
15977         * object-internals.h: Added some needed fields from StringBuilder class.
15978         * marshal.c: Set the maxCapacity when creating a StringBuilder.
15980 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
15982         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
15983         threads before shutting down the runtime.
15985         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
15987 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15989         * object-internal.h, threads.c: implement stacksize and 
15990         parameterized thread start functionality (requires
15991         matching corlib). Marked broken code for later removal.
15993 2005-01-12  Martin Baulig  <martin@ximian.com>
15995         * class-internals.h (MonoGenericClass): Moved the `initialized'
15996         flag to MonoDynamicGenericClass, removed `init_pending'.
15997         (MonoGenericInst): Added `is_reference' flag.
15999 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
16001         * reflection.c (mono_image_create_pefile): Only set the pe_offset
16002         inside the MSDOS header. Fixes #71201.
16004         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
16005         gc thread.
16006         (mono_domain_finalize): Ditto.
16008 2005-01-12  Martin Baulig  <martin@ximian.com>
16010         * class.c (mono_get_shared_generic_class): Use the cache for
16011         non-dynamic generic classes.
16013         * class-internals.h (mono_class_create_generic_2): Removed
16014         function prototype, this function is now static inside class.c.
16016         * class.c (mono_class_create_generic_2): Made this static, only
16017         call it from mono_class_init() and mono_class_setup_parent().
16018         (collect_implemented_interfaces_aux): Call mono_class_init() on
16019         the interfaces we collect.
16020         (mono_class_setup_vtable): Call mono_class_init (class->parent).
16022 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
16024         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
16025         it a real thread handle.
16027         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
16028         MonoJitExceptionInfo, since each catch clause needs its own variable.
16029         
16030 2005-01-11  Dick Porter  <dick@ximian.com>
16032         * image.c (mono_pe_file_open): New variant on mono_image_open()
16033         that does not set up the CLI metadata; used for FileVersionInfo so
16034         it can get the data for windows binaries too.
16035         
16036         * process.c (process_read_string_block): Don't read off the end of
16037         the StringTable block.
16039         These both fix bug 70766.
16041 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
16043         * gc.c: set some fields to NULL at GC cleanup time.
16044         * threads.c: if we quit the main thread, call exit ().
16046 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
16048         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
16050 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
16052         * threads.h, threads.c, object.c: added accessor and settor for
16053         main_thread. Handle it specially when exiting from it: wait
16054         for other foreground threads to exit.
16056 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
16058         * process.c, verify.c: remove some bloat.
16060 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
16062         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
16063         the calling convention to cdecl under win32.
16065 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
16067         * object.c (mono_object_get_size): New function to get the size of
16068         an object instance.
16070         * profiler.c (simple_allocation): Use above.
16072 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
16074         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
16075         ves_icall_System_AppDomain_getRootDomain (as it's not required to
16076         get an appdomain by it's id and we can't assume the root's id is 0).
16077         * domain-internals.h: Change the function prototype to match.
16078         * icall.c: Change the icall table for AppDomain.
16080 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
16082         * locales.c (string_invariant_compare_char): Only compute
16083         GUnicodeTypes in the case where we need them.  Test for ordinality
16084         first and return if so.
16086         From the commit:
16088                 /*
16089                  * FIXME: here we must use the information from c1type and c2type
16090                  * to find out the proper collation, even on the InvariantCulture, the
16091                  * sorting is not done by computing the unicode values, but their
16092                  * actual sort order.
16093                  */
16095 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
16097         * loader.c: for P/Invoke methods, allow the "Internal" shared
16098         library name to refer to the calling process symbol namespace.
16100 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
16102         * Makefile.am: Add the security manager to the build.
16103         * security-manager.c|h: New. Initialization of the security manager.
16105 2005-01-07  Dick Porter  <dick@ximian.com>
16107         * threads.c: 
16108         * monitor.c: Update thread state during Monitor and WaitHandle
16109         waits.  Fixes bug 71031.
16111 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
16113         * reflection.c (property_encode_signature): Correctly handle when the
16114         property has no methods.
16116 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
16118         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
16119         
16120         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
16121         fields from mb, not rmb. Fixes #71017.
16123         * marshal.c (emit_ptr_to_str_conv): Add support for 
16124         ByValTStr -> string conversion. Fixes #71015.
16126         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
16128         * mempool.c (mono_mempool_contains_addr): New helper function.
16130 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16132         * metadata.c (mono_metadata_compute_size): Fix size calculation of
16133         HasSematics encoded fields.
16134         
16135         * metadata.c (mono_type_to_unmanaged): Improve error message for 
16136         invalid string marshalling.
16138         * metadata.c: Fix warnings.
16139         
16140 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
16142         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
16143         profiler support.
16145 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16147         * domain.c object.c domain-internals.h: Revert part of r38077 since the
16148         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
16149         tests.
16151 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
16153         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
16154         so methods containing these can be AOTed.
16156 2005-01-03  Martin Baulig  <martin@ximian.com>
16158         * loader.c (find_method): Removed the hack for generic instances.
16159         (method_from_memberref): If our parent is a generic instance, pass
16160         its generic type definition to find_method() and then inflate the
16161         method.
16162         (mono_get_method_constrained): Pass the generic type definition to
16163         find_method() and inflate the method later.
16165         * class-internals.h (MonoStats): Added `generic_class_count'.
16167         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
16168         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
16170         * reflection.c (mono_custom_attrs_from_params): Don't ignore
16171         generic type definitions.
16173 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
16175         * loader.c icall.c: Fix warnings.
16177 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
16179         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
16180         blittable types. Fixes #70864.
16182 2004-12-29  Martin Baulig  <martin@ximian.com>
16184         * icall.c
16185         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
16187         * reflection.c (mono_method_get_object): Create a
16188         "System.Reflection.MonoGenericMethod" for inflated methods; don't
16189         call mono_get_inflated_method().
16191         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
16193 2004-12-27  Martin Baulig  <martin@ximian.com>
16195         * class-internals.h (MonoMethod): Added `is_inflated' flag.
16196         (MonoMethodInflated): Added `inflated' field.
16198         * class.c (mono_class_inflate_generic_method): Don't really
16199         inflate the method here; just set the `is_inflated' flag in the
16200         MonoMethod.
16201         (mono_class_get_inflated_method): Actually inflate the method here
16202         if it's not already inflated; we use the MonoMethodInflated's new
16203         `inflated' field as a cache.
16205 2004-12-26  Martin Baulig  <martin@ximian.com>
16207         * class.c
16208         (inflate_generic_class): Moved some code out of inflate_generic_type().
16209         (mono_class_inflate_generic_method): If we're already inflated,
16210         inflate the context and use the declaring method; ie. make sure
16211         the declaring method of an inflated method is always the generic
16212         method definition.
16213         (mono_class_create_from_typedef): Create
16214         `class->generic_container->context->gclass'.
16216 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
16218         * metadata-internals.h, marshal.c, reflection.c: More
16219         MonoGHashTable->GHashTable.
16221         * domain-internals.h, class.c: Change MonoGHashTable's into
16222         GHashTables for some cases where no gc stuff is used
16224         All users: update apis
16226 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
16228         * metadata.c (builtin_types): Make this `const'. Makes this get
16229         put into the shareable section.
16230         (mono_metadata_init): Casts to make gcc happy.
16232 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
16234         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
16236 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
16238         * icall.c: Added an internal call to retrieve the position and length
16239         of assembly-level declarative security attributes (RequestMinimum, 
16240         RequestOptional and RequestRefuse). This is used by the Assembly class
16241         to re-create the corresponding permission sets.
16243 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
16245         * marshal.c: fix the stelemref wrapper to be type correct
16246         (and faster).
16248 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
16250         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
16251         to do key & 0x7fffffff. Hashtable already does this. It just
16252         results in longer code.
16254 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
16256         * appdomain.c: Bump corlib version.
16257         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
16258         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
16259         * reflection.c|h: Add functions to get declarative security infos
16260         (blob position and length) for assemblies, classes and methods.
16262 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
16264         * reflection.c: sort the constant table (bug #70693).
16266 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
16268         * object-internals.h, threads.c, domain.c: add accessors for
16269         the MonoThread and MonoDomain tls keys.
16271 2004-12-18  Martin Baulig  <martin@ximian.com>
16273         * class.c (inflate_generic_type): If we're inflating a generic
16274         instance, set `ngclass->context->container = context->container';
16275         ie. the container we inflated into.
16277         * metadata.c (mono_metadata_parse_generic_param): Reflect above
16278         inflate_generic_type() changes.
16280 2004-12-17  Martin Baulig  <martin@ximian.com>
16282         * class-internals.h
16283         (MonoGenericClass): Replaced `MonoType *generic_type' with
16284         `MonoClass *generic_class'.  Removed `dynamic_info'; if
16285         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
16286         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
16288 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
16290         * exception.c (mono_exception_from_token): New helper function.
16292 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
16294         * assembly.c (mono_assembly_load_with_partial_name): Call 
16295         mono_assembly_loaded before invoking the preload hooks. Fixes
16296         #70564.
16298         * object-internals.h (MonoThread): Change culture_info and 
16299         ui_culture_info into an array.
16301         * threads.c: Cache culture info objects from more than one appdomain.
16303         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
16304         current UI culture.
16306 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
16308         * threads.h threads.c appdomain.c: Clear the culture_info field of
16309         all threads during unloading if they point to an object in the dying
16310         appdomain.
16312 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
16314         * culture-info.h (TextInfoEntry): New struct
16315         * object-internals.h: sync with managed
16316         * locales.c: fill the `text_info_data' field
16317         * culture-info-tables.h: update
16319 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
16321         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
16322         collector.
16324 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
16326         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
16327         (ves_icall_ModuleBuilder_getMethodToken): Ditto
16329 2004-12-12  Martin Baulig  <martin@ximian.com>
16331         * mono-debug-debugger.c (write_type): If we're an enum and the
16332         builtin types have already been initialized, call mono_class_init().
16334 2004-12-11  Martin Baulig  <martin@ximian.com>
16336         * metadata.c (mono_metadata_load_generic_params): Added
16337         `MonoGenericContainer *parent_container' argument; automatically
16338         compute `container->is_method'; pass the correct owner to
16339         get_constraints().      
16341         * reflection.c (compare_genericparam): Sort the GenericParam table
16342         according to increasing owners. 
16344 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
16346         * profiler.c: allow disabling the default profiler.
16348 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
16350         * decimal.c, icall.c: allow disabling System.Decimal support.
16352 2004-12-09  Marek Safar <marek.safar@seznam.cz>
16354         * reflection.c: Add support for null attribute arguments.
16356 2004-12-09  Martin Baulig  <martin@ximian.com>
16358         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
16359         names to get rid of compiler warnings.
16361 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16363         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
16364         mono_marshal_load_type_info (). Fixes #69625.
16365         (mono_marshal_get_ptr_to_struct): Likewise.
16367 2004-12-08  Martin Baulig  <martin@ximian.com>
16369         * mono-debug.h: Bumped version number to 47.
16371         * mono-debug-debugger.c
16372         (mono_debugger_event_handler, mono_debugger_event): Take two
16373         guint64 arguments insteed of a gpointer and a guint32.  
16375 2004-12-08  Martin Baulig  <martin@ximian.com>
16377         * debug-mono-symfile.h
16378         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
16379         `address' to `native_offset'.
16381 2004-12-08  Martin Baulig  <martin@ximian.com>
16383         * class.c (mono_class_create_from_typespec): Only inflate if we
16384         either have `context->gclass' or `context->gmethod'.
16386 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16388         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
16390         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
16392         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
16394         * reflection.c (mono_assembly_get_object): Remove the workaround put
16395         in for the release.
16396         
16397         * appdomain.c: Use the corlib_internal field from MonoAssembly.
16399         * appdomain.c: Bump corlib version.
16401         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
16402         be visible in other appdomains.
16404 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
16406         * threads.c: Interlocked inc and dec for longs were messed up,
16407         use a KISS based impl for this. Fixes 70234
16409 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
16411         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
16413 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16415         * icall.c: fix to follow policy not to allow struct
16416         arguments in icalls.
16418 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16420         * process.c: make the patch that handles spaces in file paths work
16421         on mono/windows too.
16423 2004-12-06  Martin Baulig  <martin@ximian.com>
16425         * class.c (mono_class_create_generic): Call
16426         mono_class_setup_supertypes() if we're dynamic.
16427         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
16429 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
16431         * object-internals.h: Add new fields to MonoThread.
16433         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16435         * icall.c threads-types.h threads.c: Add new icalls.
16437         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
16439         * object-internals.h (MonoReflectionAssembly): Sync object layout with
16440         managed side.
16442         * appdomain.c: Bump corlib version.
16444         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
16445         internal assemblies. Fixes #69181.
16447 2004-12-05  Martin Baulig  <martin@ximian.com>
16449         * class.c (mono_class_inflate_generic_signature): Make this a
16450         no-op if `context' is NULL or we don't have any type parameters;
16451         also copy `sentinelpos'.        
16453 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
16455         * image.c: Add unbox_wrapper_cache.
16457         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
16459         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
16460         function generator.
16461         
16462         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
16463         Fixes #70173.
16465         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
16466         
16467 2004-12-04  Martin Baulig  <martin@ximian.com>
16469         * loader.c (mono_method_get_signature_full): New public function;
16470         like mono_method_get_signature(), but with an additional
16471         `MonoGenericContext *' argument.
16473         * class.c (mono_class_inflate_generic_signature): Formerly known
16474         as inflate_generic_signature(); make this public.
16476 2004-12-04  Martin Baulig  <martin@ximian.com>
16478         * metadata.c
16479         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
16480         instead of a `MonoGenericContainer *'.  
16481         (mono_metadata_parse_array_full): Likewise.
16482         (mono_metadata_parse_signature_full): Likewise.
16483         (mono_metadata_parse_method_signature_full): Likewise.
16484         (mono_metadata_parse_generic_inst): Likewise.
16485         (mono_metadata_parse_generic_param): Likewise.
16486         (mono_metadata_parse_mh_full): Likewise.
16487         (mono_type_create_from_typespec_full): Likewise.
16489 2004-12-03  Martin Baulig  <martin@ximian.com>
16491         * class-internals.h (MonoGenericContainer): Replaced the
16492         `MonoGenericContext * pointer with a `MonoGenericContext'
16493         structure and made it the first element.
16495 2004-12-03  Martin Baulig  <martin@ximian.com>
16497         * class.c
16498         (inflate_generic_type): Set the `context->container' when creating
16499         a new MonoGenericContext.
16500         (mono_class_inflate_generic_method): Likewise.
16501         (mono_class_create_from_typespec): Just use `context->container'
16502         to get the container.
16504         * loader.c (method_from_methodspec): Set `context->parent' from
16505         `context->container' - and if that's a method container, use its
16506         parent.  Also set the `context->container' when creating a new
16507         MonoGenericContext.
16508         (mono_get_method_from_token): Use just `context->container' to get
16509         the container.
16511         * metadata.c (do_mono_metadata_parse_generic_class): Also set
16512         `gclass->context->container'.
16514         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
16515         the `context->container' when creating a new MonoGenericContext.
16517 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
16519         * reflection.c (compare_genericparam): Sort params with identical
16520         owner by their number. Fixes gen-111 on sparc.
16522 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16524         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
16525         around the domain changes.
16527         * appdomain.c (mono_domain_unload): Handle the case when the thread
16528         calling Unload is itself being aborted during unloading. Fixes #70022.
16530         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
16532         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
16533         checkpoint_func as an icall so it gets a wrapper.
16534         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
16535         in the cross-appdomain wrappers too.
16537         * threads.c (mono_thread_has_appdomain_ref): Make this public.
16539         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
16541         * reflection.c: Fix some memory leaks.
16542         
16543 2004-12-02  Martin Baulig  <martin@ximian.com>
16545         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
16547         * metadata.c (generic_class_cache): New static hashtable.
16548         (mono_metadata_lookup_generic_class): New public method.
16550 2004-12-02  Martin Baulig  <martin@ximian.com>
16552         * class.c (mono_class_create_from_typedef): Call
16553         mono_class_setup_parent() and mono_class_create_mono_type() before
16554         parsing the interfaces.
16556 2004-12-02  Martin Baulig  <martin@ximian.com>
16558         * metadata.c (generic_inst_cache): New static hashtable.
16559         (mono_metadata_lookup_generic_inst): New public function.
16560         (mono_metadata_inflate_generic_inst): New public function.
16561         (mono_metadata_parse_generic_inst): New public function.
16562         (do_mono_metadata_parse_generic_class): Use the new
16563         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
16564         since this'll also use the cache.
16566         * reflection.c (mono_reflection_bind_generic_method_parameters):
16567         Use mono_metadata_lookup_generic_inst() to use the new cache.
16569         * class.c (inflate_mono_type): Use
16570         mono_metadata_inflate_generic_inst() to inflate a generic
16571         instance; this'll also use the new cache.
16573         * loader.c (method_from_methodspec): Use
16574         mono_metadata_parse_generic_inst() and
16575         mono_metadata_inflate_generic_inst() rather than parsing it
16576         manually, so we can use the new cache.
16578 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16580         * threads.c (wait_for_tids): Do not incorrectly free threads when 
16581         the wait times out.
16583 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16585         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
16586         iter->args based on whether parameters are passed in registers (i.e.
16587         MONO_ARCH_REGPARMS is defined)
16589 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
16591         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
16592         the exception message. Fixes #70070.
16593         (method_from_methodspec): Fix warnings.
16595 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16597         * process.c: (complete_path) return the path quoted
16599 2004-12-01  Martin Baulig  <martin@ximian.com>
16601         * class-internals.h (MonoGenericInst): New structure.
16602         (MonoGenericClass): Replaced `type_argc', `type_argv' and
16603         `is_open' with `MonoGenericInst *inst'.
16604         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
16605         `is_open' with `MonoGenericInst *inst'.
16607 2004-11-30  Martin Baulig  <martin@ximian.com>
16609         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
16611         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
16612         to `generic_class_cache'.
16614         * metadata.c
16615         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
16616         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
16617         (mono_generic_inst_is_valuetype): Renamed to
16618         mono_generic_class_is_valuetype().
16620         * class-internals.h
16621         (MonoGenericInst): Renamed to MonoGenericClass.
16622         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
16623         (MonoClass): Renamed `generic_inst' to `generic_class'.
16624         (MonoGenericContext): Renamed `ginst' to `gclass'.
16626         * object-internals.h
16627         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
16629         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
16630         mono_reflection_generic_class_initialize().
16632         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
16633         now known as "System.Reflection.MonoGenericClass".
16634         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
16636 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
16638         * class-internals.h: Added a flag field to MonoClass to cache the
16639         declarative security attributes actions associated with the class.
16640         * domain-internals.h: Added booleans to MonoJitInfo to cache the
16641         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
16642         applicable to the JITted method.
16643         * reflection.c|h: Added functions to extract (as flags) which security
16644         actions are available (declaratively) for a method, class or assembly.
16645         * metadata.c|h: Added functions to search the declarative security
16646         table in the metadata.
16647         
16648 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
16650         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
16651         EXPORTEDTYPES are already in the class name cache, so there is no
16652         need to add extra code here to look at them. Just removes a bit of
16653         cruft.
16655         (ves_icall_System_Environment_get_TickCount): No need for #if
16656         WINDOWS. We already have the code in io-layer.
16658 2004-11-28  Martin Baulig  <martin@ximian.com>
16660         * loader.c
16661         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
16662         Fixes gen-112.cs.
16664 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
16666         * assembly.c (do_mono_assembly_open): Instead of having a
16667         conditional WITH_BUNDLE, incorporate support for bundles here, by
16668         having a global `bundles' variable holding a pointer to the actual
16669         bundles. 
16671         (mono_register_bundled_assemblies): New API call used by the
16672         bundle code. 
16674         See mkbundle.1 for details.
16675         
16676 2004-11-27  Martin Baulig  <martin@ximian.com>
16678         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
16679         the vtable for generic methods.
16681 2004-11-26  Martin Baulig  <martin@ximian.com>
16683         * metadata.c
16684         (mono_metadata_generic_method_hash): New public function.
16685         (mono_metadata_generic_method_equal): Likewise.
16687         * class-internals.h
16688         (MonoGenericContainer): Added `GHashTable *method_hash'.
16690         * reflection.c (ReflectionMethodBuilder): Added
16691         `MonoGenericContainer *generic_container'.
16692         (reflection_methodbuilder_to_mono_method): Don't create a new
16693         MonoGenericContainer each time we're called.
16694         (mono_reflection_bind_generic_method_parameters): Use
16695         `container->method_hash' to cache the results so we don't create a
16696         different method if we're called several times with the same
16697         arguments.
16699         * loader.c (method_from_methodspec): Use the new
16700         `container->method_hash' here, too.
16702 2004-11-26  Martin Baulig  <martin@ximian.com>
16704         * class.c (inflate_generic_signature): Correctly compute
16705         `res->has_type_parameters'.
16706         (mono_class_vtable): Use the `has_type_parameters' flag to
16707         determine whether we're a generic method.
16709         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
16711 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16713         * object.c (mono_runtime_run_main): Fix a small memory leak.
16715 2004-11-25  Martin Baulig  <martin@ximian.com>
16717         * class.c (set_generic_param_owner): Fixed the loop.
16719 2004-11-25  Martin Baulig  <martin@ximian.com>
16721         * object.c (mono_class_vtable): Don't create any JIT wrappers for
16722         generic methods.
16724 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16726         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
16727         names. Fixes #69787.
16729 2004-11-24  Martin Baulig  <martin@ximian.com>
16731         * class.c (mono_class_create_generic_2): If we don't have a
16732         `ginst->parent', inflate `gklass->parent' to get our parent.
16734 2004-11-24  Martin Baulig  <martin@ximian.com>
16736         * reflection.c (compare_genericparam): Correctly sort the
16737         GenericParam table; fixes #69779.
16739 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
16741         * reflection.c: When writing a PE file, don't create a huge
16742         buffer in memory. Just write the arrays we have to the file.
16743         This reduces memory usage.
16745         * metadata-internals.h: MonoDynamicStream pefile is no longer used
16746         globally.
16748 2004-11-17  Martin Baulig  <martin@ximian.com>
16750         * class.c (mono_class_init): Don't setup `class->parent' for
16751         dynamic instances; moved this to mono_class_generic_2().
16752         (mono_class_create_generic): Also set `klass->inited' for dynamic
16753         generic instances.
16754         (mono_class_create_generic_2): Don't do anything for dynamic
16755         generic instances.  Set `klass->parent' here and also call
16756         mono_class_setup_parent() here. 
16758         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
16759         `MonoType *parent' argument; set `ginst->parent' before calling
16760         mono_class_create_generic_2(), so we set the correct parent.
16762 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
16764         * reflection.c: allow getting attributes from ModuleBuilder
16765         (used by ikvm).
16767 2004-11-17  Martin Baulig  <martin@ximian.com>
16769         * class.c (mono_class_create_from_typedef): If a type parameter is
16770         inherited from an outer class, set its owner to that class.
16772 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
16774         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
16775           for (int*) written size. This fixes bug #69592.
16777 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
16779         * icall.c: Added IsAuthenticodePresnet internal call.
16780         * image.c|h: New function that check a MonoImage for an Authenticode
16781         signature in the certificate PE data directory.
16782         * security.c|h: New internal call to ask the runtime if an 
16783         Authenticode signature seems referenced in the PE header.
16785 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
16787         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
16789         * reflection.c (mono_image_create_pefile): Free the assembly streams
16790         after writing out the assembly file.
16792         * object.c (mono_runtime_run_main): Fix small memory leak.
16794         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
16795         property access modifiers. Fixes #69389.
16797 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
16799         * domain.c, object.c, object-internals.h, domain-internals.h,
16800         object.h, marshal.c: keep dynamic code info per domain.
16802 2004-11-15  Martin Baulig  <martin@ximian.com>
16804         * class.c (mono_type_get_name_recurse): Put type arguments in
16805         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
16806         see bug #68387.
16808 2004-11-15  Martin Baulig  <martin@ximian.com>
16810         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
16811         (mono_class_setup_vtable): When computing `the_cname' for a
16812         generic instance, don't include the namespace since we'd otherwise
16813         add it twice.
16815 2004-11-15  Martin Baulig  <martin@ximian.com>
16817         * class.c (mono_class_create_generic): Changed return type to void.
16818         (mono_class_create_generic_2): New public function; setup
16819         `class->method', `class->field' and `class->interfaces' here
16820         instead of in mono_class_init().
16822         * class.h (mono_class_create_generic): Moved to class-internals.h.
16824 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
16826         * reflection.c (mono_image_create_pefile): take a file HANDLE.
16827         rather than writing to memory, write to this file. Right now,
16828         we are just writting into a buffer, and copying that. However
16829         we can avoid the buffer later.
16831         (mono_dynamic_stream_reset): new function
16833         * icall.c, object-internals.h: update for the above.
16835 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
16837         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
16838         have been using gc'd memory. First it is slower, unlikely
16839         the comment in the source code said, secondly, it increases
16840         our footprint to do it in the gc.
16842         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
16843         the method so that it does not have to copy to managed code.
16845 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
16847         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
16849 2004-11-12  Martin Baulig  <martin@localhost>
16851         * reflection.c (mono_image_create_token): Allow generic method
16852         definitions here, since they may appear in an `.override'; see
16853         gen-98/gen-99 for an example.
16855 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
16857         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
16858         #69365.
16860         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
16861         descriptive.
16863 2004-11-11  Martin Baulig  <martin@ximian.com>
16865         * class.c (mono_class_setup_vtable): In an explicit interface
16866         implementation, the method name now includes the arity.
16868 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
16870         * object.c (mono_array_full_copy): Fix warning.
16872 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
16874         * appdomain.c: Removed look_for_method_by_name(). Use the new method
16875         mono_class_get_method_from_name() instead.
16876         
16877         * class-internals.h: Added two new types of wrappers. 
16878         Added MonoRemotingTarget enum. Added new trampoline function type, which
16879         takes an additional MonoRemotingTarget value as parameter, so it is
16880         possible to request a trampoline for a specific target.
16881         
16882         * class.c: Added new mono_class_get_method_from_name() method.
16883         
16884         * class.h: In MonoRemoteClass, we can have now to vtables, one for
16885         general remoting sinks and one specific for cross domain calls.
16886         
16887         * debug-helpers.c: Added new wrapper names.
16888         
16889         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
16890         of a remote class.
16891         
16892         * image.c: Porperly delete value objects form the remoting invoke hashtable.
16893         
16894         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
16895         with several other methods (mono_marshal_get_xappdomain_dispatch,
16896         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
16897         and others) can generate a fast remoting wrapper for cross domain calls.
16898         More information can be found in docs/remoting.
16899         Other changes: Removed mono_find_method_by_name, and used
16900         mono_class_get_method_from_name instead.
16901         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
16902         is stored in the remoting invoke hashtable.
16903         
16904         * marshal.h: published the new method for getting the xdomain wrapper,
16905         and also added a method for getting the adequate wrapper for a given
16906         method and target.
16907         
16908         * object-internals.h, object.c: Added a couple of methods for capying and
16909         cloning arrays.
16910         Modified mono_install_remoting_trampoline, which takes the new remoting
16911         trampoline that has a remoting target as parameter.
16912         mono_class_proxy_vtable now also takes a remoting target as parameter, and
16913         will return the most suitable vtable for the target.
16914         Added mono_remote_class_vtable, which returns the vtable of a remote class
16915         (which can be the normal remoting vtable or the xdomain vtable).
16916         
16917         * threads.c: the xdomain invoke and dispatch wrappers must also be
16918         protected against interruptions.
16920 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16922         * icall.c: use memmove in BlockCopyInternal when the source and
16923         destination arrays are the same.
16925 2004-11-09  Martin Baulig  <martin@ximian.com>
16927         * class-internals.h (MonoGenericContainer): Removed `method' and
16928         `signature', replaced them with `is_method' and `is_signature'
16929         flags.  Added `context'.
16931         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
16932         instead of a `MonoGenericContainer *'.
16934         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
16935         for dynamic type parameters.
16936         (mono_metadata_load_generic_params): Setup `container->context'.
16938         * reflection.c (mono_reflection_setup_generic_class): Setup
16939         `tb->generic_container->context'.
16940         (do_mono_reflection_bind_generic_parameters): Use
16941         mono_class_inflate_generic_type() to correctly inflate types,
16942         rather than using our own hack just for MONO_TYPE_VAR.
16944 2004-11-09  Martin Baulig  <martin@ximian.com>
16946         * class.c (mono_class_inflate_generic_method): Small fix; don't
16947         crash here.
16949         * icall.c
16950         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
16951         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
16952         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
16953         (ves_icall_Type_BindGenericParameters): Likewise.
16954         (ves_icall_Type_get_IsGenericInstance): Likewise.
16955         (ves_icall_Type_GetGenericParameterPosition): Likewise.
16956         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
16957         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16958         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
16960 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
16962         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
16963         assembly versions and public key tokens. Fixes #69113.
16965 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
16967         * metadata.c: fix bug introduced with the type cache changes
16968         on 2004-11-06.
16970 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
16972         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
16973         the MonoClass pointer instead of the token in exception clauses.
16974         * reflection.c: updates for the above and make the code not depend
16975         on the structure of MonoExceptionClause.
16977 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
16979         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16980         Add support for dynamic assemblies. Fixes #69114.
16982         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
16984 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
16986         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
16987         since most only those methods use it. the code member of
16988         MonoMethodPInvoke was dead, so that can be removed too. Also,
16989         remove inline_count (again, not used), and move slot so that it
16990         can share bits with some other flags. This saves 8 bytes in the
16991         structure and gives us about 50 kb back for mcs helloworld.cs
16993         * *.[ch]: Do naming changes for the above.
16995         * loader.c (mono_method_get_header): Lazily init the header
16996         on first access.
16997         (mono_get_method_from_token): don't init the header here
16998         (mono_free_method): the header may never be allocated
17000         Overall, this saves 150 kb of unmanaged allocations
17001         for mcs helloworld.cs. That accounts for 10% of the unmanaged
17002         memory at runtime.
17003         
17004         * loader.c, loader.h (mono_method_get_header): new accessor.
17006         * *.[ch]: use the above method. Prepares us to lazily load
17007         the header.
17009         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
17010         three warnings, which are actual bugs (see 69206).
17012         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
17013         unused. Saves a cool 4 bytes / method.
17015 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
17017         * metadata.c (builtin_types): Add types for System.Object here.
17018         (mono_metadata_parse_type_full): Cache MonoType*'s that are
17019         for a class or valuetype from klass->this_arg or klass->byval_arg.
17021         On mcs for a hello world, this gets us down from 21836 MonoType's
17022         to 14560.
17024         (mono_metadata_free_type): Account for the above change.
17026 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
17028         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
17029         exception instead of asserting if name is null.
17030         (ves_icall_System_AppDomain_GetData): Ditto.
17032 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
17034         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
17035         EnumBuilder.
17037         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
17038         Return NULL when the domain does not have entry_assembly set.
17040         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
17041         Add a 'resource_modules' argument.
17042         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
17044         * reflection.c (mono_reflection_create_runtime_class): Move setting
17045         of wastypebuilder here, so mono_get_type_object () returns a MonoType
17046         for enums too.
17048         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
17049         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
17050         Throw an ArgumentNullException if 'ptr' is null.
17052         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
17053         assemblies here. Fixes #69020.
17055 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
17057         * reflection.c (build_compressed_metadata): Fix the previous patch for
17058         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
17059         the stack.
17061 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
17063         * assembly.c (mono_assembly_names_equal): Allow a match if one of
17064         the cultures is false. Fixes #69090.
17066         * reflection.c (build_compressed_metadata): Fix invalid memory read 
17067         detected by valgrind.
17068         
17069         * reflection.c (mono_reflection_get_type): Avoid triggering a 
17070         TypeResolve multiple times for the same type. Fixes #65577.
17072 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
17074         * marshal.c: Avoid using ldftn to call managed functions. It is
17075         much slower than just a call.
17077         * reflection.c (mono_module_get_object): free the basename we
17078         allocate here from glib.
17079         
17080         * reflection.c (ensure_runtime_vtable): make sure to free
17081         overrides.  Also, we were allocating an array of MonoMethod not an
17082         array of MonoMethod*.
17084         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
17086         * image.c (mono_image_close): free image->guid here.
17088 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
17090         * reflection.c: Fix some spec conformance issues with the PE file
17091         structures so mcs compiled apps run on the Net 2.0 beta.
17093 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
17095         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
17096         Implement this. Fixes #67264.
17098         * debug-helpers.h debug-helpers.c marshal.c: Move 
17099         mono_find_method_by_name to debug-helpers.c.
17101 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
17103         * object.c (mono_release_type_locks): type_initialization_hash is
17104         a GHashTable.
17106         * reflection.c object.c object-internals.h: Fix warnings.
17108         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
17109         without accessors. Fixes #61561.
17111         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
17112         application base from the root domain if not set. Fixes #65641.
17113         (mono_runtime_init): Fix warning.
17115 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17117         * appdomain.c: call mono_thread_pool_init.
17118         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
17119         of worker threads based on the number of CPUs and the environment
17120         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
17121         for non-windows (windows) systems.
17123 2004-10-27  Chris Toshok  <toshok@ximian.com>
17125         * mono-debug-debugger.c (write_class): don't call mono_class_init
17126         here, as even with the check for (!klass->init_pending), we get
17127         into a situation where we're hitting cycles in class
17128         initialization.  Fixes #68816.
17130 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
17132         * image.c: Avoid overwriting values in the loaded_images_hash when an
17133         assembly is loaded multiple times. Fixes #61152.
17135         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
17136         so multiple satellite assemblies for the same name can be loaded.
17137         Fixes #68259.
17139         * mono_domain_assembly_preload: Actually return the loaded assembly, 
17140         not NULL.
17142         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
17143         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
17145         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
17146         pending finalizers are not invoked after the appdomain has been 
17147         unloaded. Fixes #67862.
17149 2004-10-22  Martin Baulig  <martin@ximian.com>
17151         * mono-debug-debugger.c
17152         (mono_debugger_runtime_invoke): Don't box valuetypes.
17154 2004-10-22  Chris Toshok  <toshok@ximian.com>
17156         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
17157         don't hide private methods.
17159 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
17161         * icall.c: Allows the runtime to "share" (when known) the public key
17162         token of an assembly. This avoid the need to recalculate the token 
17163         (from the public key) in managed code.
17165 2004-10-21  Chris Toshok  <toshok@ximian.com>
17167         * debug-helpers.c (append_class_name): argh, revert last patch.
17168         
17169 2004-10-21  Chris Toshok  <toshok@ximian.com>
17171         * debug-helpers.c (append_class_name): use '+' as the delimiter,
17172         not '/', so that it matches what the debugger uses to look up
17173         methods.
17175 2004-10-21  Martin Baulig  <martin@ximian.com>
17177         * mono-debug-debugger.c (mono_debugger_throw_exception): New
17178         public method; this is called each time an exception is thrown and
17179         allows the debugger to use exception catch points.
17181 2004-10-21  Martin Baulig  <martin@ximian.com>
17183         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
17184         the stack pointer and the exception object in some struct and pass
17185         that to the debugger.
17187 2004-10-21  Chris Toshok  <toshok@ximian.com>
17189         * mono-debug-debugger.c (do_write_class): add instance/static
17190         event support.  We don't expose "raise" or "other" yet.
17191         (event_is_static): new method.
17193 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
17195         * mono-debug-debugger.c
17196         (mono_debugger_handle_exception): Remove
17197         bogus return value for fussy compilers.
17199 2004-10-20  Martin Baulig  <martin@ximian.com>
17201         * mono-debug-debugger.c
17202         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
17203         (mono_debugger_handled_exception): Likewise.
17205 2004-10-20  Martin Baulig  <martin@ximian.com>
17207         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17208         MONO_DEBUGGER_EVENT_EXCEPTION.
17210         * mono-debug-debugger.c (mono_debugger_handle_exception): New
17211         public function to send the debugger a notification for an
17212         exception and inform it about a catch/finally clause.
17214 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
17216         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
17217         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
17218         fix 2.95 build. 
17220         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
17222 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
17224         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
17225         marshalled as [In,Out]. Fixes #58325.
17227 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
17229         * reflection.c (mono_method_body_get_object): Implement some fields.
17231 2004-10-12  Martin Baulig  <martin@ximian.com>
17233         * reflection.c (mono_reflection_bind_generic_parameters): Small
17234         fix, correctly retrieve our parent from a generic instance.
17236 2004-10-12  Martin Baulig  <martin@ximian.com>
17238         * metadata.c (mono_metadata_generic_param_equal): We always have
17239         an owner.
17241         * class.c
17242         (mono_class_from_generic_parameter): We need to have an owner.
17243         (my_mono_class_from_generic_parameter): Likewise.
17245         * reflection.c (mono_reflection_setup_generic_class): Renamed to
17246         mono_reflection_create_generic_class() and added a new
17247         mono_reflection_setup_generic_class().  
17248         (mono_reflection_initialize_generic_param): If we're a nested
17249         generic type and inherited from the containing class, set our
17250         owner to the outer class.
17252 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
17254         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
17256         * reflection.c (mono_method_body_get_object): New function to create
17257         a MethodBody object.
17259         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
17261 2004-10-11  Martin Baulig  <martin@ximian.com>
17263         * metadata.c (_mono_metadata_type_equal): Renamed to
17264         do_mono_metadata_type_equal() and made static.
17266 2004-10-11  Martin Baulig  <martin@ximian.com>
17268         * appdomain.c: Bump corlib version number to 28.
17270 2004-10-10  Martin Baulig  <martin@ximian.com>
17272         * class-internals.h
17273         (MonoGenericInst): Added `MonoGenericContainer *container'.
17274         (MonoGenericMethod): Likewise.
17275         (MonoGenericContext): Likewise.
17276         (MonoGenericParam): Added `MonoGenericContainer *owner'.
17278         * metadata.c
17279         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
17280         (do_mono_metadata_parse_generic_inst): Likewise.
17281         (mono_metadata_parse_type_full): New public method.  This is the actual
17282         mono_metadata_parse_type() implementation - with an additional
17283         `MonoGenericContainer *' argument.
17284         (mono_metadata_parse_array_full): Likewise.
17285         (mono_metadata_parse_signature_full): Likewise.
17286         (mono_metadata_parse_method_signature_full): Likewise.
17287         (mono_metadata_parse_mh_full): Likewise.
17288         (mono_type_create_from_typespec): Likewise.
17289         (mono_metadata_interfaces_from_typedef_full): New public method;
17290         this is similar to the other _full() methods, but we take a
17291         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
17292         (mono_metadata_parse_generic_param): Take an additional
17293         `MonoGenericContainer *' argument and lookup the MonoGenericParam
17294         from that container.
17295         (mono_metadata_generic_param_equal): New static method to compare
17296         two type parameters.
17297         (_mono_metadata_type_equal): New static method; takes an
17298         additional `gboolean signature_only' argument - if true, we don't
17299         compare the owners of generic parameters.
17300         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
17301         with a TRUE argument - do a signature-only comparision.
17303         * loader.c: Use the new _full() methods and pass the
17304         MonoGenericContainer to them.
17306         * object-internals.h (MonoReflectionTypeBuilder): Added
17307         `MonoGenericContainer *generic_container' field.
17308         (MonoReflectionMethodBuilder): Likewise.
17310 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
17312         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
17313         case initial images of dynamic assemblies.
17315         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
17317         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
17319         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
17320         length of event->other array.
17321         (typebuilder_setup_events): Ditto.
17323         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
17324         'assembly_by_name' and add an 'assemblies' list.
17326         * assembly.h assembly.c: Add a new search hook for determining whenever
17327         an assembly is already loaded. Use this instead of searching in the
17328         loaded_assemblies list.
17330         * domain.c appdomain.c: Implement the new search hook so loaded 
17331         assemblies are now scoped by appdomain. Fixes #67727.
17333 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
17335         * threads.c (mono_thread_attach): Initialize synch_lock field so
17336         mono_thread_detach works again.
17338         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
17339         'lib' too. Fixes #63130.
17341 2004-10-06  Jackson Harper  <jackson@ximian.com>
17343         * culture-info-tables.h: regenerated.
17345 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
17347         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
17348         implemented by other interfaces in the result. Fixes #65764.
17349         
17350         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17351         Handle unloadable modules without crashing.
17353         * image.c (load_modules): Revert the previous patch since modules must
17354         have a fixed index inside the array.
17355         
17356         * image.c (load_modules): Don't include native modules in the modules
17357         array.
17359 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
17361         * reflection.h: Add param_defaults field.
17363         * reflection.c: Add support for parameter defaults in dynamic methods.
17364         Fixes #64595.
17366         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
17367         an empty string when a type has no namespace. Fixes #64230.
17369 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
17371         * tabledefs.h: Added "internal" security actions to support non-CAS
17372         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
17373         Note: they do not seems to be used anymore in 2.0 (new metadata format)
17375 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
17377         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
17378         constructor of abstract class. Fixes #61689.
17380 2004-10-04  Martin Baulig  <martin@ximian.com>
17382         * class-internals.h (MonoGenericContainer): New type.
17383         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
17384         `MonoGenericContainer *generic_container'.
17385         (MonoClass): Replaced `gen_params' and `num_gen_params' with
17386         `MonoGenericContainer *generic_container'.
17388         * metadata.c (mono_metadata_load_generic_params): Return a
17389         `MonoGenericContainer *' instead of a `MonoGenericParam *';
17390         removed the `num' argument.
17392 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
17394         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
17395         for dynamic images.
17397         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
17398         machine fields.
17400         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
17402         * reflection.c: Save pe_kind and machine values into the generated
17403         image file.
17405         * appdomain.c: Bump corlib version number.
17407         * object-internals.h: Reorganize layout of LocalBuilder.
17409         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
17410         New helper function.
17412         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
17413         created MonoType for dynamic types. Fixes #66180.
17415 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
17417         * threadpool.c: the ares hashtable needs a critical section around it.
17418         this prevents some nasty segfaults
17420 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
17422         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
17423         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
17424         bug 67324).
17425         
17426 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17428         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
17429         
17430 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
17432         * image.c: Always canonicalize image file names, to avoid loading
17433         the same assembly twice when referenced using a relative path.
17435 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17437         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
17439         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
17441         * marshal.c: Fix warnings.
17443 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
17445         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
17446         attempting to marshal the delegate_trampoline as the method_addr.
17447         This patch has a static hashtable of marshalled delegates so that 
17448         we can map delegate_trampoline addresses back to delegates.  This
17449         allows a delegate passed to managed code to be passed back into native
17450         code.  Fixes #67039
17452 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17454         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
17456         * reflection.c (method_encode_code): Align method headers properly.
17457         Fixes #66025.
17459 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17461         * marshal.c: In the runtime invoke wrapper, reset the abort
17462         exception if it is cached. This avoids the automatic rethrowal of 
17463         the exception after the catch of the wrapper. Also check for pending
17464         interruptions before calling the managed method. This is done using
17465         the new method emit_thread_force_interrupt_checkpoint, since the
17466         normal checkpoint method is ignored when running the invoke wrapper.
17467         * object.c: If the abort exception is rethrown, set the abort_exc
17468         field of the thread, so it will be rethrown aftere every catch.
17469         * threadpool.c: Only run an interruption checkpoint if what has been
17470         requested is a stop of the thread (aborts will be ignored).
17471         * threads.c: By default, a thread will now never be interrumped while
17472         running the runtime invoke wrapper (this ensures that runtime_invoke
17473         will always return to the caller if an exception pointer is provided).
17474         There is a new special method mono_thread_force_interruption_checkpoint()
17475         to force an interruption checkpoint even if running a protected
17476         wrapper, which is used by the same runtime invoke wrapper to do a check
17477         at a safe point.
17479 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17481         * object.c, object-internals.h: Implemented mono_release_type_locks,
17482         which releases the cctor locks held by a thread.
17483         * threads.c, threads.h: In thread_cleanup, release cctor locks held
17484         by a thread. Added mono_thread_exit() method to be used to safely stop
17485         a thread.
17487 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17489         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17490         Move null check before dereference.  Avoid indexing beyond the end
17491         of the 'modules' array.
17493 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17495         * metadata-internals.h (MonoImage): Add module_count field.
17496         * image.c (load_modules): Set image->module_count.
17497         (mono_image_load_file_for_image): Use image->module_count.
17498         * reflection.c (mono_image_load_module): Append to image->modules array 
17499         of dynamic assembly.
17500         (mono_module_get_object): Fix loop to actually increment index.
17501         Use image->module_count.
17502         * assembly.c (mono_assembly_load_references): Use image->module_count.
17503         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
17504         Likewise.
17506 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17508         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
17509         Avoid assert on generic types.
17511 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
17513         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
17515         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
17517         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
17518         function to convert a MarshalSpec structure to its managed counterpart.
17520         * reflection.c: Fix warnings.
17521         
17522         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
17523         field.
17525         * icall.c (mono_create_icall_signature): Fix build.
17527 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
17529         * icall.c: Add MakePointType icall.
17531         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
17532         warnings.
17534 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17536         * threadpool.c: reuse allocated slots in the queue.
17538 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
17540         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
17542         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
17544         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
17545         previous change.
17547         * tabledefs.h: Add constants for pinvoke attributes BestFit and
17548         ThrowOnUnmappableChar.
17550         * icall.c (ves_icall_Type_GetPacking): New icall.
17552 2004-09-24  Martin Baulig  <martin@ximian.com>
17554         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
17556 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17558         * appdomain.c:
17559         (mono_domain_set): allow setting a domain that is being unloaded.
17560         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
17561         being unloaded.
17563 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17565         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
17566         the GetCustomAttributes icall.
17568 2004-09-23  Martin Baulig  <martin@ximian.com>
17570         * object-internals.h (MonoReflectionGenericParam): Replaced
17571         'has_ctor_constraint', `has_reference_type' and `has_value_type'
17572         with `guint32 attrs'.
17574 2004-09-23  Martin Baulig  <martin@ximian.com>
17576         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
17578 2004-09-23  Martin Baulig  <martin@ximian.com>
17580         * object-internals.h (GenericParameterAttributes): New enum.
17582 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17584         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
17585         
17586         * class.c (init_events): Fill out event->other field.
17588         * class.c: Fix warnings.
17590         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
17592 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17594         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
17595         walk which doesn't supply the IL offset.
17597 2004-09-22  Martin Baulig  <martin@ximian.com>
17599         * reflection.c (mono_reflection_setup_internal_class): If we're
17600         System.ValueType, System.Object or System.Enum, set
17601         `klass->instance_size' and create the vtable.
17602         (mono_reflection_create_internal_class): If we're an enum type,
17603         get the base class from our current corlib.
17605 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
17607         * reflection.h (MonoResolveTokenError): New type.
17609         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
17610         icall.
17612         * icall.c: Add an 'error' argument to the ResolveToken icalls.
17614 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
17616         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
17617         Support also calling constructors, but only for already allocated objects.
17619 2004-09-17  Geoff Norton <gnorton@customerdna.com>
17621         * reflection.c (type_get_qualified_name): If the klass is null
17622         return the typename to avoid a NullRefEx.
17623         (encode_cattr_value): Get the qualified name of the boxed type,
17624         not the underlying enumtype.  Fixes #62984.
17626 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
17628         * marshal.c: Fix problems with previous checkin.
17630 2004-09-21    <vargaz@freemail.hu>
17632         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
17633         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
17635         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
17637 2004-09-21  Geoff Norton <gnorton@customerdna.com>
17639         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
17640         should only return a type for pointers, arrays, and passbyref types.
17641         Fixes bug #63841.
17643 2004-09-21  Martin Baulig  <martin@ximian.com>
17645         * domain.c (mono_debugger_check_runtime_version): New public
17646         function.
17648         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
17650 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
17652         * reflection.c: Added missing sort to the declarative security 
17653         attributes table. MS implementation stops seeing the attributes if the
17654         token number regress in the table (as shown by ildasm and permview).
17656 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
17658         * object-internals.h (MonoReflectionModule): Add 'token' field.
17659         
17660         * reflection.c (mono_reflection_get_token): Add support for Module
17661         and Assembly.
17662         (mono_module_get_object): Set 'token' field.
17663         (mono_module_file_get_object): Set 'token' field.
17665         * icall.c: Add new Assembly and Module icalls.
17667         * appdomain.c: Bump corlib version.
17669 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
17671         * loader.h loader.c class.h class.c: Add helper functions for obtaining
17672         tokens of metadata objects.
17674         * reflection.h reflection.c (mono_reflection_get_token): New function
17675         to obtain the token of a metadata object.
17677         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
17679 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17681         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
17682         
17683         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
17685 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
17687         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
17688         * object-internals.h: Added 3 MonoArray* members to MonoReflection
17689         AssemblyBuilder to access the permissions set in the class lib.
17690         * reflection.c: Added security attributes encoding step in 
17691         mono_image_build_metadata.
17692         * tabledefs.h: Added new security actions defined in 2.0:
17693         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
17695 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17697         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
17698         macro parameter.
17700 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17702         * locales.c: nullify the ICU_collator member of CompareInfo when it is
17703           finalized. There where random SIGSEVs at program termination, when
17704           an object being finalized was trying to do a string comparison and
17705           the current culture was already finalized.
17707 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17709         * threads.c: call thread_cleanup before finishing the thread if we get
17710         there.
17712 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
17714         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
17715         assemblies from the parent. Fixes #65665.
17717 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
17719         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
17720         modifiers.
17722 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
17724         * reflection.h: add prototype for mono_get_dbnull_object
17725         * reflection.c: add prototypes for get_default_param_value_blobs 
17726         and mono_get_object_from_blob for fussier compilers
17728 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
17730         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
17731         false deadlock checks in class initialization.
17733 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17735         * image.c (mono_image_addref): Fix comment.
17737         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
17738         possible.
17740 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
17742         * reflection.c (mono_param_get_objects): Modified to return
17743         ParameterInfo.DefaultValue object.
17745         (get_default_param_value_blobs):
17746         (mono_get_object_from_blob):
17747         (mono_get_dbnull_object): New helper routines. 
17749         * object.c (mono_get_constant_value_from_blob): New helper routine
17750         carved out from get_default_field_value ()
17752         * object-internals.h (mono_get_constant_value_from_blob): Added
17753         function declaration.
17755 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17757         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
17758         referenced assemblies. Fixes #62135.
17760         * exception.h exception.c (mono_get_exception_file_not_found2): New
17761         helper function.
17763 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17765         * class.h class.c: Add mono_type_get_underlying_type ().
17767 2004-09-09  Geoff Norton <gnorton@customerndna.com>
17769         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
17770         Fix GetTypes() to support dynamically created assemblies.
17772 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
17774         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
17775         
17776         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
17777         previous patch.
17779         * reflection.h reflection.c loader.c: Allow dynamic construction of
17780         pinvoke methods. Fixes #65571.
17781         
17782         * reflection.c (mono_reflection_get_type): Revert previous change since
17783         it causes regressions.
17785 2004-09-08  Martin Baulig  <martin@ximian.com>
17787         * class.c (class_compute_field_layout): Don't call
17788         mono_class_layout_fields() for open generic instances.
17790 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
17791         * threads.c appdomain.c: fix typo in GC macro
17793 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17795         * threads.c: don't call mono_thread_detach() in start_wrapper(),
17796         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
17798 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
17800         * image.c (mono_image_close): Applied patch from 
17801         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
17802         assembly is loaded multiple times from data.
17803         
17804         * image.c (mono_image_open): Fix warning.
17806 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17808         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
17809         once. Fixes #58334.
17810         
17811         * reflection.c (mono_reflection_create_runtime_class): Initialize
17812         klass->nested_classes. Fixes #61224.
17814 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17816         * threads.c: sched_yield() on exit, to allow threads to quit.
17818 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17820         * object.c (mono_unhandled_exception): Remove leftover debug code.
17822 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
17824         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
17826 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17828         * marshal.c (emit_marshal_array): Really null terminate string arrays.
17829         
17830         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
17832 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17834         * marshal.c (emit_marshal_array): Null terminate string arrays.
17835         
17836         * marshal.c (raise_auto_layout_exception): Fix warning.
17838         * reflection.c (mono_param_get_objects): Initialize the default value
17839         with DBNull.Value, not null. Fixes #62123.
17841 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
17843         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
17844         throw an exception with a cute explanation.
17846 2004-09-06  Dick Porter  <dick@ximian.com>
17848         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
17849         Close the new process's thread handle, as we don't use it.  The
17850         handle stays around forever otherwise.
17852 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17854         * object.c (arith_overflow): Fix warning.
17856         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
17857         calling conventions in method refs. Fixes #65352.
17859         * reflection.c: Fix warnings.
17861 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17863         * icall.c: Add a new icall for Array.Clear
17865 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17867         * object.c: When allocating an array, we have to throw
17868         an overflow exception if any of the lengths are < 0.
17870 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17872         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
17873         properly. Also move implementation of string array marshalling to 
17874         managed code. Fixes #42316.
17876 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17878         * assembly.c: provide more information when loading an assembly fails.
17880 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17882         * filewatcher.c: don't expect the development fam package to be
17883         installed.
17885 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
17887         * marshal.c: Make a copy of the signature cookie since it will be
17888         freed by the caller.
17889         
17890         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
17892         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
17894         * metadata.c (mono_metadata_free_marshal_spec): New function to free
17895         marshal specs.
17897         * marshal.c: More refactoring.
17898         
17899         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
17900         smaller functions.
17902 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
17904         * object.c: In mono_message_invoke, fill the output parameter array after
17905           calling the managed method (it was done before the call). This fixes
17906           bug #59299.
17908 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17910         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
17911         as well.
17913 2004-09-02  Martin Baulig  <martin@ximian.com>
17915         * class.c (mono_class_instance_size): Don't allow generic type
17916         definitions or open generic instances.
17917         (mono_class_array_element_size): If we're a value type, call
17918         mono_class_instance_size() on the original class.
17920         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
17921         handle generic instances.
17923         * mono-debug-debugger.c (write_type): Handle generic instances
17924         like classes.
17926 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17928         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
17929         the allocation request fails. Fixes #65089.
17931         * object.c (mono_runtime_free_method): Do not call mono_free_method.
17932         
17933         * object.c (mono_runtime_free_method): New function to free a dynamic
17934         method.
17936         * marshal.c (mono_delegate_free_ftnptr): New function to free the
17937         delegate trampoline.
17939         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
17940         with hasthis as dynamic,
17942         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
17944         * domain.c (mono_jit_info_table_remove): New function to remove an
17945         entry from the jit info table.
17947         * class-internals.h (MonoMethod): Add 'dynamic' field.
17949         * loader.c: Fix warnings.
17951 2004-09-01  Martin Baulig  <martin@ximian.com>
17953         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
17954         instead of mono_debugger_lock() because the latter one is a no-op
17955         unless running in the debugger.
17957 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17959         * class.c (class_compute_field_layout): Classes with auto-layout or
17960         reference fields are not blittable.
17961         
17962 2004-09-01  Dick Porter  <dick@ximian.com>
17964         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
17965         mono_image_get_filename() to get the assembly location.
17967         * icall.c:
17968         * metadata.h: Fix compile warnings
17970 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17972         * class.c (class_compute_field_layout): System.Object is blittable.
17974         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
17975         as in/out. Fixes #59909.
17977 2004-09-01  Martin Baulig  <martin@ximian.com>
17979         * metadata.h (MONO_TYPE_ISREFERENCE): Call
17980         mono_metadata_generic_inst_is_valuetype() if we're a generic
17981         instance to check whether our underlying type is a reference type.
17983 2004-09-01  Martin Baulig  <martin@ximian.com>
17985         * metadata.c (mono_type_size): If we're a generic instance, call
17986         mono_class_value_size() for value types.
17988 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
17990         * marshal.c: Implement more custom marshalling functionality. Fixes
17991         #64915.
17993 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17995         * mono-debug.c, debug-mono-symfile.c: add some locking love.
17997 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
17999         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
18001         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
18003         * icall.c: Fix some warnings.
18005         * threads.c (abort_appdomain_thread): Fix unref errors.
18006         (mono_thread_current): Fix THREAD_DEBUG define.
18008 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
18010         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
18012         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
18014 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
18016         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
18017         string arrays.
18019 2004-08-28  Martin Baulig  <martin@ximian.com>
18021         * metadata.c
18022         (mono_metadata_generic_inst_is_valuetype): New public function.
18024         * metadata.h (MONO_TYPE_ISSTRUCT): Call
18025         mono_metadata_generic_inst_is_valuetype() if we're a generic
18026         instance to check whether our underlying type is a valuetype.
18028 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
18030         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
18031         #63768.
18033 2004-08-25  Martin Baulig  <martin@ximian.com>
18035         * loader.c (mono_get_method_from_token): Abstract methods can also
18036         be generic and thus have type parameters.
18038         * metadata-internals.h
18039         (MonoDynamicImage): Added `GPtrArray *gen_params'.
18041         * reflection.c (mono_image_get_generic_param_info): Don't create a
18042         metadata row, just add an entry to the `gen_params' array.
18043         (build_compressed_metadata): Sort the `gen_params' array and then
18044         actually create the metadata.
18046 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18048         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
18050 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
18052         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
18054 2004-08-24  Martin Baulig  <martin@ximian.com>
18056         * class.cs (mono_class_is_subclass_of): Like an interface, a
18057         generic instance also derives from System.Object.
18059 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
18061         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
18062         custom modifiers to be in any order. Fixes #61990.
18064 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
18066         * object.c: Register mono_object_new_fast icall.
18067         
18068         * object.c (mono_class_get_allocation_ftn): Return to calling
18069         mono_object_new_fast, since it seems faster to compute the object 
18070         size in unmanaged code than passing it as a parameter.
18072         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
18074         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
18075         this function with Boehm as the oom handler, so we don't have to check
18076         the result of GC_malloc.
18078         * object.c: Remove checks for oom.
18080         * object.h object.c (mono_class_get_allocation_ftn): New function to
18081         return the icall which can be used to allocate an instance of a given
18082         class. 
18084         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
18086         * class-internals.h: Add 'enabled' field.
18088 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
18090         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
18092 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
18093         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
18094         value 0x0010.
18096 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
18098         * appdomain.c: use the Tls function for appdomain too,
18099         at Zoltan's request. Actually return in mono_context_get
18101         * appdomain.c, profiler.c, threads.c: use __thread
18103 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
18105         * appdomain.c threads.c: Call GC_CreateThread on windows.
18107         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
18108         multiple libraries since this don't work on windows.
18110 2004-08-18  Martin Baulig  <martin@ximian.com>
18112         * class-internals.h
18113         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
18114         MonoMethodHeader.
18116         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
18117         MonoMethodNormal since we also need it for abstract and interface
18118         methods.
18120         * reflection.c
18121         (build_compressed_metadata): Sort the GenericParam table.
18122         (mono_image_create_token): Added `gboolean create_methodspec'
18123         argument; this is false when generating a MethodImpl token.
18124         (reflection_methodbuilder_to_mono_method): Abstract and interface
18125         methods may also have generic parameters.
18127 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
18129         * appdomain.c: thread local alloc
18131 2004-08-17  Martin Baulig  <martin@ximian.com>
18133         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
18135         * icall.c
18136         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
18137         argument.
18139         * class.c (mono_type_get_full_name): New public function.
18140         (mono_type_get_name): Don't include the type arguments.
18142 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
18144         * Makefile.am: Build static versions of libmetadata and libmonoruntime
18145         for inclusion into the mono executable.
18147 2004-08-16  Martin Baulig  <martin@ximian.com>
18149         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
18150         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
18152 2004-08-14  Martin Baulig  <martin@ximian.com>
18154         * class.c (dup_type): Also copy the `byref' field.
18156 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
18158         * reflection.c (create_dynamic_mono_image): Revert the last change 
18159         since it breaks bootstrap.
18161 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
18163         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
18165         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
18166         not free them with g_free.
18168 2004-08-11  Martin Baulig  <martin@ximian.com>
18170         * reflection.c (mono_reflection_setup_internal_class): Also call
18171         mono_class_setup_mono_type() if we already have a `tb->type.type'.
18173 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
18175         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
18176         called during default (first) AppDomain creation. Keep track of
18177         Evidence when loading assemblies.
18179 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18181         * opcodes.c, opcodes.h: reduce runtime relocations.
18183 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
18185         * culture-info.h, locales.c: fixes and chages to sue the new
18186         optimized format of the locale data.
18187         * culture-info-tables.h: regenerated.
18189 2004-08-06  Geoff Norton <gnorton@customerdna.com>
18190         
18191         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
18193 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
18195         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
18196         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
18197         * domain-internals.h: icall declaration.
18198         * icall.c: icall registration.
18199         * object-internals.h: New fields in MonoAssembly for CAS.
18201 2004-08-05  Duncan Mak  <duncan@ximian.com>
18203         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
18204         CEE_LDELEM_ANY.
18206 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18208         * reflection.c: fix to deal with object[] arrays in custom ctors
18209         (bug #62550).
18211 2004-08-05  Martin Baulig  <martin@ximian.com>
18213         * class.c (mono_class_array_element_size): Added support for
18214         generic instances and correctly handle "recursive" types.
18216 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
18218         * assembly.c: Fix warnings.
18220 2004-08-04  Martin Baulig  <martin@ximian.com>
18222         * class.c
18223         (mono_type_get_name_recurse): Added `gboolean include_arity'
18224         argument specifying whether or not we should include the generic
18225         arity in the type name.
18226         (_mono_type_get_name): New static function.
18227         (mono_class_setup_vtable): If we're a generic instance, don't
18228         include the generic arity in the names of explicit method
18229         implementations.        
18231 2004-08-03  Martin Baulig  <martin@ximian.com>
18233         * class.c (mono_type_get_name_recurse): Enclose the generic type
18234         arguments in `<', '>'.
18236 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18238         * gc.c: make GC warning messages use the trace API, they are just
18239         noise to most of the users.
18241 2004-08-03  Martin Baulig  <martin@ximian.com>
18243         * debug-mono-symfile.c (read_string): Correctly read the string.
18245 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
18247         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
18248         
18249         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
18250         icalls.
18251         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
18253 2004-07-30  Martin Baulig  <martin@ximian.com>
18255         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
18256         Reflect latest symbol writer changes.   
18258 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18260         * object.c: always create an object if null is passed
18261         to Invoke() where a valuetype is expected.
18263 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
18265         * marshal.c (mono_marshal_init): make managed
18266         signatures match native ones better for 64bits.
18268 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18270         * appdomain.c: hack to build correctly the private bin path on windows.
18271         Fixes bug #61991.
18273 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
18275         * assembly.c: Load mscorlib from the correct framework directory
18276           (mono/<version>/mscorlib.dll).
18277         * appdomain.h: Added prototypes for new functions.
18278         * internals.h: Added some prototypes.
18279         * domain.c: When initializing the runtime, get from the executable and
18280           the configuration files the runtime version that the app supports.
18281           Added support methods for reading app.exe.config. Added list of versions
18282           supported by the JIT. Added two new methods: mono_init_from_assembly,
18283           which initializes the runtime and determines the required version from
18284           the provided exe file, and mono_init_version, which initializes
18285           the runtime using the provided version.
18286         * icall.c: Get machine.config from version-specific directory.
18287         * reflection.c: When generating an image, embed the version number
18288           of the current runtime.
18290 2004-07-28  Dick Porter  <dick@ximian.com>
18292         * socket-io.c
18293         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
18294         returned sockaddr size before creating the remote address object.
18295         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
18296         61608.
18298 2004-07-28  Dick Porter  <dick@ximian.com>
18300         * locales.c (string_invariant_compare_char): Fix invariant char
18301         compares between upper and lower cases.  Fixes bug 61458.
18303 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
18304         
18305         * marshal.c: actually cache stelem.ref wrappers.
18306         
18307 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
18309         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
18310         sections and remove the mono_cli_rva_map () function.
18312 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18314         * debug-mono-symfile.c: fix one more endianess issue, from a patch
18315         by Geoff Norton (<gnorton@customerdna.com>).
18317 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18319         * class.c: fix class loads for pointer types (typeof(int) !=
18320         typeof(int*)).
18322 2004-07-27  Martin Baulig  <martin@ximian.com>
18324         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
18325         reading the debugging information from an external ".mdb" file.
18327 2004-07-24  Martin Baulig  <martin@ximian.com>
18329         * reflection.c (mono_image_get_type_info): Only write a class
18330         layout entry if we actually have a size or a packing size.
18332 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18334         * reflection.c (type_get_fully_qualified_name): 
18335         insert cast to get type checking of ?: with non-gcc compilers
18337 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18339         * rand.c: use g_getenv for both lookups of
18340         MONO_EGD_SOCKET
18342 2004-07-17  Martin Baulig  <martin@ximian.com>
18344         * reflection.c (mono_reflection_bind_generic_method_parameters):
18345         Set `gmethod->reflection_info'.
18347 2004-07-17  Martin Baulig  <martin@ximian.com>
18349         * class.c (mono_class_create_from_typedef): Insert the newly
18350         created class into the hash table before computing the interfaces
18351         since we could be called recursively.
18353 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
18355         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
18356         function to implement stelem.ref in managed code
18357         * class-internals.h, debug-helpers.c: a new wrapper type
18358         for the above.
18360 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18362         * gc.c: allow GC handles to work even when no GC is compiled in.
18363         Fix part of bug #61134 (GetAddrOfPinnedObject).
18365 2004-07-13  Peter Williams  <peter@newton.cx>
18367         * process.c (complete_path): Make sure we don't attempt to execute
18368         directories.
18370 2004-07-12  Geoff Norton <gnorton@customerdna.com>
18372         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
18373           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
18374           and will add/subtract the hour if needed
18376 2004-07-12  Martin Baulig  <martin@ximian.com>
18378         * reflection.c (mono_field_get_object): If we have
18379         `field->generic_info', take the attributes from
18380         `field->generic_info->generic_type'.    
18382 2004-07-12  Martin Baulig  <martin@ximian.com>
18384         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
18385         This function must be called before initializing the runtime.
18386         (mono_debug_init_1): New function; call this after initializing
18387         the runtime, but before loading the assembly.  It tells the
18388         debugger to load corlib and the builtin types.
18390         * mono-debug-debugger.c: Did some larger changes in the debugging
18391         code; support recursive class declarations, make sure we actually
18392         add all classes.
18394 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18396         * debug-helpers.c: undo my previous patch and fixed the real issue in
18397         ../mini/exceptions-x86.c
18399 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18401         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
18402         when no HOME env. variable was set and a NullRef was thrown in a .cctor
18403         called from other .cctors.
18405 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18407         * loader.c: Removed the mono_loader_wine_init hack now that we are
18408         doing a managed version of Windows.Forms.
18410 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
18412         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
18413         threadpool.c, threads.c: remove static data from rootset.
18415 2004-07-09  Dick Porter  <dick@ximian.com>
18417         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
18418         Don't do any more processing if the matched length was 0.  It was
18419         increasing the size of the string before.  Fixes bug 61167.
18421 2004-07-09  Dick Porter  <dick@ximian.com>
18423         * socket-io.h:
18424         * socket-io.c
18425         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18426         Add support for SO_PEERCRED if its available.
18428 2004-07-09  Peter Bartok <pbartok@novell.com>
18429         * loader.c: winelib.exe.so error message is now only displayed if
18430         MONO_DEBUG is set. To help us avoid questions when people are trying
18431         out the new Managed.Windows.Forms.
18433 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
18435         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
18436         for isinst and castclass wrappers.
18438         * class-internals.h icall.c: Move registration and lookup of JIT icalls
18439         to libmetadata from the JIT, so they could be used by the marshalling
18440         code and the interpreter.
18442         * marshal.c: Register marshalling related JIT icalls here instead of
18443         in mini.c. Use CEE_MONO_ICALL instead of the family of 
18444         CEE_MONO_PROC<x> opcodes to call marshalling functions.
18446         * metadata.h: Remove unneeded marshalling conversions.
18448         * opcodes.c: Update for new opcodes.
18449         
18450 2004-07-08  Martin Baulig  <martin@ximian.com>
18452         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
18453         (mono_debug_get_domain_data): Make this function static.
18455 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18457         * gc.c, object.h: add nice GC handle API for embedders.
18459 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
18461         * reflection.c: more changes for the new api
18463         * object.c: When we reflect on a field w/ a constant value, it
18464         will not have a memory location, so we must access metadata. Also,
18465         allow easier reading of strings so that we can read them from
18466         the constant data.
18468         * class.c (mono_class_layout_fields): no need for literal fields here.
18470         * class-internals.h: api changes for const fields
18472         * icall.c (ves_icall_get_enum_info): use new apis for const fields
18474 2004-07-06  Martin Baulig  <martin@ximian.com>
18476         * mono-debug.h: Increment version number to 44.
18478         * mono-debug.c (mono_debug_add_wrapper): The second argument is
18479         now a gpointer, rewrote this whole method.
18481         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
18482         function.  Add information about the wrapper in a new "misc table".
18484         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
18485         for the new misc table.
18487 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
18489         * metadata-internals.h image.c: Add a cache for helper signatures.
18491         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
18493 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
18495         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
18496         delegates from a delegate. Fixes #61033.
18497         
18498         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
18499         marshalling of stringbuilder arrays. Fixes #59900.
18501 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
18503         * icall.c: Add EnumBuilder:setup_enum_type icall.
18505 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
18507         * icall.c: Added a new icall for the property version of
18508         OffsetOfStringData.
18510 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
18512         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
18513         it has a constant size across platforms.
18515         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
18516         stack trace.
18518 2004-06-29  Martin Baulig  <martin@ximian.com>
18520         * mono-debug.c (mono_debug_add_method): Protect the whole function
18521         in mono_debugger_lock(), not just parts of it.
18523 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
18525         * reflection.c: make sure padding bytes in heaps are zeroed.
18527 2004-06-24  David Waite  <mass@akuma.org>
18529         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
18530         image.c, loader.c, locales.c, marshal.c, metadata.c,
18531         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
18532         string-icalls.c, threads.c: change to C90-style comments from C99 /
18533         C++ -style
18535 2004-06-24  Dick Porter  <dick@ximian.com>
18537         * threads.c
18538         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
18539         return createdNew.  Fixes bug 60412.
18541         * threads-types.h: 
18542         * icall.c: Add createdNew parameter to CreateMutex icall
18544 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18546         * reflection.c, object-internals.h: save default value in params.
18548 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18550         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
18551         no need to build a new path combining that with the application base.
18552         Fixes bug #60442.
18554 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
18556         * reflection.c: fixed minor standard compliance issues.
18558 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18560         * reflection.c: fixed issue with encoding some custom attributes
18561         (arrays in properties and fields, bug #60411).
18563 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18565         * reflection.c: fix start address when copying the public key token.
18567 2004-06-23  Martin Baulig  <martin@ximian.com>
18569         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
18570         the `exc' object in a static object to put it into the GC's root set.
18572 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
18574         * reflection.c: make mono_reflection_setup_internal_class ()
18575         callable a second time to setup a new parent class.
18577 2004-06-23  Dick Porter  <dick@ximian.com>
18579         * threads.c: Check for WAIT_IO_COMPLETION return values.
18581 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
18583         * appdomain.c: Removed the g_free on the public key token. Now copy 
18584         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
18585         * assembly.c: Added public key token string value when loading 
18586         assemblies. Fix bug #60439.
18587         * icall.c: Added missing informations (like public key) in 
18588         GetReferencedAssemblies. Fix #60519.
18589         * image.h: Changed definition for public key token from const char*
18590         public_tok_value to guchar public_key_token [17];
18591         * reflection.c: Updated for changes to public key token.
18593 2004-06-22  Lluis Sanchez Gual
18595         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
18596         for the field in base classes.
18598 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18600         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
18601         mark headers as not supported, they are installed only for use by the
18602         debugger.
18604 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
18606         * *.c, *.h: avoid namespace pollution in public headers.
18608 2004-06-21  Martin Baulig  <martin@ximian.com>
18610         * exception.c (mono_get_exception_security): It's in
18611         "System.Security", not in "System".
18613         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
18614         the exception classes.
18616 2004-06-21  Martin Baulig  <martin@ximian.com>
18618         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
18619         Protect the exception object from being finalized.
18621 2004-06-21  Martin Baulig  <martin@ximian.com>
18623         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
18624         public function.
18626 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
18628         * reflection.c: Load the assembly in mono_reflection_type_from_name,
18629         if it was not loaded before. Fix parts of #60439.
18631 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
18633         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
18634         code that was broken since Ben's change: wrappers are now
18635         dependent on the method signature only again.
18637 2004-06-21  Martin Baulig  <martin@ximian.com>
18639         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
18640         added interface support.
18642 2004-06-21  Martin Baulig  <martin@ximian.com>
18644         * class.c (mono_vtable_get_static_field_data): New public method.
18646 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
18648         * filewatcher.c : Windows build fix to be compliant with API changes.
18650 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18652         * class.h, class.c: more accessors.
18653         * metadata.h, metadata.c: prepare for hiding MonoType and
18654         MonoMethodSignature: people should use the accessors from now on
18655         outside of the tree.
18657 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18659         * *.c, *.h: more API cleanups.
18661 2004-06-18  Jackson Harper  <jackson@ximian.com>
18663         * assembly.c: Trace loading assemblies.
18664         * loader.c: Trace loading native libraries.
18665         * mono-config.c: Trace loading config files.
18666         
18667 2004-06-18  Dick Porter  <dick@ximian.com>
18669         * locales.c: Tell ICU the lengths of strings, it can cope with
18670         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
18672 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18674         * image.c: swapped name/filename;
18676 2004-06-18  Martin Baulig  <martin@ximian.com>
18678         * mono-debug-debugger.c (write_class): Write the parent class at
18679         the end of the header.
18681 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18683         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
18685 2004-06-17  Raja R Harinath  <rharinath@novell.com>
18687         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
18688         (bundle_obj): New conditional define.
18689         (BUILT_SOURCES): Remove.
18690         ($(bundle_srcs)): Make parallel-make safe.
18691         (libmonoruntime_la_LIBADD): Make unconditional.
18692         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
18693         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
18695 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
18697         * culture-info-tables.h: It was inconsistent with the latest
18698           supp info files.
18700 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
18702         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
18703         be loaded.
18705         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
18706         with gcc 2.95.
18708 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18710         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
18711         cleaned up public header threads.h.
18713 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18715         * Makefile.am, *.c, *.h: more API cleanups.
18717 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18719         * Makefile.am: removed monosn from compilation.
18720         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
18721         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
18722         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
18723         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
18724         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
18725         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
18727 2004-06-15  Jackson Harper  <jackson@ximian.com>
18729         * assembly.c: Make locales lower case when searching the GAC for
18730         assemblies. gacutil will always make locales lowercase when
18731         installing so this effectively makes them case insensitive.
18732         
18733 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
18735         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
18736         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
18737           parameter which allows to choose whether the wait can be interrupted or 
18738           not. Also added the method mono_monitor_enter(), which locks the monitor
18739           using an infinite wait and without allowing interruption.
18740           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
18741           interrupted.
18742         * object.h: Added new fields in MonoThread. suspend_event holds the event
18743           used to susped/resume the thread. synch_lock is the lock object to use for
18744           modifying the thread state.
18745         * threads.c: Use the new synch_lock object for locking, instead of "this",
18746           which can generate deadlocks.
18747           Moved thread state change in Thread.Sleep and Thread.Join from managed
18748           to unmanaged code. This avoids a deadlock when the thread was suspended
18749           just after acquiring the thread lock.
18750           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
18751           Implemented Thread.Suspend using an event instead of ThreadSuspend,
18752           which is not fully implemented in the io-layer.
18753         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
18755 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
18757         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
18758         threads-types.h: more API cleanups.
18760 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18762         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
18763         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
18764         threadpool.c, threads.c: first pass at the exported API cleanup.
18766 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
18768         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
18770 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18772         * icall.c: added internalGetHome.
18774 2004-06-14  Dick Porter  <dick@ximian.com>
18776         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
18777         possible to return successfully when '.' or '..' were the only
18778         entries in a directory, but were skipped.  The MonoIOStat was not
18779         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
18780         Fixes bug 59574.
18782 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18784         * reflection.c: make binaries run on .Net 1.1 by default.
18786 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18788         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
18790 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
18792         * marshal.c: keep track of struct size with explicit layout
18793         (bug #59979).
18795 2004-06-12  Martin Baulig  <martin@ximian.com>
18797         * mono-debug-debugger.c: Comment out a debugging g_message().
18799 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18801         * reflection.c, reflection.h: do not free custom attrs that are cached.
18802         * icall.c: use braces to make code clearer.
18804 2004-06-11  Martin Baulig  <martin@ximian.com>
18806         * class.h (MonoInflatedField): New type.
18807         (MonoClassField): Replaced `MonoType *generic_type' with
18808         `MonoInflatedField *generic_info'.
18810         * icall.c
18811         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
18813 2004-06-11  Martin Baulig  <martin@ximian.com>
18815         * reflection.c (mono_image_create_method_token): Correctly encode
18816         varargs methods.
18818 2004-06-11  Martin Baulig  <martin@ximian.com>
18820         * metadata.c (mono_metadata_parse_method_signature): When parsing
18821         a MethodDef which has VarArgs, also set sentinelpos if we don't
18822         have any parameters.
18824 2004-06-11  Martin Baulig  <martin@ximian.com>
18826         * verify.c (mono_method_verify): In CEE_CALL, use
18827         mono_method_get_signature() to get the method's signature, unless
18828         we're a PInvoke method.
18830 2004-06-10  Jackson Harper  <jackson@ximian.com>
18832         * assembly.c: Use <path>/lib/mono/gac for the extra paths
18833         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
18834         logical name as the supplied path is just a prefix to the gac not
18835         the direct path to it.
18836         
18837 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
18839         * reflection.c: make the token for a created method match
18840         the token of the MethodBuilder it was created from
18841         (IKVM requires this behaviour now).
18843 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
18845         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
18846         reflection.c, socket-io.c: leak fixes.
18848 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
18850         * icall.c: handle sentinel pos in vararg methods in position different
18851         from 0.
18853 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18855         * culture-info-tables.h: freshly generated.
18857 2004-06-09  Martin Baulig  <martin@ximian.com>
18859         * loader.c (mono_get_method_constrained): Call `mono_class_init
18860         (constrained_class)'.   
18862 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
18864         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
18865         any methods. Fixes #59629.
18867 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18869         * culture-info-tables.h: reflecting locale-builder updates.
18871 2004-06-08  Dick Porter  <dick@ximian.com>
18873         * object.h:
18874         * locales.c: Fixed compile warnings, including a real bug in
18875         CompareInfo_internal_compare.
18876         
18877 2004-06-08  Dick Porter  <dick@ximian.com>
18879         * locales.c
18880         (ves_icall_System_Globalization_CompareInfo_internal_index):
18881         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18882         Double-check the resuls of usearches, because ICU currently
18883         ignores most of the collator settings here.  Fixes bug 59720.
18884         
18885 2004-06-08  Dick Porter  <dick@ximian.com>
18887         * locales.c
18888         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18889         Fix memory leak and segfault-causing typo.  No idea how this one
18890         lasted so long without being noticed.
18892 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
18894         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
18895         any methods. Fixes #59629.
18897 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18899         * assembly.c:
18900         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
18901         own the critical section before). Removed dead code (that's done
18902         in the preload hook).
18904         (mono_assembly_load_with_partial_name): call the preload hook.
18906 2004-06-08  Martin Baulig  <martin@ximian.com>
18908         * metadata.c (mono_metadata_signature_alloc): Default
18909         `sentinelpos' to -1.
18911         * reflection.c (mono_image_get_array_token): Likewise.
18913 2004-06-08  Martin Baulig  <martin@ximian.com>
18915         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
18917         * metadata.c (mono_metadata_parse_method_signature): When parsing
18918         a MethodDef which has VarArgs, set sentinelpos.
18920         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
18921         `gint16' since we're using -1 for non-varargs methods.
18923         * reflection.c
18924         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
18925         (method_encode_signature): Added varargs support.
18926         (method_builder_encode_signature): Likewise.
18927         (mono_image_get_varargs_method_token): New static method.
18928         (mono_image_create_method_token): New public method; this is
18929         called via an icall instead of mono_image_create_token() when
18930         calling a varargs method.       
18932 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
18934         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
18936 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18938         * culture-info-tables.h : Reflecting the latest locale-builder that
18939           fixed empty array representation ({} to {0}).
18941 2004-06-07  Jackson Harper  <jackson@ximian.com>
18943         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
18944         looking up extra gac paths. This allows MONO_GAC_PATH to act
18945         exactly like a prefix.
18946         
18947 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18949         * reflection.c (mono_reflection_type_from_name): Make a copy of the
18950         type name before modifying it. Fixes #59405.
18952 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18954         * culture-info.h: added fields for "all datetime patterns".
18955         * locales.c: (  ves_icall_System_Globalization_CultureInfo
18956           _construct_datetime_format ()): fill xxx_patterns fields.
18957         * object.h: added fields for "all datetime patterns" to
18958           MonoDateTimeFormatInfo.
18959         * culture-info-tables.h: reflecting locale-builder updates.
18961 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18963         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
18964         the event has no add and remove methods. Fixes #59629.
18966 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
18968         * object.c: Fixed possible integer overflow when allocating large
18969         strings.
18971 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18973         * culture-info-tables.h: reflecting locale-builder updates.
18975 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18977         * culture-info-tables.h: reflecting locale-builder updates.
18979 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
18981         * culture-info-tables.h: reflecting locale-builder updates.
18983 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
18985         * threads.c: Made Thread.Sleep abortable.
18987 2004-06-02  Martin Baulig  <martin@ximian.com>
18989         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
18991         * debug-mono-symfile.h: Bumped symbol file version number to 37.
18993 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
18995         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
18997 2004-05-30  Jackson Harper  <jackson@ximian.com>
18999         * reflection.c: Do not hardcode assembly versions or public key
19000         tokens anymore. All of this except the corlib section was dead
19001         code anyways.
19002         
19003 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
19005         * object.c (mono_runtime_invoke_array): Automatically create boxed
19006         objects for byref valuetypes if needed. Fixes #59300.
19007         
19008         * object.c (mono_method_return_message_restore): Handle 
19009         MONO_TYPE_OBJECT as well.
19011 2004-05-28  Jackson Harper  <jackson@ximian.com>
19013         * reflection.c: The modified type encoding was causing build
19014         problems. Reverted for now.
19015         
19016 2004-05-28  Jackson Harper  <jackson@ximian.com>
19018         * reflection.c/h: Take an assembly ref so that we dont create
19019         fully qualified names when encoding types in the same assembly as
19020         the custom attribute being emitted.
19021         * appdomain.c: Increment version number.
19022         
19023 2004-05-26  Duncan Mak  <duncan@ximian.com>
19025         * icall.c
19026         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
19027         Set the full version number (major, minor, build, revision).
19029 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
19031         * marshal.c (emit_struct_conv): increment src/dst after blit
19032         (mono_marshal_get_managed_wrapper,
19033         mono_marshal_get_native_wrapper): make sure we have marshalling
19034         info before marshalling params (info computation affects
19035         blittable)
19037         * class.c (class_compute_field_layout): correctly deal with
19038         blittable
19039         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
19040         value types (as per what windows dows by default)
19041         (mono_class_setup_mono_type): System.ValueType is blittable
19042         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
19043         blittable
19045         * marshal.c (mono_marshal_load_type_info): flag types  as
19046         non-blittable if the native layout doesn't match the managed
19047         layout
19049 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19051         * appdomain.c: don't add stuff in the private search path that is
19052         above the application base. If application base is not set, there's
19053         no private search path.
19055 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
19057         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
19058         byref struct arguments in native->managed marshalling.
19060 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
19062         * marshal.c (mono_marshal_get_runtime_invoke): correctly
19063         cache methods using signature (special case for methods
19064         that are value type or string class)
19065         
19066         * image.c (mono_image_close): clean up allocated GSList's
19067         in runtime_invoke_cache.
19069 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19071         * mono-config.c: set the correct path for mono_cfg_dir on windows when
19072         there's no MONO_CFG_DIR environment variable defined.
19074 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19076         * threads.c: windows version must be >= 0x0500 to include OpenThread.
19078 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
19080         * threadpool.c: Really wait for 500ms after the async call, even if the wait
19081           is interrumped.
19082         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
19083           before waiting for it, and call CloseHandle after the wait to unref it.
19084           This will make sure that handles are not disposed too early.
19086 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19088         * appdomain.c:
19089         * appdomain.h:
19090         * icall.c: removed
19091         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
19092         needed now.
19094         * object.c: se the application_base only for the domain that runs
19095         Main. Fixes bug #59216,
19097 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19099         * appdomain.c:
19100         * object.c: only the domain in which Main is run have
19101         SetupInformation.ConfigurationFile set, so moved a few lines from
19102         appdomain.c to object.c.
19104 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19106         * appdomain.c: we tried to load [name].(dll|exe), but according
19107         to bug #57710, we must also try [culture]/[name].(dll|exe) and
19108         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
19109         There's a test case attached to bug #58922.
19111 2004-05-27  Dick Porter  <dick@ximian.com>
19113         * icall.c:
19114         * file-io.c: Implemented icalls for locking and unlocking regions
19115         in a file.
19116         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
19117         FALSE on error (fixes both compiler warning and real bug.)
19119 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
19121         * culture-info-tables.h: reflecting locale-builder updates.
19123           (Added missing ChangeLog entry for 05/26)
19125 2004-05-27  Jackson Harper  <jackson@ximian.com>
19127         * locales.c: Fix some cut and paste errors.
19128         
19129 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19131         * mono-config.c: set the correct path for config. directory on windows.
19133 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19135         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
19136           on win32.
19138 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
19140         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
19141         from pinvoke functions.
19142         
19143         * marshal.c (mono_ftnptr_to_delegate): Implement this.
19145 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19147         * culture-info-tables.h: reflecting locale-builder updates.
19149 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
19151         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
19152         #59086.
19154 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
19156         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
19157         * icall.c: Modified icalls for RNG.
19158         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
19159         Windows (CryptoAPI).
19161 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
19163         * locales.c: Fix build.
19165 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19167         * culture-info-tables.h: reflecting locale-builder updates.
19169 2004-05-25  Jackson Harper  <jackson@ximian.com>
19171         * locales.c: When creating the current culture use the $LANGs
19172         specific culture. So DateTimeFormat and NumberFormat entries are created.
19173         
19174 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
19176         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
19177         a char array as parameter.
19179 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
19181         * image.c: In mono_image_open(), always use an absolute path name to
19182           look for already loaded images.
19184 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
19186         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
19187         missing in the windows build (like older cygwin include files).
19189 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
19191         * icall.c: Fixed check for possible integer overflow in Buffer_
19192         BlockCopy icall. Replaced comments style // by /* */.
19194 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
19196         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
19197         
19198         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
19199         check after MONO_VTADDR. Fixes pinvoke2.exe.
19201         * marshal.h marshal.c metadata.h: Add beginnings of support for
19202         ftnptr -> delegate marshalling.
19204 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
19206         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
19207         * threads.c: Fix warnings.
19209 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
19211         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
19212         * icall.c: Registered icalls for Suspend and Resume.
19213         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
19214           Thread.Abort.
19215         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
19216         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
19217         * process.c: Use WaitForSingleObjectEx.
19218         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
19219           checkpoints.
19220         * threads.c, threads.h: Make use of new Ex wait methods. Improved
19221           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
19222           for Suspend and Resume. Added new mono_thread_stop, used for stoping
19223           background threads. Added basic support for Abort in Windows.
19224           Start new threads using a managed delegate invoke wrapper. This wrapper
19225           has an interruption checkpoint that is needed since an interruption
19226           can be requested before the thread leaves the unmanaged code that starts 
19227           the thread.
19228         * marshal.c: Added interruption checkpoint after every native call, and
19229           also before managed calls for wrappers called from unmanaged code to
19230           go into managed code.
19231         * object.h: Added new field in MonoThread to keep track of interruption
19232           requests.
19234 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
19236         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
19237         calls.
19239 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19241         * appdomain.c:
19242         * assembly.c:
19243         * gc.c:
19244         * locales.c:
19245         * mono-config.c:
19246         * rand.c: getenv -> g_getenv (windows!)
19248         * process.c: complete_path is also used on non-windows platforms.
19250 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19252         * icall.c: new signature for Process_Start.
19254         * process.[ch]: new signature for Process_Start. If we're on windows
19255         and UseShellExecute is false, we have to search for the program by
19256         ourselves if we don't get a full path.
19258 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
19260         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
19261         marshalling and call CleanUpNativeData if needed. Fixes #58646.
19263 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19265         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
19266         Fixes bug #58373.
19268 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19270         * process.c: use double quotes to quote program name and arguments on
19271         windows. Fixes bug #58575.
19273 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19275         * file-io.c: don't return "." and ".." when using windows Find*File.
19277 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
19279         * marshal.c: Don't pass wrappers to message init because method 
19280         addressed used to lookup metadata. part of remoting[2|3] fix.
19282 2004-05-15  Jackson Harper  <jackson@ximian.com>
19284         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
19285         path is essentially the same as MONO_PATH except that it points to
19286         GACs instead of lib directories.
19287         * loader.h: The user gac is gone so we dont need function to
19288         enable/disable it.
19289         * mono-config.c: user gac option is now gone.
19290         
19291 2004-05-15  Jackson Harper  <jackson@ximian.com>
19293         * culture-info.h: Make defines more consistent, add calendar data
19294         to the culture info table.
19295         * culture-info-tables.h: Add basic calendar data. Basically
19296         everyone gets default gregorian until all the data is
19297         updated.
19298         * locales.c: Use the new consistent defines. Set calendar data for
19299         culture info objects.
19300         * object.h: add a field for calendar data to CultureInfo
19301         
19302 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
19304         * image.c: image->runtime_invoke_cache is keyed on signatures now.
19305         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
19306         a signature.
19307         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
19308         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
19309         an extra param that is the pointer of the method to invoke. The IL for
19310         the invoke method is no longer specific to the method, but to the
19311         signature of the method. Thus, we can share the same code for multiple
19312         methods. This reduces the number of methods that have to be compiled.
19314 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
19316         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
19318         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19320         * icall.c: Optimize Buffer.BlockCopy.
19322 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19324         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
19325         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
19326         quote). Changed them to "MMMM yyyy".
19328 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
19330         * rand.c
19331         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
19333 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
19335         * reflection.h: Updated after changes to managed structures.
19337         * appdomain.c: Bump corlib version.
19339 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19341         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
19342         windows.
19344 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19346         * Makefile.am: link to ../os/libmonoos.la on windows.
19348         * assembly.c:
19349                 -If MONO_DEBUG, warn about non-existing directories in
19350                 MONO_PATH.
19351                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
19352                 compile time variable.
19353                 -Removed init_default_path and call mono_set_rootdir from
19354                 libmonoos.a instead (windows only).
19356         * assembly.h: declare mono_assembly_getrootdir().
19358         * domain.c:
19359         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
19361         * loader.c: s/getenv/g_getenv/
19363 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
19365         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
19367         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
19369         * metadata.h: Add new marshalling conversions.
19371         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
19372         function.
19374         * reflection.c (mono_reflection_get_type): Lookup the type in all
19375         modules of a multi-module assembly. Fixes #58291.
19377 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
19379         * threads.c: Before aborting a background, set the StopRequested
19380         state.  This avoids throwing the Abort exception.
19381         In mono_thread_manage, don't continue with the shutdown until all
19382         aborted threads have actually stopped.
19384 2004-05-10  Jackson Harper  <jackson@ximian.com>
19386         * locales.c: Remove the modifier from culture names.
19387         
19388 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19390         * Makefile.am: monosn is not installed any more. It has been deprecated
19391         in favor of sn.
19393 2004-05-07  Jackson Harper  <jackson@ximian.com>
19395         * locales.c
19396         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
19397         Fix array construction, add bailout if the length is 0.
19399 2004-05-07  Dick Porter  <dick@ximian.com>
19401         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
19402         machine doesn't have a DNS entry.  Patch by Urs Muff
19403         (umuff@quark.com), fixes bug 57928.
19405 2004-05-06  Jackson Harper  <jackson@ximian.com>
19407         * reflection.c: Handle null PublicTokens properly. alloc mem for
19408         assembly names culture so we dont crash when freeing it.
19409         
19410 2004-05-06  Jackson Harper  <jackson@ximian.com>
19412         * assembly.c: Check the usergac when loading with partial names.
19413         
19414 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19416         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
19417         does nothing for now (not required for Linux/Windows) but the class
19418         library can call it (and a newer or modified runtime could need it).
19419         * icall.c: Registred icall.
19421 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19423         * loader.c: prints a message on module loading error we set MONO_DEBUG
19424         environment variable.
19426 2004-05-05  Jackson Harper  <jackson@ximian.com>
19428         * appdomain.c: Handle PublicKeyToken=null properly.
19429         
19430 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19432         * environment.c|h: Added icall ves_icall_System_Environment_
19433         GetOSVersionString to get the current OS version as a string.
19434         * icall.c: Registred icall.
19436 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
19438         * object.c: in mono_object_get_virtual_method(), take into account that
19439         non-virtual methods don't have a slot in the vtable. Check needed when
19440         the object is a proxy.
19442 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
19444         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
19445         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
19447         * object.c (mono_class_compute_gc_descriptor): Fix warning.
19449         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
19450         passed when a valuetype is expected.
19452         * object.c (mono_unhandled_exception): Only set the exit code if the
19453         exception happens in the main thread. Fixes thread5.exe.
19455         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
19456         invalid names. Fixes #58047.
19458 2004-05-03  Jackson Harper  <jackson@ximian.com>
19460         * assembly.c: This line was committed accidently and is unneeded.
19461         
19462 2004-05-03  Jackson Harper  <jackson@ximian.com>
19464         * icall.c: Add new icall for Assembly::LoadWithPartialName
19465         * assembly.c/.h: new function that probes the GAC to load partial
19466         assembly names by Paolo Molaro.
19467         
19468 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19470         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
19471         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
19472         (type_get_fully_qualified_name): Added PublicKeyToken when building a
19473         full type name.
19475 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19477         * appdomain.c: fixed check for 'neutral' culture and removed warning.
19478         * reflection.c: fix bug when parsing a full type name and Version is not
19479         the last thing in the string.
19481 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
19483         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
19484         crashes when it is freed.
19486 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19488         * assembly.c: print the compat warning to stderr.
19490 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
19492         * assembly.c (mono_assembly_load_references): Add a compatibility
19493         hack to run old applications that might be still referencing the
19494         3300-based assemblies, only do this for System.xxx.
19496 2004-05-01  Jackson Harper  <jackson@ximian.com>
19498         * appdomain.c: If the culture is neutral we set it to "".
19499         
19500 2004-04-29  Jackson Harper  <jackson@ximian.com>
19502         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
19504 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
19506         * string-icalls.c: added low overhead function for copying chars
19507         * icall.c: added needed icall for the above function
19509 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19511         * icall.c: fix return value of get_global_assembly_cache.  Implemented
19512         Environment.GetLogicalDrives.
19514 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
19516         * rand.c: try and talk to egd or prngd
19517         for random bytes if opening devices fail.
19519 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
19521         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
19522         alignment for the type using the native alignment of its members 
19523         instead of using klass->min_align.
19525         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
19527 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19529         * file-io.c:
19530         * socket-io.c: added check for sys/aio.h.
19532 2004-04-28  Dick Porter  <dick@ximian.com>
19534         * threads.c: Don't abort a thread thats already aborting, when
19535         terminating everything.
19537 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19539         * icall.c: added 2 new async calls for Socket.
19541         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
19542         IO on *nix systems.
19544         * threadpool.c: removed unused variable.
19546 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
19548         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
19550 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
19552         * locales.c: put back string_invariant_tolower () and
19553         string_invariant_toupper ().
19555 2004-04-26 David Waite <mass@akuma.org>
19557         * file-io.h:
19558         * socket-io.h:
19559         * threads.h:
19560         * unicode.h: remove comma from end of enumeration declarations
19562 2004-04-26 David Waite <mass@akuma.org>
19564         * debug-mono-symfile.h:
19565         * decimal.c:
19566         * mono_debug.h:
19567         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
19570 2004-04-26  Jackson Harper  <jackson@ximian.com>
19572         * appdomain.c: Increment version number.
19573         
19574 2004-04-26  Jackson Harper  <jackson@ximian.com>
19576         * appdomain.c: Set assembly references public token value when
19577         PublicKeyToken is specified, not the hash_value. Free public token
19578         values when free assembly name data. Previously the public key
19579         token was hex decoded, however we are using hex encoded public key
19580         tokens, so this is not neccasary.
19581         * assembly.c: Lookup assemblies in the gac if their public token
19582         value is set. Add function to allow enabling user gac
19583         lookups. Specify whether or not the assembly was loaded from the
19584         GAC. Compare full assembly names when checking the cache for
19585         assemblies (Temporarily disabled see comment in code). Remove
19586         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
19587         specifies trace-loader they get extra info to stdout on the
19588         loading of assemblies.
19589         * image.h: Add a field for an assembly references public token
19590         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
19591         whether an assembly has been loaded from the GAC.
19592         * image.c: Remove a corlib -> mscorlib name mapping.
19593         * loader.h: Add function to enable/disable the user gac.
19594         * mono-config.c: Check if the usergac is enabled in the config
19595         file.
19596         * icall.c: New icall to determine whether or not an assembly has
19597         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
19598         * tabldefs.h: Add constant for assemblyref flag that specifies a
19599         full public key is used instead of a public token.
19600         * reflection.c: Remove mscorlib -> corlib mappings. Set
19601         PublicTokenValue instead of hash value. This value is a hex
19602         string so it does not need to be expanded.
19604 2004-04-26  Martin Baulig  <martin@ximian.com>
19606         * mono-debug-debugger.c (mono_debugger_initialize): Set
19607         `mono_debugger_initialized' before calling mono_debug_lock().
19609 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
19611         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
19612           InternalToUpper/InternalToLower.
19613         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
19614           removed invariant culture shortcut.  This is now done in managed code.
19615         * locales.c: (string_invariant_toupper/tolower) removed.
19617 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19619         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
19620         Added Poll internal call.
19622         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
19623         call for Poll. Select was too heavy for polling a single socket.
19625         * threadpool.[ch]: added mono_threadpool_cleanup.
19626         * threads.c: use it. Don't use Thread_Abort on windows.
19628 2004-04-23  Martin Baulig  <martin@ximian.com>
19630         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
19632 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
19634         * icall.c: Registred new icalls for key pair protection and added an
19635         icall for Environment.GetFolderPath on Windows.
19636         * security.c|h: Added new icalls for key pair protection.
19638 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19640         * socket-io.c: don't display the non-supported family warning for known
19641         families. Now this is not displayed on windows when checking support
19642         for IPv4/IPv6.
19644 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19646         * class.c: don't display the layout warning for static fields.
19648 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
19650         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
19651         * locales.c, locales.h: Added new icalls for culture-specific
19652         Char.ToLower and Char.ToUpper.
19654 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19656         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
19657         by David Waite.
19659 2004-04-20  Martin Baulig  <martin@ximian.com>
19661         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
19662         of the type name before passing it to mono_reflection_type_from_name().
19664 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
19666         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
19667         encodings here. Fixes #56965.
19669 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
19671         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19672         fix test on strstr result not that I can see anything that
19673         relies on the result.
19675 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
19677         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
19678         Fixes #57081.
19680         * marshal.c (mono_marshal_get_string_encoding): New helper function.
19682         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
19683         function to determine which marshalling to use for strings. Fixes
19684         #56965.
19686         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
19688         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
19690 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
19692         * icall.c: #include mono-config.h
19694 2004-04-15  Jackson Harper  <jackson@ximian.com>
19696         * culture-info-tables.h: Fix date formats for en-US culture.
19697         
19698 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
19700         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
19701         ThreadPool.SetMinThreads.
19702         * threadpool.c: Implemented ThreadPool.GetMinThreads and
19703         ThreadPool.SetMinThreads.
19705 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19707         * mono-config.c: also load the .config file in the directory
19708         where the assembly was found.
19710 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
19712         * assembly.c: load per-assembly config files.
19713         * icall.c: decrapified code to get the config dir and moved to
19714         mono-config.c.
19715         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
19716         per-assembly config files. When doing a dll map lookup give precedence
19717         to the per-assembly data.
19719 2004-04-14  Martin Baulig  <martin@ximian.com>
19721         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
19722         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
19723         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
19725         * mono-debugger-debugger.c: While the debugger is locked, remember
19726         whether the symbol tables have changes and send one single
19727         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
19729 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
19731         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
19733         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
19734         function.
19736         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
19737         account when marshalling string arrays. Fixes #56965.
19739 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
19741         * icall.c: Add new icalls mapping for security.
19742         * security.c|h: Add internal calls for WindowsIdentity,
19743         WindowsImpersonationContext and WindowsPrincipal.
19745 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
19747         * class.c: Added comment to ensure the System.MonoDummy class
19748         is removed when no longer necessary
19750 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
19752         * appdomain.c: Pass arguments to the bootstraping exceptions to
19753         minimize JITed methods at boot
19755         * metadata.c (mono_exception_from_name_two_strings): Allow for the
19756         second string to be null.
19758         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19759         Change the protocol to minimize the JIT methods at startup.  Now
19760         it Returns the internal codepage, if the value of "int_code_page"
19761         is 1 at entry, and we can not compute a suitable code page
19762         number, returns the code page as a string.
19764 2004-04-13  Jackson Harper  <jackson@ximian.com>
19766         * culture-info-tables.h: Fix number of decimal digits for all
19767         english locales.
19769 2004-04-13  Jackson Harper  <jackson@ximian.com>
19771         * icall.c: Clairfy out of sync error message. It is not always
19772         your corlib that is out of sync.
19774 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
19776         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
19777         properties when only the set accessor is overriden. Fixes #55874.
19779 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
19781         * assembly.c (mono_assembly_load_references): Make this thread safe.
19782         Fixes #56327.
19784 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
19786         * monosn.c: Add missing initialization calls.
19788 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
19790         * locales.c:
19791         ves_icall_System_Globalization_CultureInfo_construct_number_format
19792         Fix g_assert so it compiles on fussier compilers re int/ptr
19793         mismatch
19795 2004-04-08  Dick Porter  <dick@ximian.com>
19797         * socket-io.h:
19798         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
19799         53992.  Also rearrange the code so that the internal calls return
19800         an error value and exceptions are thrown from managed code.
19802         * icall.c: Add type info to the socket icalls.
19804 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19806         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
19807         owes me a beer.
19809 2004-04-07  Martin Baulig  <martin@ximian.com>
19811         * class.c (mono_class_from_generic_parameter): Don't default
19812         `klass->parent' to `mono_defaults.object_type'.
19814 2004-04-07  Martin Baulig  <martin@ximian.com>
19816         * reflection.c (mono_reflection_initialize_generic_parameter): Set
19817         `param->pklass->reflection_info'.       
19819 2004-04-07  Jackson Harper  <jackson@ximian.com>
19821         * culture-info-tables.h: Fix date separator symbol.
19822         
19823 2004-04-07  Martin Baulig  <martin@ximian.com>
19825         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
19826         from System.Type to System.MonoType.
19828 2004-04-07  Martin Baulig  <martin@ximian.com>
19830         * reflection.h
19831         (MonoReflectionGenericParam): Added `has_reference_type' and
19832         `has_value_type' fields.
19834         * reflection.c (mono_image_get_generic_param_info): Encode the
19835         correct flags if we have the `class' or `struct' constraint.
19837 2004-04-07  Martin Baulig  <martin@ximian.com>
19839         * reflection.h
19840         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
19842 2004-04-07  Jackson Harper  <jackson@ximian.com>
19844         * appdomain.c: Revert extra patches, just wanted to bump the
19845         version number.
19846         
19847 2004-04-07  Jackson Harper  <jackson@ximian.com>
19849         * Makefile.am: Add culture-info private headers.
19850         * icall.c: Add new icalls for contructing locales.
19851         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
19852         * locales.h: Declare new culture info construction methods.
19853         * object.h: Add new fields used to avoid the CultureMap to
19854         MonoCultureInfo.
19855         * culture-info.h: Definition of structs used in the culture info
19856         tables.
19857         * culture-info-tables.h: Autogenerated tables that contain culture
19858         info data. This file was generated with the locale-builder tool.
19859         * appdomain.c: Incement corlib version number.
19860         
19861 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
19863         * appdomain.c: (mono_runtime_init) move mono_thread_init
19864         to before mono_object_new calls so critical sections
19865         are initialized before use.
19867 2004-04-07  Martin Baulig  <martin@ximian.com>
19869         * icall.c
19870         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
19871         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
19872         (ves_icall_MonoGenericParam_initialize): Removed.
19873         (monogenericparam_icalls): Removed.
19874         (generictypeparambuilder_icalls): Added new table for
19875         System.Reflection.Emit.GenericTypeParameterBuilder.
19877         * reflection.c
19878         (mono_reflection_define_generic_parameter): Removed.
19879         (mono_reflection_initialize_generic_parameter): This is now called
19880         from GenericTypeParameterBuilder's .ctor.
19882 2004-04-06  Martin Baulig  <martin@ximian.com>
19884         * class.c (mono_class_init): Don't inflate nested classes in a
19885         generic instance.
19886         (mono_type_get_name_recurse): Include the generic arguments for
19887         generic instances and generic type declarations.
19888         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
19889         (_mono_class_get_instantiation_name): Removed.
19890         (mono_class_create_generic): Always use `gklass->name' as our name.
19892         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
19894         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
19895         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
19896         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
19897         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
19898         closed generic methods here.
19900         * reflection.c
19901         (mono_reflection_generic_inst_get_nested_types): Removed.
19902         (inflate_mono_method): Copy the generic parameters from the
19903         MonoMethodHeader into out MonoGenericMethod.
19905 2004-04-06  Martin Baulig  <martin@ximian.com>
19907         * row-indexes.h
19908         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
19910         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
19912         * reflection.c (build_compressed_metadata): If we have any entries
19913         in the GenericParam, MethodSpec or GenericParamConstraint tables,
19914         set the header version to 1.1.
19916 2004-04-06  Martin Baulig  <martin@ximian.com>
19918         * class.c (mono_class_init): If we're a generic instance,
19919         initialize our nested classes, too.
19920         (_mono_class_get_instantiation_name): Deal with the new `!%d'
19921         suffix. 
19923 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19925         * process.c: quote the argument passed to the shell on windows.
19927 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
19929         * threads.c (mono_alloc_special_static_data): Allow this to be
19930         called during startup.
19932 2004-04-02  Martin Baulig  <martin@ximian.com>
19934         * icall.c
19935         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
19937 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
19939         * icall.c: Fix build.
19941 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
19943         * Makefile.am: Added security.c|h.
19944         * icall.c: Added icall for get_UserName;
19945         * security.c: New file for security related icalls. Added function
19946         get_UserName for System.Environment (fix #56144).
19947         * security.h: New. Header file for security.c
19949 2004-04-02  Dick Porter  <dick@ximian.com>
19951         * icall.c: Deleted the icalls that were obsoleted some time ago
19952         by the ICU string code, and which were mixed into the icall
19953         rearranging.  Fixes bug 55969.
19955         * string-icalls.h: 
19956         * string-icalls.c: Deleted the code that those icalls reference.
19958 2004-04-01  Martin Baulig  <martin@ximian.com>
19960         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
19962         * class.c (mono_class_from_generic_parameter): Don't set 
19963         TYPE_ATTRIBUTE_INTERFACE.
19964         (my_mono_class_from_generic_parameter): Likewise.
19966 2004-04-01  Martin Baulig  <martin@ximian.com>
19968         * loader.c (find_method): Added an optional `MonoClass *ic'
19969         argument to search in a specific interface.
19970         (mono_get_method_constrained): New public function.
19972 2004-04-01  Martin Baulig  <martin@ximian.com>
19974         * reflection.c (mono_image_get_generic_field_token): Use the
19975         `handleref' cache here.
19977 2004-04-01  Martin Baulig  <martin@ximian.com>
19979         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
19981         * reflection.c (create_generic_typespec): Use the `typespec' hash
19982         here, not the `typeref' one.    
19984 2004-04-01  Martin Baulig  <martin@ximian.com>
19986         * class.c (mono_class_inflate_generic_type): Moved the
19987         functionality into a new static inflate_generic_type() which
19988         returns NULL if it didn't do anything.  Only increment the
19989         `mono_stats.inflated_type_count' if we actually inflated
19990         something.
19991         (mono_class_get_full): Check the classes type to see whether we
19992         need to inflate it; also inflate MONO_TYPE_(M)VAR.
19994 2004-04-01  Jackson Harper  <jackson@ximian.com>
19996         * reflection.c: Set culture for assembly references.
19997         
19998 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
20000         * reflection.[ch], icall.[ch], Fix support for pinning variables.
20002 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20004         * assembly.c:
20005         (do_mono_assembly_open): the critical section also covers
20006         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
20008 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20010         * threads.c:
20011         (mono_manage_threads): abort the background threads when finishing.
20012         Fixes bug #47232.
20014 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20016         * gc.c: only close the done_event handle if there was no timeout.
20017         C-ified comments.
20019 2004-03-30  Martin Baulig  <martin@ximian.com>
20021         * icall.c (icall_entries): It's called "System.Activator", not
20022         "System.Activation".    
20024 2004-03-30  Martin Baulig  <martin@ximian.com>
20026         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
20027         (mono_class_create_from_typespec): Likewise.
20029 2004-03-30  Martin Baulig  <martin@ximian.com>
20031         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
20032         `has_ctor_constraint' and `initialized'.
20034 2004-03-30  Martin Baulig  <martin@ximian.com>
20036         * reflection.c (encode_new_constraint): New static function to add
20037         the constructor constraint attribute to a type parameter.
20038         (encode_constraints): Call encode_new_constraint() if necessary.
20040         * reflection.h
20041         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
20043         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
20044         
20045 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
20047         * reflection.c, icall.c: add support for pinning variables. 
20049 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
20051         * marshal.c (mono_marshal_get_managed_wrapper):
20052         init bool local with zero rather than null.
20054 2004-03-29  Martin Baulig  <martin@ximian.com>
20056         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
20057         the "official" behavior here.
20058         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
20060 2004-03-29  Martin Baulig  <martin@ximian.com>
20062         * icall.c: Reflect latest API changes.
20064 2004-03-29  Martin Baulig  <martin@ximian.com>
20066         * loader.c (mono_get_method_from_token): Also call
20067         mono_metadata_load_generic_params () for abstract and interface
20068         methods; replace the type arguments in the method signature with
20069         the ones which are loaded from the metadata.
20071 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
20073         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
20074         of the lock is not the current thread. MS.NET don't do it, in spite of
20075         what the documentation says. See bug #56157.
20077 2004-03-28  Martin Baulig  <martin@ximian.com>
20079         * class.c (mono_class_init): Don't call init_properties() and
20080         init_events() for generic instances; set `prop->parent' when
20081         inflating properties.
20083         * reflection.c (mono_generic_inst_get_object): Call
20084         `mono_class_init (ginst->klass)'.
20085         (mono_type_get_object): Only create a MonoGenericInst if your
20086         generic type is a TypeBuilder.
20087         (do_mono_reflection_bind_generic_parameters): Only set
20088         `ginst->is_dynamic' if our generic type is a TypeBuilder.
20090 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
20092         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
20093         Fixes #56091.
20095 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20097         * icall.c: added Kill_internal icall.
20098         * process.[ch]: added Kill_internal icall.
20100 2004-03-25  Martin Baulig  <martin@ximian.com>
20102         * class.h (MonoStats): Added `generic_instance_count',
20103         `inflated_method_count', `inflated_type_count' and
20104         `generics_metadata_size'.       
20106 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20108         * reflection.c: no warnings now.
20110 2004-03-25  Martin Baulig  <martin@ximian.com>
20112         * class.c (mono_class_get_full): New public function; does a
20113         mono_class_get(), but also takes a `MonoGenericContext *'.
20115         * loader.c (mono_field_from_memberref): Renamed to
20116         `field_from_memberref', made static and added `MonoGenericContext *'
20117         argument.
20118         (mono_field_from_token): Added `MonoGenericInst *' argument.
20119         (method_from_memberef): Likewise.
20120         (mono_get_method_from_token): Likewise.
20121         (mono_get_method_full): New public function; does a
20122         mono_get_method(), but also takes a `MonoGenericContext *'.
20124         * verify.c (mono_method_verify): Get the method's generic context
20125         and pass it to mono_field_from_token(), mono_get_method_full() and
20126         mono_class_get_full().
20128 2004-03-25  Martin Baulig  <martin@ximian.com>
20130         * class.c (mono_class_inflate_generic_type): Take a
20131         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
20132         `MonoGenericMethod *'.
20134 2004-03-25  Martin Baulig  <martin@ximian.com>
20136         * loader.h (MonoMethodInflated): Store the MonoGenericContext
20137         instead of the MonoGenericMethod here.
20139 2004-03-25  Martin Baulig  <martin@ximian.com>
20141         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
20142         each time we create a new MonoGenericInst, we also create a new
20143         context which points back to us.
20145         * class.c (inflate_method): Use `ginst->context' instead of
20146         creating a new context.
20148         * loader.c (method_from_memberref): Use
20149         `klass->generic_inst->context' instead of creating a new context.
20151 2004-03-25  Martin Baulig  <martin@ximian.com>
20153         * class.h (MonoGenericContext): New struct.
20154         (MonoGenericMethod): Removed `generic_inst'.
20156         * class.c (mono_class_inflate_generic_method): Take a
20157         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
20159 2004-03-25  Martin Baulig  <martin@ximian.com>
20161         * loader.h (MonoMethodInflated): New typedef.
20163         * metadata.h (MonoMethodSignature): Removed `gen_method', make
20164         `generic_param_count' consume just 30 bits, added `is_inflated'
20165         and `has_type_parameters' flags (one bit each).
20167         * class.c (mono_class_inflate_generic_method): Create a
20168         MonoMethodInflated instead of a MonoMethodNormal and set
20169         `is_inflated' in the method signature.
20171         * class.h (MonoGenericMethod): Removed `generic_method'.
20173 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
20175         * image.c: Make sure the name of a MonoImage is always an absolute path.
20176           This fixes bug #54415.
20178 2004-03-24  Martin Baulig  <martin@ximian.com>
20180         * class.c (mono_class_setup_vtable): If we're a generic instance,
20181         use our generic type's vtable size.
20183 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
20185         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
20186         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
20187         problems.
20189 2004-03-23  Martin Baulig  <martin@ximian.com>
20191         * class.h (MonoDynamicGenericInst): Added `int count_events' and
20192         `MonoEvent *events'.
20194         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
20195         (typebuilder_icalls): Added "get_event_info"; calls
20196         mono_reflection_event_builder_get_event_info(). 
20198         * reflection.c (mono_reflection_generic_inst_initialize): Added
20199         `MonoArray *events'.
20200         (mono_reflection_event_builder_get_event_info): New function.
20202 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
20204         * object.h: add mono_type_initialization_init
20206         * object.c (mono_runtime_class_init): 
20207         implement class constructor synchronization rules
20208         to cope with threading issues.  
20209         add mono_type_initialization_init
20211         * appdomain.c (mono_runtime_init): call 
20212         mono_type_initialization_init
20214         * class.h: removing initializing field from MonoVTable
20216 2004-03-23  Martin Baulig  <martin@ximian.com>
20218         * class.c (my_mono_class_from_generic_parameter): Use
20219         `param->name' if it's not NULL. 
20221 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
20223         * class.c: do not insert non-virtual methods in the vtable.
20224         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
20225         that means the method is non-virtual. This never would have
20226         happened before.
20228 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
20230         * profiler.c: Added lock for accessing coverage_hash.
20232 2004-03-22  Martin Baulig  <martin@ximian.com>
20234         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
20235         `method->method->signature->generic_param_count != 0' to make it
20236         work for interface methods.
20238 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20240         * process.c: quote the string passed to the shell using g_shell_quote.
20242 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20244         * threads.c:
20245         (mono_threads_manage): don't remove the finalizer thread and self
20246         from the threads hash table so that mono_thread_manage can be called
20247         more than once.
20249 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20251         * process.c: quote the arguments when UseShellExecute is true. Fixes
20252         bug #55790.
20254 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20256         * threads.c: set mono_thread_detach as a cleanup routine for every
20257         thread. This way it's always executed upon thread termination, either
20258         aborted or finished normally. No more xsp hangs!
20260 2004-03-17  Martin Baulig  <martin@ximian.com>
20262         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
20263         `int count_nested' and a `MonoType **nested'.
20265         * reflection.c (mono_reflection_bind_generic_parameters): Moved
20266         most of the functionality into a new static
20267         do_mono_reflection_bind_generic_parameters() and don't take a
20268         `MonoType *nested_in' argument any more.  Don't compute nested
20269         types here.
20270         (mono_reflection_generic_inst_get_nested_types): New public method
20271         to get nested types.
20273         * class.c (mono_class_create_generic): Set `klass->nested_in' if
20274         we're a nested class.
20276         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
20277         mono_reflection_generic_inst_get_nested_types() to compute the
20278         nested types.
20280 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20282         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
20283         descriptive error message under windows.
20284         
20285 2004-03-17  Martin Baulig  <martin@ximian.com>
20287         * class.c (dup_type): Added `const MonoType *original' argument;
20288         copy the attrs from the original type.
20290 2004-03-17  Martin Baulig  <martin@ximian.com>
20292         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
20293         `m->generic_inst_cache' here.
20295 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20297         * exception.h exception.c: Add stack_overflow_exception.
20299 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20301         * threadpool.c:
20302         (overlapped_callback): call SetEvent *after* invoking the callback.
20303         No need to call CloseHandle.
20305 2004-03-16  Martin Baulig  <martin@ximian.com>
20307         * reflection.c (mono_image_get_fieldref_token): Take a
20308         `MonoReflectionField *' instead of a `MonoClassField *' and a
20309         `MonoClass *'; store the `MonoReflectionField *' in the hash.
20311 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20313         * appdomain.c: don't add the culture to the filename we're looking for
20314         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
20316 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20318         * locales.c: don't ignore symbols when doing case insensitive compares.
20319         Thanks Dick! Fixes bug #54046.
20321         * threads.c: surround 'threads' usage with enter/leave in
20322         mono_thread_manage.
20324 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
20326         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
20327         implicitly marshalled as [Out]. Fixes #55450.
20329         (mono_marshal_get_runtime_invoke): Zero out the result if there is
20330         an exception.
20332 2004-03-16  Martin Baulig  <martin@ximian.com>
20334         * class.c (mono_class_from_generic_parameter): Use the actual
20335         parameter name. 
20337 2004-03-16  Martin Baulig  <martin@ximian.com>
20339         * reflection.c (type_get_signature_size): New static function.
20340         Compues the size of the type in a method signature.
20341         (method_get_signature_size): New static function; calls
20342         type_get_signature_size() to compute the actual size of the
20343         method's signature.
20344         (method_encode_signature): Use method_get_signature_size() to get
20345         the signature's size rather than using `nparams * 10'.
20347 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20349         * file-io.h: define here WapiOverlapped on windows. I don't want the
20350         regular OVERLAPPED one.
20352         * file-io.c:
20353         * threadpool.c: somehow, BindIoCompletionCallback is not found.
20354         Disabling AIO on windows.
20356 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20358         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
20359         bug #55385.
20361 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20363         * appdomain.c: upgraded corlib version.
20365         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
20366         and BeginWrite. Allow opening files for asynchrnous operations.
20368         * file-io.h: new struct that maps FileStreamAsyncResult.
20369         * icall.c: added new icalls.
20370         * process.[ch]: support setting child process environment variables
20371         and use the SHELL or COMSPEC when UseShellExecute is true.
20373         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
20374         callback for async. IO is here and also BindHandle.
20376         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
20377         from here.
20379 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
20381         * reflection.c (create_custom_attr): Allow len == 0.
20383         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
20384         computation on big-endian machines.
20386 2004-03-13  Martin Baulig  <martin@ximian.com>
20388         * class.h (MonoGenericInst): Added `int count_ifaces'.
20390         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
20391         `ginst->count_ifaces' instead `klass->interface_count' since we
20392         may get called before the vtable is created.
20394         * loader.c (mono_method_get_param_names): If we're a generic
20395         instance, return and don't initialize the class.
20397         * reflection.c (mono_reflection_setup_generic_class): Don't call
20398         ensure_runtime_vtable().
20399         (mono_reflection_bind_generic_parameters): Set
20400         `ginst->count_ifaces'.
20402 2004-03-11  Jackson Harper <jackson@ximian.com>
20404         * icall.c:
20405         * unicode.c:
20406         * unicode.h: Remove unused System.Char icalls.
20407         
20408 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
20410         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
20411         code when we P/Invoke the first library in Windows.Forms, instead
20412         of when we first open the assembly.
20414         * assembly.c: Drop the lookup from here.
20416 2004-03-10  Martin Baulig  <martin@ximian.com>
20418         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
20419         class for properties, fields and events.  Finally fixes #54945.
20421 2004-03-10  Martin Baulig  <martin@ximian.com>
20423         * metadata.c (mono_metadata_class_equal): New static function;
20424         checks whether two generic instances or two generic parameters are
20425         equal.
20426         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
20427         compare classes.        
20429 2004-03-10  Martin Baulig  <martin@ximian.com>
20431         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
20433         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
20434         argument and write it into the `reflection_info' field.
20436         * icall.c
20437         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
20438         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
20440 2004-03-09  Jackson Harper  <jackson@ximian.com>
20442         * char-conversions.h: use 8 bits for numeric data its all we need
20443         * icall.c: numeric data is only 8 bits now.
20445 2004-03-09  Martin Baulig  <martin@ximian.com>
20447         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
20449         * class.c (init_properties, init_events): Initialize the new
20450         `parent' field.
20452         * reflection.c (typebuilder_setup_properties): Likewise.
20453         (typebuilder_setup_events): Likewise.
20455         * reflection.h (MonoEventInfo): Replaced `parent with
20456         `declaring_type' and `reflected_type'.
20458         * icall.c (ves_icall_get_property_info): Distinguish between
20459         declaring and reflected type.
20460         (ves_icall_get_event_info): Likewise.
20462 2004-03-09  Martin Baulig  <martin@ximian.com>
20464         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
20465         (ves_icall_Type_GetField): Correctly set field->klass.
20467 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
20469         * loader.h: Fix warning.
20471 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
20473         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
20474         library routine if present.  Notice that it will still continue
20475         executing even if its missing, for those working on the Gtk#
20476         edition of Windows.Forms.
20478         * assembly.c (do_mono_assembly_open): If loading the
20479         System.Windows.Forms call mono_loader_wini_init.
20481 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
20483         * class.h: Added MonoRemoteClass struct.
20484         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
20485         function for MonoStrings.
20486         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
20487         Added internal call for getting the proxy type.
20488         * marshal.c: Get the type of transparent proxies from its remote_class.
20489         Added methods that generate the IL for type checks and casts:
20490         mono_marshal_get_isinst, mono_marshal_get_castclass, 
20491         mono_marshal_get_proxy_cancast.
20492         * marshal.h: Declaration of the previous new methods.
20493         * object.c: Added new moethods for creating and updating MonoRemoteClass
20494         instances: mono_remote_class, mono_upgrade_remote_class, 
20495         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
20496         * verify.c: FIx transparent_proxy_fields layout.
20497         * appdomain.c: Bump corlib version.
20499 2004-03-04  Jackson Harper  <jackson@ximian.com>
20501         * icall.c: Add icall to access char conversion tables.
20502         * char-conversions.h: Character conversion tables.
20503         * Makefile.am: Add char-conversions.h private header file.
20504         
20505 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
20507         * appdomain.c (unload_thread_main): Increase unloading timeout to
20508         10 sec as a temporary workaround for Nant problems.
20510 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
20512         * gc.c: Add checks for GC_enable and GC_disable.
20514         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
20515         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
20516         (bug #54988).
20517         
20518 2004-02-27  Martin Baulig  <martin@ximian.com>
20520         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20521         `MonoReflectionType *' instead of a `MonoType *'.
20523 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
20525         * gc.c (run_finalize): Avoid finalizing the object representing the
20526         finalizer thread.
20527         (finalizer_thread): Fix warning.
20529 2004-02-25  Martin Baulig  <martin@ximian.com>
20531         * class.c (_mono_class_get_instantiation_name): Added `int offset'
20532         argument for nested types.
20533         (mono_class_create_generic): Added support for nested generictypes.
20535         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
20536         `GList *nested'.
20538         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
20540         * reflection.c (method_encode_signature): Increase the minimum
20541         value of `size' from 10 to 11.
20542         (mono_reflection_bind_generic_parameters): Take `int type_argc'
20543         and `MonoType **types' arguments instead of the `MonoArray
20544         *types'; added `MonoType *nested_in'.  Recursively instantiate
20545         nested classes. 
20547 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
20549         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
20550         stack_overflow_ex members which are used by exception handling.
20552         * appdomain.c (mono_runtime_init): Initialize the new members.
20554         * gc.c (mono_gc_enable): New helper function.
20555         * gc.c (mono_gc_disable): New helper function.
20557 2004-02-23  Martin Baulig  <martin@ximian.com>
20559         * icall.c: I must have been really stupid - make it actually work
20560         this time ;-)
20562 2004-02-23  Martin Baulig  <martin@ximian.com>
20564         * loader.c (method_from_memberref): Only inflate the method if
20565         it's in another klass.
20567 2004-02-23  Martin Baulig  <martin@ximian.com>
20569         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
20570         (mono_class_init): If we're a generic instance and an interface,
20571         compute `class->interface_id'; also create `class->interfaces'
20572         here and inflate them.
20574         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
20575         `ginst->is_open'.
20576         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
20578         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
20580 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
20582         * reflection.c (method_encode_code): Improved the error message
20583         generated by the exception.
20585 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20587         * icall.c: Martin did not do what he said in the ChangeLog for
20588         2004-02-18, but put back the changes for properties and events.
20589         Commenting those changes out again and adding comment to bug #54518.
20590         
20591         * process.c: removed warning.
20593 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
20595         * marshal.c (emit_struct_conv): Print an error message instead of
20596         asserting when a type does not have the StructLayout attribute.
20598 2004-02-20  Martin Baulig  <martin@ximian.com>
20600         * reflection.c (mono_type_get_object): Also use the cache for
20601         generic instances.
20602         (mono_reflection_bind_generic_parameters): Always compute
20603         `ginst->ifaces'.        
20605 2004-02-20  Martin Baulig  <martin@ximian.com>
20607         * class.h (MonoGenericMethod): Removed `klass'.
20609         * class.c (mono_class_inflate_generic_method): Added `MonoClass
20610         *klass' argument.
20612 2004-02-20  Martin Baulig  <martin@ximian.com>
20614         * reflection.c (method_encode_methodspec): Actually use the
20615         uninflated signature for the memberref.
20617 2004-02-20  Martin Baulig  <martin@ximian.com>
20619         * class.h (MonoGenericMethod): Removed `declaring'.
20621         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
20622         is NULL, compute it here.
20624 2004-02-20  Martin Baulig  <martin@ximian.com>
20626         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
20628         * metadata.c (mono_metadata_generic_inst_hash): New method.
20629         (mono_metadata_generic_inst_equal): New method.
20631         * reflection.c (mono_reflection_bind_generic_parameters): Use the
20632         `klass->image->generic_inst_cache' cache to avoid creating
20633         duplicate MonoGenericInst's.
20635         * class.c (mono_class_inflate_generic_type): Use the cache.
20637 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20639         * object.c: fixed gc descriptor calculation for embedded valuetypes.
20641 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20643         * icall.c: added Socket.WSAIoctl icall.
20645         * socket-io.[ch]: implemented
20646         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
20648 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
20650         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
20652 2004-02-18  Urs C Muff  <umuff@quark.com>
20654         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
20655         this work on PPC and other big-endian architectures.
20657         * debug-mono-symfile.h: Prepended the names of all the `guint32'
20658         fields with an underscore to make sure they're only accessed by
20659         the read32() macro.
20661 2004-02-18  Martin Baulig  <martin@ximian.com>
20663         * icall.c: Put the klass->refclass changes back for methods and
20664         fields, but not for properties and events.  We're currently not
20665         distinguishing between DeclaringType and ReflectedType for
20666         properties and events, that's what caused the regressions.
20668 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20670         * object.c:
20671         (mono_async_result_new): the handle can be NULL.
20673         * threadpool.c: Use an event instead of a semaphore, don't initialize
20674         it until needed. This saves quite a few semaphores from being created
20675         when using the threadpool.
20677 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
20679         * object.c (mono_string_is_interned_lookup): Fix interning of long
20680         strings. Fixes #54473.
20682         * domain.c (ldstr_equal): Optimize if the two strings are equal.
20684         * icall.c: Revert the klass->refclass changes since they introduce
20685         regressions (bug #54518).
20687 2004-02-18  Martin Baulig  <martin@ximian.com>
20689         * class.c (mono_class_init): If we're a generic instance and don't
20690         come from a TypeBuilder, inflate our members here.
20691         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
20692         (mono_class_create_generic): New public method.
20693         (mono_class_initialize_generic): Removed.
20694         (get_instantiation_name): Renamed to
20695         _mono_class_get_instantiation_name() and made it public.
20697 2004-02-18  Martin Baulig  <martin@ximian.com>
20699         * class.c (mono_class_inflate_generic_type): Clear the new
20700         instance's `nginst->klass' when inflating a generic instance.
20701         (mono_class_is_subclass_of): Added (basic) support for generic
20702         instances.
20704 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
20706         * appdomain.h, domain.c: use a MonoCodeManager instead of a
20707         MonoMempool to hold compiled native code.
20709 2004-02-17  Martin Baulig  <martin@ximian.com>
20711         * class.h (MonoDynamicGenericInst): Added `count_properties' and
20712         `properties'.
20714         * reflection.c (mono_reflection_generic_inst_initialize): Added
20715         `MonoArray *properties' argument.
20717         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
20719 2004-02-17  Martin Baulig  <martin@ximian.com>
20721         * icall.c (ves_icall_Type_GetFields): Renamed to
20722         ves_icall_Type_GetFields_internal() and added a
20723         `MonoReflectionType *rtype' argument; pass it to
20724         mono_field_get_object() to set the field's "reflected" type.
20725         (ves_icall_Type_GetConstructors): Likewise.
20726         (ves_icall_Type_GetEvents): Likewise.
20727         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
20728         argument; pass it to mono_method_get_object() to set the method's
20729         "reflected" type.       
20731 2004-02-17  Martin Baulig  <martin@ximian.com>
20733         * class.h (MonoDynamicGenericInst): New type.
20734         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
20736         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
20737         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
20738         (ves_icall_MonoGenericInst_GetFields): New interncall.
20740         * class.c (mono_class_from_generic): Don't call
20741         mono_class_initialize_generic() if this is a dynamic instance;
20742         ie. it's being created from a TypeBuilder.
20743         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
20744         `class->byval_arg.type'.
20746         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
20747         to `inflate_method' and made static.
20748         (mono_reflection_inflate_field): Removed.
20749         (mono_reflection_generic_inst_initialize): New public method.
20751         * reflection.h (MonoReflectionGenericInst): Removed `methods',
20752         `ctors' and `fields'; added `initialized'.
20754 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
20756         * debug-helpers.c (mono_method_full_name): Fix output for empty
20757         namespaces.
20759 2004-02-12  Martin Baulig  <martin@ximian.com>
20761         * class.h (MonoClassField): Added `MonoType *generic_type'.
20763         * reflection.c (mono_image_get_fieldref_token): Added support for
20764         instantiated generic types.
20765         (field_encode_inflated_field): Removed.
20766         (mono_image_get_inflated_field_token): Removed.
20767         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
20769         * reflection.h (MonoReflectionInflatedField): Removed.
20771 2004-02-12  Martin Baulig  <martin@ximian.com>
20773         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
20774         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
20776         * reflection.c (mono_image_get_methodspec_token): Take a
20777         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
20778         (mono_image_create_token): Check whether we have a
20779         `method->signature->gen_method' and call
20780         mono_image_get_methodspec_token() if appropriate.
20781         (inflated_method_get_object): Removed.
20782         (mono_reflection_bind_generic_method_parameters): Return a
20783         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
20784         (mono_reflection_inflate_method_or_ctor): Likewise.
20786         * reflection.h (MonoReflectionInflatedMethod): Removed.
20788 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
20790         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
20791         for custom valuetype marshalling.
20793         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
20795 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20797         * icall.c: fixed WSAGetLastError_internal name.
20799 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
20801         * threads.c (mono_thread_attach): Allow this to be called multiple
20802         times for a thread.
20803         
20804         * threads.c (build_wait_tids): Do not wait for ourselves.
20806         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
20807         appdomain list is empty.
20809         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
20810         memory returned by mono_string_builder_to_utf16, since it points into
20811         managed memory. Thanks to Bernie Solomon for noticing this.
20813         * icall.c: Add AppDomainSetup icalls.
20815         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
20817         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
20818         types.
20820         * reflection.c (reflection_methodbuilder_to_mono_method): Save
20821         custom attributes to the method_aux struct. Also fix array indexes etc.
20823         * loader.c (mono_method_get_param_names): Make dynamic case work again.
20824         
20825 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
20827         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
20828         (both static and runtime) and reduce startup time.
20830 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
20832         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
20833         AsAny marshalling conversion instead of crashing.
20835         * marshal.c: Fix warnings.
20837 2004-02-09  Martin Baulig  <martin@ximian.com>
20839         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
20841         * reflection.h (MonoReflectionInflatedMethod): Removed the
20842         `declaring' field, it's now in the unmanaged MonoGenericMethod.
20844         * reflection.c (method_encode_methodspec): Removed the `method'
20845         argument; we get it from `gmethod->declaring'.
20846         (inflated_method_get_object): Removed the `declaring' argument.
20848 2004-02-09  Martin Baulig  <martin@ximian.com>
20850         * class.h (MonoGenericMethod): New type.
20851         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
20852         `generic_method'.
20854         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
20855         a `MonoGenericMethod *gen_method' one.
20857         * class.c (mono_class_inflate_generic_type): Take an additional
20858         `MonoGenericMethod * argument.  This is only non-NULL if we're
20859         inflating types for a generic method.   
20860         (mono_class_inflate_generic_signature): Renamed to
20861         inflate_generic_signature() and made static; take a
20862         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20863         (inflate_generic_header): Take a `MonoGenericMethod *' argument
20864         instead of a `MonoGenericInst *' one.
20865         (mono_class_inflate_generic_method): Likewise.
20867         * reflection.c (encode_generic_method_sig): Take a
20868         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20869         (method_encode_methodspec): Likewise.
20870         (inflated_method_get_object): Likewise. 
20872         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
20873         field with a `MonoGenericMethod *gmethod' one.  
20875 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
20877         * class.h (mono_class_has_parent): add parens to expansion
20878         so you can ! this.
20880 2004-02-08  Martin Baulig  <martin@ximian.com>
20882         * image.h (MonoImage): Removed `generics_cache'.
20884         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
20885         instead of a `MonoType *' argument; removed the `inflate_methods'
20886         argument.  Don't inflate methods here.
20888         * loader.c (find_method): If it's a generic instance, call
20889         mono_class_init() on the `sclass->generic_inst->generic_type'.
20891         * metadata.c (mono_type_size): Make this work on uninitialized
20892         generic instances; call it on the `ginst->generic_type's class.
20894         * reflection.c (mono_reflection_bind_generic_parameters): Call
20895         mono_class_from_generic() to create the `ginst->klass'.
20897 2004-02-08  Martin Baulig  <martin@ximian.com>
20899         * class.h (MonoClass): Changed type of `generic_inst' from
20900         `MonoType *' to `MonoGenericInst *'.
20902 2004-02-08  Martin Baulig  <martin@ximian.com>
20904         * icall.c (ves_icall_Type_BindGenericParameters): Just call
20905         mono_type_get_object(), this is now creating a `MonoGenericInst'
20906         for MONO_TYPE_GENERICINST.
20907         (ves_icall_MonoGenericInst_GetParentType): Likewise.
20908         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
20910         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
20911         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
20912         (inflated_method_get_object): Added `MonoClass *refclass' argument.
20913         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
20914         and reflected type.
20916         * reflection.h (MonoReflectionInflatedMethod): Removed
20917         `declaring_type' and `reflected_type'.
20919 2004-02-08  Martin Baulig  <martin@ximian.com>
20921         * class.h (MonoGenericInst): Added `MonoType *parent' and
20922         `MonoType **ifaces'.
20924         * reflection.h (MonoReflectionGenericInst): Removed `klass',
20925         `parent' and `interfaces'.
20927         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20928         `MonoType *' argument and return a `MonoType *'.
20930         * icall.c
20931         (ves_icall_MonoGenericInst_GetParentType): New interncall.
20932         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
20934 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20936         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
20937         valuetype marshalling.
20939 2004-02-06  Martin Baulig  <martin@ximian.com>
20941         * class.c
20942         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
20943         (my_mono_class_from_generic_parameter): Likewise.
20945 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20947         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
20948         contents of the symbol files lazily.
20950         * object.h (MonoThread): Add 'name' and 'name_len' fields.
20952         * threads.h threads.c icall.c: New icalls for getting and setting the
20953         threads name.
20955 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
20957         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
20958         Raise an exception when the domain is not found.
20960 2004-02-03  Martin Baulig  <martin@ximian.com>
20962         * reflection.c (mono_image_get_methodspec_token): Use the
20963         uninflated signature; fixes gen-33.
20965 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
20967         * gc.c threads.c: Make the finalizer thread a normal managed thread so
20968         the finalizer code can use thread functionality.
20970         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
20971         the finalizer thread.
20973         * threads.c: Make some functions more robust.
20975         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
20977         * metadata.h: Add new marshalling conventions.
20979         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
20980         stringbuilder marshalling. Fixes #53700.
20982         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
20984         * reflection.c (mono_image_get_type_info): Save declarative security
20985         info.
20987         * reflection.c (mono_image_get_field_info): Handle uninitialized 
20988         unmanaged fields as well.
20990         * appdomain.c: Bump corlib version.
20992 2004-02-01  Martin Baulig  <martin@ximian.com>
20994         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
20995         method type arguments.  
20997 2004-01-30  Duncan Mak  <duncan@ximian.com>
20999         * marshal.h: Add prototype for
21000         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
21001         and
21002         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
21003         fix the build.
21005 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
21007         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
21008         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
21010 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
21012         * marshal.c (mono_marshal_get_native_wrapper): Add support for
21013         custom marshalling of valuetypes.
21015         * marshal.c: Fix some warnings.
21017 2004-01-29  Martin Baulig  <martin@ximian.com>
21019         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
21020         for generic method parameters.
21022         * reflection.c (method_encode_methodspec): Write the uninflated
21023         signature into the methodspec table.
21024         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
21025         is always the uninflated method.
21026         (reflection_methodbuilder_to_mono_method): Copy the generic
21027         parameters from the MethodBuilder into `header->gen_params'.
21029 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
21031         * class.c (mono_class_from_generic_parameter): Fix warning.
21033 2004-01-27  Martin Baulig  <martin@ximian.com>
21035         * class.c (mono_class_from_generic_parameter): Don't create
21036         `klass->methods' here.  
21038 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
21040         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
21041         extension since it does not work with libraries named lib<FOO>.dll.so.
21043 2004-01-25  Martin Baulig  <martin@ximian.com>
21045         * class.c (mono_class_inflate_generic_type): Added support for
21046         MONO_TYPE_GENERICINST.
21048         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
21049         inflate methods on open constructed types.      
21051 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21053         * object.c: fire ProcessExit event in the root AppDomain after running
21054         Main. Fixes bug #53299.
21056 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
21058         * socket-io.c: include the new socket-wrappers.h header.
21059         Use the wrappers instead of the unix socket functions to make the code
21060         more clear.
21062 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
21064         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
21066         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
21067         Fixes #22532.
21069 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
21071         * reflection.c (mono_image_create_pefile): Handle the case when the
21072         entry point is not a MethodBuilder.
21074         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
21075         field to ReflectionMethod since it is not allways a builder.
21077         * reflection.c (type_get_fully_qualified_name): New helper function to
21078         return the fully qualified name of a type.
21080         * reflection.c (encode_marshal_blob): Always emit the fully qualified
21081         type name for custom marshallers.
21083         * reflection.c (mono_marshal_spec_from_builder): Ditto.
21085         * class.c (mono_class_setup_vtable): If a parent class already 
21086         implements an interface, use the implementing methods from that class.
21087         Fixes #53148.
21089 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21091         * threadpool.c: just return instead of ExitThread to allow for thread
21092         clean up earlier.
21094 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
21096         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
21097         when closing resource modules.
21099         * reflection.c (mono_image_create_pefile): Handle the case when the
21100         entry point is not a MethodBuilder.
21102         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
21103         field to ReflectionMethod since it is not allways a builder.
21105 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21107         * marshal.c (mono_marshal_get_managed_wrapper): 
21108         mono_marshal_alloc takes native int so CONV_I
21109         the arg for 64bits.
21111 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
21113         * reflection.c (fixup_cattrs): New function to fixup the methoddef
21114         tokens in the cattr table. Fixes #53108.
21116 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21118         * loader.c: don't trim ".dll" before looking up in the config file.
21119         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
21121 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
21123         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
21124         Return the module which contains the resource as well.
21125         (ves_icall_System_Reflection_Module_Close): New icall.
21127         * appdomain.c: Bump corlib version number.
21129         * image.c (mono_image_addref): New public function.
21131         * assembly.c: Call mono_image_addref.
21133         * reflection.c (mono_module_get_object): Increase reference count of 
21134         the image.
21136         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
21137         Fixes #22532.
21139         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
21140         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
21141         proper exceptions on DllImport problems.
21143 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
21145         * class.c, metadata.c: eliminate CSIZE macro.
21147 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
21149         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
21150         * object.h: Added async_callback field in MonoAsyncResult.
21151         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
21152         * verify.c: Added async_callback in MonoAsyncResult layout.
21154 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
21156         * reflection.c (mono_reflection_get_custom_attrs): Add support
21157         for Modules.
21159 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
21161         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
21162         marshalling.
21163         (mono_marshal_method_from_wrapper): Add null pointer check.
21165 2004-01-16  Martin Baulig  <martin@ximian.com>
21167         * debug-mono-symfile.h: Set version number to 36 and reflect
21168         latest symbol writer changes.
21170 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
21172         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
21173         multi-dimensional arrays.
21174         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
21175         (mono_class_from_mono_type): Use bounded_array_class_get.
21176         
21177         * class.c (mono_bounded_array_class_get): New function which takes
21178         a 'bounded' bool argument to distinguish vectors from one dimensional
21179         arrays.
21181         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
21182         bounded_array_class_get if the array has bounds.
21184         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21185         Search modules loaded using AssemblyBuilder:AddModule as well.
21187 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21189         * appdomain.c: increased corlib version.
21190         * filewatcher.c: removed g_print.
21191         * icall.c:
21192         (get_property_info): only allocate what is actually requested.
21193         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
21195 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21197         * Makefile.am: added filewatcher.[ch]
21198         * filewatcher.[ch]: FileSystemWatcher runtime support.
21199         * icall.c: added new FSW icalls.
21201 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
21203         * string-icalls.c: fix stringbuilder regression as suggested by
21204         Iain McCoy <iain@mccoy.id.au>.
21206 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
21208         * process.c (process_read_stringtable_block): Recognize '007f' as
21209         a language neutral stringtable block.
21211 2004-01-12  Patrik Torstensson
21213         * object.h (MonoStringBuilder) : Changed layout to support our
21214         new stringbuilder class.
21215         * marshal.c: Change marshalling to support the new layout of 
21216         string builder.
21217         * appdomain.c: increased version number because new layout of
21218         string builder.
21220 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
21222         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
21223         assembly name as an string instead of an AssemblyName, since it is
21224         easier to extract info from it.
21226         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
21227         the culture subdirectories too. Fixes #52231.
21229 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21231         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
21232         It takes 2 new parameters with an optional name for the method to look
21233         for and case ignoring info.
21235         * threadpool.c: removed unused variable.
21237 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21239         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
21240         It takes 2 new parameters with an optional name for the property to look
21241         for and case ignoring info.
21242         Fixes bug #52753.
21244 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
21246         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
21247         Fix #52451.
21249 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21251         * appdomain.c:
21252         * assembly.c: escape the uri before passing it to g_filename_from_uri.
21253         Fixes bug #52630.
21255 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
21257         * reflection.c: Add support for more than one unmanaged resource.
21259         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
21260         in field->def_value, as done in all other cases.
21262         * reflection.c (mono_reflection_get_custom_attrs): Add support for
21263         TypeBuilders.
21265         * reflection.c (mono_reflection_create_runtime_class): Remove 
21266         errorneous assignment to klass->element_class, since it is already
21267         done in mono_reflection_setup_internal_class.
21269 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21271         * gc.c: added missing LeaveCriticalSection.
21272         * icall.c: indented a couple of lines.
21273         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
21274         if we call EndInvoke inside a callback. Fixes bug #52601.
21276 2004-01-07  Martin Baulig  <martin@ximian.com>
21278         * mono-debug-debugger.h
21279         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
21281 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
21283         * appdomain.c: Use messages in NotImplementedException.
21285         * exception.c (mono_get_exception_not_implemented): Now this takes
21286         a message argument.
21288         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
21289         exception instead of g_asserting an aborting when something is not
21290         implemented.
21292         Add some inline docs.
21294 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
21296         * reflection.h: Update after changes to object layout.
21298         * reflection.c: Implement saving of unmanaged aka win32 resources.
21300         * appdomain.c: Bump version number.
21302         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
21303         Handle missing domains gracefully.
21305 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
21307         * file-io.c : On Windows, there are much more invalid_path_chars.
21309 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
21311         * class.h, object.c: prepare for GetType () speedup.
21313 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
21315         * profiler.c: workaround for --profile null reference exception on
21316           cygwin. Patch by Patrik Torstensson.
21318 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
21320         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
21321         make work for unaligned access.
21323 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
21325         * class.c: small cleanup (class->fields [i] -> field).
21326         * image.c: check address of metadata is valid.
21328 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
21330         * assembly.h assembly.c (mono_assembly_loaded): New public function to
21331         search the list of loaded assemblies.
21333         * reflection.c (mono_reflection_type_from_name): Use 
21334         mono_assembly_loaded instead of mono_image_loaded.
21336         * reflection.c: Fix warnings.
21338 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
21340         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
21341         is dynamic. This is needed since an assembly can contain both dynamic and
21342         non-dynamic images.
21344         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
21345         assembly->dynamic.
21347         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
21349         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
21350         to store modules loaded using AddModule.
21352         * reflection.c (mono_image_fill_file_table): Generalize this so it works
21353         on Modules.
21355         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
21357         * reflection.c (mono_image_fill_export_table_from_module): New function to
21358         fill out the EXPORTEDTYPES table from a module.
21360         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
21361         into a separate function. Also handle loaded non-dynamic modules.
21363         * reflection.c (mono_image_basic_init): Fix memory allocation.
21365         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21367         * assembly.c (mono_assembly_load_references): Make this public.
21369 2003-12-19  Martin Baulig  <martin@ximian.com>
21371         * class.c (mono_class_initialize_generic): Made this static, take
21372         a `MonoGenericInst *' instead of a `MonoClass *'.
21373         (mono_class_from_generic): Call mono_class_initialize_generic()
21374         unless we're already initialized or being called from
21375         do_mono_metadata_parse_generic_inst().
21377         * class.h (MonoGenericInst): Added `initialized' and
21378         `init_pending' flags.
21380         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
21381         `mono_class_init (gklass)' or mono_class_initialize_generic()
21382         here; set `generic_inst->init_pending' while parsing the
21383         `type_argv'.
21385 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
21387         * locales.c: include string.h for memxxx prototypes
21389 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
21391         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
21392         constructor when accessing literal fields.
21394 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
21396         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21398         * reflection.c (assembly_add_resource_manifest): New function to fill
21399         the MANIFESTRESOURCE table.
21401         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
21403         * reflection.h: Update to changes in class layout.
21405         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
21406         Reenable call to mono_runtime_is_shutting_down ().
21408         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
21409         determine if the runtime is shutting down.
21411 2003-12-16  Jackson Harper <jackson@ximian.com>
21413         * icall.c: comment out call to mono_runtime_is_shutting_down to
21414         fix build.
21415         
21416 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
21418         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
21419         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
21421 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
21423         * reflection.c: move definition of swap_with_size
21424         to before its first call
21426 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
21428         * appdomain.c (mono_runtime_is_shutting_down): New public function.
21430         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
21431         icall.
21433         * object.c: Fix warnings.
21435         * icall.c (ves_icall_Type_Get...): Only consider inherited static
21436         members if FlattenHierarchy is set.
21438         * reflection.c (mono_image_add_decl_security): New function to emit
21439         declarative security.
21441         * reflection.h reflection.c: Add support for declarative security.
21443         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21444         
21445 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
21447         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21448         
21449         * appdomain.c verify.c: Moved corlib version checking into its own
21450         function in appdomain.c since it needs to create vtables etc.
21452 2003-12-13  Patrik Torstensson <p@rxc.se>
21454         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
21455         instead of unwrapped server.
21457 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
21459         * verify.c (check_corlib): Fix field index.
21461 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
21463         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
21464         GetGacPath icall.
21466 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
21468         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
21469         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
21470         cope with sizeof(size_t) != sizeof(guint32).
21472 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21474         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
21475         in case of failure.
21477 2003-12-10  Mark Crichton <crichton@gimp.org>
21479         * icall.c: removed the GetNonZeroBytes.  We now handle this case
21480         in managed code.
21482         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
21484 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
21486         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
21487         marked as deleted.
21489 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
21491         * verify.c (check_corlib): Handle the case when the version field is 
21492         initialized by a static constructor.
21494 2003-12-08  Patrik Torstensson  <p@rxc.se>
21496     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
21498 2003-12-08  Martin Baulig  <martin@ximian.com>
21500         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
21501         a MonoReflectionGenericParameter, also take the parameter index
21502         and name as arguments.
21503         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
21504         (ves_icall_MonoGenericParam_initialize): New interncall.
21505         (ves_icall_Type_make_byref_type): New interncall.
21507         * reflection.h (MonoReflectionGenericParam): Derive from
21508         MonoReflectionType, not just from MonoObject.  Added `refobj' and
21509         `index' fields.
21511         * reflection.c (mono_reflection_define_generic_parameter): Create
21512         and return a new MonoReflectionGenericParam; don't initialize the
21513         constraints here.
21514         (mono_reflection_initialize_generic_parameter): New public method;
21515         initializes the constraints and creates the `param->pklass'.
21517 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
21519         * reflection.h reflection.c: Use the new fields 'num_types', 
21520         'num_fields' and 'num_methods' to track the number of types etc.
21522         * verify.c (check_corlib): Check corlib version number.
21524 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
21526         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
21527         function works on all methods.
21529 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
21531         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
21532         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
21533         the custom_type_info flag of the transparent proxy.
21534         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
21535         objects that supports IRemotingTypeInfo.
21536         * object.h: Added custom_type_info field in transparent proxy.
21538 2003-12-06  Martin Baulig  <martin@ximian.com>
21540         * class.c (mono_class_create_from_generic): Removed.
21541         (mono_class_from_generic): Check `ginst->klass' before doing
21542         anything else.  This is important to fully support "recursive"
21543         generic types.
21545         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
21546         empty `generic_inst->klass' before doing anything else.
21548 2003-12-06  Dick Porter  <dick@ximian.com>
21550         * verify.c: 
21551         * object.h:
21552         * icall.c:
21553         * locales.c: Use C structs to access class fields.  Don't do a
21554         conversion between MonoString and UChar because both are
21555         platform-endian UTF-16.  Compare now takes startindex and count
21556         parameters.  Add a char overload for IndexOf.  Speed up the
21557         invariant string IndexOf.
21559 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
21561         * Makefile.am (monosn_LDADD): Fix parallel build.
21563 2003-12-04  Martin Baulig  <martin@ximian.com>
21565         * icall.c
21566         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21567         (ves_icall_Type_make_array_type): New interncall.       
21569 2003-12-04  Martin Baulig  <martin@ximian.com>
21571         * locales.c: also change it in the !HAVE_ICU case.
21573 2003-12-04  Dick Porter  <dick@ximian.com>
21575         * icall.c:
21576         * locales.c: construct_compareinfo is now in CompareInfo, not
21577         CultureInfo.
21579 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
21581         * image.c (mono_image_load_file_for_image): Cache loaded images in the
21582         image->files array.
21584         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
21585         table as well.
21587         * assembly.c (mono_assembly_load_references): Only load references
21588         once.
21590         * class.c (mono_class_from_name): Avoid linear search of the 
21591         EXPORTEDTYPE table.
21593         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
21595 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21597         * image.h (MonoImage): Add 'field_cache' field.
21599         * loader.c (mono_field_from_token): Cache field lookups.
21600         
21601         * reflection.c (mono_module_get_object): Fix name property.
21603         * icall.c (ves_icall_get_enum_info): Update after changes to 
21604         mono_metadata_get_constant_index ().
21606         * icall.c: Get rid of get_type_info icall, use a separate icall for
21607         each type property to avoid needless memory allocations. Fixes #51514.
21609         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
21610         to avoid needless binary searches.
21612         * class.c (class_compute_field_layout): Move the initialization of
21613         field->def_value to mono_class_vtable ().
21615         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
21616         non-corlib types.
21618         * object.c (mono_object_allocate): Make it inline.
21620         * object.c (mono_object_allocate_spec): Make it inline.
21621         
21622 2003-12-02  Dick Porter  <dick@ximian.com>
21624         * locales.c (create_NumberFormat): NumberFormatInfo construction.
21625         Patch by Mohammad DAMT (mdamt@cdl2000.com).
21627 2003-12-01  Dick Porter  <dick@ximian.com>
21629         * threads.c: Fix signature and call in CreateMutex and
21630         CreateEvent.
21632 2003-12-01  Dick Porter  <dick@ximian.com>
21634         * icall.c: 
21635         * locales.c: Implement string compares and searching
21637         * object.h: Add extra Thread field
21639 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
21641         * reflection.c (fixup_method): Add support for MonoCMethod.
21643 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
21645         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
21647         * reflection.c (assembly_name_to_aname): Allow extra characters in
21648         assembly names. Fixes #51468.
21650 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
21652         * exception.c (mono_exception_from_name_domain): New helper function.
21654         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
21655         exception object in the correct domain.
21657         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
21658         formatting + make a copy a the input data.
21660         * loader.c (mono_get_method_from_token): Methods which contain
21661         native code do not have entries in the ImplMap.
21663         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
21664         Thanks to Gonzalo for spotting this.
21665         
21666         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
21667         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
21669         * assembly.h (mono_assembly_load_from): Split the second part of 
21670         assembly loading into a new public function.
21672         * exception.h (mono_get_exception_bad_image_format): New function.
21674 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
21676         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21677         Enumerate all modules inside a dynamic assembly. Fixes #51293.
21678         
21679         * icall.c: Add new icall for creating dynamic methods.
21681         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
21683         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
21685         * reflection.c (mono_reflection_create_dynamic_method): New icall to
21686         create a dynamic method.
21688         * reflection.c (resolve_object): New helper function.
21690         * reflection.c: Generalize ReflectionMethodBuilder and the functions
21691         which manipulate it so they can also work on dynamic methods.
21693         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
21694         creating the MonoReflectionMethodAux structure if it is not needed.
21695         
21696         * reflection.h verify.c: Update after changes to object layout.
21698         * reflection.c (method_builder_encode_signature): Fix compilation on
21699         gcc 2.95.x.
21701 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
21703         * appdomain.h: Added support for context static fields. Added static_data
21704           field to MonoAppContext and renamed thread_static_fields to a more
21705           generic special_static_fields in MonoAppDomain, since it can now contain
21706           context static fields.
21707         * domain.c: Updated hashtable name.
21708         * object.c: Replaced field_is_thread_static() for a more generic
21709           field_is_special_static() which also checks for context static attribute.
21710           In mono_class_vtable(), added support for static context fields.
21711         * threads.c: Changed methods that manage thread static fields to more
21712           generic methods so they can be reused both for thread and context static
21713           data.
21714         * threads.h: Declared some new methods.
21716 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
21718         * reflection.h: Update after changes to the managed types.
21720         * reflection.c (encode_custom_modifiers): New helper function.
21722         * reflection.c (method_encode_signature): Emit custom modifiers.
21724         * reflection.c (field_encode_signature): Emit custom modifiers.
21726 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
21728         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
21730         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
21731         implementation.
21733         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
21734         icall.
21736         * object.c (mono_field_get_value_object): New function.
21738         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
21739         specific.
21741 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
21743         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
21744         return a preallocated out-of-memory exception instance.
21746         * object.c (out_of_memory): Use the new function.
21748         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
21749         flag is before the custom modifiers. Fixes #49802.
21751 2003-11-16  Martin Baulig  <martin@ximian.com>
21753         * class.c (mono_class_is_open_constructed_type): Implemented the
21754         MONO_TYPE_GENERICINST case.
21756 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
21758         * assembly.c (mono_assembly_fill_assembly_name): New function to
21759         fill out the MonoAssemblyName structure.
21760         (mono_assembly_open): Use the new function.
21762         * icall.c (fill_reflection_assembly_name): New helper function.
21764         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
21765         new function.
21767         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
21769 2003-11-15  Martin Baulig  <martin@ximian.com>
21771         * class.c (mono_class_is_open_constructed_type): New public
21772         function; checks whether a type is an open constructed type,
21773         ie. whether it still contains type parameters.
21774         (mono_class_inflate_generic_type): If we're a type parameter and
21775         the inflated type is also a MONO_TYPE_(M)VAR, return the original
21776         type.
21778         * class.h (MonoGenericInst): Added `guint32 is_open'.
21780         * loader.c (method_from_methodspec): Check whether we're an open
21781         or closed constructed type and set `ginst->is_open'.
21783         * reflection.c (mono_reflection_bind_generic_parameters): Check
21784         whether we're an open or closed constructed type and set
21785         `ginst->is_open'.
21786         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
21787         from open constructed types.
21789 2003-11-15  Martin Baulig  <martin@ximian.com>
21791         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21792         a generic instance (instead of a generic type declaration) with
21793         unbound generic parameters, bind them to our actual types.
21795 2003-11-14  Martin Baulig  <martin@ximian.com>
21797         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
21799         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21800         an interface type, populate `res->interfaces' with instantiated
21801         versions of all the interfaces we inherit.
21803 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
21805         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
21806         when MONO_PATH is set but doesn't contain the install dir.
21808 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21810         * icall.c:
21811         (ves_icall_Type_GetInterfaces): don't return an interface twice when
21812         it's also implemented in base classes. Fixes bug #50927.
21814 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
21816         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
21817         if this method is called from a finalizer. Fixes #50913.
21819 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
21821         * threads.c: Implement VolatileRead/VolatileWrite
21823         * icall.c: Add new icalls for VolatileRead/VolatileWrite
21825 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21827         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
21828         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
21829         2.95.3.
21831         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
21832         from Peter Ross (pro@missioncriticalit.com).
21833         
21834 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
21836         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
21838 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21840         * assembly.c (mono_assembly_load_references): Disable check because it
21841         triggers on older corlibs which lots of people have.
21843 2003-11-12  Jackson Harper  <jackson@ximian.com>
21845         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
21846         load corlib.dll if mscorlib.dll is not found.
21847         * assembly.h: Remove corlib name define.
21848         * class.c:
21849         * domain.c:
21850         * image.c: Change corlib name to mscorlib.
21851         
21852 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21854         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
21856 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
21858         * appdomain.h: Added loader_optimization here to sync with the C#
21859         code, and add disallow_binding_redirects field.
21861 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21863         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
21865         * reflection.c (mono_image_build_metadata): Fix crash on modules
21866         with no types.
21868         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
21870         * icall.c (ves_icall_get_method_info): Return callingConvention as
21871         well.
21873         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
21874         namespaces from the EXPORTEDTYPE table as well.
21876         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
21877         from all modules inside the assembly.
21878         
21879 2003-11-11  Martin Baulig  <martin@ximian.com>
21881         * reflection.c (mono_reflection_bind_generic_parameters): Make
21882         this work for interfaces.
21884 2003-11-11  Martin Baulig  <martin@ximian.com>
21886         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
21888 2003-11-11  Martin Baulig  <martin@ximian.com>
21890         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
21891         "MonoInflatedMethod" and "MonoInflatedCtor".
21893 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21895         * reflection.c (resolution_scope_from_image): Use the assembly table
21896         from the manifest module, since other modules don't have it.
21898         * debug-helpers.c (mono_type_full_name): New helper function.
21900         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
21902         * image.c (mono_image_load_file_for_image): New public function which
21903         is a replacement for the load_file_for_image in class.c.
21905         * assembly.c (mono_assembly_load_module): A wrapper for the function
21906         above which does assembly association and reference loading too.
21908         * class.c (mono_class_from_name): Call mono_assembly_load_module.
21910 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21912         * appdomain.c: not all of the attributes for the full assembly name
21913         are required and the order doesn't matter. Fixes bug #50787.
21915 2003-11-10  Dick Porter  <dick@ximian.com>
21917         * locales.c: Use platform-endian UTF16
21919 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21921         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21922         
21923 2003-11-10  Martin Baulig  <martin@ximian.com>
21925         * metadata.c
21926         (mono_metadata_load_generic_params): Make this actually work.
21928         * reflection.c (mono_reflection_bind_generic_parameters): If our
21929         parent is a generic instance, pass all the `types' to it, no
21930         matter whether it has the same number of type parameters or not.
21932 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21934         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21936         * assembly.c (mono_assembly_load_references): Move the image<->assembly
21937         assignment code to this function so it gets called recursively for all
21938         modules.
21940         * image.c (load_modules): Remove the assembly assignment since it is
21941         now done by mono_assembly_load_references.
21942         
21943         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21944         Add 'module' argument.
21945         (mono_module_get_types): New helper function.
21946         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
21948 2003-11-08  Martin Baulig  <martin@ximian.com>
21950         * class.c (mono_class_inflate_generic_method): Interface method
21951         don't have a header.
21953         * reflection.c (mono_image_get_methodspec_token): Take an
21954         additional `MonoGenericInst *' argument instead of reading it from
21955         the header; this is necessary to support interfaces.
21956         (mono_image_create_token): Pass the `MonoGenericInst *' from the
21957         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
21958         (inflated_method_get_object): Take an additional `MonoGenericInst *'
21959         argument.
21961         * reflection.h (MonoReflectionInflatedMethod): Added
21962         `MonoGenericInst *ginst'.
21964 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
21966         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
21968 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
21970         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
21972 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
21974         * reflection.c 
21975         (reflection_methodbuilder_from_method_builder):
21976         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
21977         initialize a ReflectionMethodBuilder structure.
21978         (mono_image_get_methodbuilder_token):
21979         (mono_image_get_ctorbuilder_token): New functions to emit memberref
21980         tokens which point to types in another module inside the same assembly.
21982         * reflection.c: Use the new helper functions.
21983         
21984         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
21986         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
21987         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
21989         * reflection.c (resolution_scope_from_image): Emit a moduleref if
21990         neccesary.
21992         * reflection.c (mono_image_build_metadata): Emit metadata only for the
21993         current module. Emit the manifest only for the main module.
21995         * reflection.c (mono_image_create_token): Add assertion when a 
21996         memberref needs to be created.
21998         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
22000         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
22001         larger buffer for the custom attribute blob. Fixes #50637.
22002         
22003 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22005         * threadpool.c: notify listener on async processing handles after
22006         invoking the async callback. Thanks to Zoltan.
22008 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22010         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
22011         avoid code duplication.
22013         * reflection.h (MonoDynamicImage): New type which is currently unused,
22014         but will be used through the ref.emit code in place of 
22015         MonoDynamicAssembly.
22017         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
22018         object layout.
22020         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
22021         a MonoDynamicImage instead of just a MonoImage.
22022         
22023         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
22024         icalls to ModuleBuilder but keep their semantics, so they will work
22025         with moduleb->assemblyb. This will change later.
22026         
22027 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22029         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
22030         object layout.
22032         * reflection.c (mono_image_build_metadata): Avoid creation of a default
22033         main module, since it is now done by the managed code.
22035 2003-11-03  Martin Baulig  <martin@ximian.com>
22037         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
22038         `ginst->klass' here.
22039         (method_encode_methodspec): Don't use the `ginst->generic_method's
22040         klass if it's a generic instance, use `ginst->klass' in this case.
22042 2003-11-03  Martin Baulig  <martin@ximian.com>
22044         * reflection.c (mono_image_get_generic_method_param_info):
22045         Removed, use mono_image_get_generic_param_info() instead.
22046         (mono_image_get_type_info): Write the GenericParam table before
22047         the Method table.  This is neccessary because in the GenericParam
22048         table, type parameters of the class (ie. '!0' etc.) must come
22049         before the ones from its generic methods (ie. '!!0' etc).
22051 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22053         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
22055 2003-11-02  Martin Baulig  <martin@ximian.com>
22057         * reflection.c (create_generic_typespec): Take a
22058         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
22059         the generic parameters from it.
22061 2003-11-02  Martin Baulig  <martin@ximian.com>
22063         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
22064         instead of a `MonoClassField *' since we just need the type.
22065         (create_generic_typespec): New static function.  Creates a
22066         TypeSpec token for a generic type declaration.
22067         (mono_image_get_generic_field_token): New static function.
22068         (mono_image_create_token): If we're a FieldBuilder in a generic
22069         type declaration, call mono_image_get_generic_field_token() to get
22070         the token.
22072 2003-11-02  Martin Baulig  <martin@ximian.com>
22074         * reflection.h
22075         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
22076         `MonoReflectionGenericInst *declaring_type' and
22077         `MonoReflectionGenericInst *reflected_type' fields.
22079         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
22080         `MonoReflectionGenericInst *declaring_type' and a
22081         `MonoReflectionGenericInst *reflected_type' argument instead of a
22082         single `MonoReflectionGenericInst *type' one.  Set
22083         `res->declaring_type' and `res->reflected_type' from them.
22084         (mono_reflection_inflate_field): Likewise.      
22086 2003-11-02  Martin Baulig  <martin@ximian.com>
22088         * class.c (mono_class_setup_vtable): Don't store generic methods
22089         in the vtable.  
22091 2003-11-02  Martin Baulig  <martin@ximian.com>
22093         * reflection.h (MonoReflectionGenericInst): Added
22094         `MonoReflectionType *declaring_type'.
22096         * reflection.c (mono_reflection_bind_generic_parameters): Use
22097         `if (tb->parent)' instead of `klass->parent'.
22099 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
22101         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
22102         with an empty ASSEMBLY table.
22104         * reflection.c (mono_image_build_metadata): Avoid using the same loop
22105         variable in the inner and outer loops.
22107 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
22109         * metadata.h (mono_metadata_make_token): Put parentheses around macro
22110         argument.
22112         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
22113         
22114         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
22115         icalls. Instead, do everything in managed code. This is needed since
22116         it is hard to restore the original domain etc. in unmanaged code in the
22117         presence of undeniable exceptions.
22119         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
22120         New icalls to push and pop appdomain refs.
22122 2003-10-31  Martin Baulig  <martin@ximian.com>
22124         * class.c (inflate_generic_type): Renamed to
22125         mono_class_inflate_generic_type() and made it public.
22127         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
22128         New interncall.
22130         * loader.c (mono_field_from_memberref): Also set the retklass for
22131         typespecs.
22133         * fielder.c (mono_image_get_inflated_field_token): New static
22134         method; creates a metadata token for an inflated field.
22135         (mono_image_create_token, fixup_method): Added support for
22136         "MonoInflatedField".
22137         (fieldbuilder_to_mono_class_field): New static function.
22138         (mono_reflection_inflate_field): New public function.
22140         * reflection.h
22141         (MonoReflectionGenericInst): Added `MonoArray *fields'.
22142         (MonoReflectionInflatedField): New typedef.     
22144 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
22146         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
22147         for Solaris and other platforms without s6_addr16
22149 2003-10-30  Martin Baulig  <martin@ximian.com>
22151         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
22152         argument instead of two.
22153         (mono_class_inflate_generic_signature): Likewise.
22154         (inflate_generic_header): Likewise.
22155         (mono_class_inflate_generic_method): Likewise.  In addition, if
22156         `ginst->klass' is set, it becomes the new `method->klass'.
22158         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
22159         field.
22161         * reflection.c (encode_generic_method_sig): Write a 0xa as the
22162         first byte. [FIXME]
22163         (method_encode_methodspec): If we have generic parameters, create
22164         a MethodSpec instead of a MethodRef.
22165         (fixup_method): Added support for "MonoInflatedMethod" and
22166         "MonoInflatedCtor".
22167         (mono_image_create_token): Added support for "MonoInflatedMethod"
22168         and "MonoInflatedCtor".
22169         (inflated_method_get_object): New static function; returns a
22170         managed "System.Reflection.MonoInflatedMethod" object.
22171         (mono_reflection_bind_generic_method_parameters): Return a
22172         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
22173         (mono_reflection_inflate_method_or_ctor): Likewise.
22174         (mono_image_get_generic_method_param_info): Initialize unused
22175         fields to zero.
22176         (mono_image_get_generic_param_info): Likewise.
22178         * reflection.h (MonoReflectionInflatedMethod): New public
22179         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
22180         "S.R.MonoInflatedCtor" classes.
22182         * loader.c (method_from_memberref): If we're a TypeSpec and it
22183         resolves to a generic instance, inflate the method.
22185 2003-10-28  Dick Porter  <dick@ximian.com>
22187         * object.c (mono_runtime_run_main): Convert command-line arguments
22188         into utf8, falling back to the user's locale encoding to do so.
22190 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
22192         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
22193         at this time.
22195         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
22197         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
22198         up icalls at method definition time. Partially fixes #33569.
22200 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
22202         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
22203         marshalling of arrays. Fixes #50116.
22205         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
22207         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
22208         points to a vtable in the dying appdomain.
22210         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
22211         listeners into unmanaged code inside the lock.
22213         * object.c (mono_class_vtable): Turn off typed allocation in non-root
22214         domains and add some comments.
22216 2003-10-25  Martin Baulig  <martin@ximian.com>
22218         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
22220         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
22222         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
22223         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
22224         currently parsing.  Create the generic class and store it in
22225         `generic_inst->klass' before parsing the type arguments.  This is
22226         required to support "recursive" definitions; see mcs/tests/gen-23.cs
22227         for an example.
22228         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
22229         to support recursive typespec entries.
22231         * class.c (mono_class_setup_parent): If our parent is a generic
22232         instance, we may get called before it has its name set.
22233         (mono_class_from_generic): Splitted into
22234         mono_class_create_from_generic() and mono_class_initialize_generic().
22236 2003-10-25  Martin Baulig  <martin@ximian.com>
22238         * icall.c (ves_icall_Type_BindGenericParameters): Return a
22239         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
22240         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
22241         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
22243         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
22244         (create_typespec): Likewise.
22245         (mono_reflection_bind_generic_parameters): Return a
22246         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
22247         (mono_reflection_inflate_method_or_ctor): New public function.
22249         * reflection.h (MonoReflectionGenericInst): New typedef.        
22251 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
22253         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
22254         inside the domain lock. Fixes #49993.
22255         
22256         * object.c (mono_class_vtable): When typed allocation is used, 
22257         allocate vtables in the GC heap instead of in the mempool, since the
22258         vtables contain GC descriptors which are used by the collector even
22259         after the domain owning the mempool is unloaded.
22261         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
22263         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
22264         reflect what it does. Also invalidate mempools instead of freeing
22265         them if a define is set.
22267         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
22268         of the appdomain.
22269         
22270         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
22271         hold the finalizable objects in this domain.
22273         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
22274         appdomain.
22276         * appdomain.c (mono_domain_set): New function to set the current
22277         appdomain, but only if it is not being unloaded.
22279         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
22280         appdomain which is being unloaded.
22281         
22282         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
22283         unloading of the root appdomain.
22285         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
22286         icall to execute a method in another appdomain. Intended as a 
22287         replacement for InternalSetDomain, which can confuse the code 
22288         generation in the JIT.
22290         * appdomain.c (mono_domain_is_unloading): New function to determine
22291         whenever an appdomain is unloading.
22293         * appdomain.c (mono_domain_unload): New function to correctly unload
22294         an appdomain.
22296         * assembly.c (mono_assembly_load_references): Check that an assembly
22297         does not references itself.
22299         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
22300         domain manually, it asks the finalizer thread to do it, then waits for
22301         the result. Also added a timeout.
22303         * icall.c: Register the new icalls.
22305         * threads.h threads.c: Export the mono_gc_stop_world and 
22306         mono_gc_start_world functions.
22307         
22308         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
22309         function to fill out the mempool with 0x2a.
22311 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
22313         * reflection.h (MonoReflectionMethodAux): New structure to store
22314         information which is rarely used, thus is not in the MonoMethod
22315         structure.
22317         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
22318         store the aux info.
22320         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
22321         and marshalling info into the aux structure.
22323         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
22324         from the aux structure.
22326         * loader.c (mono_method_get_param_names): Retrieve the param names from
22327         the aux structure.
22328         
22329 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
22331         * exception.h exception.c: Add AppDomainUnloadedException && fix 
22332         warning.
22334 2003-10-21  Dick Porter  <dick@ximian.com>
22336         * socket-io.c
22337         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
22338         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
22340 2003-10-21  Martin Baulig  <martin@ximian.com>
22342         * reflection.c (mono_reflection_bind_generic_parameters):
22343         `klass->parent' is NULL for interfaces.
22345 2003-10-21  Martin Baulig  <martin@ximian.com>
22347         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22349 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
22351         * exception.c (mono_exception_from_name_msg): New helper function for
22352         creating exceptions and initializing their message field.
22354         * exception.c: Simplify functions using the new helper.
22356         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
22357         New function.
22359         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
22360         mono_raise_exception, since otherwise gcc doesn't generate the function
22361         epilog for raise_exception, confusing the stack unwinding in the JIT.
22362         Fixes #45043.
22364         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
22365         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
22366         Fixes #49499.
22368 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22370         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
22371         utf8.
22373 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
22375         * icall.c: Removed GetUninitializedObject method because
22376           AllocateUninitializedClassInstance does the same.
22378 2003-10-18  Martin Baulig  <martin@ximian.com>
22380         * class.c (inflate_generic_signature): Renamed to
22381         mono_class_inflate_generic_signature() and made it public.
22382         (my_mono_class_from_generic_parameter): New static function; if we
22383         don't already have the generic parameter's MonoClass, create a
22384         very simple one which is just used internally in the runtime and
22385         not passed back to managed code.
22387         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
22389         * metadata.h (MonoMethodSignature): Moved the
22390         `MonoGenericParam *gen_params' to the MonoMethodHeader.
22391         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
22393         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
22394         ves_icall_MonoMethod_GetGenericArguments(); this is now an
22395         interncall on the MonoMethod class, not on MethodInfo.
22396         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
22397         calling mono_reflection_bind_generic_method_parameters() directly.
22399         * loader.c (mono_method_get_signature): If this is a MethodSpec;
22400         return the already computed `method->signature'.
22401         (method_from_methodspec): New static function to load a method
22402         from a MethodSpec entry.
22403         (mono_get_method_from_token): Call the new method_from_methodspec()
22404         for MethodSpec tokens.  
22405         (mono_get_method_from_token): If we're a generic method, load the
22406         type parameters.
22408         * reflection.c (mono_image_get_memberref_token): Allow
22409         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
22410         table.
22411         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
22412         (mono_image_create_token): First check whether it's a generic
22413         method (so we'd need to create a MethodSpec), then do the other
22414         two alternatives.
22415         (mono_reflection_bind_generic_method_parameters): Return a
22416         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
22417         called directly from the interncall.
22419 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
22421         * reflection.c (load_public_key): Move loading of the public key
22422         into managed code.
22424         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
22426         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
22427         fields.
22429         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
22430         culture, hash_alg and public_key. Fixes #49555.
22432 2003-10-17  Martin Baulig  <martin@ximian.com>
22434         * class.h (MonoGenericInst): Moved this declaration here and added
22435         `MonoMethod *generic_method'.
22437         * icall.c
22438         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
22439         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
22441         * metadata.c (mono_metadata_type_equal): Two types of
22442         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
22443         index; ie. don't compare the address of the `MonoGenericParam'
22444         structure.
22445         (mono_metadata_load_generic_params): Removed the `MonoMethod
22446         *method' argument.
22448         * metadata.h (MonoGenericInst): Moved declaration to class.h.
22449         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
22451         * reflection.c (method_encode_signature): Encode the number of
22452         generic parameters.
22453         (encode_generic_method_sig): New static function.
22454         (method_encode_methodspec): New static function; creates an entry
22455         in the MethodSpec table for a generic method.
22456         (mono_image_get_methodspec_token): New static function.
22457         (mono_image_create_token): Call mono_image_get_methodspec_token()
22458         for generic methods.
22459         (mono_reflection_bind_generic_method_parameters): New public
22460         function.  Instantiates a generic method.
22462 2003-10-16  Martin Baulig  <martin@ximian.com>
22464         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
22465         *gen_params' here from MonoMethodHeader.
22467         * metadata.c (mono_metadata_parse_method_signature): If we have
22468         generic parameters, initialize `method->gen_params' and then set
22469         the correct `type->data.generic_param' in all the parameters.
22471 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
22473         * threads.c (mono_threads_get_default_stacksize): New function to 
22474         return the default stacksize.
22476         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
22477         termination of the finalizer thread, since the previous method had
22478         race conditions. Fixes #49628.
22480         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
22481         as for the other managed threads.
22483 2003-10-16  Martin Baulig  <martin@ximian.com>
22485         * class.c (inflate_generic_signature): Copy `generic_param_count'
22486         and `gen_params'.
22488         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
22489         New interncall.
22491         * metadata.c (mono_metadata_parse_method_signature): Actually set
22492         the `method->generic_param_count' here.
22493         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
22495 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
22497         * object.h: Add a new field to TypedRef to simplify the implementation
22498         of the REFANY opcodes in the JIT.
22500         * icall.c: Make use of the new field.
22502         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
22503         dynamically.
22505 2003-10-15  Martin Baulig  <martin@ximian.com>
22507         * class.c (mono_class_from_gen_param): Renamed to
22508         mono_class_from_generic_parameter() and moved most of the
22509         functionality from mono_reflection_define_generic_parameter()
22510         here; ie. we create a "real" class here.
22511         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
22512         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
22513         previously been called.
22515         * class.h (MonoGenericParam): Moved the declaration of this struct
22516         here from metadata.h and added `MonoMethod *method'.
22518         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
22519         interncall.
22521         * loader.c (mono_get_method_from_token): If we have any generic
22522         parameters, call mono_metadata_load_generic_params() to read them
22523         from the MONO_TABLE_GENERICPAR.
22525         * metadata.c (mono_metadata_load_generic_params): Added
22526         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
22528         * metadata.h (MonoMethodSignature): Replaced
22529         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
22530         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
22532         * reflection.c (mono_reflection_define_generic_parameter): Moved
22533         most of the functionality into the new
22534         mono_class_from_generic_parameter(); set the `method' field if
22535         we're a method parameter.       
22537 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
22539         * marshal.c (emit_struct_conv): if native size is 0
22540         emit no code.
22542 2003-10-14  Martin Baulig  <martin@ximian.com>
22544         * icall.c: The generics API has changed in the spec since it was
22545         added to System.Type; these modifications make it match the spec
22546         again.
22547         (ves_icall_Type_GetGenericParameters): Renamed to
22548         `ves_icall_Type_GetGenericArguments'.
22549         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
22550         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
22551         `ves_icall_MonoType_get_HasGenericArguments'.
22552         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
22553         `ves_icall_MonoType_get_IsGenericParameter'.
22554         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
22555         this is no interncall anymore.
22556         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
22557         `ves_icall_TypeBuilder_get_IsGenericParameter'.
22559 2003-10-14  Martin Baulig  <martin@ximian.com>
22561         * reflection.c (mono_reflection_bind_generic_parameters): Also
22562         inflate generic methods if we're reading the class from IL.
22564 2003-10-13  Martin Baulig  <martin@ximian.com>
22566         * reflection.c (mono_reflection_define_generic_parameter): This
22567         method isn't called directly from the icall anymore; take a
22568         `MonoReflectionAssemblyBuilder *' so we can use this for type and
22569         method generic parameters.
22570         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
22571         (method_builder_encode_signature): Encode generic parameters.
22572         (mono_image_get_method_info): Write generic params to the
22573         MONO_TABLE_GENERICPARAM table.
22575         * reflection.h (MonoReflectionMethodBuilder): Added
22576         `MonoArray *generic_params'.
22578         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
22580         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
22581         wrapper for mono_reflection_define_generic_parameter().
22582         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
22584 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
22586         * marshal.h: Add missing function to fix build.
22588         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
22589         the SetLastError pinvoke attribute.
22591         * marshal.c (mono_marshal_set_last_error): New helper function called
22592         by the generated code.
22593         
22594         * marshal.c (mono_mb_emit_branch): New helper function.
22596         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
22598         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22599         classes as parameters and return values of delegates. Fixes #29256. 
22601 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
22603         * locales.c: use gint32 in non HAVE_ICU case
22605 2003-10-11  Martin Baulig  <martin@ximian.com>
22607         * mono-debug.c (mono_debug_add_method): Added a workaround for
22608         bug #48591.
22610 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22612         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
22613         delegates passed to native code must use the STDCALL calling 
22614         convention. Fixes #35987.
22616 2003-10-10  Martin Baulig  <martin@ximian.com>
22618         * class.c (inflate_generic_type): If we're inflating for a generic
22619         type instance (and not for a generic method), return
22620         MONO_TYPE_MVAR unchanged.
22622 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22624         * string-icalls.c: Join ignores null strings in the source array.
22625         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
22626         * threads.c: GetAvailableTheads is slightly more accurate.
22628 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
22630         * threads.h threads.c : add mono_threads_set_default_stacksize
22631         and pass default to CreateThread calls.
22633 2003-10-09  Dick Porter  <dick@ximian.com>
22635         * icall.c:
22636         * locales.h:
22637         * locales.c: Internal calls for constructing CultureInfo and
22638         related objects from libicu (if its available.)
22640 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22642         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
22644 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22646         * threadpool.c: added an argument to async_invoke_thread that is the
22647         item to process, pass the MonoAsyncResult to the thread start function
22648         when creating a new thread. This way we don't need to acquire any lock
22649         when we're creating a new thread. Readded a semaphore for faster
22650         response times (instead of that Sleep i added).
22652 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
22654         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22655         get daylight change dates better on Windows, fix handling
22656         of platforms without tm_gmtoff.
22658 2003-10-06  Martin Baulig  <martin@ximian.com>
22660         * class.c (inflate_generic_method): Renamed to
22661         mono_class_inflate_generic_method() and made public.
22662         (mono_class_init): Don't inflate the generic methods here.
22663         (mono_class_from_generic): Added `gboolean inflate_methods'
22664         argument.  Inflate the methods here.
22666         * loader.c (mono_method_get_param_names): Ignore instances of
22667         generic types for the moment.
22669         * reflection.c (fixup_method): Added support for inflated methods.
22670         (mono_image_create_token): Use mono_image_get_methodref_token()
22671         for inflated methods.
22672         (mono_custom_attrs_from_param): Ignore instances of generic types
22673         for the moment.
22674         (mono_reflection_bind_generic_parameters): New public function.
22675         Moved all the functionality from
22676         ves_icall_Type_BindGenericParameters() here and added support for
22677         dynamic types.
22678         (mono_reflection_define_generic_parameter): Initialize
22679         `klass->methods' here.
22681         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
22682         functionality into mono_reflection_define_generic_parameter().
22683         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
22684         TypeBuilder, return that TypeBuilder.
22686 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22688         * appdomain.c: removed mono_delegate_semaphore.
22690         * threadpool.c:
22691         (mono_thread_pool_add): moved hash table creation inside and the thread 
22692         creation outside of the critical region.
22693         (mono_thread_pool_finish): removed obsolete code.
22694         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
22695         continue or exit the thread depending on the queue.
22697 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
22699         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
22700         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
22701         handle more bool marshalling options
22703 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
22705         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
22706         arrays of structs. Also add a more descriptive error message when
22707         a structure member is marshalled as LPArray.
22709 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22711         * marshal.c (mono_marshal_get_native_wrapper): Add support for
22712         marshalling arrays of complex types. Fixes #29098. Also remove an
22713         usused and incomplete function.
22715 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22717         * gc.c: report heap_size - free_bytes as total memory allocated
22718         (bug#49362).
22720 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22722         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
22723         fix timezone handling problems on Windows.
22724         
22725         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
22726         asserts when the year is outside the range handled by ms the functions.
22728         * class.c (setup_interface_offsets): If the class is an interface,
22729         fill out its interface_offsets slot.
22731 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22733         * threadpool.c: mark threadpool threads as background.
22735 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
22737         * decimal.c - define DECINLINE to nothing if not using GCC
22739 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22741         * assembly.c: More refcount fixes.
22743 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22745         * string-icalls.c: if we're not trimming, return the same string.
22746         When not splitting, don't create a new string.
22748 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22750         * image.c:
22751         (mono_image_open): increment the ref_count inside the critical section.
22753 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
22755         * image.c (mono_image_open): Fix reference counting bug.
22757 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
22759         * marshal.c (mono_marshal_type_size) struct alignment changed for 
22760         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
22761         64bits. Avoid leak in mono_marshal_get_native_wrapper when
22762         mono_lookup_pinvoke_call throws.        
22764 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22766         * reflection.c (mono_reflection_parse_type): Fix #49114.
22768         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
22769         temporary workaround for cygwin header problem.
22771         * object.c (mono_object_isinst): Synchronize this with the code
22772         generated by the JIT for casts.
22774 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22776         * reflection.c (encode_type): Fix #38332.
22778 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22780         * marshal.c (mono_marshal_method_from_wrapper): New function to return
22781         the original method from the wrapper method.
22783 2003-09-25  Martin Baulig  <martin@ximian.com>
22785         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
22786         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
22787         (ves_icall_Type_get_IsGenericInstance): New interncall.
22789 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
22791         * object.c: fix cast warning in big endian code.
22793 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
22795         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
22796         
22797 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22799         * assembly.c: don't call check_env from mono_assembly_load. It's
22800         already done once in mono_assemblies_init and may cause headaches when
22801         multiple threads are loading assemblies.
22803 2003-09-19  Martin Baulig  <martin@ximian.com>
22805         * reflection.c (mono_reflection_define_generic_parameter): Don't
22806         allocate `klass->methods', set `klass->flags' to
22807         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
22809 2003-09-18  Martin Baulig  <martin@ximian.com>
22811         * class.c (mono_class_init): Don't create `class->methods' if it's
22812         already initialized.
22814         * metadata.c (mono_metadata_load_generic_params): Make this
22815         actually work.
22817         * reflection.c (mono_reflection_define_generic_parameter): Set
22818         parent class and interfaces from the constraints.
22820         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
22821         to keep this struct in sync with the declaration in TypeBuilder.cs.
22823 2003-09-17  Martin Baulig  <martin@ximian.com>
22825         * metadata.h (MonoType): Replaced the data's `int type_param'
22826         field with `MonoGenericParam *generic_param'.
22827         (MonoGenericParam): Added `MonoClass *klass'.
22829         * class.c (mono_class_from_gen_param): Removed the
22830         `MonoImage *image' and `int type_num' arguments.
22832         * metadata.c (mono_metadata_parse_generic_param): New static
22833         method; creates a MonoGenericParam which just contains the index.
22834         (do_mono_metadata_parse_type): Call
22835         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
22836         MONO_TYPE_MVAR.
22838         * reflection.c (mono_image_typedef_or_ref): Generic type
22839         parameters may be in the same assembly, but never use a typedef
22840         for them.
22841         (mono_reflection_define_generic_parameter): We're now creating a
22842         "real" class for the type parameter; it's now safe to call
22843         mono_class_from_mono_type() on the class'es type, it'll do the
22844         right thing.
22846 2003-09-16  Martin Baulig  <martin@ximian.com>
22848         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
22849         `symfile->range_entry_size' and `symfile->class_entry_size' here;
22850         the `symfile' data structure must be fully initialized before it
22851         gets added to the table.
22853 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22855         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
22857         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
22858         class init trampolines.
22860 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22862         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
22863         to the built-in profiler to turn off time and allocation profiling
22864         respectively.
22866 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22868         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
22869         g_direct_equal.
22871         * debug-helpers.c (mono_method_full_name): Print the wrapper type
22872         in human readable form.
22874 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22876         * reflection.c icall.c: Fixed warnings.
22878         * image.c (load_class_names): Use a temporary hash table to hold the
22879         namespaces in order to avoid doing many string comparisons.
22881         * image.h: Fix typo.
22883         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
22884         Pass NULL instead of g_direct_equal to the GHashTable constructor 
22885         since the NULL case is short-circuited inside g_hash_table_lookup, 
22886         leading to better performance.  
22888         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
22889         obtain the first custom attribute for a given index. Depends on the
22890         CustomAttribute table being sorted by the parent field.
22892         * reflection.c (mono_custom_attrs_from_index): Use the new function 
22893         for better performance.
22895 2003-09-07  Martin Baulig  <martin@ximian.com>
22897         * class.c (mono_class_init): If we're a generic instance, inflate
22898         all our methods instead of loading them from the image.
22899         (mono_class_from_generic): Set `class->methods = gklass->methods'.
22901 2003-09-07  Martin Baulig  <martin@ximian.com>
22903         * mono-debug-debugger.c: Added support for constructors.
22905 2003-09-06  Martin Baulig  <martin@ximian.com>
22907         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
22908         New interncall.
22910         * reflection.c (mono_reflection_setup_generic_class): Call
22911         ensure_runtime_vtable() to create the vtable.
22913 2003-09-05  Martin Baulig  <martin@ximian.com>
22915         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
22916         MONO_TYPE_MVAR.
22918 2003-09-04  Martin Baulig  <martin@ximian.com>
22920         * reflection.c (mono_reflection_define_generic_parameter): Generic
22921         parameters start with zero.
22923 2003-09-04  Martin Baulig  <martin@ximian.com>
22925         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22927         * reflection.h (MonoReflectionGenericParam): New typedef.
22928         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
22929         the generic parameters from the managed TypeBuilder.
22931         * reflection.c (mono_reflection_define_generic_parameter): New function.
22932         (mono_reflection_create_runtime_class): Encode generic parameters.
22933         (mono_reflection_setup_generic_class): New function; this is
22934         called after adding adding all generic params to the TypeBuilder.
22935         (encode_type): Added MONO_TYPE_VAR.
22937 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22939         * class.h class.c (mono_class_needs_cctor_run): Moved this method
22940         here from the JIT.
22942         * assembly.h assembly.c: Moved the AOT loading code into an assembly
22943         load hook.
22945 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
22947         * reflection.h reflection.c class.h class.c: Delete duplicate 
22948         definition of mono_type_get_name () from reflection.c and export the
22949         one in class.c.
22951         * class.c: Class loading fixes from Bernie Solomon 
22952         (bernard@ugsolutions.com).
22954         * reflection.c: Endianness fixes from Bernie Solomon 
22955         (bernard@ugsolutions.com).
22956         
22957 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
22959         * assembly.h assembly.c: Define a file format version for AOT
22960         libraries.
22961         
22962         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
22964         * appdomain.h (MonoJitInfo): New field to determine whenever the
22965         code is domain neutral.
22966         
22967 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
22969         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
22971 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
22973         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
22974         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
22975         Avoid caching the result since strings must be domain specific. Fixes
22976         #48050.
22978 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
22980         * marshal.c (mono_marshal_init): Make this callable multiple times
22981         since it is hard to find a correct place to call it.
22983         * object.c (mono_runtime_class_init): Execute static constructors in
22984         the correct appdomain.
22986         * image.c (build_guid_table): Handle the case when multiple images have
22987         the same GUID.
22989 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22991         * icall.c: added a couple of icalls for System.Web.
22993 2003-08-28  Martin Baulig  <martin@ximian.com>
22995         * icall.c (ves_icall_Type_BindGenericParameters): Use
22996         `klass->generic_inst' instead of `&klass->byval_arg' in the
22997         mono_type_get_object() call.  The returned type must be
22998         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
23000 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
23002         * NOTES: New file.
23004         * object.c (mono_class_proxy_vtable): Make it thread safe.
23006         * pedump.c: Fix warning.
23008         * object.c appdomain.h: Get rid of metadata_section. 
23009         It is no longer needed and it was causing deadlocks with domain->lock.
23011         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
23013 2003-08-26  Martin Baulig  <martin@ximian.com>
23015         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
23017 2003-08-26  Martin Baulig  <martin@ximian.com>
23019         * pedump.c (main): Call mono_metadata_init(),
23020         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
23021         and mono_loader_init().
23023 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
23025         * loader.h: Add missing include to fix build.
23027         * image.h: mono_image_load_references is no more.
23029         * assembly.c: Reworked assembly loading to make it really thread safe.
23030         After these changes, the assembly returned by mono_assembly_open is
23031         fully initialized, i.e. all its references assemblies are loaded.
23033         * assembly.c (mono_image_load_references): Renamed to 
23034         mono_assembly_load_references, and made private, since clients no
23035         longer need to call it.
23037         * class.c: Removed calls to mono_assembly_load_references, since it was
23038         a source of deadlocks.
23040         * loader.h loader.c class.h class.c: Protect data structures using a 
23041         new lock, the loader lock.
23043         * class.c (mono_class_setup_vtable): Create temporary hash tables and
23044         GPtrArrays only when needed.
23046         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
23047         into empty structures by mcs. Fixes pinvoke7.cs.
23048         
23049         * domain.c (mono_init): Call a new initialization function.
23051         * appdomain.c (mono_runtime_init): Call the new initializer function
23052         of the marshal module.
23054         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
23055         inserted into empty structures by mcs. Fixes pinvoke7.cs.
23057         * marshal.h marshal.c: Added locks around the wrapper caches to make
23058         this module thread safe.
23060         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
23061         this argument. Fixes pinvoke1.exe.
23063 2003-08-25  Lluis Sanchez <lluis@ximian.com>
23065         * object.h: Added call_type field to MonoMethodMessage and the corresponding
23066         enumeration of values. Removed fields to store remote call output values in
23067         MonoAsyncResult. Not needed any more.
23068         * object.c: Initialize call_type and async_result fields in mono_message_init.
23069         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
23070         dispatching the message.
23071         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
23072         async call to finish. To do it use a message with EndInvoke call type.
23074 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
23076         * loader.h loader.c (mono_method_hash_marhal_info): New function which
23077         determines whenever a method has marshalling info.
23079 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23081         * assembly.c: fix the build on windows.
23083 2003-08-22 Lluis Sanchez <lluis@ximian.com>
23085         * object.cs: Fixed bug #47785.
23087 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
23089         * string-icalls.c (StringReplace): If their are no occurances of
23090         the old string found return a reference to the supplied
23091         string. This saves some memory and matches MS behavoir.
23092         
23093 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23095         * socket-io.c: fixed compilation for systems that define AF_INET6
23096         and don't define SOL_IP/SOL_IPV6.
23098 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
23100         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
23101         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
23103         * rawbuffer.c rawbuffer.h: Make this module thread safe.
23105         * domain.c: Make this module thread safe.
23107         * domain.c (mono_init): Call new initialization function.
23109         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
23110         reference types too. Fixes #38812.
23112         * image.c (mono_image_init): Fixed warnings.
23114         * class.c (mono_class_from_typeref): Handle assembly load failure
23115         correctly.
23117         * appdomain.c (add_assemblies_to_domain): Handle the case when
23118         the references of an assembly are not yet loaded.
23120         * metadata.c image.c assembly.c: Moved initialization of global
23121         variables to a separate function called at startup since lazy 
23122         initialization of these variables is not thread safe.
23123         
23124         * image.c assembly.c: Made this module thread safe by adding locks in 
23125         the appropriate places.
23127         * domain.c (mono_init): Call the new initialization functions of the
23128         three modules.
23130 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
23132         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
23133           make a direct call. It is proxy's work to make the call asynchronous.
23134           mono_delegate_end_invoke(): If the targe is a proxy, just collect
23135           the return values.
23136         * object.cs: mono_method_call_message_new(): read AsyncResult and
23137           state object from parameters list, if this info is requested.
23138         * object.h: Added fields to store remote call output values in
23139           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
23141 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23143         * object.h: add needed fields to MonoThread.
23144         * threads.c, threads.h: allow registering a function to cleanup data
23145         allocated per thread by the JIT.
23147 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23149         * loader.h: portability fix by Bernie Solomon
23150         * <bernard@ugsolutions.com>.
23152 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
23154         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
23155         return a MonoArray. This simplifies the code and also ensures that
23156         the cache allways contains an object reference as a value.
23158         * icall.c (ves_icall_get_parameter_info): Simplified using the new
23159         function.
23161 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23163         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
23164         fixes a problem with byte ordering when getting the address family for
23165         a socket.
23167 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
23169         * .cvsignore: Added monosn.
23171         * reflection.h reflection.c loader.c: Added support for parameter
23172         marshalling to dynamically created types. Fixes #47295.
23174 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
23176         * rand.c: remove useless warnings.
23178 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23180         * class.c: implemented ldtoken for methods and fieldrefs.
23182 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23184         * threadpool.c: when mono_async_invoke was called, no one took care of
23185         monitoring the queue. So if the method invoked took some time and we
23186         got new async invoke requests after 500 ms (the thread created waited
23187         that long in WaitForSingleObject), the new async invoke was not called
23188         until the previous one finished.
23190         This is fixed now. Thanks to Totte for helping with it.
23192 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23194         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
23196 2003-08-11  Martin Baulig  <martin@ximian.com>
23198         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
23200 2003-08-06  Martin Baulig  <martin@ximian.com>
23202         * mono-debug-debugger.c: Added support for static fields,
23203         properties and methods.
23205 2003-08-06  Martin Baulig  <martin@ximian.com>
23207         * mono-debug-debugger.c: Don't store the MonoString's vtable to
23208         make this work for applications with multiple application domains.
23210 2003-08-04  Martin Baulig  <martin@ximian.com>
23212         * mono-debug-debugger.c: Completely reworked the type support; the
23213         most important thing is that we're now just using one single
23214         `MonoType' instance per type.
23216 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
23218         * mono-endian.h, mono-endian.c, icall.c: Added icall
23219         ves_icall_System_Double_AssertEndianity to assert double word endianity
23220         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
23222 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23224         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
23225         support, icalls and fixes.
23227 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
23229         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
23230         classes that are a punctuation character in .NET is not the same a
23231         g_unichar_ispunct.
23233 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23235         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
23237 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
23239         * icall.c: Add new MemCopy internalcall.
23240         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
23241         Simplified code; It is not necessary to handle all the cases here,
23242         as the C# code takes care of it.  Only handle the case of the name
23243         resource embedded into the assembly.
23245         Changed signature to return the data pointer and the size of the
23246         data. 
23248 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
23250         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
23251         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
23253 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23255         * socket-io.c: ignore EINTR error in select.
23257 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23259         * class.h, class.c: removed unused subclasses field in MonoClass.
23261 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23263         * icall.c: improve fix of get_base_definition(). If the parent class
23264           doesn't have the mehod, look at the parent of the parent.
23265         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
23266           to check if a parameter is an in or out parameter
23267           (PARAM_ATTRIBUTE_IN is not set by default).
23268           mono_method_return_message_restore(): Use mono_class_value_size to
23269           get the size of a value type. mono_type_stack_size (parameterType)
23270           does not return the correct value if parameterType is byRef.
23271           mono_load_remote_field(), mono_load_remote_field_new(),
23272           mono_store_remote_field(), mono_store_remote_field_new():
23273           raise exception if the remote call returns an exception.
23275 2003-07-28  Martin Baulig  <martin@ximian.com>
23277         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
23278         method.  This is a wrapper around mono_runtime_invoke() which
23279         boxes the instance object if neccessary.
23281 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23283         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
23284         metadata.h, row-indexes.h, verify.c: first cut of generics support.
23286 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23288         * icall.c: disable mcs bug workaround.
23290 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
23292         * object.c (mono_runtime_class_init): Take the metadata_section
23293         mutex before obtaining the domain mutex.
23295         * appdomain.h: Added definition of metadata_section mutex here. 
23297         * object.c: define metadata_mutex here.
23299 2003-07-24  Ravi Pratap  <ravi@ximian.com>
23301         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
23302         fixed.
23304 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
23306         * reflection.c: Fix bug #46669
23308 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23310         * exception.c:
23311         * exception.h:
23312         * icall.c:
23313         * object.h: fill in the type name for TypeLoadException.
23315 2003-07-23  Ravi Pratap  <ravi@ximian.com>
23317         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
23318         relationship between TypeBuilders while compiling corlib) and bug
23319         45993 (Array types returned from the runtime while compiling
23320         corlib were from the loaded corlib).
23322 2003-07-22  Martin Baulig  <martin@ximian.com>
23324         * mono-debug-debugger.c: Reworked the type support a bit more;
23325         distinguish between types and classes.
23327 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
23329         * icall.c: add IsArrayImpl icall.
23331 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
23333         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
23334         initializing real_size only once. Also fix bug #46602.
23336 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
23338         * object.c: Renamed mono_metadata_section to metadata_section.
23340 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
23342         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
23343           empty array if the type is an array. Fixed.
23344           ves_icall_MonoMethod_get_base_definition: if the base method
23345           is abstract, get the MethodInfo from the list of methods of
23346           the class.
23347         * reflection.c: ParameterInfo.PositionImpl should be zero-based
23348           and it was 1-based. Fixed in mono_param_get_objects.
23350 2003-07-20  Martin Baulig  <martin@ximian.com>
23352         * mono-debug.h: Set version number to 31.
23353         (mono_debug_init): Added `MonoDomain *' argument.
23355         * mono-debug-debugger.c: Reworked the type support; explicitly
23356         tell the debugger about builtin types; pass the `klass' address to
23357         the debugger.
23359 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
23361         * image.c: Allow new metadata tables to be loaded without a
23362         warning. Also update the warning message to give the new constant value.
23363                 
23364 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
23366         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
23367         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
23368         array type representation changes.
23370 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23372         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
23373         on Environment.Exit () call.
23375 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23377         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
23378         requires a matching corlib.
23380 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23382         * Changelog: My editor decided to add a CR to each line. Sorry about that.
23383           Committed again without the CRs.
23384         
23385 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23387         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
23388           getting it from the "this" socket instance. Did not work
23389           if the socket is a subclass of Socket.
23390           Also fixed bug #35371.
23392 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23394         * metadata.c: fixed size for TypedByRef.
23395         * loader.c: when searching for a method, consider the vararg amrker.
23396         * unicode.c, decimal.c: constify some arrays.
23398 2003-07-15  Dick Porter  <dick@ximian.com>
23400         * socket-io.c: Fixed compilation for gcc < 3.2.
23402         Fixed compilation for machines that don't have AF_INET6 (thanks to
23403         Bernie Solomon <bernard@ugsolutions.com> for that part.)
23405         Fixed compile warnings.
23406         
23407         Fixed formatting and line endings.
23409 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
23411         * socket-io.h:
23412         * socket-io.c: Added IPv6 support.
23414 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
23416         * class.c (mono_class_is_assignable_from): New function to implement
23417         the is_assignable_from logic. Used by mono_object_isinst, 
23418         Type::IsAssignableFrom () and the interpreter.
23420         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
23421         Object, even interfaces.
23422         
23423         * object.c (mono_object_isinst): Implement in terms of 
23424         is_assignable_from.
23426         * icall.c (ves_icall_type_is_assignable_from): New icall.
23428 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
23430         * domain.c (foreach_domain): fix compiler warning.
23432 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
23434         * image.c (load_metadata_ptrs): use g_strndup because strndup is
23435         not available on all plattforms
23437 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
23439         * image.h image.c: Store the metadata version string in MonoImage.
23440         * icall.c: New icall to retrieve the image version.
23441         * reflection.c (create_dynamic_image): Fill in the image version field
23442         * reflection.c (build_compressed_metadata): Use the image version
23443         from the image structure.
23445 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23447         * appdomain.c: modified comment.
23448         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
23449         That will be its last iteration when mono_gc_cleanup is called from
23450         mono_runtime_cleanup and before the domain is unloaded.
23452         Fixes bug #45962.
23454 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
23456         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
23457         attributes.
23459 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23461         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
23462         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
23463         Bernie Solomon <bernard@ugsolutions.com>.
23465 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23467         * object.c, object.h: provide mono_object_new_fast() for faster
23468         allocation in some special cases.
23470 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23472         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
23473         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
23475 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23477         * threadpool.c: fix leaks.
23479 2003-07-01  Dick Porter  <dick@ximian.com>
23481         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
23482         using MonoGHashTables.  Fixes threadpool bug posted to list.
23484 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
23486         * image.h, image.c: added support to load an assembly from a byte array.
23487         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
23488         assembly bundle support.
23490 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
23492         * threadpool.c (mono_thread_pool_add): keep a reference to the
23493         AsyncResult to prevent GC
23495 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23497         * class.c: leak fix.
23499 2003-06-25  Dick Porter  <dick@ximian.com>
23501         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
23502         for the async object, the WaitHandle object will close the handle.
23503         Fixes bug 45321.
23505 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23507         * class.c: in mono_array_class_get (), lookup from the hash with the
23508         same type we insert: this works around a bug in
23509         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
23510         lluis. The real fix will have to wait for after the release.
23512 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23514         * icall.c: fix memory leak when getting type members.
23516 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23518         * reflection.c: added more pubtoken special cases.
23520 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
23522         * class.c: handle field offset correctly when class size
23523         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
23525 2003-06-20  Martin Baulig  <martin@ximian.com>
23527         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
23528         *image' field.
23530 2003-06-20  Martin Baulig  <martin@ximian.com>
23532         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
23534 2003-06-20  Martin Baulig  <martin@ximian.com>
23536         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
23537         just distinguish between variables in registers and variables at
23538         an offset relative to a register.
23540 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23542         * icall.c: #ifdef out latest changes until mcs is fixed.
23544 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23546         * icall.c: return members in metadata order.
23548 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23550         * icall.c: avoid infinite loop in GetTimeZoneData.
23552 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
23554         * icall.c: added Marshal.Prelink/All icalls.
23556 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23558         * object.c, object.h: fix warnings and do some overflow checking
23559         when creating arrays.
23561 2003-06-17  Dick Porter  <dick@ximian.com>
23563         * file-io.h:
23564         * file-io.c: File attributes need to be tweaked slightly when
23565         passed from the managed to the w32 world.
23567 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23568         * profiler.h profiler-private.h profiler.c: Rework last patch
23569         based on suggestion by Paolo.
23570         
23571 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23573         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
23574         instruction level coverage data collection.
23575         * profiler.h profiler.c (: Added new callback function which can be
23576         used by the profiler to limit which functions should have coverage
23577         instrumentation.
23578         * profiler.c (mono_profiler_load): Call g_module_build_path to
23579         generate the file name of the profiler library.
23581 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23583         * profiler.c, profiler.h, profiler-private.h: added basic block 
23584         coverage profiling API.
23586 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
23588         * reflection.c (mono_reflection_create_runtime_class): Add support
23589         for events in dynamically generated code.
23591         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
23592         not allocated.
23594 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23596         * icall.c: when getting timezone info, return reasonable values if we
23597         can't get the actual data.
23599 2003-06-14  Dick Porter  <dick@ximian.com>
23601         * threads.c (start_wrapper): Remove the reference to the thread
23602         object in the TLS data, so the thread object can be finalized.
23603         This won't be reached if the thread threw an uncaught exception,
23604         so those thread handles will stay referenced :-( (This is due to
23605         missing support for scanning thread-specific data in the Boehm GC
23606         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
23608 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
23610         * reflection.c: ensure streams and tables are first allocated with
23611         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
23613 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23615         * icall.c: fixed GetElementType for byrefs (bug# 44792).
23617 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
23619         * reflection.c (mono_reflection_create_runtime_class): Add support for
23620         properties to dynamically created classes.
23621         * reflection.c: Fix a few places where non-MonoObjects were inserted
23622         into the tokens hashtable.
23624 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23626         * object.c: some support to handle out of memory exceptions.
23628 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
23630         * marshal.c (mono_marshal_get_native_wrapper): support reference
23631         return types
23633 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23635         * object.h, object.c: more portability stuff from Bernie Solomon.
23636         Unexport mono_object_allocate(). Added mono_object_unbox ().
23637         Set exitcode when an unhandled exception is thrown.
23639 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
23641         * marshal.c (mono_marshal_get_native_wrapper): use custom
23642         marshaler for return types.
23644 2003-06-10  Dick Porter  <dick@ximian.com>
23646         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
23647         ip_mreq is available
23649 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23651         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
23652         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
23653         by Bernie Solomon <bernard@ugsolutions.com>.
23655 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
23657         * gc.c (mono_gc_init): Avoid error message on shutdown when
23658         GC_DONT_GC=1 is used.
23660         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
23661         New icall to return the GUID of a module.
23663 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23665         * class.c: ensure instance size always includes the parent's size
23666         even whem class size is set explicitly (fixes bug#44294).
23668 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23670         * profiler.h, profiler.c: made the simple profiler thread-safe,
23671         get more accurate timing info. Allow the loading of an
23672         externally-developed profiler module.
23674 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
23676         * marshal.c (mono_marshal_get_native_wrapper): improved
23677         class/byref arguments.
23678         (mono_marshal_get_native_wrapper): better string marshaling support.
23680 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23682         * class.c: ensure .pack and .size are handled correctly and
23683         simplified layout of static fields.
23685 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23687         * appdomain.c
23688         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
23690         * loader.c (mono_lookup_pinvoke_call): look for modules in the
23691         current directory (fix bug 44008)
23693 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
23695         * marshal.c (mono_marshal_get_native_wrapper): started support for
23696         custom marshalers.
23697         (mono_delegate_to_ftnptr): consider marshalling specifications
23699 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23701         * reflection.c, reflection.h: emit custom marshal info.
23703 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23705         * object.c: free the GError.
23706         * icall.c: added CloseEvent_internal.
23707         * threads.[ch]:
23708         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
23709         call.
23711 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
23713         * loader.c (mono_method_get_signature): Add support for dynamic
23714         assemblies.
23716 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23718         * reflection.c: fixed bug #43905.
23720 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23722         * class.c, domain.c, icall.c, metadata.h, object.h: support for
23723         handling TypedReference and ArgIterator.
23724         * loader.c, loader.h: added function to get signature at call site.
23726 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23728         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
23729         data readonly. Buglets and warning fixes. Some MethodSpec support.
23731 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23733         * class.h, class.c, object.c: remove relative numbering support.
23735 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
23737         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
23738         free the string, until we get a chance to fix Gtk#
23740 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23742         * marshal.c: revert last patch.
23744 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23746         * icall.c: updates for new mono_class_vtable() not calling
23747         the type constructor anymore.
23749 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23751         * object.h, object.c: separate vtable creation from type
23752         initialization. Make running the .cctor thread safe.
23754 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23756         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
23758 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23760         * loader.c (mono_get_method): consider calling convention
23762 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
23764         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
23765         to return the invisible global type for a module.
23767         * reflection.c (mono_image_build_metadata): Emit global fields too.
23769 2003-05-20  Peter Williams  <peterw@ximian.com>
23771         * loader.c (mono_lookup_internal_call): Add a few newlines.
23773 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
23775         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
23776         literal strings.
23778         * appdomain.c (set_domain_search_path): Recalculate search path when
23779         AppDomainSetup.PrivateBinPath changes.
23781         * object.c (mono_class_compute_gc_descriptor): It turns out some
23782         parts of the class libs (like System.Thread) holds pointers to
23783         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
23784         to treat native int a pointer type here.
23785         
23786 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
23788         * appdomain.h, domain.c: add hashtable for jump target resolution.
23790 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
23792         * reflection.h reflection.c icall.c: Added new icalls 
23793         GetManifestResourceInfoInternal, GetModulesInternal and support
23794         infrastructure.
23796 2003-05-16  Dick Porter  <dick@ximian.com>
23798         * icall.c:
23799         * file-io.h:
23800         * file-io.c: Implement System.IO.MonoIO::GetTempPath
23802 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
23804         * object.c: mono_store_remote_field: little fix to previous patch.
23806 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23808         * class.c: add constructors to array classes.
23809         * icall.c: special case array construction for InternalInvoke (),
23811 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
23813         * class.h class.c reflection.c object.c: Added support for field
23814         defaults in dynamically generated classes.
23816 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23818         * reflection.c: properly encode charset for ddlimport.
23820 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
23822         * threads.c: allow compiling without GC.
23824 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23826         * appdomain.h, object.c, object.h, threads.c, threads.h: added
23827         handling of thread static data.
23829 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23831         * reflection.h, reflection.c: added mono_custom_attrs_free ().
23833 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23835         * class.c (mono_array_class_get): always set the serializable flags
23836         (mono_array_class_get): always set the SEALED attribute for array types
23838 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
23840         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
23841         attributes (fix for bug 42021).
23843 2003-05-12  Dick Porter  <dick@ximian.com>
23845         * gc.c: Don't run finalizers when the finalizer thread is
23846         finishing up, because the default domain has already been
23847         destroyed.
23849 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
23851         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
23852         value is null, we should throw an exception.   This is slightly
23853         different than the other conventions used for the constructor.
23855 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23857         * socket-io.c: fixed windows build.
23859 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23861         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
23863 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
23865         * object.c (mono_string_new_wrapper): Compatibility fix for MS
23866         compilers.
23868 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
23870         * class.c (mono_class_layout_fields): Add experimental GC aware
23871         auto layout facility. Requires class library changes to work correctly.
23873         (mono_class_setup_vtable): Avoid overriding explicit interface
23874         method implementations. Fixes iface3.exe test.
23876         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
23877         object reference.
23878         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
23879         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
23881         * metadata.h: Add new type classification macro which determines
23882         whenever the type holds an object reference.
23884 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23886         * marshal.c (mono_marshal_get_native_wrapper): cleanups
23888 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
23890         * gc.c (finalizer_thread): Work around a GC bug.
23892 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
23894         * marshal.c (emit_struct_conv): allow unions
23896         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
23898 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
23900         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
23902 2003-05-06  Martin Baulig  <martin@ximian.com>
23904         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
23906 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23908         * socket-io.c:
23909         (Select_internal): allow NULLs, don't create arrays if not needed.
23910         Coupled with Socket.cs changes.
23912         * threadpool.c:
23913         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
23914         register a finalizer for it that will close the semaphore handle. This
23915         fixes the leak and make Lupus' test run with > 4080 loops.
23917 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23919         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
23920         Jerome Laban (bug #42287)
23922 2003-05-02  Martin Baulig  <martin@ximian.com>
23924         * debug-mono-symfile.h
23925         (MonoSymbolFile): Moved declaration into mono-debug.h.
23926         (MonoDebugMethodJitInfo): Likewise.
23927         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
23928         argument.
23929         (_mono_debug_address_from_il_offset): Take a
23930         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
23932         * mono-debug.h
23933         (MonoDebugDomainData): New struct.
23934         (mono_debug_get_domain_data): New function.
23935         (mono_debug_add_method): Take an additional `MonoDomain *'
23936         argument.
23937         (mono_debug_source_location_from_address): Likewise.
23938         (mono_debug_il_offset_from_address): Likewise.
23939         (mono_debug_address_from_il_offset): Likewise.
23941 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
23943         * reflection.c: one more check for null type in custom attrs.
23945 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23947         * reflection.c: avoid warning (comparison is always false due to limited
23948         range of data type).
23950 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23952         * icall.c: throw an exception in Type.GetField if the argument 'name'
23953         is NULL.
23955 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
23957         * reflection.c: fixed handling of enums in named arguments to custom
23958         attributes (bug #42123).
23960 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23962         * reflection.c: use the right array element type and handle
23963         a null for a Type argument, too.
23965 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
23967         * reflection.c: handle arrays as arguments to custom attributes.
23969 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23971         * reflection.c: handle a string value in a custom attr
23972         ctor that takes an object.
23974 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
23976         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
23977         (fix bug #42063)
23979 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
23981         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
23983 2003-04-27  Martin Baulig  <martin@ximian.com>
23985         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
23986         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
23987         MONO_DEBUGGER_EVENT_BREAKPOINT.
23988         (mono_breakpoint_trampoline_code): Removed.
23989         (mono_debugger_event_handler): The last argument is now a
23990         `guint32'.
23991         (mono_debugger_insert_breakpoint_full): Removed the
23992         `use_trampoline' argument.
23993         (mono_debugger_method_has_breakpoint): Likewise.
23994         (mono_debugger_trampoline_breakpoint_callback): Renamed to
23995         mono_debugger_breakpoint_callback(); take the method and
23996         breakpoint number as arguments.
23998 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24000         * metadata.c: fix off by one when loading parameters attributes.
24002 2003-04-24  Martin Baulig  <martin@ximian.com>
24004         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
24006 2003-04-24  Martin Baulig  <martin@ximian.com>
24008         * mono-debug-debugger.c: Moved all code which interacts with the
24009         Mono Debugger here.
24011         * debug-mono-symfile.c: This code now just deals with the symbol
24012         file itself, the debugger code is now in mono-debug-debugger.c.
24014 2003-04-23  Martin Baulig  <martin@ximian.com>
24016         * mono-debug.c (mono_debug_source_location_from_il_offset):
24017         New method; like mono_debug_source_location_from_address(), but
24018         takes an IL offset instead of a machine address.
24020 2003-04-23  Martin Baulig  <martin@ximian.com>
24022         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
24023         `line' field; this is now computed by the debugger.
24025 2003-04-23  Martin Baulig  <martin@ximian.com>
24027         * mono-debug.[ch]: New files.  This is the new debugging interface.
24029         * mono-debug-debugger.[ch]: New files.  Moved all code which
24030         interacts with the Mono Debugger here.
24032 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
24034         * domain.c (mono_init): initialize mono_defaults.monitor_class
24036 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
24038         * reflection.c (method_encode_code): Add a spicy exception to help
24039         future compiler authors.
24041 2003-04-21  Martin Baulig  <martin@ximian.com>
24043         * icall.c
24044         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24045         Make this work with relative pathnames; g_filename_to_uri() needs
24046         an absolute filename.
24048 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
24050         * icall.c: Track name changes in Object and ValueType.
24052 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
24054         * metadata.c (mono_type_stack_size): size should be a multiple of
24055         sizeof (gpointer)
24057 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24059         * gc.c:
24060         (internal_domain_finalize): moved into mono_domain_finalize. No need
24061         to create another thread because the finalizers will be run in the
24062         finalizer thread.
24063         
24064         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
24065         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
24066         to be run (MS does this too).
24068 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
24070         * object.c (mono_class_compute_gc_descriptor): Update comment.
24072         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
24074         * image.h: Add synchronized wrapper cache.
24076         * image.c (do_mono_image_open): Initialize cache.
24078         * reflection.c (create_dynamic_mono_image): Initialize cache.
24080 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24082         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
24083         ves_icall_System_Buffer_ByteLengthInternal.
24085 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24087         * reflection.c: setup klass->nested_in earlier. Allow
24088         a dash in the assembly name.
24090 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
24092         * metadata.c (mono_type_to_unmanaged): dont access
24093         type->data.klass for MONO_TYPE_OBJECT
24094         (mono_type_to_unmanaged): consider System.Delegate class
24096 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
24098         * class.c: just setup supertypes in the proper place instead of
24099         initializing the full element class for arrays.
24101 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
24103         * class.c: ensure the element class of arrays is initialized.
24104         Setup the supertype info for array classes, too.
24106 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
24108         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
24110 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24112         * Makefile.am: re-added -m option when running cygpath. This way,
24113         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
24114         separator.
24115         * mono-config.c: same codepath for locating mono config file for WIN32
24116         and the rest.
24117         * assembly.c: if mono_assembly_setrootdir is called, don't override
24118         the value set.
24120 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24122         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
24123         MONO_ASSEMBLIES variable.
24125 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
24127         * icall.c: added Assembly::GetNamespaces() icall.
24129 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24131         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
24133 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
24135         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
24136         * object.c: fixed bug in the construction of vtable for proxies
24138 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
24140         * object.c (mono_array_new): Mark mono_array_new as an icall.
24142 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24144         * class.c: fixed test for public method when overriding interfaces.
24145         Closes bug #40970.
24147 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24149         * appdomain.h, domain.c: added mono_domain_foreach() to
24150         be able to access the currently loaded appdomains.
24151         * object.c: make string interning work across sppdomains.
24152         Mark some functions for use as icalls.
24154 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
24156         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
24158         * reflection.h reflection.c: Allocate long living data using 
24159         GC_MALLOC_ATOMIC so the collector does not need to scan it.
24161         * reflection.c: Double the allocation size in streams instead of
24162         increasing it, to prevent unneccesary copying on large assemblies.
24163         
24164         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
24165         creation if the assembly does not have the Run flag set.
24167 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24169         * class.h: avoid the C++ keywords in header files (Jerome Laban
24170         spotted and fixed this).
24172 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24174         * object.c:
24175         (mono_unhandled_exception): fill in the arguments for the
24176         UnhandledException event. Only trigger that event for the default
24177         domain (as MS does).
24179 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
24181         * object.c: Improve typed allocation stuff based on suggestions from
24182         Paolo. Also turn it on if the GC library supports it.
24184 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24186         * object.c object.h class.h: Added experimental typed allocation
24187         facility using the interfaces in gc_gcj.h.
24189         * os/gc_wrapper.h: Added new include files.
24190         
24191 2003-04-03  Martin Baulig  <martin@ximian.com>
24193         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
24194         which is not yet enabled by default.
24196         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
24197         functions.
24198         (mono_gc_lock, mono_gc_unlock): New static functions.
24200         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
24201         functions; stop/start the world for the garbage collector.  This
24202         is using the windows API; we need to complete the SuspendThread()/
24203         ResumeThread() implementation in the io-layer to make this work on Unix.
24204         (mono_gc_push_all_stacks): New public function; tells the garbage
24205         collector about the stack pointers from all managed threads.
24207 2003-04-03  Martin Baulig  <martin@ximian.com>
24209         * object.h (MonoThread): Added `gpointer stack_ptr'.
24211         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
24213 2003-04-03  Martin Baulig  <martin@ximian.com>
24215         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
24217 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24219         * reflection.c (typebuilder_setup_fields): Initialize field.first and
24220         field.last.
24222 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
24224         * loader.c (mono_lookup_internal_call): Report the corlib that is
24225         out of sync.
24227 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
24229         * icall.c (ves_icall_type_GetTypeCode): fixed check for
24230         System.DBNull (it's class not valuetype).
24232 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24234         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
24235         if the array method was already assigned a token (fixes bug#40646).
24237 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
24239         * reflection.c (mono_reflection_get_type): Attempt type resolve even
24240         if no assembly is given.
24242 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
24244         * metadata.h: Added the new tables.
24246         * row-indexes.h: Added definitions for new tables.
24248         * metadata.c: Add schemas for new tables, and add support for
24249         computing the sizes of them.
24251         * class.c: Update for handling the new type cases.
24253 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
24255         * metadata.h (MONO_TYPE_IS_VOID): new macro
24257 2003-03-31  Martin Baulig  <martin@ximian.com>
24259         * threads.h (MonoThreadCallbacks): Added `thread_created'.
24261         * threads.c (mono_thread_new_init): Call `thread_created' in the
24262         mono_thread_callbacks.
24264 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
24266         * loader.h: added marshalbyrefobject_class to mono_defaults
24267         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
24268         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
24269           generation of output parameters.
24270           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
24271         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
24272           contextbound and the target object belongs to the context of the caller.
24273         * object.h: added context and unwrapped_server variables in MonoRealProxy.
24274         * object.c: Implemented support for interfaces and abstract classes
24275           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
24276           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
24278 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
24280         * class.h class.c (mono_class_is_subclass_of): New function.
24281         
24282         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
24283         routines for most common case (calls from ArrayList::ToArray).
24285         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
24286         routine so programs which call Environment::Exit() can be profiled.
24288         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
24289         Added MONO_ARCH_SAVE_REGS.
24291         * icall.c (ves_icall_type_is_subtype_of): Use new function.
24293 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
24295         * blob.h: Add a couple of new MonoType types definitions.
24297         * tabledefs.h: Add a couple of new call convs.
24299 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
24301         * reflection.h (MonoReflectionDynamicAssembly): track changes in
24302         the layout of the class.
24304         * reflection.c (alloc_table): double the size on overflow to avoid
24305         unnecessary copying.
24307         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
24308         avoid filling out metadata tables and blobs. Also set mb->ilgen to
24309         null so it can be garbage collected.
24310         
24311 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
24313         * reflection.c (mono_reflection_get_type): Return the resolved type
24314         only if it is in the assembly we searched.
24316         * reflection.c (ensure_runtime_vtable): Initialize method slots.
24318         * class.c (mono_class_setup_vtable): Set the slot of the overriding
24319         method.
24321 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24323         * appdomain.c:
24324         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
24325         the right one is 'file:///blah', but MS allows it.
24326         * assembly.c:
24327         (mono_assembly_open): allow 'file://blah'
24329         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
24331 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
24333         * socket-io.c: fixes bug #40310.
24335 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
24337         * reflection.c (mono_reflection_parse_type): handle deeply nested
24338         types correctly.
24340         * reflection.c (mono_image_create_token): Use unique token values
24341         since they will be put into a hash table.
24343         * class.c (mono_class_setup_vtable): If a method occurs in more than
24344         one place in the vtable, and it gets overriden, then change the
24345         other occurances too.
24347         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
24348         object as return type.
24350 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24352         * icall.c: Deleted "ToString" implementation for double and float
24353         because they are full implemented in managed code.
24355 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24357         * reflection.c, reflection.h: implemented and exported functions
24358         to retrieve info about custom attributes.
24360 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24362         * appdomain.c: moved Uri handling to assembly.c
24363         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
24364         work when using a file Uri in *nix and windows.
24366         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
24367         GetReferencedAssemblies.
24369 2003-03-18  Dick Porter  <dick@ximian.com>
24371         * icall.c: Rename a couple of internal calls
24373         * threads.c: Set the thread state to Stopped when a thread exits.
24374         Fixes bug 39377.
24376 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
24378         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
24379         New icall.
24381         * object.c (mono_class_vtable): fix warning.
24383 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
24385         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
24387         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
24388         memory.
24389         (method_encode_clauses): Create exception info structures in the right
24390         order.
24391         (mono_reflection_setup_internal_class): Initialize supertypes field.
24393         * class.c object.c: Handle interfaces which implement other interfaces 
24394         correctly.
24396         * class.h class.c: Move the supertypes array initialization code into 
24397         a separate function so it can be used for dynamic types too. Also call
24398         it earlier, in mono_class_init(), since it can be used before the
24399         type is initialized.
24401 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24403         * Makefile.am:
24404         * assembly.c:
24405         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
24407         * appdomain.c:
24408         * appdomain.h:
24409         * marshal.c:
24410         * object.c: remove warnings.
24412 2003-03-13  Martin Baulig  <martin@ximian.com>
24414         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
24415         (MonoDebugLexicalBlockEntry): New types.
24417         * debug-mono-symfile.c
24418         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
24420 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24422         * process.c: ret can be any non-zero value accroding to MS doc.
24424 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
24426         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
24427         fixing a warning for a miss-used prototype, would have cause
24428         random memory corruption.
24430 2003-03-07  Martin Baulig  <martin@ximian.com>
24432         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
24433         getting really annoying ....
24435 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
24437         * reflection.c (fixup_method): added support for array methods.
24439 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24441         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
24442         (pointed out by Michael Adams).
24444 2003-03-04  Dick Porter  <dick@ximian.com>
24446         * icall.c: Temporarily reverted the Double and Single ToString()
24447         change, because it broke nunit.
24449 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
24451         * object.h, threads.h: make include files compatible with C++
24452         (patch by Jerome Laban <jlaban@wanadoo.fr>).
24454 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24456         * icall.c: Erased ToString helper functions for Double and Single.
24457         Now, that implementations ar all in managed code (Double and Single
24458         Formatters).
24460 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
24462         * appdomain.c: Added method for initializing the default context of
24463         a domain. Added internal call for getting the default context.
24464         * appdomain.h: Added context variable in MonoDomain struct.
24465         * domain.c: mono_domain_set also sets the default context of the domain
24466         * icall.c: Mapped internal method InternalGetDefaultContext.
24467         * object.c: mono_object_get_virtual_method returns always a remoting
24468         wrapper if the object is a transparent proxy.
24469         mono_runtime_invoke_array: when creating an object by calling the
24470         constructor, if the created object is a proxy, then the constructor should
24471         be called using the a remoting wrapper.
24473 2003-03-03  Dick Porter  <dick@ximian.com>
24475         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
24476         variable so it compiles on solaris.  Problem spotted by
24477         Christopher Taylor <ct@cs.clemson.edu>
24479 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24481         * appdomain.c:
24482         (get_info_from_assembly_name): don't leak value.
24484         * icall.c:
24485         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
24486         result.
24488 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
24490         * assembly.c: export mono_image_load_references ().
24491         * class.c: handle function pointers. mono_class_from_name() now
24492         supports nested type names directly.
24494 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
24496         * reflection.h reflection.c: Encode already created dynamic methods 
24497         and fields correctly as a DEF instead of a REF.
24499         * reflection.c: Get rid of the force_ref argument to 
24500         mono_image_typedef_or_ref since it was wrong in the first place.
24502         * string-icalls.c: add error checking to string constructors according
24503         to the MSDN docs.
24505         * reflection.c: Emit types in the order their TypeBuilders were 
24506         created. Previously, a new table index was assigned to each type before
24507         the tables were emitted. This was wrong because the signature blob
24508         might already refer to a type by its original table index.
24510 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
24512         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
24513         change.
24514         
24515 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24517         * Makefile.am: make assemblies dir have \ instead of / on windows.
24519 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
24521         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
24522         iterate over the NESTEDCLASS table using a linear search since the
24523         table is not guaranteed to be sorted by the secondary key.
24525         * class.c (mono_class_create_from_typedef): fixed up call to
24526         mono_metadata_nesting_typedef.
24527         
24528 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
24530         * marshal.c (mono_string_to_byvalstr): clear the memory as
24531         suggested by Jerome Laban <jlaban@wanadoo.fr>
24533 2003-02-26  Dick Porter  <dick@ximian.com>
24535         * process.c: Cope with padding in .rsrc blocks
24537 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24539         * metadata.h: reverted the filter_len change, it breaks reflection
24540         
24541 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24543         * metadata.h: added a new field to store the filter_len
24544         
24546 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
24548         * reflection.c: handle custom attributes for types and members
24549         created with Reflection.Emit (bug#38422).
24551 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
24553         * reflection.c: define RTSpecialName automatically for constructors for
24554         compatibility with MS.NET.
24556         * reflection.c (mono_reflection_create_runtime_class): initialize
24557         nested_in field of dynamically created classes.
24559 2003-02-22  Martin Baulig  <martin@ximian.com>
24561         * debug-mono-symfile.h: Incremented version number.
24563 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24565         * object.h icall.c process.c: fix warnings.
24567 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24569         * appdomain.h appdomain.c:
24570         (mono_domain_try_type_resolve): split the 
24571         name_or_tb argument into a name and a tb argument.
24572         (mono_domain_has_type_resolve): new function to check whenever the
24573         application has registered a TypeResolve event handler.
24574         
24575         * icall.c reflection.h reflection.c: move the type resolve logic into
24576         mono_reflection_get_type () so it will be invoked when 
24577         Assembly::GetType () is called.
24579         * reflection.c:
24580         (mono_reflection_get_type): renamed to get_type_internal.
24581         (mono_reflection_get_type): fixed type name generation so it works 
24582         for nested types too.
24583         (mono_reflection_get_type): call has_type_resolve () to avoid the 
24584         costly type name generation if there is no resolve event handler.
24586 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24588         * class.c, image.c: load exported types from file references.
24590 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
24592         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
24593           used to cache the managed methods used to create proxies and make 
24594           remote invocation of methods.
24595         * class.h: Added in MonoVTable a flag to indicate that a class needs 
24596           to be remotely created.
24597         * object.c: Modified the method mono_class_vtable(). It now initializes 
24598           the remote flag of the vtable. Modified mono_object_new_specific(), 
24599           so now it checks the remote flag.
24600         * icall.c: Added a couple of internal methods, one for enabling instance 
24601           creation interception for a type, and one for creating objects bypassing
24602           the remote check.
24604 2003-02-18  Martin Baulig  <martin@ximian.com>
24606         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
24607         New interncall to get a method's metadata token.
24609         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
24610         New interncall for the debugger.
24612 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
24614         * class.c (mono_class_setup_vtable): allocate supertype array
24616 2003-02-18  Martin Baulig  <martin@ximian.com>
24618         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
24620 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24622         * reflection.c:
24623         (assembly_name_to_aname): jump over unknown properties (i've found
24624         something like: 'type, assembly, version=xxx, custom=null, public...',
24625         so now will ignore custom=null and still get the rest of the values).
24627 2003-02-17  Dick Porter  <dick@ximian.com>
24629         * threads.c: Have Thread.Start() wait for a semaphore to signal
24630         that the thread has set up all its local data.  This fixes bug
24631         34323, where Abort() raced the new thread's TLS data.
24633         Also removes the handle_store() call from start_wrapper, because
24634         threads are now always created suspended and there is no longer a
24635         race between the parent and child threads to store the info.
24637 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
24639         * image.c: explain the #- heap issue in a message, hopefully
24640         avoiding FAQs on mono-list.
24642 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24644         * icall.c:
24645         (GetEntryAssembly): if the domain has not invoked
24646         AppDomain.ExecuteAssembly yet, return the assembly of the default
24647         AppDomain.
24649 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
24651         * class.c (mono_ldtoken): make it work in dynamic assemblies.
24653 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24655         * metadata.c, reflection.c: simple speedup to type hash
24656         and equals code.
24658 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
24660         * image.c, image.h, class.c, assembly.c: move module loading
24661         to MonoImage. When loading metadata, consider alignemnet from
24662         the start of metadata, not from the metadata address in memory.
24664 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
24666         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
24667         AssemblyBuilder objects. Factored out custom attribute creation into
24668         a separate function.
24669         (create_custom_attr): new function to create custom attributes.
24671 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
24673         * Makefile.am: Got tired of typing the full pathname to pedump.
24674         Until there is another option, am installing this.
24676 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
24678         * class.c (class_compute_field_layout): always set field->parent 
24679         (mono_ldtoken): use mono_defaults.fieldhandle_class;
24681 2003-02-11  Dick Porter  <dick@ximian.com>
24683         * threads-types.h:
24684         * monitor.c: Rewrote Monitor, making lock much faster and
24685         Pulse/Wait work as specified.  Also uses much fewer handles, and only
24686         creates them as needed.
24688         * exception.c: Added SynchronizationLockException
24690         * threads.c: Deleted old Monitor implementation.  The new one is
24691         in a new file.
24693 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24695         * class.c: handled TypedReference type code. Set the correct size for
24696         class data. Setup interface_offsets for interface classes, too.
24698 2003-02-09  Martin Baulig  <martin@ximian.com>
24700         * debug-mono-symfile.h: Reflect latest symbol writer changes.
24702 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
24704         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
24705         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
24706         * object.c: fixed mono_object_get_virtual_method () for interfaces.
24707         * verify.c: check for code that runs after the end of the method.
24709 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24711         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
24712         "System.Math::Round2".
24713         * sysmath.h: Added Floor, Round and Round2 definitions.
24714         * sysmath.c: Modified certain functions that were not 100% compliant
24715         with MS.NET (math precision) and added the implementation of Floor,
24716         Round and Round2.
24718 2003-02-07  Martin Baulig  <martin@ximian.com>
24720         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
24722 2003-02-07  Martin Baulig  <martin@ximian.com>
24724         * debug-mono-symfile.c: Reflected latest symwriter changes.
24725         (mono_debug_create_mono_symbol_file): Removed.
24726         (mono_debug_open_mono_symbol_file): Take an argument which
24727         specifies whether to create a dynamic symbol file.
24729 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
24731         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
24733 2003-02-05  Martin Baulig  <martin@ximian.com>
24735         * reflection.c (mono_image_build_metadata): Make this public,
24736         protect it against being called multiple times, don't create
24737         resources and don't build the compressed metadata here.
24738         (mono_image_create_pefile): Do this here.
24740         * icall.c
24741         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
24743 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24745         * socket-io.c: fixed bug #36322.
24747 2003-02-06  Piers Haken <piersh@friskit.com>
24749         * appdomain.[ch]:
24750         * class.h:
24751         * debug-mono-symfile.c:
24752         * icall.c:
24753         * loader.c:
24754         * mono-config.c:
24755         * monosn.c:
24756         * reflection.c:
24757         * socket-io.c: warning cleanups
24759 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
24761         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
24762         function. works like remoting invoke, but does a check for the Proxy first.
24764 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
24766         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
24768 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
24770         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
24771         array of pointers.
24772         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
24773         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
24775         * object.c (mono_store_remote_field_new): used by the new jit
24776         instead of mono_store_remote_field
24777         (mono_load_remote_field_new): used by the new jit
24778         instead of mono_load_remote_field
24780 2003-02-05  Patrik Torstensson
24782         * appdomain.c: changed unload to take the domain id instead
24783         of domain
24784         
24785         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
24788 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24790         * appdomain.c: don't look for assemblies in ApplicationBase if
24791         PrivateBinPathProbe is set.
24793 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24795         * object.c: make the first argument in main_args contain the absolute
24796         path to the assembly. Fixes bug #37511.
24798 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24800         * icall.c: get correct UTC offset for countries not using daylight
24801         time saving. Fixes bug #30030.
24803 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24805         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
24806         and 1 are the family).
24808 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
24810         * icall.c (ves_icall_InternalExecute): removed wrong assertion
24812         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
24814 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
24816         * reflection.c: added support for SignatureHelper tokens, which is
24817         needed by the Calli opcode.
24819         * reflection.h: track changes to SignatureHelper class.
24821         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
24823 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24825         * appdomain.c: fixed loading assemblies from PrivateBinPath.
24827 2003-02-03  Patrik Torstensson
24828         * appdomain.[c|h], domain.c : 
24829          - Added support for getting a domain via domain id
24830          - Support for setting and getting domain from System.AppDomain 
24831            (used in cross appdomain channel)
24832          - Added support for get/set for a MonoAppContext on a thread 
24833            (Context class in System.Runtime.Remoting.Contexts),
24834          - Removed hack in Get/SetData and ExecuteAssembly.
24835         
24836         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
24837         the managed world to get control when a proxy is created.
24839         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
24840         
24841 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
24843         * icall.c
24844         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24845         Populate the codebase field as well.
24847 2003-02-02  Martin Baulig  <martin@ximian.com>
24849         * debug-mono-symfile.c
24850         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
24851         (mono_debug_symfile_add_method): Allow interncalls.
24853 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24855         * icall.c: throw parse exception if strtod fails or the string is empty.
24857 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
24859         * marshal.c: handle object type separately from defined
24860         class types.
24862 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
24864         * marshal.c: handle NATIVE_LPSTR for strings when it's
24865         explicitly specified.
24867 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
24869         * reflection.c, reflection.h, icall.c: setup the reflection
24870         handle cache for ModuleBuilders and AssemblyBuilders.
24872 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
24874         * reflection.c (reflection_methodbuilder_to_mono_method): set
24875         pinvoke flag
24877 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24879         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
24881 2003-01-29  Dick Porter  <dick@ximian.com>
24883         * threads.c: No need for the fake_thread kludge now that Thread
24884         doesn't run a class constructor
24885         
24886 2003-01-29  Dick Porter  <dick@ximian.com>
24888         * threads.c: Use g_direct_hash instead of the rather bogus
24889         g_int_hash
24891 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
24893         * marshal.c (mono_marshal_get_native_wrapper): add check for null
24894         (fix pinvoke12.exe)
24895         (mono_marshal_get_struct_to_ptr): generate valid IL code
24896         (mono_marshal_get_ptr_to_struct): generate valid IL code
24897         (*): correctly set sig->pinvoke, we need to memdup the signature
24898         to do that
24900 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24902         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
24903         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
24905 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24907         * profiler.c: provide more callers information.
24909 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
24911         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
24913         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
24915         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
24917 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24919         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
24920         exception instead of going into an infinite loop on dates which it 
24921         can't yet handle.
24923         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
24924         out-of-range exception if needed.
24926         * class.c (mono_class_setup_vtable): allow a virtual method to provide
24927         an implementation for an interface method and to override an inherited
24928         method at the same time. 
24929         Imagine a scenario when a virtual method is used to override a
24930         virtual abstract method in a parent class, and this same method 
24931         provides an implementation for an method inherited from an interface. 
24932         In this case, the interface resolution code will set im->slot, which 
24933         means that the virtual method override pass will skip this method 
24934         which means a pointer to the abstract method inherited from the parent
24935         will remain in the vtable of this non-abstract class.
24937         * class.c: (mono_class_setup_vtable): continue search for a real 
24938         method if only an abstract method is found.     
24940 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24942         * reflection.c: add size to encoding for ByValStr and ByValArray
24943         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
24945 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24947         * class.c (mono_class_setup_vtable): pass the override info as an
24948         argument.
24950         * class.c (mono_class_setup_vtable): set the slot of overriding methods
24951         correctly.
24952         
24953         * reflection.c (ensure_runtime_vtable); add support for method 
24954         overrides.
24955         
24956 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24958         * reflection.c (resolution_scope_from_image): Hack to work to work with
24959         dynamic assemblies.
24961         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
24962         added a 'force_ref' argument to force this function to allways return 
24963         a TypeRef. This is needed by mono_image_get_memberref_token ().
24964         
24965 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24967         * reflection.c (mono_image_get_type_info): interfaces really don't have
24968         a parent.
24970         * reflection.c (mono_image_basic_init): fill out missing fields of
24971         image structure.
24973         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
24974         dynamic assemblies. This is required so dynamic assemblies show up in
24975         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
24976         Type::GetType() etc. This is consistent with MS behaviour.
24978         * image.c image.h reflection.c: add newly created classes to the name 
24979         cache so mono_class_get () will find them.      
24981 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24983         First part of changes to get IKVM.NET running under mono.
24984         
24985         * appdomain.h, appdomain.c: added new function 
24986         mono_domain_try_type_resolve() which will emit TypeResolve events. 
24987         This function will call AppDomain::DoTypeResolve to do the actual work.
24989         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
24990         moved existing code dealing with dynamic tokens to a new function 
24991         called mono_reflection_lookup_dynamic_token (). This function will 
24992         raise TypeResolve events when appropriate. Since reflection.c is not 
24993         part of libmetadata, a new hook function called 
24994         mono_lookup_dynamic_token() is added to class.c which will call this.
24996         * assembly.h assembly.c: make the invoke_load_hook function public,
24997         so it can be called for dynamic assemblies.
24999         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
25001         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
25002         type isn't found.
25004         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
25005         MonoGHashTable, since it contains pointers to objects which the GC 
25006         needs to track.
25008         * assembly.c (search_loaded): remove unused variable.
25009         
25010 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
25012         * object.c: fixed issue exposed by gcc-generated IL programs
25013         that use RVA data for pointers.
25015 2003-01-25  Martin Baulig  <martin@ximian.com>
25017         * threads.c (start_wrapper): Moved the initialization of
25018         `start_func' above the mono_new_thread_init() call to which we
25019         pass it as argument.
25021 2003-01-24  Martin Baulig  <martin@ximian.com>
25023         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
25024         the MonoThread pointer.
25026 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
25028         * icall.c: Rename `PowImpl' to Pow.
25030 2003-01-23  Dick Porter  <dick@ximian.com>
25032         * threads.c (start_wrapper): Create a Thread object if needed, so
25033         the Main() thread can do the class initialisation in a subthread
25034         that has been set up to allow managed code execution.
25036         Pass the thread ID instead of the MonoThread pointer to the thread
25037         start and attach callbacks.  This change is required, because the
25038         jit thread start callback must be called _before_ the Thread
25039         object can be created.
25040         
25041         (mono_thread_init): Removed much object creation code that is no
25042         longer needed.  No managed code is called from here now.
25044         * object.c (mono_runtime_exec_managed_code): Create a subthread
25045         for Main, and call back to the runtime to use it.
25046         Set the exit code when Main exits.
25048         * gc.c: Make sure domain finalisation happens in a subthread.
25049         Re-enable threaded GC, fixing bug 31333 (again).
25051         * environment.c: System.Environment internall calls (so far just
25052         ExitCode is here, the others are still in icall.c)
25054         * appdomain.c (mono_runtime_cleanup): All threads running managed
25055         code should have finished before mono_runtime_cleanup() is
25056         reached, so no need to clean up threads.
25058 2003-01-22  Martin Baulig  <martin@ximian.com>
25060         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
25061         `gpointer func' arguments.      
25062         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
25063         but added `MonoThread *thread' argument.
25064         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
25066         * threads.c (mono_new_thread_init): Added `gpointer func' argument
25067         and pass it to the mono_thread_start_cb callback.
25068         (mono_install_thread_callbacks): New public function to install a
25069         set of callbacks which are set by the debugger.
25070         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
25072 2003-01-22  Martin Baulig  <martin@ximian.com>
25074         * Makefile.am: Install debug-mono-symfile.h.
25076 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
25078         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
25080 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
25082         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
25083         * class.c (mono_ptr_class_get): correctly set access levels of pointers
25084         (mono_array_class_get): correctly set access levels of arrays
25086 2003-01-20      Patrik Torstensson
25087         * image.h (MonoAssemblyName): changed major, minor, build, revision
25088         from signed to unsigned.
25090 2003-01-20  sean kasun <skasun@azstarnet.com>
25092         * reflection.c (load_cattr_value): Now this handles
25093         MONO_TYPE_SZARRAY.  Fixes bug #35629
25095 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
25097         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
25098         integer value
25100 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25102         * decimal.c: fixed bug #26056.
25104 2003-01-17  Martin Baulig  <martin@ximian.com>
25106         * gc.c: Raise an ExecutionEngineException instead of using g_error().
25108 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25110         * exception.[ch]:
25111         (mono_get_exception_type_initialization): new function.
25113         * object.c: throw a TypeInitializationException when an exception is
25114         thrown invoking the class constructor.
25116 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25118         * reflection.c: fixed attribute reading.
25120 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25122         * icall.c:
25123         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
25124         provided, look for the type in the calling assembly and then in
25125         mscorlib; if the assembly name is provided, only try that one.
25127 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
25129         * object.c: register the vtable before there is a chance it's
25130         queried again recursively.
25132 2003-01-13  Duncan Mak  <duncan@ximian.com>
25134         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
25135         gc-internal.h. 
25136         
25137 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
25139         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
25141 2003-01-11  Martin Baulig  <martin@ximian.com>
25143         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
25144         this to 20 for the release.
25146 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
25148         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
25150         * loader.c (mono_method_get_marshal_info): bug fix
25152         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
25153         structures with explicit layout
25155 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
25157         * profiler.c: made the output more readable (and sorted). 
25158         Added caller information for the allocation profiler.
25160 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
25162         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
25164 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25166         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
25167         to get value types.
25168         
25169 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
25171         * object.c, profiler.h, profiler.c, profiler-private.h:
25172         Added object allocation profiler.
25174 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
25176         * reflection.h, reflection.c: handle global methods.
25177         Compress blob entries.
25179 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
25181         * marshal.c: fix compilation.
25183 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
25185         * loader.c (mono_method_get_marshal_info): impl.
25187         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
25189 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25191         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
25192         for reference types.
25194 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
25196         * loader.c: fixed off by one error in loaded parameter names.
25198 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
25200         * marshal.c (mono_marshal_get_icall_wrapper): like
25201         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
25202         instead of a MonoMethod.
25204 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25206         * decimal.c: fixed bug #36537.
25208 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
25210         * marshal.c: throw a missing method exception if a
25211         P/Invoke method is not found.
25213 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
25215         * icall.c: allow a null this for constructors.
25217 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
25219         * icall.c: raise the proper exceptions if the arguments to the
25220         internal Invoke are incorrect.
25222 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
25224         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
25226 2003-01-03  Martin Baulig  <martin@ximian.com>
25228         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25230 2002-12-31  Martin Baulig  <martin@ximian.com>
25232         * debug-mono-symfile.c: Completely rewrote the type section.
25233         Instead of using individual malloc()ed fields, we use one big
25234         continuous memory area and offsets into this area.
25235         See the comments in the source code for details.
25237 2002-12-30  Martin Baulig  <martin@ximian.com>
25239         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
25241 2002-12-30  Martin Baulig  <martin@ximian.com>
25243         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
25244         line number table in this data blob instead of using an external
25245         pointer.
25247 2002-12-28  Martin Baulig  <martin@ximian.com>
25249         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25251 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
25253         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
25254         as a boxed return type.
25256 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
25258         * appdomain.c
25259         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
25260         g_build_filename to properly get separators on the filename created.
25262         * object.h: Small change, introduce MonoMarshalByRefObject to
25263         track the layout of that structure in the C# universe as we make
25264         changes there.
25266 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
25268         * object.c: removed assert to allow static fields on interfaces.
25269         * loader.c: a TypeSpec may be used for any type, not just arrays.
25271 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
25273         * class.c, class.h: added mono_class_array_element_size ().
25274         Ignore static methods in interfaces.
25276 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25278         * threads.c: fixed the build under cygwin.
25280 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
25282         * reflection.c: handle nullref constants. Allocate keys for
25283         reflection handles with the GC.
25285 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25287         * threads.c, threads.h: added mono_thread_get_abort_signal()
25288         to get a suitable signal for thread abort.
25290 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25292         * metadata.c: fix handling of ExportedType table.
25294 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25296         * icall.c: added WriteWindowsDebugString internal call.
25298 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25300         * reflection.h: added fields to match C# implementation.
25302 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25304         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
25306 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
25308         * gc.h, gc-internal.h: Rename header for GC internal calls to
25309         gc-internal.h from gc.h as to not clash with Boehm GC having its
25310         header installed as <gc.h> in outside include paths.
25311         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
25312         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
25314 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25316         * icall.c: assign minor, build and revision in FillName.
25318 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
25320         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
25321         Added support for running code generated by Reflection.Emit.
25323 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25325         * appdomain.c: check for NULL argument in LoadFrom.
25327 2002-12-10  Dick Porter  <dick@ximian.com>
25329         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
25331 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25333         * appdomain.c: fix buglet when building exe file name.  Handle full
25334         assembly name (needed after latest changes to AssemblyName).
25335         * image.c:
25336         (mono_image_close): free some hashtables.
25338 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
25340         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
25341         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
25342         on some systems (redhat 7.3) 
25344 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
25346         * threads.c: delete the critical section of a sync block,
25347         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
25349 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
25351         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
25353 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25355         * appdomain.[ch]: handle the assembly preload event to try loading the
25356         assemblies using the paths we have in the current domain.
25358         * assembly.[ch]: created an assembly preload hook that is called to try
25359         loading the assembly by other means that the ones provided here.
25361         * domain.c: initialize the domain search path.
25363         From now on, assemblies (TODO: except corlib and System) are loaded
25364         according to these rules when using mono_assembly_load ():
25366                 1. It tries to load the assembly from the ApplicationBase
25367                 of the current domain appending .dll and .exe (TODO: have to
25368                 try loading from name/name.dll and name/name.exe).
25370                 2. It tries the search path specified in PrivateBinPath for the
25371                 current domain (if any).
25373                 3. Previous behavior.
25375 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
25377         * icall.c: implemented GetInterfaceMap() related icall.
25378         * domain.c, loader.h: load MethodInfo in mono_defaults.
25380 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
25382         * gc.c: disable the finalizer thread for now, untill all the issues
25383         with it are resolved.
25385 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
25387         * string-icalls.c: handle embedded nulls in string ctor when the
25388         length is specified.
25390 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
25392         * class.c: look for explicit interface implementation in parent
25393         classes, too.
25395 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
25397         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
25399 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
25401         * gc.c: protect handles with a critical section.
25403 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25405         * icall.c:
25406         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
25407         parameters. If no assembly specified, try getting the type from all
25408         the assemblies in the current domain, else, load the assembly and get
25409         the type from it.
25411 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25413         * marshal.c: applied patch from Aleksey Demakov that fixes
25414         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
25416 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25418         * icall.c: fixed get_location.
25420 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
25422         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
25423         declarations to make it work with older gcc. 
25425         * loader.c (mono_get_method): set signature->pinvoke for native calls
25427 2002-11-20  Dick Porter  <dick@ximian.com>
25429         * threads.c (mono_thread_init): Set the main thread's handle
25431 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
25433         * gc.c: allow compilation without GC support. Changed to match the
25434         mono coding style.
25436 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
25438         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
25440 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
25442         * reflection.c: set a public key token on the core assemblies.
25444 2002-11-18  Dick Porter  <dick@ximian.com>
25446         * threads.c: Split out some thread initialisation so that other
25447         files can set the start callback function.
25449         * gc.c: Run finalisers in a separate thread, to avoid stack
25450         overflow.  Fixes bug 31333.
25452         * appdomain.c: Set up GC finalisation thread.
25454         * reflection.c: 
25455         * object.c: 
25456         * domain.c: Use gc.h macros for GC_malloc
25457         
25458 2002-11-15  Dick Porter  <dick@ximian.com>
25460         * threadpool.c: 
25461         * threads.c:
25462         * appdomain.c: Removed mono_runtime_init_with_attach(),
25463         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
25464         merging the extra parameter with the existing function.  Removed
25465         unneeded code in mono_thread_attach().
25467 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
25469         * image.c (mono_image_loaded_by_guid): a method to get loaded
25470         images by guid. 
25471         (load_metadata_ptrs): we store the guid as string.
25473 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
25475         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
25477         * metadata.c (mono_guid_to_string): imported method form Zoltan
25478         Varga (slightly modified)
25480         * assembly.c (mono_assembly_open): load precompiled code
25482         * loader.h (MonoMethod): we store the method token for use in the
25483         aot compiler. 
25485 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25487         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
25488         the hook function called when an assembly is loaded.
25489         
25490         * domain.c: Modified file.
25491         (mono_domain_assembly_load): removed hash table insertion of assemblies.
25493         Fixes bug #33196.
25495 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
25497         * reflection.c: Map PEFileKind to the value expected by the WinNT
25498         image loader. 
25500 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25502         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
25503         Read until the buffer is filled completely.
25505 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25507         * icall.c: implemented MonoType.InternalGetEvent ().
25509 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25511         * appdomain.c: implemented InitAppDomainSetup. Delayed
25512         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
25513         the entry_assembly.
25515         * assembly.c: base_dir is now an absolute path ending with
25516         G_DIR_SEPARATOR.
25518         * icall.c: modified get_location according to the above changes.
25520         * object.c: init AppDomain.SetupInformation for the default domain after
25521         we have the entry assembly.
25523         * domain.c: when unloading a domain, setup = NULL.
25525 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
25527         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
25529 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
25531         * object.h, object.c: introduced mono_object_get_virtual_method ()
25532         to lookup the method invoked on an object when a callvirt is done on
25533         a method.
25534         * icall.c: make MethodInfo::Invoke() always do a virtual call.
25536 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25538         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
25539         current domain when loaded an assembly and failed to load it.
25541         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
25543 2002-10-31  Dick Porter  <dick@ximian.com>
25545         * icall.c: 
25546         * file-io.h: 
25547         * file-io.c: Return the error status in a parameter, as the
25548         GetLastError() value has long since been blown away if we try and
25549         look it up in a subsequent internal call invocation.  Delete the
25550         GetLastError() internal call, because it's useless.
25552 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
25554         * class.[ch]: added cast_class to fix bug 29517
25556 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
25558         * marshal.c: create valid IL code in the filter clause:
25559         the new JIT is less forgiving:-)
25561 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25563         * icall.c: removed get_property internal call.
25565 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
25567         * appdomain.h domain.c: Added an ID to appdomains.
25568         
25569         * threads.c threads.h icall.c: Implement icall
25570         Thread:GetDomainID(), and remove unused icall 
25571         CurrentThreadDomain_internal.
25573 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25575         * icall.c: Don't recurse through the base types in GetConstructor.
25576         Fixes bug #32063. 
25578 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25580         * mempool.h, mempool.c: added mono_mempool_empty() and
25581         mono_mempool_stats().
25583 2002-10-23  Dick Porter  <dick@ximian.com>
25585         * file-io.c: 
25586         * file-io.h: 
25587         * icall.c: Added MonoIO.GetFileType internal call
25589 2002-10-17  Dick Porter  <dick@ximian.com>
25591         * appdomain.c (mono_runtime_cleanup): Don't signal the async
25592         delegate semaphore before waiting for all threads to finish,
25593         because new threads can also call async delegates.  Fixes bug
25594         32004.
25596         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
25597         of 3 seconds, in case another async job is queued.  (This part is
25598         needed because the bug fix reintroduced the 3s exit lag.)  This
25599         makes the mono_runtime_shutdown flag superfluous.
25601 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25603         * reflection.c: include ehader size in method section headers.
25604         Really check for suplicated modules entries.
25606 2002-10-17  Martin Baulig  <martin@gnome.org>
25608         * debug-mono-symfile.c: Added back support for locals.
25610 2002-10-14  Martin Baulig  <martin@gnome.org>
25612         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
25613         MONO_TYPE_VOID.
25615 2002-10-14  Martin Baulig  <martin@gnome.org>
25617         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
25618         mono_class_get() instead of looking in the class cache. 
25620 2002-10-13  Martin Baulig  <martin@gnome.org>
25622         * debug-mono-symfile.c: Set version number to 28, include the
25623         signature in method names.
25625 2002-10-13  Martin Baulig  <martin@gnome.org>
25627         * debug-mono-symfile.h: Set version number to 27.
25629 2002-10-11  Martin Baulig  <martin@gnome.org>
25631         * gc.c: Don't register/unregister NULL pointers as disappearing links.
25633 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25635         * metadata.c, metadata.h: added helper function to allocate signatures.
25637 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25639         * icall.c: added internal call to get the location of machine.config.
25641 2002-10-08  Martin Baulig  <martin@gnome.org>
25643         * debug-mono-symfile.c: Ignore classes with a pending init for the
25644         moment.
25646 2002-10-03  Dick Porter  <dick@ximian.com>
25648         * threads.c: Freebsd pthread_t is a pointer
25650 2002-10-03  Dick Porter  <dick@ximian.com>
25652         * socket-io.c: Implemented GetHostName_internal
25654 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25656         * mono-config.c:
25657         (mono_config_parse_file): don't leak the text.
25659 2002-10-02  Martin Baulig  <martin@gnome.org>
25661         * debug-mono-symfile.c: Added support for methods.
25663 2002-10-01  Martin Baulig  <martin@gnome.org>
25665         * debug-mono-symfile.c: Don't emit methods and line numbers for
25666         the dynamic symbol file, just write the type table.  We can easily
25667         have an external helper program which creates a symbol file for an
25668         IL file.        
25670 2002-10-01  Dick Porter  <dick@ximian.com>
25672         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
25673         Only add the handle to the cleanup array when we're about to
25674         launch the thread.  Bug 31425 deadlocked when the test was run on
25675         mono under w32.
25677 2002-10-01  Martin Baulig  <martin@gnome.org>
25679         * debug-mono-symfile.c: Added support for properties.
25681 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25683         * reflection.c: unaligned store fix from Mark Crichton
25684         <crichton@gimp.org>.
25686 2002-09-27  Martin Baulig  <martin@gnome.org>
25688         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
25689         New interncall.
25691 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25693         * assembly.h, assembly.c: use a sane API to hook into the assembly
25694         loading process instead of a useless special-purpouse hack
25695         (ngen needs a hook, too, for example).
25697 2002-09-27  Dick Porter  <dick@ximian.com>
25699         * threads.c (mono_thread_init): Call GetCurrentProcess() so
25700         io-layer can set up some process handle info.  Not needed on w32,
25701         but doesn't hurt either.
25703         * process.c: Pass the program name in the second parameter to
25704         CreateProcess, so the path is searched.  Include the working
25705         directory. Implemented process name, process enumeration, and some
25706         process detail internal calls.
25707         
25708         * icall.c: Added internal calls for process lookup, and some
25709         process details
25711 2002-09-26  Martin Baulig  <martin@gnome.org>
25713         * assembly.c (mono_install_open_assembly_hook): New global
25714         function to install a function to be invoked each time a new
25715         assembly is loaded.
25716         (mono_assembly_open): Run this callback function if set.
25718         * debug-mono-symfile.c: Put back line numbers for the dynamic
25719         symbol file and also record the .il file as source file.  This
25720         allows us to install the temporary symbol file as `file.dbg' just
25721         like a compiler-generated one.
25723 2002-09-26  Nick Zigarovich <nick@chemlab.org>
25725         * Corrected typo in gc.c (BOHEM vs BOEHM).
25727 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25729         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
25730         GetProperties. Also avoid calling g_slist_length in GetProperties and
25731         GetMethods.
25733 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25735         * reflection.c: avoid unaligned stores (bug spotted by
25736         Mark Crichton  <crichton@gimp.org>).
25738 2002-09-25  Martin Baulig  <martin@gnome.org>
25740         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
25741         instead of guint64 for addresses and added prologue/epilogue info.
25743 2002-09-25  Martin Baulig  <martin@gnome.org>
25745         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
25746         store line number info.  For the dynamic symbol file, we only need
25747         to provide the JIT generated dynamic line number info for the dynamic
25748         symbol file.
25750 2002-09-25  Martin Baulig  <martin@gnome.org>
25752         * debug-mono-symfile.h: Incremented version number.
25754 2002-09-24  Martin Baulig  <martin@gnome.org>
25756         * class.c (mono_debugger_class_init_func): New global function
25757         pointer variable.
25758         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
25759         call it.
25761         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
25762         function.  This is called via the mono_debugger_class_init_func
25763         hook to add all types to the dynamic type table.
25764         (ves_icall_MonoDebugger_GetType): New interncall to get a class
25765         from its metadata token.
25767         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
25768         New interncall for the debugger.
25770 2002-09-24  Nick Drochak <ndrochak@gol.com>
25772         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
25773         before using it in case it is null.
25774         
25775 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25777         * metadata.c: allow custom modifiers in local var signatures
25778         (bug spotted by Zoltan Varga).
25780 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25782         * class.c: deal with the <Module> class that may have a NULL vtable.
25783         Eliminate warnings.
25785 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25787         * image.c, image.h: more strong name helpers.
25788         * monosn.c: more work: convert pem keys to cryptoapi format.
25790 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25792         * string-icalls.c: speedup IndexOf.
25794 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25796         * icall.c: updates from Zoltan.2.Varga@nokia.com.
25798 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25800         * icall.c: cleanup: use mono_object_domain ().
25802 2002-09-23  Martin Baulig  <martin@gnome.org>
25804         * debug-mono-symfile.c: Improved type support.
25806 2002-09-22  Martin Baulig  <martin@gnome.org>
25808         * debug-mono-symfile.c: Added support for reference types and strings.
25810 2002-09-22  Martin Baulig  <martin@gnome.org>
25812         * debug-mono-symfile.c: Started to work on the type table.
25814 2002-09-21  Martin Baulig  <martin@gnome.org>
25816         * debug-mono-symfile.c: Largely reworked the symbol table format.
25817         The symbol table is now incrementally updated each time a new
25818         method is added.  We're now also using our own magic and version
25819         so that you don't need to recompile all your classes if the
25820         dynamic table changes.
25821         (mono_debug_update_mono_symbol_file): Removed.
25822         (mono_debug_symfile_add_method): New function to add a method.
25824 2002-09-21  Martin Baulig  <martin@gnome.org>
25826         * icall.c
25827         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
25828         New interncall.
25830         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
25831         New interncall to get a method from its metadata token.
25833 2002-09-21  Martin Baulig  <martin@gnome.org>
25835         * debug-mono-symfile.c: Create type table.
25837 2002-09-20  Martin Baulig  <martin@gnome.org>
25839         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
25841 2002-09-20  Martin Baulig  <martin@gnome.org>
25843         * debug-mono-symfile.c: Provide information about params and locals.
25845 2002-09-20  Martin Baulig  <martin@gnome.org>
25847         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
25848         New interncall.
25850         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
25851         interncall to get a method from its metadata token.
25853 2002-09-20  Martin Baulig  <martin@gnome.org>
25855         * debug-mono-symfile.c: Added a few checks for method->header
25856         being non-NULL.  This should never happen, but for the moment
25857         let's use a g_warning() rather than a g_assert().
25859 2002-09-19  Mark Crichton  <crichton@gimp.org>
25861         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
25862         even if support for it isn't present.  Added an #ifdef to fix this.
25864         * socket-io.c: Added checks back for Solaris support.
25866 2002-09-19  Martin Baulig  <martin@gnome.org>
25868         * debug-mono-symfile.c (read_string, write_string): Reflect latest
25869         changes in the symbol file format.
25871 2002-09-18  Martin Baulig  <martin@gnome.org>
25873         * debug-mono-symfile.c: Set version number to 21.
25875 2002-09-18  Dick Porter  <dick@ximian.com>
25877         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
25878         on netbsd.  Fixes bug 30051.
25880 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25882         * reflection.c:
25883         (set_version_from_string): little fix.
25885 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25887         * monosn.c, Makefile.am: added strong name utility.
25888         * reflection.h, reflection.c: implemented delayed signing,
25889         locale, version and hash id assembly attributes.
25891 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25893         * loader.c, metadata.c: load param attributes in signatures.
25895 2002-09-16  Martin Baulig  <martin@gnome.org>
25897         * debug-mono-symfile.c: Added string table with all method names.
25899 2002-09-14  Martin Baulig  <martin@gnome.org>
25901         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
25902         fast method lookup.
25904 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25906         * reflection.c: record the public key token of referenced assemblies.
25908 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25910         * image.c, image.h: added functions to get the strong name and the
25911         public key of an assembly.
25912         * pedump.c: use them.
25914 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
25916         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
25918 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
25920         * marshal.c (mono_marshal_get_managed_wrapper): Added
25921         MONO_TYPE_BOOLEAN 
25923 2002-09-11  Martin Baulig  <martin@gnome.org>
25925         * gc.c: Call GC_unregister_disappearing_link() on all links when
25926         finalizing them, this is necessary to aviod a crash in boehm's
25927         finalize handler.
25929 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25931         * gc.c: handle GetTarget for finalized objects spotted and fixed by
25932         nick@chemlab.org.
25934 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
25936         * icall.c: implemented MonoType::Module.
25937         * reflection.c, reflection.h: mono_module_get_object () from
25938         Tomi Pakarinen <tomi.pakarinen@welho.com>.
25940 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25942         * icall.c: ignore overridden methods in GetMethods ().
25943         Fix for FieldInfo::SetValue().
25944         * object.c: handle float/double in runtime invoke.
25946 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25948         * object.c: allow a constructor to be called again on an object.
25950 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25952         * class.h, class.c: move field layout code to it's own function and
25953         export it. Get an interface id earlier. Move fields in MonoClass
25954         so they are more cache friendly and align the bitfields.
25955         * loader.c: temporary handle get_param_names() for a runtime method.
25956         * reflection.c, reflection.h: more code to handle runtime creation of
25957         types.
25959 2002-09-09  Martin Baulig  <martin@gnome.org>
25961         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
25962         signature with the pinvoke field being set for the actual call.
25964 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25966         * icall.c: removed some unused icalls. Start of map of glib charsets
25967         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
25969 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25971         * debug-helpers.c: break infinite loop (found and fixed by
25972         Holger Arnold <harnold@gmx.de>).
25974 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25976         * icall.c: target may be null in create_delegate.
25978 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25980         * marshal.c: handle a boolean return type.
25982 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25984         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
25986 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25988         * gc.c: fix weakreferences.
25990 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
25992         * icall.c: added icall to get default codepage.
25994 2002-09-03  Dick Porter  <dick@ximian.com>
25996         * threads.h: 
25997         * threads.c: Use MonoThread instead of MonoObject where
25998         apropriate.
26000         Store running thread objects in a hash table, so that we have all
26001         the info to hand when waiting for them to finish
26002         (means we don't need OpenThread() any more, so mingw builds should
26003         be fully functional again.)
26005         * verify.c:
26006         * object.h: Added thread ID to MonoThread
26008 2002-09-03  Martin Baulig  <martin@gnome.org>
26010         * icall.c (System.Reflection.Assembly::get_location): New interncall.
26012 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26014         * icall.c: fixed leak in get_temp_path. Thanks lupus.
26016 2002-09-03  Martin Baulig  <martin@gnome.org>
26018         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
26019         argument to store the end address of the disassembled instruction.
26021         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
26022         here from debug-symfile.h.
26023         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
26024         JIT into this struct.
26025         (MonoSymbolFile): Added `char *image_file' field.
26026         (MonoDebugGetMethodFunc): Removed.
26027         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
26028         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
26029         (mono_debug_find_method): New method.
26031         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
26032         create a full symbol file.
26033         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
26034         and static symbol files.
26035         (mono_debug_find_method): The symbol file keeps an internal method hash,
26036         call this to get a MonoDebugMethodInfo from a MonoMethod.
26038         * debug-symfile.[ch]: Removed.
26040 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
26042         * image.c (do_mono_image_open): Remove linker version check.
26044 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
26046         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
26047         wrappers for instance methods.
26048         
26049 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26051         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
26053 2002-08-28  Dick Porter  <dick@ximian.com>
26055         * Makefile.am: Export HOST_CC for w32 builds
26057 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26059         * file-io.c process.c: MonoString are null terminated, no
26060         need for mono_string_to_utf16() anymore.
26062 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26064         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
26066 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
26068         * icall.c, reflection.h: speedup System.MonoType.
26070 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26072         * reflection.c: allow null as the value of a string argument in
26073         custom attributes constructors.
26075 2002-08-27  Martin Baulig  <martin@gnome.org>
26077         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
26078         `trampoline_address' field.
26080 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
26082         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
26083         check (fixes bug #29486) 
26085 2002-08-27  Martin Baulig  <martin@gnome.org>
26087         * debug-mono-symfile.c: Changed the file format in a way that allows us
26088         open it read-only and to use a specially malloced area for all the
26089         dynamic data.  We can now also generate a symbol file on-the-fly if we're
26090         debugging IL code and there is no MCS generated symbol file for it.
26092 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26094         * object.c: added a define for a good string and array
26095         creation speedup (not enabled by default because we need to deal with
26096         the synch stuff).
26098 2002-08-26  Martin Baulig  <martin@gnome.org>
26100         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
26101         function to create a dynamic symbol file.  This is used by the
26102         debugger to create a symbol file for IL code on-the-fly.
26104 2002-08-26  Martin Baulig  <martin@gnome.org>
26106         * loader.c (mono_lookup_pinvoke_call): Include the error message
26107         from g_module_error() in the error message.
26109 2002-08-24  Martin Baulig  <martin@gnome.org>
26111         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
26112         function to update the symbol file.  The symbol file is mmap()ed
26113         writable, but private.  This allows us to install the symbol file
26114         together with the assembly.
26116 2002-08-24  Martin Baulig  <martin@gnome.org>
26118         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
26119         but they can read the new symbol file format which mcs is now creating.
26121         * debug-symfile.c (mono_debug_find_source_location): Moved to
26122         debug-mono-symfile.c; this is now operating on the new symbol file.
26124 2002-08-23  Martin Baulig  <martin@gnome.org>
26126         * debug-helpers.c (mono_method_desc_from_method): New function to get
26127         a MonoMethodDesc from a MonoMethod.
26129 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26131         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
26132         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
26134 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26136         * string-icalls.[ch]: make helper methods static.
26138 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26140         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
26141         types to it and to SetValueInternal.
26143         * object.c: Moved handle_enum label to its proper place. This was the
26144         f... bug! ;-)
26146         This time i compiled mcs and gtk-sharp and they both work.
26148 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26150         * icall.c: reverted partially my previous patch until 
26151         object.c:set_value handles enums correcly.
26153 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26155         * icall.c:
26156         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
26157         (ves_icall_System_Environment_get_MachineName): removed warning when
26158         compiling under cygwin.
26160 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26162         * object.c: fixed field_get_value() for reference types.
26164 2002-08-22  Dick Porter  <dick@ximian.com>
26166         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
26167         Don't free a buffer while it's still needed.  Patch from Jonathan
26168         Liger <Jonathan.liger@wanadoo.fr>
26170 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
26172         * icall.c (ves_icall_System_Environment_get_Platform): Add new
26173         internal call.
26175 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
26177         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
26178         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
26180         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
26181         we call unmanaged code which throws exceptions.
26183 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26185         * appdomain.h: added per-domain entry_assembly.
26186         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
26187         arguments.
26188         * icall.c: Assembly::GetEntryAssembly icall.
26189         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
26190         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
26192 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26194         * appdomain.h, gc.c: added mono_domain_finalize ().
26196 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26198         * object.c:
26199         (mono_print_unhandled_exception): changed g_warning by g_printerr
26200         because g_log has a 1024 characters limit (yeah, i got a big stack
26201         trace). Don't print exception name, that should be in ToString 
26202         returned string.
26204 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26206         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
26207         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
26209 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26211         * object.c:
26212         (mono_print_unhandled_exception): after previous commit, i realized
26213         that MS calls ToString on the exception. I changed this function to
26214         do that. This way we get stack_trace for free.
26216 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26218         * object.c:
26219         (mono_print_unhandled_exception): invoke Message property instead of
26220         getting 'message' field from Exception. Don't allocate memory for
26221         'trace' and 'message' if not needed.
26223 2002-08-18  Dick Porter  <dick@ximian.com>
26225         * unicode.c: Fix asserts to match Encoder.cs checks
26227 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26229         * marshal.c: fix unaligned store issue and a few wrong
26230         opcode argument types.
26232 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26234         * icall.c: added GetUninitializedObjectInternal internal call.
26236 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
26238         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
26239         to the right domain.
26241 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
26243         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
26245         * class.c (class_compute_field_layout): set blittable to false for Strings
26247         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
26249 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26251         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
26252         first chunk of code to create types at runtime. Code to
26253         handle ReflectedType/DeclaringType. Make reflection handles
26254         domain specific.
26256 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26258         * class.c: set correct name in arrays.
26260 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
26262         * appdomain.c (mono_domain_transfer_object): make it work with
26263         valuetypes. bug fixes.
26265 2002-08-12  Dick Porter  <dick@ximian.com>
26267         * object.h: Rename some parameters to avoid c++ keywords (Patch
26268         from Joseph Wenninger <kde@jowenn.at>)
26270 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
26272         * icall.c: added icall to implement Assembly.GetFile*.
26274 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26276         * reflection.h, reflection.c: code to embed managed resources.
26278 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26280         * class.c: move all the type size stuff into
26281         class_compute_field_layout().
26283 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26285         * class.c: ensure enums have always the correct instance size.
26286         * unicode.c: remove wrong assert.
26288 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26290         * assembly.c: fix mem corruption issue.
26291         * image.h, image.c: added mono_image_get_resource () to access
26292         managed resources.
26293         * icall.c: implemented Assembly.EntryPoint property and some
26294         Managed Resources related internalcalls.
26297 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26299         * image.c, image.h: impemented mono_image_get_entry_point ().
26300         * appdomain.c: use mono_image_get_entry_point.
26302 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26304         * reflection.c: support the object type argument when loading
26305         custom attributes.
26307 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
26309         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
26310         String as return type.
26312 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
26314         * reflection.c: fix encoding of named args for custom attrs to match
26315         the ms implementation. Read them back when instantiating custom
26316         attributes.
26318 2002-08-02  Radek Doulik  <rodo@ximian.com>
26320         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
26321         by Dietmar as quick fix
26322         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
26323         16 as stack size, used on more places as quick fix before Dietmar
26324         will fix it properly
26326 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26328         * object.h, object.c: added accessors for fields and properties.
26330 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26332         * class.c, class.h: made mono_class_get_field_from_name ()
26333         loop on parent types.
26334         Added mono_class_get_property_from_name ().
26336 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26338         * class.c, class.h: move the code to setup the type vtable in its own
26339         function so that it can be reused also for types created at runtime.
26340         Eliminate the "class" identifier from the header file.
26341         * reflection.c: setup the vtable for enums so that we can create
26342         objects for use in SetConstant ().
26344 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
26346         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
26347         instead of the delegate itself as this pointer (bug #28383)
26349 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
26351         * marshal.c (mono_marshal_get_managed_wrapper): added return type
26352         conversions.
26354 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26356         * loader.c: don't set the pinvoke bit on icalls.
26358 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
26360         * debug-helpers.c (mono_method_full_name): only print a number to
26361         indicate wrapper type (so that the output is more readable in traces).
26363 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
26365         * class.c (mono_class_init): include method override patch from Paolo
26367 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
26369         * icall.c: fixed GetTypeCode().
26371 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
26373         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
26374         use real delegate invoke function to make it work with multicast
26375         delegates (fix bug# 28291).
26377 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26379         * object.c: load constant strings.
26381 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26383         * reflection.c: no magic numbers.
26384         * tabledefs.h: security action enum.
26386 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26388         * assembly.c: fix possible memory corruption.
26390 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26392         * reflection.h, reflection.c: added support for linking resources.
26393         * verify.c: check we have an updated corlib.
26395 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
26397         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
26398         string arrays.
26399         (mono_marshal_string_array): null terminate unmanaged string arrays.
26400         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
26402 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26404         * icall.c: Type.GetType () can now return also types from the
26405         calling assembly.
26407 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26409         * loader.h, loader.c: stack walking support.
26410         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
26411         GetCallingAssembly.
26413 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
26415         * marshal.c: added optimisations for blittable types 
26417         * class.c (mono_array_class_get): do not set blittable attribute on arrays
26418         (mono_class_setup_mono_type): set blittable attribute for single
26419         and double.
26421         * marshal.c (mono_string_utf8_to_builder): impl.
26422         (mono_string_builder_to_utf8): impl.
26423         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
26425 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
26427         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
26428         (mono_marshal_get_managed_wrapper): impl. byref types
26430 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26432         * icall.c:
26433         (search_method): don't display debug message. 
26435 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26437         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
26439 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26441         * appdomain.c: set the missing filename when throwing exception.
26443 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26445         * metadata.c (mono_type_size): code cleanup
26446         (mono_type_stack_size): removed some test code
26448 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
26450         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
26451         mono_get_exception_file_not_found now.
26453         * exception.c (mono_exception_from_name_two_strings): New version
26454         that will call a constructor with two string arguments. 
26455         (mono_get_exception_file_not_found): New helper routine, used to
26456         report file-not-found errors.
26458 2002-07-20  Dick Porter  <dick@ximian.com>
26460         * process.h:
26461         * process.c: Pass file handles to CreateProcess
26462         
26463         * icall.c:
26464         * file-io.h:
26465         * file-io.c: Implemented CreatePipe
26467 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26469         * metadata.c (mono_get_param_info): set alignment for value types
26471 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26473         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
26474         Constify mono_domain_assembly_open().
26475         * loader.c: handle null namespace in icalls.
26477 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26479         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
26480         (emit_str_to_ptr_conv): marshal object as structs
26482         * metadata.c (mono_type_to_unmanaged): marshal object as structs
26484         * marshal.c (mono_marshal_get_runtime_invoke): support value types
26486 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
26488         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
26489         (mono_marshal_get_native_wrapper): we an now return value types
26491 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26493         * verify.c: more checks implemented.
26495 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
26497         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
26498         (fix bug #27695)
26499         (mono_marshal_get_native_wrapper): allow byref arguments
26500         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
26501         impl. PtrToStringXXX methods
26502         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
26503         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
26504         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
26505         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
26506         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
26508 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26510         * reflection.c: fix buglet in parsing an assembly name.
26512 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26514         * marshal.c (emit_ptr_to_str_conv): first impl.
26516 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26518         * object.c, class.h: cache the vtable in the class as suggested by
26519         vargaz@freemail.hu (Zoltan Varga).
26521 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26523         * class.h, loader.c: added mono_field_from_token().
26524         * verify.c: first cut of type checking code.
26526 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26528         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
26530 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
26532         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
26533         (fix bug #27782)
26534         (mono_marshal_get_remoting_invoke): impl.
26535         (mono_delegate_begin_invoke): impl.
26536         (mono_mb_emit_save_args): impl.
26537         (mono_delegate_end_invoke): impl.
26538         (mono_marshal_get_delegate_begin_invoke):
26539         (mono_marshal_get_delegate_end_invoke):
26540         (mono_marshal_get_delegate_invoke): generate a special name for
26541         those methods (including the signature) and associate them whith
26542         the delegate class. 
26544 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
26546         * reflection.[ch]: 
26547         (mono_reflection_type_from_name): now it has a MonoImage parameter
26548         which is used as the default image to search the type in. If the image
26549         is NULL or getting the type from it fails, it defaults to corlib.
26551         * icall.c: changed 1 call to mono_reflection_type_from_name to match
26552         new parameter.
26554 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26556         * reflection.c: update the parameter table index.
26558 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26560         * domain.c: don't include the mark byte in the string hash.
26562 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26564         * icall.cs: icall for Type.GetTypeCode ().
26565         * verify: a couple of fixes and disabled local initialization checks.
26567 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
26569         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
26571         * debug-helpers.c (mono_method_full_name): print the type of the
26572         runtime wrapper
26574         * metadata.c (mono_signature_hash): a hash function for signatures
26575         (mono_signature_hash): better hash algorithm
26577         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
26579         * debug-helpers.c (mono_method_full_name): this can now generate
26580         method names with signatures
26582         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
26583         method dont have this pointers.
26585 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26587         * reflection.c: fixup typebuilder tokens.
26588         * image.c: fix buglet.
26589         * marshal.h: remove whitespace.
26590         * metadata.h, metadata.c: reinstate code that was removed.
26591         * verify.c: handle catch directives and fix another couple of bugs.
26593 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
26595         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
26596         (mono_marshal_get_native_wrapper): make it comp. with the old code
26597         (mono_marshal_get_native_wrapper): support boolean
26598         (mono_marshal_get_managed_wrapper): support more types
26600 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
26602         * class.c (class_compute_field_layout): compute class->blittable attribute.
26604 2002-07-09  Dick Porter  <dick@ximian.com>
26606         * threads.c: Make the thread cleaning up cope with threads that
26607         call ExitThread()
26609 2002-07-08  Radek Doulik  <rodo@ximian.com>
26611         * reflection.c (method_encode_code): use non-translated values to
26612         compute finally_start, this fixes exception handling on ppc, yay!
26614         * decimal.h (struct signscale): fix endianess
26616 2002-07-07  Radek Doulik  <rodo@ximian.com>
26618         * reflection.c: swap box_val and not val
26620 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26622         * reflection.c, reflection.h: handle full assembly info in type name.
26623         Handle Type arguments when loading custom attributes.
26624         * icall.c: updated to use new mono_reflection_type_from_name () method.
26626 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26628         * loader.c:
26629         (method_from_memberref): also print assembly name when method not found.
26631 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26633         * icall.c:
26634         (ves_icall_TypeGetProperties): fixed bug #27473. 
26636 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26638         * reflection.c: display image name and token when cannot find the
26639         .ctor for an attribute.
26641 2002-07-05  Martin Baulig  <martin@gnome.org>
26643         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26645 2002-07-04  Dick Porter  <dick@ximian.com>
26647         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
26648         compile on mingw.  This will cause mingw builds to not wait for
26649         subthreads to terminate after the main thread does.  I've lodged a
26650         bug with the mingw developers for them to wrap OpenThread().
26652 2002-07-03  Dick Porter  <dick@ximian.com>
26654         * threads.c: Store thread IDs instead of handles, because
26655         GetCurrentThread() returns a pseudohandle and therefore stores
26656         useless values.  mono_thread_cleanup() continues checking the
26657         array of threads until it is empty, to cope with subthreads
26658         spawning new threads after the main thread has finished.
26660         * profiler.h:
26661         * profiler.c:
26662         * profiler-private.h: Pass the thread ID to thread profiler
26663         functions, instead of a handle
26665 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26667         * verify.c: fixes to make it more usable.
26668         * pedump.c: added --verify code to verify IL code in an assembly.
26670 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26672         * reflection.c: turn errors into warnings to allow compiling corlib.
26674 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26676         * reflection.c: add special cases to compile corlib.
26678 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26680         * reflection.c: handle properties with only a set method.
26682 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26684         * opcodes.h: add enum with opcodes in opval order.
26686 2002-07-01  Dick Porter  <dick@ximian.com>
26687         
26688         * object.h:
26689         * object.c (mono_runtime_run_main): Removed unneeded argument
26691 2002-06-28  Martin Baulig  <martin@gnome.org>
26693         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26695 2002-06-27  Dick Porter  <dick@ximian.com>
26697         * threads.c: Store the handle in both the parent thread and in the
26698         subthread, to minimise the time between starting a new thread and
26699         storing its ID.
26701 2002-06-26  Dick Porter  <dick@ximian.com>
26703         * appdomain.c (mono_runtime_cleanup): Close the socket library
26704         after all the threads have finished, not before
26706 2002-06-26  Martin Baulig  <martin@gnome.org>
26708         * debug-symfile.c (mono_debug_find_source_location): Added
26709         `guint32 *line_number' argument.  If it's not NULL, store the line number
26710         there and return the file name without the line number.
26712 2002-06-25  Dick Porter  <dick@ximian.com>
26714         * icall.c:
26715         * process.h:
26716         * process.c: Process forking and other support functions
26718 2002-06-25  Dick Porter  <dick@ximian.com>
26720         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
26721         things dont happen when the image is closed.
26722         (mono_image_lookup_resource): Walk the resource section looking
26723         for a particular entry
26725         * cil-coff.h: PE resource section decoding
26727 2002-06-25  Dick Porter  <dick@ximian.com>
26728         
26729         * assembly.h:
26730         * assembly.c: 
26731         (mono_assembly_foreach): Accessor functions to walk the list of
26732         loaded assemblies
26733         (mono_assembly_set_main):
26734         (mono_assembly_get_main): Process methods need to know which
26735         assembly is the "main" one
26737         * object.c (mono_runtime_run_main): Record the main assembly
26739         * debug-helpers.c: Fix typo
26741 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
26743         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
26744         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
26746 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26748         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
26750 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
26752         * image.c (do_mono_image_open): Initialize reference count,
26753         otherwise we leak the MonoImage.
26755 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26757         * reflection.c: small tweak to handle self-hosting.
26759 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26761         * reflection.c: fix type name parse code.
26763 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26765         * reflection.c: break out of the loop.
26766         * image.c: special case corlib.
26768 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26770         * reflection.c: add all the custom attrs at the end to ensure the
26771         ctors have been properly initialized when the attributes are defined
26772         in the current assembly.
26774 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26776         * reflection.c: handle correctly multiple-nested types.
26778 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
26780         * row-indexes.h: fix typos.
26781         * reflection.c: adjust for typos and fix method_def_or_ref
26782         encoding in MethodImpl table.
26784 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26786         * reflection.c: fix entry point patching (thanks Serge!).
26788 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
26790         * verify.c: add check for System.Exception
26792 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26794         * image.c, class.c: minifix for code just c&p'ed.
26795         * reflection.c: warning fix.
26796         * object.h, loader.h, domain.c: load also StringBuilder.
26798 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26800         * marshal.h, marshal.c: some support code to handle complex marshaling.
26802 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26804         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
26805         Better signatures with vtable error dump.
26807 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
26809         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
26811 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
26813         * icall.c (ves_icall_Type_GetField): impl.
26815 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26817         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
26818         to retrieve a marshal description blob for a field or param.
26820 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26822         * reflection.h, reflection.c: change order of nested type emission
26823         to avoid table corruption. The NestedTypes table is sorted.
26824         * icall.c: change order of GetConstructor results to workaround mcs bug.
26826 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26828         * reflection.h, reflection.c: handle field and param marshal
26829         information.
26831 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26833         * icall.c, marshal.c marshal.h: more Marshal class implementation.
26835 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26837         * reflection.c: fix call convention.
26839 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26841         * reflection.h, reflection.c: mono_image_get_memberref_token()
26842         takes a type instead of a class, now. Added
26843         mono_image_get_array_token() to create tokens for the special
26844         multi-dim array methods.
26846 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26848         * assembly.c: handle modules (no assembly table). Split
26849         loading references in its own function.
26850         * class.c: handle moduleref resolution scope.
26851         * image.c, image.h: cache module name in image.
26853 2002-06-07  Martin Baulig  <martin@gnome.org>
26855         * reflection.c (mono_image_get_type_info): Only add a class layout entry
26856         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
26858 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26860         * icall.c: more signature fixes that used uint instead of int.
26862 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26864         * reflection.c: fixed signature of field refs.
26866 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26868         * class.c, reflection.c: handle typerefs of nested types
26869         (both on read and when writing files).
26871 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26873         * icall.c: fix method signatures that tried to workaround the previous
26874         typo, d'oh!
26876 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26878         * debug-helpers.c: fix typo.
26880 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26882         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
26883         rewrote the PE/COFF writing code (our programs are understood by the
26884         ms runtime, now).
26886 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26888         * gc.c, gc.h, icall.c: weakreference support.
26890 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26892         * Makefile.am, mono-config.c: use $(sysconfdir).
26894 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26896         * icall.c: changed default precision of Double.ToString() to 15.
26897         Fixed memory leak. Unified with Single.ToString.
26899 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26901         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
26903 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26905         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
26906         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
26907         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
26908         and myself.
26910 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26912         * debug-symfile.c, sysmath.c: yet more compilation fixes.
26914 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26916         * reflection.c, socket-io.c: more compilation fixes.
26918 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26920         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
26921         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
26922         unicode.c: warning and compiler compatibility fixes.
26924 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26926         * class.h, metadata.c: fixed warnings/compilation errors.
26928 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26930         * Makefile.am, mono-config.c, mono-config.h: configuration file
26931         support routines.
26932         * loader.c, loader.h: make Dll mapping configurable at runtime in the
26933         config file. Export methods to insert and lookup mappings.
26935 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26937         * reflection.c: handle types and boxed objects in custom attr
26938         constructors.
26940 2002-05-30  Martin Baulig  <martin@gnome.org>
26942         * debug-symfile.c
26943         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
26945 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
26947         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
26948         to lookup the implmap row for a P/Invoke method.
26949         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
26950         P/Invoke method from the runtime on an as needed basis.
26952 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
26954         * metadata.c (mono_metadata_parse_signature): impl.
26956 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26958         * class.c: handle .pack directive.
26960 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26962         * object.c: initialize static fields with RVA data.
26964 2002-05-25  Martin Baulig  <martin@gnome.org>
26966         * debug-symfile.c
26967         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
26969 2002-05-24  Martin Baulig  <martin@gnome.org>
26971         * debug-symfile.c
26972         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
26973         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
26974         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
26976 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26978         * object.c: special case string ctros in invoke.
26979         * gc.c: silly whitespace changes.
26981 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
26983         * threadpool.[ch]: impl. a threadpool that can
26984         be used by mint and mono.
26986 2002-05-22  Martin Baulig  <martin@gnome.org>
26988         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
26989         The first argument is now a `MonoReflectionModuleBuilder *', the return
26990         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
26991         `methods' field to get the method builder.  The `token' argument is the
26992         unfixed token.
26994         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
26995         invalid characters instead of g_assert_not_reached()ing.  This seems
26996         to be the behaviour of mscorlib.
26998 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
27000         * object.c (mono_runtime_invoke_array): applied patch from Rachel
27001         Hestilow to fix bug #25104
27003 2002-05-21  Martin Baulig  <martin@gnome.org>
27005         * debug-symfile.c (mono_debug_find_source_location): New function.
27006         Looks up an IL offset in the line number table and returns the source
27007         location as a string.
27009 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27011         * icall.c:
27012         (mono_double_ToStringImpl): changed %f by %g until we have something
27013         better.
27015 2002-05-21  Nick Drochak  <ndrochak@gol.com>
27017         * icall.c : Use different name for Math.Pow's icall.  Needed to check
27018         parameters first in C#.
27020 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27022         * icall.c, reflection.h: added icall to get info about an event.
27024 2002-05-20  Radek Doulik  <rodo@ximian.com>
27026         * object.c (mono_value_box): don't use memcpy for boxing on BIG
27027         endian
27028         (mono_value_box): don't use memcpy for small sizes on
27029         architectures with unaligned access
27031 2002-05-20  Martin Baulig  <martin@gnome.org>
27033         * reflection.c (mono_reflection_setup_internal_class): Don't crash
27034         if `tb->parent == NULL'.
27035         (mono_reflection_create_internal_class): New function.  This is
27036         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
27037         for enum types.
27039         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
27040         New interncall.
27042 2002-05-19  Martin Baulig  <martin@gnome.org>
27044         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
27045         argument to get the length, don't default to the array length.
27047 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
27049         * assembly.c (mono_assembly_setrootdir): New function used to
27050         override the MONO_ASSEMBLIES directory.
27052 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27054         * icall.c: ValueType_GetHashCode() initialize local var.
27056 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27058         * reflection.c: sort custom attributes table.
27060 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27062         * reflection.c: support named args in custom attributes (write support).
27064 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
27066         * reflection.c: fix finally position calculation.
27068 2002-05-15  Radek Doulik  <rodo@ximian.com>
27070         * reflection.c: fixed endianess at many places
27072         * icall.c (ves_icall_InitializeArray): comment out debug msg
27074 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
27076         * object.c (mono_unhandled_exception): new function to handle
27077         unhandled exceptions.
27078         (mono_unhandled_exception): call the UnhandledException event.
27079         (mono_runtime_delegate_invoke): impl.
27081 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
27083         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
27084         returns the RVA, not the direct pointer to the data. Handle the case
27085         when the class size is fixed.
27087 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
27089         * reflection.c: fix some endianess issues.
27091 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
27093         * object.c (mono_runtime_invoke): is now able to catch exceptions.
27095         * threads.c (mono_thread_init): added a callback which is invoked
27096         at thread start.
27098 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
27099         
27100         * icall.c: make GetHashCode return non-negative values.
27102 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
27104         * object.c, icall.c, gc.c: revert to address-based hashcode.
27106 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
27108         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
27110 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27112         * icall.c, class.c: special case <Module>.
27114 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
27116         * icall.c: fix bug in GetNow().
27118 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
27120         * object.c (mono_runtime_class_init): make sure that we call all
27121         static class constructors.
27123 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
27125         * reflection.c: sort methodsemantics table.
27127 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
27129         * reflection.h, reflection.c: honour init locals setting.
27131 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
27133         * icall.c: copied Double ToStringImpl for Single ToStringImpl
27135 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27137         * reflection.c: support ContructorBuilders in attribute blob creation.
27139 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27141         * reflection.c: some changes to build a binary that can be run
27142         directly in windows.
27144 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
27146         * loader.c: print a big message when an icall can't be found.
27148 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27150         * string-icalls.c: fix bug 24248.
27152 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
27154         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
27155         icall.c, reflection.h: separate assembly loading by pathname and by
27156         assembly name. Use the MONO_PATH env var to search for assemblies.
27158 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27160         * assembly.c, image.h: add some support for assemblies
27161         with multiple modules.
27162         * class.c, class.h: export mono_class_from_typeref().
27163         * loader.c: remove duplicated code and use mono_class_from_typeref(),
27164         instead.
27166 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27168         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
27169         documentation says (the ECMA one is correct).
27171 2002-05-02  Dick Porter  <dick@ximian.com>
27173         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
27174         Don't name the synchronisation mutex.
27176 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
27178         * rand.c
27179         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
27180         Make the prototypes match.
27181         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
27182         Same.
27184         * icall.c
27185         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
27186         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
27187         all systems have tm.tm_zone, so use strftime() with %Z to print
27188         the timezone abreviation into a temp string.
27190         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
27191         rather than mono_array_addr() on a MonoString on Big Endian
27192         machines.
27194 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
27196         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
27197         fix bug 24041
27199 2002-04-30  Dick Porter  <dick@ximian.com>
27201         * socket-io.c: Cope with SOCKET being an integer rather than a
27202         pointer now.
27204         * threads.c: Added Thread_free_internal, to deal with thread
27205         handle cleanup.  Moved calls to handle_store() and handle_remove()
27206         to start_wrapper(), so each can only be called once.  Allocate
27207         synchronisation blocks with GC_malloc(), and use GC finalisation
27208         to close the handles.
27210         * icall.c: added System.Threading.Thread::Thread_free_internal
27212 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27214         * icall.c: support Environment.Exit, CommandLineArgs().
27216 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27218         * object.c, object.h: added mono_runtime_run_main () and
27219         mono_runtime_get_main_args () for use in System.Environment.
27221 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27223         * gc.c: fix thinko, enable actual finalization since the jit is now
27224         fixed.
27226 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27228         * gc.c, object.c: take into account that an object may be offset wrt the address
27229         returned by GC_malloc().
27231 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
27233         * image.c: handle files without entries in the assembly table (modules).
27235 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
27237         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
27238         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
27239         allowed to be null when it's System.Object class setup.
27241 2002-04-27  Martin Baulig  <martin@gnome.org>
27243         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
27244         if `tb->parent == NULL' rather than crashing.
27246 2002-04-28  Nick Drochak  <ndrochak@gol.com>
27248         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
27249         calling acos() where asin() should have been called.
27251 2002-04-26  Martin Baulig  <martin@gnome.org>
27253         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
27254         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
27255         there's a subdirectory called `System', but we don't want to read that
27256         subdirectory as an assembly.
27258 2002-04-25  Martin Baulig  <martin@gnome.org>
27260         * debug-symfile.c: Reflect latest MonoString changes.
27262 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27264         * rand.c, rand.h: instance method icalls need to have an explicit
27265         this pointer as first argument in the C implementation.
27267 2002-04-25  Nick Drochak <ndrochak@gol.com>
27269         * icall.c: Fix typo in map for GetNonZeroBytes
27271 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27273         * string-icalls.c : String does now passes unit tests without any 
27274         errors, the following changes has been made:
27275         
27276         Implemented replace methods.
27277         Renaming of methods to (try) follow the standard.
27278         Fixed compare ordinal
27279         Made all memory allocated directly to function instead of via icall function.
27280         Small performance fix in is_in_array function
27281                         
27282  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
27284         c (mono_string_Internal_ctor_charp_int_int):
27285         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
27286         sindex < 0, throw ArgumentOutOfRangeException instead of
27287         ArgumentNullException.
27289         Added new check for length == 0, however
27290         I need to make it return String.Empty from the C code.
27291         
27292         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
27293         that calculate the length for us here.
27294         
27295         (mono_string_Internal_ctor_sbytep_int_int): Replaced
27296         mono_string_new_utf16 with mono_string_new, since value is utf8.
27298 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27300         * object.c: register the object for finalization if needed.
27301         Allocate one more char in the string for the terminating 0 char.
27303 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27305         * class.c, class.h, image.c: check if a type implemenst a destructor.
27306         Use the proper key for array class lookups.
27307         * icall.c: register the icalls in the System.GC class.
27308         * gc.c, gc.h: GC-related functions and icalls.
27310 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27312         * icall.c:
27313         * socket-io.c:
27314         * unicode.c: free some strings gotten from mono_string_to_utf8 and
27315         changed a couple of free () by g_free ().
27317         * decimal.c: one-liner in the comments for decimal2string ().
27319 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27321         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
27323 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27325         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
27326         * object.c (mono_runtime_invoke_array) : handle null in params
27328 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27330         * string-icalls.c: fixed bug in split (one off bug)
27332 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27334         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
27335         * icalls.c: added String::Equals as internal method
27337 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27339         * threads.c: fixed bug in the double interlocked functions
27341 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
27343         * threads.c: implemented all of the new interlocked icalls.
27344         * string-icalls.c: fix a bug in insert.
27345         * icalls.c: added the icalls for interlocked, removed old string functions.
27346         
27347 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27349         * loader.c: fix off-by-one error when reading argument names.
27351 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27353         * profiler.c: win32 counter implementation (untested).
27354         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
27355         (the latter needs testing and more complete impl. from win32 folks).
27357 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
27359         * object.c: mono_array_new_full workaround mono_array_class_get
27360         problem.
27362 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27364         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
27365         * object.h (mono_string_chars): Changed casting type.
27367 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27369         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
27370                            method signatures to use gunichar2 instead of gint16.
27372 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
27374         * object.h, object.c: domain-specific versions of mono_object_new and
27375         mono_array_new.
27377 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
27379         * object.c: changed String layout
27381         * string-icalls.c (mono_string_Internal_ctor_chara): added
27382         internal string constructors.
27384 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
27386         * threads.c: pass 'this' to the thread start routine.
27388 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27390         * string-icalls.c: fix IndexOf and LastIndexOf. Now
27391         InternalCompareStr don't call twice mono_string_cmp_char for the last
27392         character. Improved performance in mono_string_cmp_char.
27394 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27396         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
27397         code into its own library: libmonoruntime.
27399 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
27401         * object.h, object.c: changed array format so that szarrays do not
27402         require a bounds structure.
27403         * icall.c, appdomain.c: support for new szarray format.
27405 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
27407         * metadata.c: compare also the retuns type when comparing signatures:
27408         we didn't do this as an optimization since really overloaded methods
27409         must differ also in the arguments, but this doesn't work with
27410         low-level IL code (or when using explicit conversion operators: see
27411         bug#23498 for an example).
27413 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27415         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
27417 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
27419         * icall.c: make MonoType::GetElementType its own icall.
27421 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27423         * icall.c: remove MonoMethod_get_Name().
27424         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
27425         object.
27427 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27429         * string-icalls.c: optimized a few methods.
27431 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27433         * icall.c: added all new string internal calls
27434         * string-icalls.c: added, new string internal call implementation.
27435         * object.c: added mono_string_new_size for allocating a string a size
27437 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
27439         * object.c (mono_object_isinst): use the same code as in the
27440         optimized x86 version.
27442 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27444         * profiler.c: TSC-based timer code (faster and more accurate).
27445         Not hooked up in configure, yet (set USE_X86TSC to 1).
27447 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
27449         * profiler.c, profiler.h: track time spent compiling methods.
27450         * threads.c: track thread creation/destruction.
27452 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
27454         * profiler.c, profiler.h, profiler-private.h: profiling interface
27455         and sample implementation. Moved here so that it can be used also by
27456         the jit.
27458 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
27460         * reflection.c, reflection.h: keep types and other handles separate in
27461         the hash tables for referred tokens. Add guid for modules.
27463 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
27465         * assembly.c: fix bugs found with valgrind.
27466         * metadata.h, metadata.c: added mono_metadata_guid_heap().
27468 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
27470         * threads: added icall support for getting current domain for
27471                    the thread.
27473 2002-04-13  Martin Baulig  <martin@gnome.org>
27475         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
27476         (MonoDebugVarInfo): Added `index' field for register based addresses.
27477         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
27478         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
27479         `MonoDebugVarInfo *params' and `guint32 this_offset' with
27480         `MonoDebugVarInfo *this_var'.
27482         * debug-symfile.c (relocate_variable): New static function to write
27483         a location description for a local variable or method parameter.
27485 2002-04-12  Martin Baulig  <martin@gnome.org>
27487         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
27488         stack offset and begin/end scope address of a local variable.
27489         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
27490         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
27491         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
27493         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
27494         Added new relocation types for start/end scope of a local variable.
27496 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27498         * object.h: add mono_object_domain() macro.
27499         * reflection.c: handle typespecs.
27500         * icall.c: MonoMethod::get_Name() implementation.
27502 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27504         * icall.c: String::GetHashCode() icall implementation.
27506 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27508         * icall.c: String::IndexOfAny icall.
27509         * object.c, object.h: make array->max_length more useful.
27510         Intrduced mono_object_class() and mono_string_length() macros.
27512 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27514         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
27515         instead of g_unichar_isdigit.
27517 2002-04-11  Nick Drochak  <ndrochak@gol.com>
27519         * icall.c: Implement a simple Double.ToString().
27521 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27523         * appdomain.h: only io-layer.h is supposed to be included.
27524         * icall.c: explicitly import environ. Fix warning.
27526 2002-04-10  Nick Drochak  <ndrochak@gol.com>
27528         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
27529                 return true even if it's not Daylight Savings time.
27530                 Only return false for the case where the function isn't
27531                 implemented for a plaform (read Windows).
27533 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27535         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
27536         data with a mutex.
27538 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
27540         * mempool.c (mono_mempool_alloc): only use g_malloc when
27541         absolutely necessary.
27543 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27545         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
27547         * class.c (mono_class_vtable): use domain mempool to allocate vtable
27548         (mono_class_proxy_vtable): use domain mempool
27550 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
27552         * appdomain.h, appdomain.c: split initialization that requires the
27553         execution engine support into mono_runtime_init().
27555 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27557         * class.c (mono_class_init): don't include vtable inside MonoClass
27558         to save some memory, gather some statistics.
27559         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
27561 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27563         * icall.c: internalcall implementation for ValueType.Equals().
27565 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
27567         * object.c (mono_message_init): moved 
27568         (mono_runtime_exec_main): new arch. independent impl.
27569         (mono_runtime_invoke_array): new method - like
27570         mono_runtime_invoke, but you can pass an array of objects.
27571         (mono_remoting_invoke): new arch. independent impl.
27572         (mono_message_invoke): new arch. independent impl.
27573         (mono_runtime_class_init): new arch. independent impl.
27574         (mono_runtime_object_init): new arch. independent impl.
27576 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27578         * metadata.c, object.c, reflection.c: documented the exported
27579         functions.
27581 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27583         * icall.c: simpler code to pass the assembly builder data to corlib.
27584         Implement GetNestedTypes() internalcall.
27586 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27588         * class.c: warn if a type can't be loaded.
27590 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
27592         * image.h: typedef MonoImageOpenStatus
27593         * types.h: removed unused file
27594         
27595 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
27597         * icall.c: Enum_ToObject accepts enum value arguments.
27599 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27601         * class.c: move initialization of properties, events and nested
27602         classes, so that they happen for interfaces, too.
27604 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27606         * icall.c: cleanup some ugly casts in Array_SetValue*.
27608 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27610         * icall.c: the values array fro enums is of the correct type, now.
27611         Implement (correctly) getFullName instead of assQualifiedName for
27612         MonoType.
27613         * reflection.h, reflection.c: added mono_type_get_name ().
27615 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27617         * assembly.c, image.h: for each MonoImage, record from wich assembly
27618         it was loaded.
27619         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
27620         Make Type.Assembly work.
27622 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
27624         * debug-symfile.h: use char* instead of gpointer to avoid
27625         unnecessary casts.
27627         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
27629         * icall.c (ves_icall_InternalExecute): impl. FielSetter
27630         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
27632 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
27634         * icall.c (mono_message_init): impl. (code cleanup)
27635         (ves_icall_InternalExecute): impl. FieldGetter
27637         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
27638         defined we call all (non-static)methods through the vtable. 
27640 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
27642         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
27643         finalizer even though the memory is still referenced (and the chunk of
27644         memory is not freed).
27646 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27648         * assembly.c: fix brokeness.
27650 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
27652         * class.c: kill some warnings. Check explicit interface method
27653         implementation also without considering the namespace.
27654         Load also literal strings in static class data.
27656 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
27658         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
27659         (default_assembly_name_resolver): Make the resolver take the
27660         "base" directory where the assembly was originally defined, so we
27661         can load DLLs that are in the same directory as the assembly that
27662         is being referenced.
27664 2002-03-28  Dick Porter  <dick@ximian.com>
27666         * file-io.h: 
27667         * file-io.c:
27668         * socket-io.c: 
27669         * unicode.h: 
27670         * unicode.c: Warning cleanups
27672 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
27674         * object.h, reflection.h: use the correct type instead of MonoObject.
27676 2002-03-28  Martin Baulig  <martin@gnome.org>
27678         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
27679         (mono_debug_update_symbol_file): Initialize classes if necessary.
27681 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27683         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
27684         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
27686 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
27688         * assembly.h: fix function prototype.
27689         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
27690         * mono-endian.h: use const cast.
27692 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27694         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
27696 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27698         * loader.c: don't assert when a typeref can't be loaded, give
27699         a chance to the runtime to trow an exception instead.
27700         * loader.h: fix warning.
27702 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27704         * class.c (mono_class_proxy_vtable): added proxy support
27706 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
27708         * icall.c: removed last of PAL calls, added System.Environment
27709         * file-io.h, file-io.c: MonoIO implementation
27710         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
27712 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27714         * appdomain.c: do not use the byte marker in ldstr table lookup.
27715         * debug-helpers.c: allow two ':' to separate class and method name.
27716         * object.c: allocate arrays bounds with the GC, too.
27717         * verify: add a few more checks.
27719 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
27721         * reflection.c: output also literal strings. Allocate parameter data
27722         with GC_malloc() (thanks, Martin, for catching this!).
27724 2002-03-26  Martin Baulig  <martin@gnome.org>
27726         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
27727         include the `this' offset in the `param_offsets'.
27729 2002-03-25  Martin Baulig  <martin@gnome.org>
27731         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
27732         mono_debug_get_class() function to get the classes. Added new
27733         relocation types for arrays and strings.
27734         (mono_debug_get_class): New static function to search in all
27735         referenced assemblies for a metadata token.
27737         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
27739 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27741         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
27742         hold gc-allocated objects. Make the string heap a stream like the
27743         others. Removed duplicated code when writing stream info.
27744         Added asserts to catch possible buffer overflows. Set the sorted map
27745         for tables that need sorting. Added some documentation.
27747 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
27749         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
27750         for interned strings and vtables.
27752 2002-03-24  Martin Baulig  <martin@gnome.org>
27754         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
27755         it in the array since it was created with g_slist_prepend().
27757 2002-03-24  Martin Baulig  <martin@gnome.org>
27759         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
27760         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
27761         (mono_debug_method_from_token): Renamed to
27762         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
27763         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
27765         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
27766         relocation types.
27768         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
27770 2002-03-24  Martin Baulig  <martin@gnome.org>
27772         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
27773         (mono_debug_method_from_token): New func.
27775         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
27776         New interncall, calls mono_debug_local_type_from_signature().
27777         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
27778         calls mono_debug_method_from_token().
27780 2002-03-23  Martin Baulig  <martin@gnome.org>
27782         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
27783         specifies the number of bytes to be converted, not the array size.
27784         Return the number of chars, not the number of bytes.
27785         (ves_icall_iconv_get_chars): The `byteCount' argument
27786         specifies the number of bytes to be converted, not the array size.
27788 2002-03-23  Martin Baulig  <martin@gnome.org>
27790         * reflection.h (MonoReflectionSigHelper): New type.
27792         * reflection.c (mono_reflection_sighelper_get_signature_local),
27793         (mono_reflection_sighelper_get_signature_local): New functions.
27795         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
27796         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
27797         interncalls.
27799 2002-03-23  Martin Baulig  <martin@gnome.org>
27801         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
27802         is_writeable is set.
27803         (mono_raw_buffer_update): New function to write the modified map
27804         back to disk.
27806         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
27808         * debug-symfile.c (mono_debug_update_symbol_file): Call
27809         mono_raw_buffer_update() when done writing.
27811 2002-03-23  Martin Baulig  <martin@gnome.org>
27813         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
27815         * debug-symfile.c: Added support for arguments and local variables.
27817 2002-03-23  Dick Porter  <dick@ximian.com>
27819         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
27820         protected by ifdefs, hence breaking the w32 build.
27822 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27824         * object.c: implement is_interned() the right way.
27826 2002-03-21  Martin Baulig  <martin@gnome.org>
27828         * debug-symfile.[ch]: New files to handle debugging information
27829         files. There's also support to dynamically update these symbol
27830         files to include machine dependent information.
27832 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
27834         * threads.c (mono_thread_create): new function to create thread
27835         from C
27837 2002-03-20  Martin Baulig  <martin@gnome.org>
27839         * icall.c (ves_icall_InternalInvoke): Create a new object if the
27840         method is a constructor.
27841         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
27842         points to ves_icall_InternalInvoke().
27844 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
27846         * file-io.c: Flush shouldn't throw exceptions.
27848 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
27850         * file-io.c: FileStream flush support; FileSetLength now
27851         restores file pointer.
27853 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27855         * class.c: set image for pointer classes.
27857 2002/03/19  Nick Drochak <ndrochak@gol.com>
27859         * sysmath.c: Forgot one.
27861 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
27863         * sysmath.c: Avoid redefining existing names.
27865 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
27867         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
27868         handled by runtime as icall rather than dllimport from libm.so
27869         * file-io.c, file-io.h: fixed handle argument type.
27871 2002-03-18  Dick Porter  <dick@ximian.com>
27873         * reflection.c (mono_image_get_type_info): rename interface to
27874         iface, because of "#define interface struct" on windows.
27876 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
27878         * class.c, class.h: rename and export mono_ptr_class_get().
27879         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
27880         * reflection.c, reflection.h, icall.c: better/saner type name
27881         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
27882         method signatures.
27884 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
27886         * class.c (mono_class_init): removed hardcoded GHC_SLOT
27888         * icall.c (ves_icall_InternalInvoke): impl.
27890 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27892         * reflection.c: output the interface map table, too.
27894 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27896         * class.c (class_compute_field_layout): separate computation of 
27897         static field layout
27899 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
27901         * icall.c: added System.Buffer support.
27902         * file-io.c: moved file icalls from PAL to FileStream.
27904 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27906         * icall.c (ves_icall_System_Object_GetHashCode): impl.
27908 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
27910         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
27912 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27914         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
27916 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27918         * debug-helpers.{c,h}: moved here from monograph some useful functions
27919         to locate a method by name/signature in a class or image. Included
27920         also a small and flexible IL disassembler.
27922 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27924         * reflection.c: fixup tokens in methods with small header size, too.
27926 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
27928         * object.c (mono_string_to_utf8): remove assert(!error), instead
27929         print a warning. 
27931 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
27933         * icall.c: update to the new mono_Array_class_get interface.
27935 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27937         * appdomain.c, object.c: Boehm-GC enable.
27938         * icall.c: make get_data_chunk() support split data requests.
27939         Ensure a class is initialized in more cases. Return only the first
27940         property found in GetProperties() or the compiler gets confused. 
27941         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
27942         * reflection.h, reflection.c: add fixup mechanism for field and method
27943         tokens. Initialize assembly->typeref in a single place. Output
27944         properties after events. Support custom attributes for events, too.
27945         Typo fix for paramter custom attrs.
27947 2002-03-07  Martin Baulig  <martin@gnome.org>
27949         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
27951 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
27953         * class.c (mono_array_class_get): fix. for multi. dim. arrays
27955 2002-03-06  Martin Baulig  <martin@gnome.org>
27957         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
27958         non-zero lower bounds. See testcases #F10-#F13.
27960 2002-03-05  Martin Baulig  <martin@gnome.org>
27962         * exception.c (mono_get_exception_argument_out_of_range): New exception.
27964         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
27965         ves_icall_System_Array_GetValue(), only calculate the absolute array position
27966         here.
27967         (ves_icall_System_Array_SetValue): Likewise.
27968         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
27969         as argument and does the actual work. This function is used when copying a
27970         multi-dimensional array.
27971         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
27972         now do all the widening conversions of value types.
27973         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
27975 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27977         * class.c: remove some magic numbers and use the smbolic names,
27978         instead. Added init_events() to load event info at class init time.
27979         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
27980         and mono_metadata_methods_from_event().
27981         * reflection.h, reflection.c: added support for writing out the evnets
27982         related information.
27984 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27986         * reflection.h, icall.c: use a different method (GetInterfaces)
27987         to gather interface info and add isbyref, isprimitive and
27988         ispointer to the ves_icall_get_type_info() return value.
27990 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27992         * class.h: stared adding support for events.
27993         * icall.c: split find_members implementation. Added debug icall to get
27994         the address of an object.
27995         * reflection.c: handle TypeBuilders in mono_type_get_object().
27997 2002-03-01  Martin Baulig  <martin@gnome.org>
27999         * icall.c (ves_icall_System_Array_GetLength): This must throw an
28000         ArgumentOutOfRangeException(), not an ArgumentException().
28001         (ves_icall_System_Array_GetLowerBound): Likewise.
28002         (ves_icall_System_Array_GetValue): Improved argument checking.
28003         (ves_icall_System_Array_SetValue): Improved argument checking.
28005 2002-03-01  Martin Baulig  <martin@gnome.org>
28007         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
28008         called with invalid arguments rather than just dying with g_assert().
28009         (ves_icall_System_Array_SetValue): Likewise.
28010         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
28011         raise a NotImplementedException instead.
28012         (ves_icall_System_Array_GetLength): Added argument checking.
28013         (ves_icall_System_Array_GetLowerBound): Added argument checking.
28015 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
28017         * object.h (mono_assert): new macros mono_assert and
28018         mono_assert_not_reached
28020 2002-02-28  Martin Baulig  <martin@gnome.org>
28022         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
28023         and "System::String::IsInterned" to "System::String::_IsInterned".
28025 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
28027         * icall.c: remove hacks for typebuilder. Added icall to create a
28028         modified type from a tybebuilder.
28029         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
28030         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
28031         to create a backing MonoClass for a TypeBuilder.
28033 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28035         * class.c, class.h: more refactoring of class init.
28036         Export mono_class_setup_mono_type() and mono_class_setup_parent().
28038 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
28040         * marshal.c, marshal.h: start of marshaling interface.
28042 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
28044         * icall.c: fix order in assembly qualified name icall.
28046 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
28048         * class.c: do not free str, since we store it in the hash table.
28049         * reflection.h: add label field to MonoILExceptionInfo.
28050         * reflection.c: handle references to more than one assembly. Handle
28051         case when there isn't a module created in the assembly.
28053 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
28055         * class.c: Fix typo. Start refactoring of class init code.
28057 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
28059         * appdomain.c: exit with 1 on error.
28060         * class.c: we already have the name in MonoClassField.
28061         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
28062         MonoStreamHeader instead of an offset of image->raw_metadata.
28064 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
28066         * appdomain.c (mono_init): Be even more descriptive about the error.
28068 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
28070         * appdomain.c: give the user an informative message when corlib can't
28071         be loaded.
28073 2002-02-26  Martin Baulig  <martin@gnome.org>
28075         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28076         New icall to get the time zone data.
28078 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28080         * reflection.c: set virtual and raw size of section correctly.
28081         * threads.c: transfer domain information to newly created threads.
28083 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
28085         * class.c: when instancing a class in a domain, load the default
28086         vaules for static fields from the constant table. Fix System.Enum to
28087         not be an enum.
28088         * icall.c: implement Object::GetType() internalcall. Implemented
28089         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
28090         Fixed checking of binding flags in find_members().
28091         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
28092         * reflection.c: handle enumerations when writing to the constant
28093         table. Use a different object cache for types.
28096 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
28098         * object.c (mono_object_isinst): fix for arrays
28100         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
28102 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
28104         * object.c: don't use mprotect ()  and fix intern pool hash table
28105         lookup for big endian systems.
28107 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
28109         * icall.c: change type_is_subtype_of () signature.
28111 2002-02-21  Mark Crichton  <crichton@gimp.org>
28113         * rand.c, rand.h: Added random number generator for
28114         System.Security.Cryptography classes.
28116         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
28118         * icall.c: Added System.Security.Cryptography calls.
28120 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
28122         * class.c, icall.c, metadata.c: better support for pointer types.
28123         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
28124         * reflection.c: Add support for getting custom attrs for properties
28125         and simplify some code.
28127 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
28129         * icall.c: change getToken () and add custom attribute GetBlob()helper
28130         method.
28131         * reflection.h: add custom attrs array to the reflection builder structures.
28132         * reflection.c: encode and emit custom attributes for all the relevant
28133         reflection objects. Cache fieldref and methodref tokens. Change
28134         mono_image_create_token() interface to take a MonoDynamicAssembly.
28135         More complete custom attributes decoder. Load custom attributes for
28136         Assembly, Field, Method and Constructor objects, too. Make the
28137         returned array an Attribute[] one, not object[]. Added
28138         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
28139         custom attribute constructor.
28141 2002-02-20  Dick Porter  <dick@ximian.com>
28143         * icall.c:
28144         * rawbuffer.c:
28145         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
28146         problem code out for now).
28148 2002-02-19  Radek Doulik  <rodo@ximian.com>
28150         * object.c (mono_ldstr): use hash table to avoid multiple swapping
28152 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
28154         * icall.c: register the GetCustomAttributes method.
28155         * object.c, object.h: add mono_string_new_len ().
28156         * reflection.h, reflection.c: added mono_runtime_invoke(),
28157         mono_install_runtime_invoke(). Added
28158         mono_reflection_get_custom_attrs () to load custom attributes and
28159         create the attribute objects.
28161 2002-02-19  Dick Porter  <dick@ximian.com>
28162         * threads-dummy-types.c:
28163         * threads-dummy-types.h:
28164         * threads-dummy.c:
28165         * threads-dummy.h:
28166         * threads-pthread-types.c:
28167         * threads-pthread-types.h:
28168         * threads-pthread.c:
28169         * threads-pthread.h:  Deleted obsolete files
28171 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
28173         * class.c (mono_class_vtable): runtime init the class when we
28174         allocate static class data.
28176         * icall.c (ves_icall_System_Array_SetValue): check for null values.
28178         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
28179         and String - but we will need generic marshalling support in the
28180         future. 
28181         (mono_init): set the domain name in a ms compatible way
28183         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
28184         String[].
28186 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
28188         * object.c (mono_array_clone): use alloca() instead of g_malloc  
28189         for sizes
28191         * appdomain.c (mono_domain_unload): impl.
28193 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28195         * appdomain.c, object.c: fix intern pool implementation.
28196         * class.c: fix alignment code.
28198 2002-02-16  Radek Doulik  <rodo@ximian.com>
28200         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
28201         and s2 > s1, just copy lower bytes to be compatible with little
28202         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
28203         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
28205         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
28206         force big_endian to be 1 for big endian machines 
28207         (ves_icall_iconv_new_decoder): ditto
28209 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
28211         * socket-io.c (convert_sockopt_level_and_name): If the system
28212         doesn't define SOL_IP or SOL_TCP, get them by hand using
28213         getprotobyname() and caching the values (because this could be a
28214         slow operation).
28215         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
28216         Use the appropriate struct when the system does support it. Ie,
28217         not all systems have struct ip_mreqn so use struct ip_mreq when
28218         appropriate.
28220 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
28222         * reflection.c: handle finally clauses.
28224 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
28226         * socket-io.c: use g_snprintf() instead of snprintf.
28228 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28230         * reflection.c (mono_param_get_objects): Cast second argument to
28231         mono_method_get_param_names to a const char** to silence the
28232         compiler warning.
28234         * appdomain.c (mono_domain_assembly_open): Put parens around the
28235         truth statement in the for-loop.
28237         * unicode.c (iconv_convert): Got rid of a compiler warning about
28238         int i being unused when the system has a new iconv.
28239         (iconv_get_length): Same.
28241         * image.c (load_class_names): Cast the second argument to
28242         g_hash_table_insert() to char* to hush compiler warnings about the
28243         arg being a const.
28244         (mono_image_open): Same here.
28246         * socket-io.c: Don't conditionally include sys/filio.h or
28247         sys/sockio.h here anymore since we now get them from
28248         io-layer/io-layer.h
28249         (inet_pton): If the system doesn't support inet_aton, implement
28250         using inet_addr and also #define INADDR_NONE if it isn't defined
28251         by the system.
28253 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
28255         * metadata.c, metadata.h: added function to get packing and size info
28256         of a typedef.
28257         * reflection.h, reflection.c: handle field RVA data. Save info about
28258         the table layout if needed. Assign typedef indexes to all the types
28259         before dumping the info about them to avoid forward reference problems.
28261 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
28263         * socket-io.c (convert_sockopt_level_and_name): ifdef
28264         SO_ACCEPTCONN because it is not defined on my system (old debian)
28266 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
28268         * opcode.c: use stddef.h to get NULL.
28270 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28272         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
28273         for FIONBIO, FIONREAD and SIOCATMARK.
28274         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
28275         define INADDR_NONE and besides, inet_addr() is deprecated and
28276         should not be used. Use inet_pton() instead - it also has the
28277         added bonus that it can easily handle IPv6 addresses as well.
28278         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
28280 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
28282         * decimal.c: remove _MSC_VER conditional.
28284 2002-02-13  Dick Porter  <dick@ximian.com>
28286         * socket-io.c: 
28287         * icall.c: Internal calls for Blocking, Select, Shutdown,
28288         GetSocketOption and SetSocketOption
28290 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28292         * assembly.cs: better resolver: use it instead of some kludgy
28293         code.
28295 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
28297         * reflection.c: the best way to speed-up the compiler is to avoid
28298         infinite loops.
28300 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
28302         * class.c (mono_class_vtable): changed the object layout
28303         (obj->vtable->class). 
28304         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
28306 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28308         * assembly.c: look for assemblies in the assembly dir, too.
28310 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28312         * class.c: fix thinko in mono_class_from_type().
28314 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28316         * exception.h, exception.c: added TypeLoadException.
28317         * object.h, object.c: added mono_array_clone ().
28318         * icall.c: handle throwOnError in AssemblyGetType().
28319         Added Array.Clone().
28320         * opcode.h, opcode.c: use a single value for the opcode val.
28321         Compile fix for non-gcc compilers.
28323 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
28325         * opcodes.c, opcodes.h: export interesting info about opcodes.
28327 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
28329         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
28330         icalls. 
28332         * class.c (class_compute_field_layout): set element_class for enums
28333         (mono_class_create_from_typedef): set element_class for normal classes
28335         * icall.c (ves_icall_System_Enum_get_value): impl.
28337         * class.c (mono_class_create_from_typedef): do not set valuetype
28338         flag for System.ValueType and System.Enum
28340 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
28342         * unicode.c (iconv_convert): fix big endian problem.
28344 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28346         * class.c: add asserts if we are ever going to scribble over memory.
28347         * socket-io.c: not all systems have AF_IRDA defined.
28349 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
28351         * class.c (class_compute_field_layout): do not consider static
28352         fields to compute alignment
28354 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
28356         * appdomain.c (mono_appdomain_get): impl.
28357         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
28359 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
28361         * icall.c: ignore "file://" prefix when loading an assembly.
28363 2002-01-23  Dick Porter  <dick@ximian.com>
28365         * socket-io.c:
28366         * icall.c:
28367         * Makefile.am: Added socket support
28369 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28371         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
28372         code back.  This should return the assemblies that are loaded by
28373         the runtime on behalf of an application domain. 
28375         The current implementation is still broken, it just returns every
28376         assembly loaded, but until we get real applications domain this
28377         will do.
28379 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
28381         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
28382         AppDomain object.
28384 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28386         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
28387         the mono_class_from_name lookup.
28388         (ves_icall_get_parameter_info): ditto.
28389         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
28390         method.
28391         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
28393 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
28395         * class.c: load also nested classes on class init.
28396         System.ValueType instance methods gets passed boxed
28397         values, unless methods in derived classed that get a pointer to the
28398         data.
28399         * icall.c: use better name parsing code in GetType().
28400         * image.c, image.h: add mono_image_loaded ().
28401         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
28402         * reflection.c, reflection.h: added mono_reflection_parse_type().
28404 2002-01-22  Veronica De Santis <veron78@interfree.it>
28406         * icall.c : Added mapping of internal calls for Manual and Auto reset events
28407         * threads.c : Added the implementation of internal calls for events
28408         * threads.h : Added prototypes of internal calls for events
28409         
28410 2002-01-21  Radek Doulik  <rodo@ximian.com>
28412         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
28414 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
28416         * class.c (mono_class_init): set min_align to 1 (instead of 0)
28417         (mono_class_value_size): use min_align
28419 2002-01-20  Dick Porter  <dick@ximian.com>
28421         * threads.h:
28422         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
28423         so it compiles on w32.
28425 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
28427         * metadata.c (mono_type_stack_size): impl.
28429         * class.c (mono_class_get_field): impl. memberref token
28431 2002-01-16 Veronica De Santis <veron78@@interfree.it>
28433         * icall.h : Added the internal calls mapping for CreateMutex_internal
28434                     and ReleaseMutex_internal.
28435         * threads.h : Added the prototype of mutexes internal calls.
28436         * threads.c : Added the implementations of mutexes internal calls.
28438 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
28440         * metaparse.h: removed unused file.
28441         * reflection.c, reflection.h: added stream_data_align () function 
28442         to align data in streams and keep stream aligned. Add support for
28443         exception support in method headers.
28445 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
28447         * unicode.c: make iconv_convert () return the number of bytess written
28448         in the output buffer.
28450 2002-01-15  Dick Porter  <dick@ximian.com>
28451         * threads.c: Make the runtime's idea of infinite timeouts coincide
28452         with the class library's
28454         Fix a particularly egregious bug in mono_thread_cleanup(). That
28455         code was so utterly bogus it must have been written on a Monday.
28457 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
28459         * reflection.h: add subtypes field to TypeBuilder.
28460         * reflection.c: encode constants for literal fields.
28461         Handle subtypes. Fix user string token (and add a zero byte)
28462         at the end.
28463         
28464 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
28466         * class.c (mono_class_init): bug fix: assign slot numbers for
28467         abstract methods.
28469 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28471         * reflection.c: don't try to output a code RVA for abstract methods.
28472         Small fixes for method header format. Output parameter info to the
28473         ParamDef table. Save method overriding info to MethodImpl table.
28474         Fix property support. Allow typedef.extends to be a type in the
28475         building assembly.
28476         * verify.c: fix off-by-one error.
28478 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
28480         * class.c: fix mono_class_from_mono_type () for szarray types.
28481         Remove unused cache check in mono_class_from_type_spec().
28482         * icall.c: *type_from_name () functions handle simple arrays and byref.
28483         * reflection.c: handle byref and szarray types. Handle methods without
28484         body (gets P/Invoke compilation working). Handle types and fields in
28485         get_token ().
28486         * reflection.h: add rank to MonoTypeInfo.
28488 2002-01-10  Dick Porter  <dick@ximian.com>
28490         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
28491         internal calls
28493 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
28495         * icall.c: initialize class in type_from_handle ().
28496         Loop also in parent classes for get_method ().
28497         * reflection.c: properly encode class and valuetype types.
28498         Start on encoding TypeBuilder types. Handle fieldrefs.
28499         Use correct length when registering a user string.
28500         Handle ConstructorBuilder and MonoMethod in get_token ().
28501         Make mono_type_get_object () aware of cached types.
28502         * object.c: back out change to mono_string_new ().
28504 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
28505         * object.c: mono_string_new should return a NULL when the string 
28506         passed in is NULL -- not try to deference it.
28507         
28508 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
28510         * icall.c: hack to make IsSubType work for TypeBuilders.
28511         * reflection.c: emit constructors before methods.
28512         Retrieve param names in mono_param_get_objects().
28514 2002/01/05  Nick Drochak  <ndrochak@gol.com>
28516         * Makefile.am: fix list of headers and sources so automake 1.5
28517         doesn't complain. Removed \# at end of list.
28519 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
28521         * reflection.c: get token for a method ref. Set return type of
28522         constructor to void.
28523         * loader.c: debug message.
28524         * class.c: typo fix.
28526 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
28528         * icall.c: fix array init with rank > 1. FindMembers
28529         loops in parent class as well.
28530         * image.c: do not insert nested types in name cache.
28531         * reflection.c: warning fix.
28532         * reflection.h: add override method (for interface impl).
28534 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
28536         * metadata.c: fix customattr decoding.
28538 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
28540         * rawbuffer.cs: Added native Win32 implementation, avoids using
28541         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
28543 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
28545         * class.c: make the low-level routines handle the cache.
28547 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
28549         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
28551 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
28553         * class.c: fix mono_array_element_size() for objects.
28554         * class.h, class.c: add properties to MonoClass and load them
28555         at init time.
28556         * icall.c: check with isinst() when assigning a value to an array
28557         instead of requiring the classes to match exactly.
28558         Implemented icall for System.Type::GetType().
28559         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
28560         enums. Handle bindingflags when looking for methods and fields.
28561         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
28562         and mono_metadata_methods_from_property().
28563         * reflection.h, reflection.c: added structures for propreties,
28564         parameters and enums. Implemented mono_property_get_object() and
28565         mono_param_get_objects().
28567 2001-12-18  Dick Porter  <dick@ximian.com>
28569         * file-io.c: Use mono_string_to_utf16() instead of
28570         mono_string_chars()
28572         * object.c: Added mono_string_to_utf16(), which copies the non
28573         NULL-terminated MonoString into a new double-null-terminated
28574         buffer.
28576 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
28578         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
28580 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
28582         * file-io.c: raise exceptions if handle is invalid.
28584 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
28586         * assembly.c: yet another check for mscorlib.
28587         * class.c, class.h: load nesting info for classes.
28588         * icall.c: many new functions to support the Reflection classes.
28589         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
28590         * reflection.h, reflection.c: mono_image_create_token(),
28591         mono_assembly_get_object(), mono_type_get_object(),
28592         mono_method_get_object(), mono_field_get_object(): methods to return
28593         objects that parallel the C representation of assemblies, types,
28594         methods, fields.
28596 2001-12-11  Dick Porter  <dick@ximian.com>
28598         * icall.c:
28599         * file-io.c: Internal calls for file IO.
28601 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
28603         * tabledefs.h: missing FileAttributes.
28604         * verify.h, verify.c: use is_valid_string () to simplify and check for
28605         valid strings more correctly. Fix warnings and speeling.
28606         Check more tables: Filed, File, ModuleRef, StandAloneSig.
28607         Check code: branches, maxstack, method calls.
28609 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
28611         * object.c (mono_object_allocate): removed static, so that the jit
28612         can allocate value types.
28614         * icall.c (ves_icall_System_DateTime_GetNow): impl.
28616 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28618         * class.c: init enum types right away and register the
28619         token->MonoClass map in mono_class_create_from_typedef ().
28620         * verify.h, verify.c: first cut of the verifier.
28621         * pedump.c: add --verify switch to verify metadata tables.
28622         * tabledefs.h: add some missing enums.
28624 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
28626         * class.c (mono_install_runtime_class_init): impl.
28627         (mono_class_init): renamed mono_class_metadata_init to
28628         mono_class_init, also removed the metadata_inited flag
28630         * object.c (mono_object_isinst): use faster algorithm
28632 2001-11-30  Radek Doulik  <rodo@ximian.com>
28634         * mono-endian.h: reverted last change
28635         added function prototypes
28637         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
28638         add mono-endian.c back
28640         * mono-endian.c: returned back, as Paolo pointed out, it's needed
28641         for unaligned access, I've mistaked it with endianess. I am
28642         sorry.
28643         (mono_read16): fix reverted endianess
28644         (mono_read64): ditto
28645         (mono_read32): ditto
28647 2001-11-30  Dick Porter  <dick@ximian.com>
28649         * exception.c: Implement mono_exception_from_name()
28651 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28653         * metadata.h, metadata.c: remove params_size and locals_size and their
28654         calculation from the metadata code: they are only usefult to the
28655         interp.
28657 2001-11-29  Radek Doulik  <rodo@ximian.com>
28659         * object.c (mono_ldstr): swap bytes here, it's probably not the
28660         best place, but works for me now, I'll redo it once I know mono
28661         better, also note that I add PROT_WRITE and don't reset back, also
28662         note that it's only affects big endians, so x86 should be OK
28664         * mono-endian.h (read16): use just glib macros for both endians
28666         * mono-endian.c: removed as glib macros are used in in
28667         mono-endian.h so we don't need to care about endianess for read
28668         macros as glib does that for us already
28670 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
28672         * class.h, class.h: take minimum alignment into consideration so
28673         that the fields of a class remain aligned also when in an array.
28675 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28677         * loader.h, loader.c: add mono_method_get_param_names().
28678         * class.c: 0-init class fields.
28680 2001-11-26  Dick Porter  <dick@ximian.com>
28682         * icall.c:
28683         * threads-types.h:
28684         * threads.c: New file that handles System.Threading on all platforms
28686         * object.c: 
28687         * object.h: Remove the synchronisation struct from MonoObject,
28688         replace it with a pointer that gets initialised on demand
28690         * Makefile.am: Replace all the system-specific threading code with
28691         a single file that uses the new wrapper library
28693 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
28695         * class.c, class.h: add mono_install_trampoline() so that the runtime
28696         can register a function to create a trampoline: removes the ugly
28697         requirement that a runtime needed to export arch_create_jit_trampoline.
28698         * object.h, object.c: added mono_install_handler() so that the runtime
28699         can install an handler for exceptions generated in C code (with
28700         mono_raise_exception()). Added C struct for System.Delegate.
28701         * pedump.c: removed arch_create_jit_trampoline.
28702         * reflection.c: some cleanups to allow registering user strings and
28703         later getting a token for methodrefs and fieldrefs before the assembly
28704         is built.
28705         * row-indexes.h: updates and fixes from the new ECMA specs.
28707 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
28709         * class.h, class.c: add enum_basetype field to MonoClass.
28710         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
28711         to get index in the constant table reated to a field, param or
28712         property.
28713         * reflection.h, reflection.c: handle constructors. Set public-key and
28714         version number of the built assembly to 0.
28715         * row-indexes.h: update from new ECMA spec.
28717 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28719         * class.h, class.c: add a max_interface_id to MonoClass.
28720         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
28721         since it's used to do that. Added mono_type_type_from_obj().
28722         Make GetType() return NULL instead of segfaulting if the type was not
28723         found. Handle simple arrays in assQualifiedName.
28724         * object.h: add a struct to represent an Exception.
28725         * reflection.c: output call convention in method signature.
28726         Add code to support P/Invoke methods and fixed offsets for fields.
28728 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
28730         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
28731         the value.
28732         * icall.c: use mono_array_addr instead of array->vector: fixes the
28733         reflection image writing.
28734         * reflection.c: init call convention byte to 0 in method signature.
28735         Encode the property signature. Don't output property-related methods
28736         twice. Really process the properties for a type (don't cast a field to
28737         a property, my mom always told me that).
28738         Fix 64 bit issues in pointer alignment in a different and more
28739         readable way.
28741 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
28743         * loader.h: Removed type class from MonoDefaults, added monotype
28745         * loader.c: Loaded MonoType, removed loading of Type
28747         * icall.c (my_mono_new_object): Now returns a System.MonoType,
28748         and fills in System.Type._impl with a RuntimeTypeHandle rather
28749         than the actual MonoClass *
28751         (ves_icall_type_from_handle): change from type_class to
28752         monotype_class
28754         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
28755         implemented
28757         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
28758         implemented
28760         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
28762         (ves_icall_System_Reflection_Assembly_GetType): implemented
28764         (ves_icall_System_MonoType_assQualifiedName): implemented
28766         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
28768 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
28770         * assembly.c (mono_assembly_open): Implement a cache for the
28771         assemblies. 
28773         (mono_assembly_close): only destroy the assembly when the last
28774         reference is gone.
28775         
28776 2001-11-09  Dick Porter  <dick@ximian.com>
28778         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
28780 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
28782         * class.c (mono_class_metadata_init): bug fix: compute the right slot
28784 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28786         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
28787         from Martin Weindel.
28788         * object.h: add mono_string_chars ().
28790 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
28792         * reflection.c (build_compressed_metadata): Eliminates warnings
28793         and uses 64-bit clean code.
28795         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
28796         (mono_type_equal): Change signature to eliminate warnings.
28798 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28800         * icall.c, loader.c: remove the internalcall array constructors.
28801         Changes to match the new MonoArray structure.
28802         * object.h, object.c: an array object doesn't allocate an extra
28803         vector. Add mono_array_new_full () to create jagged arrays easily.
28805 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28807         * metadata.h, metadata.c: add mono_metadata_field_info () to
28808         retreive all the info about a field from vairous tables.
28809         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
28810         * class.h, class.c: augment MonoClassField with more info.
28811         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
28812         policy and load a field's RVA if needed.
28814 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
28816         * class.c (mono_class_metadata_init): create a trampoline for all
28817         virtual functions instead of actually compiling them.
28819 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
28821         * class.h, class.c: include name in MonoClassField.
28822         * class.c: fix fundamental type of System.Object and System.String.
28823         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
28824         tokens in ldtoken.
28825         * icall.c: remove internalcalls for the Reflection stuff that is now
28826         done in C# code.
28827         * loader.c: mono_field_from_memberref () implementation.
28828         * mono-endian.c: thinko (s/struct/union/g).
28829         * object.c, object.h: make the mono_string_* prototypes actually use
28830         MonoString instead of MonoObject.
28831         * reflection.c, reflection.h: updates for changes in the reflection
28832         code in corlib: we use C structures that map to the actual C# classes.
28833         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
28834         fat method header if needed and use the info from the ILGenerator for
28835         methods. Handle fields in types. Misc fixes.
28837 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
28839         * class.c (mono_class_metadata_init): bug fix: always allocate
28840         space for static class data
28842 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
28844         * class.c (mono_compute_relative_numbering): use relative
28845         numbering to support fast runtime type checks.
28847 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
28849         * class.c (mono_class_create_from_typeref): added debugging output
28850         to print class name when MonoDummy is returned instead of real class
28852 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
28854         * class.c (mono_class_metadata_init): interface offset table now
28855         contains pointers into the vtable - this is more efficient for the jit
28857 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
28859         * class.c (mono_class_metadata_init): use a temporary vtable (the
28860         old algorithm only worked for the interpreter, but not for the jit)
28862 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
28864         * loader.c (method_from_memberref): use mono_class_get to get the
28865         class of an array instead of using System.Array directly.
28866         (mono_get_method): also add MEMBERREF methods to the method cache
28867         which usefull for arrays.
28869 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
28871         * pedump.c (arch_compile_method): added to compute vtable entry
28873         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
28874         number of interfaces.
28875         
28876         * class.h: merged MonoArrayClass into MonoClass
28878         * class.c (mono_class_create_from_typedef): compute the vtable size and
28879         allocate space to include the vtable inside MonoClass
28880         (mono_class_metadata_init): initialize the vtable
28882 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
28884         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
28885         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
28886         * image.c: endian fixes by Laurent Rioux.
28887         * object.h, object.c: rename MonoStringObject to MonoString and
28888         MonoArrayObject to MonoArray. Change some function names to conform to
28889         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
28890         guint16* as first argument, so don't use char*.
28891         Provide macros to do the interesting things on arrays in a portable way.
28892         * threads-pthread.c: updates for the API changes and #include <sched.h>
28893         (required for sched_yield()).
28894         * icall.c: updates for the API changes above.
28895         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
28896         platforms that need them.
28898 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28900         * class.c: set the correct type for all the fundamental
28901         type when loading the class.
28903 2001-10-05  Dick Porter  <dick@ximian.com>
28905         * threads-pthread.c (pthread_mutex_timedlock): Simple
28906         compatibility version for C libraries that lack this call.
28908 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28910         * class.c: MonoTypes stored in MonoClass are stored as
28911         fundamental MonoTypes when the class represents a
28912         fundamental type (System.Int32, ...).
28913         The TypeHandle return by ldtoken is a MonoType*.
28914         * icall.c: ves_icall_get_data_chunk () write out all the
28915         PE/COFF stuff. Implement ves_icall_define_method (),
28916         ves_icall_set_method_body (), ves_icall_type_from_handle ().
28917         * image.c: properly skip unknown streams.
28918         * loader.h, loader.c: add type_class to mono_defaults.
28919         * metadata.c, metadata.h: export compute_size () as
28920         mono_metadata_compute_size () with a better interface.
28921         Typo and C&P fixes.
28922         * pedump.c: don't try to print the entry point RVA if there is no entry point.
28923         * reflection.c, reflection.h: many cleanups, fixes, output method
28924         signatures and headers, typedef and typeref info, compress the metadata
28925         tables, output all the heap streams, cli header etc.
28926         * row-indexes.h: typo fixes.
28928 2001-10-04  Dick Porter  <dick@ximian.com>
28930         * object.h: Add a synchronisation mutex struct to MonoObject
28932         * object.c (mono_new_object): Initialise the object
28933         synchronisation mutexes
28935         * icall.c: System.Threading.Monitor internal calls
28936         
28937         * threads-pthread.h:
28938         * threads-pthread.c: System.Threading.Monitor internal calls
28940         * threads-types.h: New file, includes the system-specific thread
28941         structures
28942         
28943         * threads-pthread-types.h:
28944         * threads-pthread-types.c: New files, handle pthread-specific
28945         synchronisation types
28947         * threads-dummy-types.h: 
28948         * threads-dummy-types.c: New files of dummy support for
28949         thread-specific types
28951         * metadata.c:
28952         * image.c:
28953         * pedump.c: include mono-endian.h not endian.h
28954         
28955         * Makefile.am: More threads files.
28956         Name mono-endian.h not endian.h
28958 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
28960         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
28961         stuff and implement a few more bits.
28962         * icall.c: a field needs to be dereferenced twice. Do not use the same
28963         name for two variables in the same scope.
28964         * image.c, image.h: cleanups.
28966 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
28968         * class.c (mono_class_metadata_init): bug fix: compute the right size
28970 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
28972         * icall.c: implemented some of the Reflection internalcalls.
28973         * image.c, image.h: start writing out the PE/COFF image.
28974         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
28975         that does the reverse than decode_blob_size ().
28976         * object.c: use mono_metadata_encode_value (). Move here
28977         temporary implementation of mono_string_to_utf8 ().
28978         * rawbuffer.c: make malloc_map static.
28980 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28982         * metadata.c: fix type comparison for arrays.
28983         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
28984         Added a couple of new classes to monodefaults.
28985         * icall.c: added a couple of Reflection-related internalcalls.
28986         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
28987         Added a byval_arg MonoType to MonoClass.
28989 2001-09-28  Dick Porter  <dick@ximian.com>
28991         * icall.c:
28992         * threads-pthread.h: 
28993         * threads-pthread.c: Implemented internal calls for
28994         LocalDataStoreSlot operations.  Applied mutexes around all shared
28995         data.  Reworked the thread creation and Start() operations to
28996         avoid a race condition.
28997         
28998         * threads-dummy.h:
28999         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
29001 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
29003         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
29005 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
29007         * class.c, loader.c: warn and return NULL instead of erroring out.
29008         * icall.c: added System.AppDomain::getCurDomain().
29009         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
29011 2001-09-25  Dick Porter  <dick@ximian.com>
29013         * threads-pthread.h:
29014         * threads-pthread.c: Implemented timed thread joining and added
29015         System.Threading.Thread::Join_internal internal call
29017         * icall.c: Added System.Threading.Thread::Join_internal internal call
29019         * threads-dummy.h:
29020         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
29022 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
29024         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
29025         mono_string_intern () to implement the semantics of the ldstr opcode
29026         and the interning of System.Strings.
29027         * icall.c: provide hooks to make String::IsIntern and String::Intern
29028         internalcalls.
29030 2001-09-23  Dick Porter  <dick@ximian.com>
29032         * threads-dummy.c: 
29033         * threads-dummy.h: New files of dummy threading routines
29035         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
29036         support code based on system specifics
29038         Rename PTHREAD_LIBS to THREAD_LIBS
29039         
29040 2001-09-23  Dick Porter  <dick@ximian.com>
29042         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
29043         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
29044         internal calls.
29045         (mono_thread_init): Set up a Thread object instance to return when
29046         the main thread calls Thread.CurrentThread
29047         (mono_thread_cleanup): Wait for all subthreads to exit
29049         * icall.c: New internal calls for System.Threading.Thread::Sleep
29050         (including Schedule) and CurrentThread
29052         * threads.h: New file, to insulate thread-specific stuff from the
29053         rest of the code
29055 2001-09-21  Dick Porter  <dick@ximian.com>
29057         * threads-pthread.h: 
29058         * threads-pthread.c: New file, for handling pthreads-style
29059         threading support.  Start() now starts a new thread and executes
29060         the ThreadStart delegate instance.
29062         * icall.c: Added the internalcall for
29063         System.Threading.Thread::Start_internal
29065         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
29067 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
29069         * loader.c: work around the different signatures for delegates
29070         constructors csc generates in compiled code vs the ones compiled in mscorlib.
29072 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
29074         * class.h, class.c: add mono_class_get_field_from_name ().
29075         * *: Fix C comments and other ANSI C issues.
29077 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
29079         * endian.h, assembly.c: fix some endianness issues.
29081 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
29083         * loader.h, load.c: add delegate_class to mono_defaults.
29084         Handle runtime provided methods in mono_get_method ().
29086 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
29088         * loader.c (mono_get_method): use pinvoke for internal call
29090         * icall.c: use pinvoke for internal call
29092         * loader.c (method_from_memberref): set the method name
29094 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
29096         * metadata.c: help the compiler generate better code for
29097         mono_class_from_mono_type ().
29099 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
29101         * class.c (mono_class_metadata_init): delayed computing of the
29102         class size to mono_class_metadata_init ()
29104 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
29106         * class.c, class.h: add an interfaces member to MonoClass.
29107         * image.c, image.h: add assembly_name field to MonoImage
29108         from the assembly table.
29109         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
29111 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
29113         * class.c: Handle Array in mono_class_from_mono_type ().
29114         * metadata.c, pedump.c: some endian fixes.
29116 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
29118         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
29119         * metadata.c: fix small problem introduced with the latest commit.
29121 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
29123         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
29124         We don't need a MonoMetadata pointer anymore to compare signatures in
29125         mono_metadata_signature_equal (), update callers.
29126         Reduced memory usage an number of allocations for MonoMethodHeader and
29127         MonoMethodSignature.
29129 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
29131         * metadata.c: added compare for szarray.
29133 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
29135         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
29136         and add a couple more types to it and mono_defaults. Give an hint on
29137         classes that need implementing in our corlib and are referenced
29138         in mscorlib.
29140 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
29142         * class.h, class.c: keep track if a class is also an Enum.
29143         * loader.c: Implement a couple more types for use in libffi
29144         marshalling. Gives better diagnostics when failing to dlopen
29145         a library. Set method->klass for P/Invoke methods, too.
29147 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
29149         * class.c, class.h: add a MonoType this_arg to MonoClass that
29150         represents a pointer to an object of the class' type that
29151         can be used by the interpreter and later the type cache.
29152         Add best guess alignment info for valuetype objects.
29154 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
29156         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
29157         into MonoType: one less level of indirection and allocation and
29158         simplifies quite a bit of code. Added cache for MonoTypes that are
29159         used frequently, so that we don't need to allocate them all the time.
29161 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
29163         * class.c (mono_class_create_from_typedef): System.Enum is also a
29164         value type, although it does not derive from System.ValueType
29165         (maybe a bug in the ms compiler?)
29167         * metadata.c (mono_type_size): return the right size for value types
29169         * loader.c (mono_get_method): only initialize method header if not abstract
29171         * class.c (mono_class_from_mono_type): use mono_default values. 
29173 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
29175         * *: use MonoClass pointers instead of <type_tokens>
29176         
29177         * class.h: new flag: metadata_inited.
29179         * class.c (mono_class_metadata_init): impl.
29180         (mono_class_instance_size): impl.
29181         (mono_class_data_size): impl.
29183 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
29185         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
29186         MonoClass now has the name and name_space fields. 
29187         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
29188         mono_get_method () takes and optional MonoClass as argument.
29189         Removed mono_typedef_from_name() and added mono_class_token_from_name()
29190         instead that takes advantage of a map from class names to typedef
29191         tokens in MonoImage.
29193 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
29195         * metadata.c: zero is not a valid alignment boundary.
29196         Merge MONO_TYPE_VOID in default decoding code.
29198 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
29200         * image.h: merged MonoMetadata into MonoImage
29202         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
29203         identify the type of elements.
29205 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
29207         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
29208         * cil-coff.h: split MonoMSDOSHeader and add size info.
29209         * image.c: add some consistency checks.
29210         * metadata.c: fix row size computation: one programmer
29211         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
29212         add explanation for the locator routine.
29213         Fix decoding of size in method header.
29214         
29215 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
29217         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
29218         (g_concat_dir_and_file): Bring g_concat_dir_and_file
29219         function from gnome-libs.  This uses the right path separator
29220         based on the OS, and also works around a bug in some systems where
29221         a double slash is not allowed. 
29222         (default_assembly_name_resolver): Use g_concat_dir_and_file
29223         (mono_assembly_open): ditto.
29225 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
29227         * metadata.c (mono_metadata_signature_equal): impl.
29229         * *: void is now a realy MonoType (instead of using NULL)
29230         
29231         * metadata.c (do_mono_metadata_parse_type): use
29232         mono_metadata_parse_type to parse void value.
29234 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
29236         * metadata.c, metadata.h: in the signature and method header store
29237         only the space required for holding the loca vars and incoming arguments.
29239 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
29241         * metadata.c (do_mono_metadata_parse_type): treat void like any
29242         other type (instead of assigning NULL);
29244 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
29246         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
29248 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
29250         * image.c (do_mono_image_open): added a cache for arrays.
29252 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29254         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
29255         decode a single column from a row in a metadata table and changes
29256         to take advantage of it in the typedef locator (gives a nice speed up).
29257         Store offset info for function params.
29259 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
29261         * image.h (MONO_IMAGE_IS_CORLIB): removed 
29263 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
29265         * assembly.c: how could mono_assembly_close () had ever worked?
29266         * metadata.c, metadata.h: provide offset info for local vars.
29267         Implement mono_type_size () to take care of alignment as well
29268         as size (it was mono_field_type_size in cli/class.c before).
29270 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
29272         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
29274         * assembly.h (CORLIB_NAME): set to corlib.dll
29276         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
29278 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29280         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
29281         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
29282         tokentype.h: massive namespace cleanup.
29284 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
29286         * metadata.h, metadata.c: decode exception clauses when parsing method header.
29288 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
29290         * metadata.c (mono_metadata_free_type): added check for type !=
29291         NULL (void) before calling mono_metadata_free_type()
29293 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
29295         * metadata.h, row_indexes.h: added header with enumerations to use
29296         to index in the columns from tables in metadata and to decode coded
29297         tokens: we should start using this instead of embedding magic numbers
29298         all over the code.
29300 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
29302         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
29303         Move metadata_t info from cli_image_info_t to MonoImage, where
29304         it's easily accessible. Changed all the uses accordingly.
29305         Added the method and class caches to MonoImage.
29306         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
29307         and mono_metadata_decode_value () signature to be more consistent
29308         with the other parse functions (and simplify code). Taken advantage
29309         of zero-length array allocation with GCC. Removed reduntant (and
29310         wrong) MonoFieldType struct and use MonoParam instead. Changed
29311         mono_metadata_parse_field_type () to use common code for parsing.
29312         Added mono_metadata_typedef_from_field () and
29313         mono_metadata_typedef_from_method () to lookup a typedef index from a
29314         field or method token.
29315         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
29317 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
29319         * metadata.c (mono_metadata_parse_field_type): Implement. 
29320         (do_mono_metadata_parse_type): Split engine from
29321         mono_metadata_parse_type, so that we can create smaller structures
29322         for things that just have one pointer to the MonoType (look at
29323         the MonoFieldType)
29325 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
29327         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
29328         as Jan Gray found out, it is incorrect. 
29330 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
29332         * assembly.c: Implement asssembly loading.  This loads an image
29333         and loads all the referenced assemblies.  Come to think of it, we
29334         could always do lazy loading of the assemblies. 
29336         * image.c (mono_image_open): Keep loaded images in a hashtable.
29338         * image.h (MonoImage): Add reference count.
29340 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
29342         * assembly.c (mono_assembly_open): Keep track of the file name in
29343         case the assembly has no ASSEMBLY table.
29345         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
29346         from get.c here.
29348 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
29350         * metadata.c, metadata.h: decode local vars in method header
29351         parse function. Change callers accordingly.
29353 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
29355         * metadata.h, cil-coff.h: protect against multiple inclusion.
29356         Added some new structures to hold information decoded from metadata:
29357         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
29358         and relevant decoding/free functions.
29359         * metadata.c: implement decoding functions. Add warning for out of bounds
29360         index in mono_metadata_locate(). Implement mono_get_method () to retreive
29361         all the info about a method signature and invocation. Remove check on
29362         uninitialized local var in parse_mh() and fix memory leak.
29364 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
29366         * metadata.h: More macros.
29368         * tokentype.h: New file.
29370 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
29372         * assembly.c: added a consistency check and initialize
29373         some structures with g_new0().
29374         * metadata.c: fixed a couple more bugs in table size computation
29375         and add other checks for out-of bound access to metadata.
29377 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
29379         * metatada.c: fix bugs computing table sizes. Spew a
29380         warning when index in string heap is out of bounds.
29382 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
29384         * metadata.h: Add a couple of macros to manipulate tokens. 
29386 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
29388         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
29389         cli_section_tables).
29391 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
29393         * metadata.c (mono_metadata_user_string): New function, provides
29394         access to the UserString heap. 
29396 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
29398         * metadata.c: Add inline documentation.
29400 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
29402         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
29403         files. 
29405 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
29407         * typeattr.h: New file, TypeAttribute flags. 
29409 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
29411         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
29412         mono_assembly_ensure_section): Section loading code.
29413         (load_section_tables): Load the sections.
29415         * mono/metadata/metadata.c (mono_metadata_locate_token,
29416         mono_metadata_locate): Functions to locate the information
29417         definition given a token or a table and an index.
29418         (mono_metadata_compute_table_bases): New.
29419         (compute_size): New function to compute the sizes of the various
29420         tables.
29422         * mono/metadata/metadata.h: Finish listing the different index
29423         types. 
29425         * mono/metadata/pedump.c: Improve to dump new information.
29427 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
29429         * mono/metadata/metadata.c: Entered all the tables matching
29430         Beta2. 
29432         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2