2009-11-04 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mono / metadata / ChangeLog
blob9ce0868e2f68b90167b981f3d04019ad0fe05ad1
1 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3         * string-icalls.c|h: Remove string internal calls that are not 
4         used anymore by the class libraries.
5         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
6         which is not used in the class librairies.
7         * icall-def.h: Update tables.
9 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
11         * reflection.c (fieldref_encode_signature): If field_image is NULL then
12         the token is already properly encoded. Fixs 4.0 build.
14 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16         * locales.c (construct_number_format): Check if the number index is
17         valid before trying to use it, if not, just return.
18         
19 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
21         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
22         since that loses the abort state. Fixes #539394.
24 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
26         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
27         explicit this argument to the call signature.
28         (mono_marshal_get_icall_wrapper): Ditto.
30 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
32         * reflection.c (fieldref_encode_signature): Add new field_image parameter
33         to indicate which assembly to use when resolving a custom-mod.
35         Fixes handling of volatile fields used across assemblies as reported in #551513.
37 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
39         * loader.c: Improve error messages.
41 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
43         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
44         of interfaces. Fixes IKVM.
46         * class.c (mono_class_setup_vtable_general): Improve debug spew.
48 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
50         * verify.c (verifier_inflate_type): Return the inflated type on success.
52 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
54         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
56         * threads.c (mono_thread_attach): Call the profiler thread start callback.
58         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
60         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
61         flag set.
63         * profiler.c: Add new profiler callbacks for runtime invoke.
65         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
67 2009-11-01  Mark Probst  <mark.probst@gmail.com>
69         * sgen-gc.c: Keep track of the reason for a major collection and
70         write it to the heap-dump file.
72 2009-10-31  Miguel de Icaza  <miguel@novell.com>
74         * threads.c: refactor the code that initializes the
75         thread_start_args into a reusable function and use this in the two
76         methods that start up threads.
78 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
80         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
81         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
83 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
85         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
86         Until now, we only had the per-cpu(core) counters.
88 2009-10-28  Mark Probst  <mark.probst@gmail.com>
90         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
91         mono_gc_get_suspend_signal(), which returns the suspend signal
92         number used by the GC.
94 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
96         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
98         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
99         signalling start_notify.
101 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
103         * appdomain.c: do not test the st_mode field for shadow-copies.
104         Fixes bug #545276.
106 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
108         * threadpool.[ch]: added hooks for thread start/finish and item
109         processing begin/end. For monotouch use only.
111 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
113         * threads.c (mono_thread_get_name): New helper function.
115         * reflection.c (resolve_object): Set handle_class for strings too.
116         (mono_reflection_create_custom_attr_data_args): New helper function to decode
117         a cattr blob into a set of arrays and structures without creating the custom
118         attributes themselves.
119         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
121         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
123         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
124         function.
126 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
128         * verify.c: Replace calls to mono_class_inflate_generic_type with
129         mono_class_inflate_generic_type_checked. Fixes #480005.
131 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
133         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
134         object since not all paths lead to callees initing it.
136 2009-10-23  Alp Toker  <alp@nuanti.com>
138         Fix embedding API breakage from r144688. mono-compiler.h is an internal
139         header and should not be shipped:
141         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
142         which is specific to the mono build. Not going to work.
144 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
146         * security-manager.c: Report if core-clr is active from
147         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
148         to allow Moonlight BCL to behave appropriately (both in browser
149         and outside, e.g. smcs)
151 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
153         * mono-config.c: ignore UTF-8 BOM and report parser errors.
154         Fixes bug #549108.
156 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
158         * class.c: fix typo.
160 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
162         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
163         a MonoError parameter.
165         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
166         version that can does proper error handling.
168         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
170         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
172         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
174 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
176         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
177         NO_UNALIGNED_ACCESS is defined.
179 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
181         * marshal.c (mono_string_builder_to_utf16): Applied patch from
182         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
183         Fixes #549173.
185 2009-10-22  Mark Probst  <mark.probst@gmail.com>
187         * sgen-gc.c: Shorten sections whenever possible.
189 2009-10-22  Mark Probst  <mark.probst@gmail.com>
191         * sgen-gc.c: Use our portable semaphore #defines.
193 2009-10-22  Mark Probst  <mark.probst@gmail.com>
195         * sgen-gc.c: A debug option for dumping the heap layout to a file
196         after each collection.
198 2009-10-21  Mark Probst  <mark.probst@gmail.com>
200         * sgen-gc.c: Make managed write barriers atomic via
201         thread-restarts.
203 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
205         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
206         methods. Fixes #543021.
208 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
210         * socket-io.[ch]: fix VS build.
212 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
214         * icall-def.h:
215         * socket-io.[ch]: implemented SendFile.
217 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
219         * class.c (mono_class_create_from_typedef): Initialize class->element_class
220         before the interfaces to avoid crashes later if class initialization fails.
221         Fixes #548417.
223         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
224         Fixes #548276.
226 2009-10-20  Marek Safar  <marek.safar@gmail.com>
228         * domain.c: Bump 4.0 version.
230 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
232         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
233         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
234         check since 'pubkey' can't be NULL at this stage
235         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
236         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
237         initialization of 'iter'
239 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
241         * cominterop.c : Search the interface parts of vtable to find 
242           method matches.  Fixes 547030.
244         Code is contributed under MIT/X11 license.
246 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
248         * marshal.c: BeginInvoke cannot be called on multicast delegates with
249         multiple targets. Fixes bug #574426.
251 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
253         * profiler.h: Put here the definition of
254         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
255         (and fix the build...).
257 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
259         * profiler.c, profiler.h, profiler-private.h:
260         Added support for different ways of getting call chains in stat mode.
262 2009-10-12  Mark Probst  <mark.probst@gmail.com>
264         * object.c, object-internals.h: New function for computing the
265         size of an array, factored out of mono_array_new_full().  Use
266         SGen's functions for allocating arrays and vectors.
268         * sgen-gc.c, gc-internal.h: Special functions for allocating
269         arrays and vectors without race conditions.  A managed array
270         allocator method.
272         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
274 2009-10-12  Mark Probst  <mark.probst@gmail.com>
276         * object.c, object.h, icall.c: Write barriers do the copying now,
277         as well, so no need for an additional memcpy.
279         * sgen-gc.c: Lock when storing remsets.  Do the memory
280         copying/moving in the write barriers.
282         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
284         * reflection.c: Added an assert.
286 2009-10-12  Mark Probst  <mark.probst@gmail.com>
288         * threads.c, process.c: A few missing write barriers.
290 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
292         * mono-perfcounters.c, mono-perfcounters-def.h: Add
293         network performance counters for bytes sent per second, bytes
294         received per second, and bytes total per second.
296         Code is contributed under MIT/X11 license.
298 2009-10-09  Mark Probst  <mark.probst@gmail.com>
300         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
301         Fix warning.
303 2009-10-09  Mark Probst  <mark.probst@gmail.com>
305         * threads.c, object-internals.h, object.c: Move code for
306         transferring an object to a different domain (via
307         serialization/remoting) to object.c.
309         * object.c (call_unhandled_exception_delegate): If the exception
310         is in a different domain than the delegate, transfer the exception
311         to that domain.
313 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
315         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
316         Fixes #322934.
318 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
320         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
322 2009-10-06  Mark Probst  <mark.probst@gmail.com>
324         * object.c (mono_method_return_message_restore): Handle the case
325         where the argument is an instance of a generic type.  Fixes
326         #544446.
328 2009-10-06  Mark Probst  <mark.probst@gmail.com>
330         * object.c (set_value): Write barrier fix - we must pass the
331         count, not the size.
333 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
335         * domain.c (mono_init_internal): Print a useful error message when encountering
336         an old mscorlib, instead of crashing. Fixes #544307.
338 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
340         * appdomain.c (copy_app_domain_setup): Fix a warning.
342         * debug-helpers.c (dis_one): Ditto.
344 2009-10-04  Mark Probst  <mark.probst@gmail.com>
346         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
347         into the new domain, instead of referencing the original one.
349         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
350         non-static.
352         * appdomain.c: Corlib version bump.
354 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
356         * threadpool.c: one more...
358 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
360         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
361         threads to die because we're shutting down. delgate5.exe works again.
363 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
365         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
366           ccw_interface_hash table when a ccw is finalized.
368         Code is contributed under MIT/X11 license.
370 2009-09-30  Mark Probst  <mark.probst@gmail.com>
372         * assembly.c, domain.c, image.c, metadata-internals.h: Split
373         domain and image unloading into two steps.  We must do this
374         because clearing the domain in SGen requires the class metadata to
375         be intact, but we need to free the mono_g_hash_tables in case a
376         collection occurs during domain unloading and the roots would trip
377         up the GC.
379 2009-09-30  Mark Probst  <mark.probst@gmail.com>
381         * object-internals.h: Remove serialized culture fields from
382         MonoInternalThread.
384         * icall-def.h, thread-types.h, threads.c: Remove serialized
385         culture icalls.
387         * appdomain.c: Corlib version bump.
389 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
391         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
392         Fixes #543133.
394 2009-09-30  Mark Probst  <mark.probst@gmail.com>
396         * sgen-gc.c: Try to shorten the new section after a major
397         allocation to avoid ever-growing sections.
399 2009-10-13  Martin Baulig  <martin@ximian.com>
401         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
402         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
403         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
404         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
406         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
408 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
410         * threadpool.c: fixed the order in which 'completed' and the wait
411         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
412         No need to use the wait_handle field of ASyncCall. Make sure the
413         threadpool is active when adding a job or queueing an idle thread.
415 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
417         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
419         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
420         when using --compile-all.
422 2009-09-27  Mark Probst  <mark.probst@gmail.com>
424         * metadata.c (free_generic_class): Unregister the field_objects
425         roots if we're using SGen.
427 2009-09-27  Mark Probst  <mark.probst@gmail.com>
429         * reflection.c (mono_dynamic_image_free): Deregister the GC root
430         for GenericParamTableEntry.gparam.
432 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
434         * marshal.c: don't create the handle when calling. It is created later
435         if needed.
437 2009-09-26  Mark Probst  <mark.probst@gmail.com>
439         * sgen-gc.c: Warning fixes.
441 2009-09-26  Mark Probst  <mark.probst@gmail.com>
443         * sgen-gc.c: New debug option "xdomain-checks", which scans the
444         whole heap for cross-domain references before each collection.
446         * sgen-scan-object.h: The scan action can now use SCAN to scan the
447         object.
449         * threadpool-internals.h, threadpool.c: New function
450         mono_thread_pool_is_queue_array() for checking whether a given
451         array is used as a (cross-domain) queue by the thread pool code.
453 2009-09-26  Mark Probst  <mark.probst@gmail.com>
455         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
456         searches the whole heap for objects containing a specific
457         reference.  Only for debugging.
459 2009-09-26  Mark Probst  <mark.probst@gmail.com>
461         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
463         * icall-def.h, threads.c, threads-types.h: New icalls for copying
464         byte arrays between domains.
466 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
468         * threadpool.c:
469         * class-internals.h:
470         * mono-perfcounters-def.h:
471         * mono-perfcounters.c:
472         -There is a list of idle threads
473         -Each of those idle threads wait on their own WaitHandle instead
474         of all of them using the same semaphore. When a new work item is
475         added, the job is assigned directly to an idle thread or a newly
476         created one if possible and then the handle for that thread is
477         signaled. Compare that to the current approach where all the
478         threads in the pool compete to dequeue a job from the same
479         queue.
480         -New struct ThreadPool that brings together the bunch of static
481         variable for each threadpool (IO and regular).
482         -New performance counters: # of items added and its rate per
483         threadpool. The rate will be used later, perhaps together with
484         other perf. counters, to decide when idle threads should exit.
486 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
488         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
489         Fix typo on Windows build.      
490         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
491         
492         Code is contributed under MIT/X11 license.
494 2009-09-25  Mark Probst  <mark.probst@gmail.com>
496         * object-internals.h: The Thread class is split up into Thread and
497         InternalThread now.  We have exactly one InternalThread per
498         thread, and at most one Thread per appdomain per thread.  Most
499         data is stored in InternalThread.  All InternalThread objects live
500         in the root domain.
502         * class-internals.h: Add internal_thread_class to MonoDefaults.
504         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
505         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
506         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
507         resulting from the split of the Thread class.
509         * gc-internal.h: Prototype for new function for checking whether a
510         thread is the finalizer thread.
512         * appdomain.c: Corlib version bump.
514 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
516         * appdomain.c|h: Add a mono_domain_try_unload method which is
517         equivalent to mono_domain_unload, except that it returns an exception
518         instead of throwing it. Make mono_domain_unload use the
519         mono_domain_try_unload method to avoid code-duplication.
521 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
523         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
524         a problem.
526 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
528         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
529         aborting when a conversion is not implemented.
531 2009-09-23  Miguel de Icaza  <miguel@novell.com>
533         * verify.c: when comparing culture strings, use g_ascii_strcmp
535         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
536         when comparing public key tokens to use memcmp on 16 bytes.   I do
537         not believe this ever worked as advertised in the past.
539         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
540         which would have always failed earlier.
542 2009-06-25  Miguel de Icaza  <miguel@novell.com>
544         * gc.c: Raise a NullArgumentException if the object passed is
545         null.
547 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
549         * image.c (mono_image_close): Atomically decrement the reference count and
550         remove the image from the hash tables, to prevent another thread from seeing a
551         dying MonoImage. Fixes #541194.
553 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
555         * threadpool.c: actually use the minimum number of 'completion ports'
556         (for us is just a potential worker thread).
558 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
560         * threadpool.c: remove ares_htable. It does not make sense any more
561         since the same objects are now stored in GC-tracked arrays while they are
562         in the queue.
564 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
566         * threadpool.c: increase the minimum length of the queues to 128.
567         Remove warning.
569 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
571         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
572         return the modified signature used by string ctors.
574 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
576         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
577         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
578         method, to be used by full-aot.
580 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
582         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
583         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
584         be known to be good.
586         * class.c (mono_class_init): Fail array types if their element type fails initialization
587         as well.
589         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
590         initialization, additionally we request the element_type vtable to be initialized as well.
592         This is fine and should not increase the working set in any meaningful way since it's reasonable
593         to assume       that most code will create an array and eventually populate it, which will require the
594         type's vtable to be initialized.
596         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
598 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
600         * normalization-tables.h : regenerated.
602 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
604         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
605         a leb128 encoding can take up to 5 bytes.
607 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
609         * class.c (verify_class_overrides): Remove useless argument.
611         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
612         before interface enumeration as this is no longer required.
614 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
616         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
617         used under mono_class_init context. This functions avoid any code path that
618         calls mono_class_init, which leads it to be slow as some things like the interface
619         bitmap are not available.
621         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
622         of it's own broken version. Fixes the verifier part of #538588.
624         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
625         API.
627 2009-09-15  Mark Probst  <mark.probst@gmail.com>
629         * class.c (mono_class_init): Always set an exception in a class if
630         vtable setup fails.  Fixes #538577.
632         * generic-sharing.c: Raise an exception if mono_class_vtable()
633         returns NULL.
635 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
637         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
638         methods of vtypes, as they could be incorrectly shared with static methods
639         taking an IntPtr argument.
641 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
643         * domain.c:
644         * object.c:
645         * class-internals.h: renamed waithandle_class to
646         manualresetevent_class.
647         * marshal.c: propagate the exception if a remoting BeginInvoke call
648         fails.
650 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
652         * object.c: Properly handle vtable failures.
654 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
656         * socket-io.c: Assert on vtable failure.
658         * mono-mlist.c: Assert on vtable failure.
660 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
662         * marshal.c: Assert on vtable failure.
664 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
666         * icall.c: Properly handle vtable failures.
668 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
670         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
672 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
674         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
676         * console-unix.c (do_console_cancel_event): Same.
678 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
680         * class-internals.h: Add mono_class_vtable_full function that allows control
681         if an exception should be raised or not.
683         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
684         to do what its documentation say, that is to return NULL and set exception_type on
685         failure.
687         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
688         and change the code to honor it.
690 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
692         * verify.c: Fix typo in error message.
694 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
696         * security-core-clr.c: Fix default_platform_check so it can run
697         the runtime coreclr tests (without an infinite recursion when
698         throwing an exception).
700 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
702         object.c (mono_delegate_ctor_with_method): Guard against null method.
704 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
706         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
707         that should be replaced with error handling later.
709 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
711         * marshal.c (mono_delegate_end_invoke): Fix warning.
713 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
715         * loader.c (mono_field_from_token): Properly handle invalid
716         dynamic tokens.
718 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
720         * pedump.c (verify_image_file): Skip types that can't be
721         decoded.
723 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
725         * verify.c: Look for recursive valuetypes only against the
726         type been initialized as this is a lot simpler and works.
728 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
730         * verify.c: Ensure that fields are properly loaded before
731         checking them.
733 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
735         * object.c (mono_object_get_virtual_method) : Call 
736           mono_cominterop_get_invoke if the object is a COM object.
738         Code is contributed under MIT/X11 license.
740 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
742         * verify.c: Check for recursive valuetype definitions.
744 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
746         Use inheritance-aware interface offsets. Inherited types use the same offsets
747         of their parents. This reduce offset duplication in case more than one type in
748         the inheritance tree explicitly implements the same interface.
750         This also removes a source of vtable bubbles found in #532409. An abstract type
751         isn't required to provide abstract methods to all interfaces it implements, which
752         resulted in a bubble with the previous scheme as the child would get a non-full
753         vtable from its parent. We fail all concrete types with vtable bubbles, so this
754         should be fixed.
756         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
757         it's expected to not cause any significant increase beyond that.
759         * class.c (setup_interface_offsets): Compute super class iface offsets
760         first to force sharing.
762         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
763         dumping only the relevant ones.
765         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
766         methods a new slot regardless if they belong to an interface or not. This allows
767         an inherited type to override the iface method separately from the class one.
769 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
771         * threadpool.c: make the Sleep() alertable to prevent delays exiting
772         applications that take less than 2s to execute.
773         Bug #524984 fixed.
775 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
777         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
779         * object.c (mono_get_runtime_callbacks): New helper function to return
780         the runtime callbacks.
782         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
783         mono_get_runtime_build_info () as the display name.
784         
785 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
787         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
788         argument, since NEWARR expects a native int. Fixes #481559.
790 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
792         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
793         against broken SRE methods.
795 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
797         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
798         a NULL variable. Abort early on failure.
800 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
802         * class.c (can_access_type): Fail visibility test for non nested
803         types with nested visibility.
805 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
807         * assembly.c (parse_public_key): Avoid allocating (and not 
808         freeing) the public key array when it's not requested by the 
809         caller.
810         * threads.c (mono_thread_manage, mono_thread_create_internal, 
811         ves_icall_System_Threading_Thread_Thread_internal): Free 
812         allocated memory on error.
814 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
816         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
818 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
820         * class.c (mono_class_setup_fields): Remove duplicated local variable
821         named gklass.
822         Rename gklass to gtd to reflect the fact that it points to the generic
823         type definition.
824         Remove the duplicated call to mono_class_setup_fields on gtd and move
825         the error check to the beginning.
827 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
829         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
830         Remove cruft of the previous patch.
832 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
834         * metadata-verify.c (verify_method_table): Check for abstract + final.
835         Fixes #534175.
837 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
839         * verify.c (verify_class_fields): Check for duplicate fields.
841 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
843         * metadata-verify.c: Verify the typeref table for duplicates.
845 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
847         This reverts r140936 and properly handles interfaces with static methods. The
848         right fix is to ensure vtables without bubles which is an easier to verify
849         constraint. We should avoid such special cases as of the reverted patch as those
850         only make the runtime more brittle.
852         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
853         static methods on interfaces.
855         * class.c (setup_interface_offsets): Use the number of virtual methods when
856         calculating interface offsets instead of the number of methods. This way we
857         avoid bubles on the layout.
859 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
861         * metadata-verify.c (verify_metadata_header): Some very smart
862         obfuscators like to add extra stream headers. Ignore them.
864 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
866         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
867         methods correctly.
869 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
871         * metadata-verify.c: Verify for duplicated types.
873 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
875         * metadata-verify.c (verify_typedef_table): Verify for nested types
876         without an entry on the nested class table.
878 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
880         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
881         <tom_hindle@sil.org>. Add locking around hash table accesses.
883 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
885         * verify.c (mono_verifier_verify_class): Verify all interface if
886         really are interfaces. Fixes #534184.
888 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
890         * pedump.c: Initialize all types during metadata validation so we report
891         errors only detected as part of class initialization.
893 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
895         * metadata-verify.c (verify_method_table): PInvoke requires method to
896         be static. Fixes #534189
898 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
900         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
901         being NULL.
903 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
905         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
906         for holes or bad methods. Fixes #525314.
908 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
910         * class.c (setup_interface_offsets): Don't allocate slot
911         for the same interface multiple times. This creates bubbles
912         that waster space and make vtable verification harder.
914         The same interface get a slot multiple times since we need
915         to get the closure of all implemented interfaces, which means
916         the same interface is reported multiple times.
918 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
920         * verify.c (mono_verifier_verify_class): Don't check the fields
921         of generic instances since the context on which they got expanded
922         might lead to false positives.
924         Such thing happens when a generic type is inflated in the context
925         of a generic method and the inflated type of a field turns into a
926         generic method argument, which causes the checking code to think
927         it's an invalid class when it's not.
929 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
931         * verify.c (mono_type_is_valid_in_context): Verify if type
932         is NULL and remove duplicate test.
934 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
936         * verify.c (mono_verifier_verify_class): Check fields for
937         invalid generic arguments.
939 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
941         * class.c (verify_class_overrides): Verify if for static
942         and non virtual methods.
944 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
946         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
947         Check for errors after retrieving the vtable.
949 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
951         * class.c (mono_class_setup_vtable_general): Verify
952         if method overrides are valid before processing them.
954 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
956         * marshal.c (mono_array_to_lparray): Fix minimal build with
957         cominterop disabled.
959         * marshal.c (mono_free_lparray): Same.
961 2009-08-21  Mark Probst  <mark.probst@gmail.com>
963         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
964         the hash function for the ares_htable.
966 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
968         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
969         bit for assembly flags. MS is ok with it but there is no spec anywhere
970         on its mean
972 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
974         * class.c (mono_class_create_from_typedef): Emit profiler events
975         in all cases.
977 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
979         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
980         Release memory on failure.
982 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
984         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
985         to the internal API.
987         * metadata.c (get_constraints): Use a single-linked table as we don't
988         traverse it backward. Fail and return FALSE if only of the contraint types
989         is not found.
991         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
992         to mono_metadata_load_generic_param_constraints except for having a return value.
993         This has to be done since the later is part of the public API.
995         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
996         and fail the type.
998         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
999         and fail the method.
1001 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1003         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1004         with MS broken behavior of emmitting EH section sizes without the
1005         header size added.
1007 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1009         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1010         memory until we're sure that we'll need it. This avoids leaking for
1011         broken types or duplicated instantiation.
1013 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1015         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1016         mistake.
1018 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1020         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1021         and expected size calculation.
1023 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1025         * class.c (mono_class_get_field_idx): Add fixme for broken
1026         behavior for types with multiple fields with the same name.
1027         I would rather fix it, but have no idea on how to generate
1028         such artifact for testing.
1030 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1032         * verify.c (verifier_load_field): We should allow references to
1033         fields to be made using the generic type definition. It's up to
1034         the loader system to fail invalid ops.
1036         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1037         are invalid.
1039 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1041         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1043         * metadata-internals.h: Fix declaration of 
1044         mono_metadata_interfaces_from_typedef_full.
1046         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1047         heap_alloc_result parameter that controls if the result should be
1048         g_malloc'd.
1050         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1051         array be g_malloc'd and properly document this public API function.
1053 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1055         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1056         remove METHOD_HEADER_TINY_FORMAT1.
1058         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1060         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1062         Both spec and MS uses only 2 bits to enumerate the kind of header.
1063         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1064         is superfluous, only used for tiny headers with odd code lengths.
1066         This change also make sure that mono doesn't wronly interpret bit 2
1067         of fat header flags, which is currently reserved.
1069 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1071         * metadata.c (do_mono_metadata_parse_type): Do error
1072         checking for element types. Don't abort if presented
1073         with a broken type kind.
1075 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1077         * metadata.c (mono_metadata_parse_method_signature_full):
1078         Gracefully fail bad vararg signatures.
1080 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1082         * profiler.c:
1083         * class.c: Fix warnings for uninitialized variables.
1085 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1087         * icall.c: Fix _NSGetEnviron method declaration warning.
1089 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1091         * icall.c:
1092         * reflection.c: Make bitwise checks explicit.
1094 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1096         * debug-helpers.c:
1097         * marshal.c: Fix printf warnings.
1099 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1101         * reflection.c (encode_cattr_value): Fix a warning.
1103 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1105         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1106         of array bounds.
1108 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1110         * loader.c (mono_method_signature): Don't assert on broken
1111         signature. Print a more useful error message.
1113 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1115         * loader.c (mono_method_get_marshal_info): Assert if
1116         signature is invalid. Bounds check stores to the
1117         mspecs array;
1119 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1121         * loader.c (field_from_memberref): Fix warning.
1123 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1125         * loader.c (mono_method_get_param_names): Check if signature
1126         is null. Don't store beyond the size of the name array.
1128 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1130         * loader.c (mono_get_method_constrained): Check if signature
1131         is null.
1133 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1135         * loader.c (mono_loader_set_error_bad_image): Improve
1136         error messages.
1138 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1140         * loader.c (mono_get_method_full): Convert an assertion
1141         into a loader error.
1143 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1145         * class-internals.h, class.c: Better naming and documentation.
1147 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
1149         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
1150         obj is NULL.
1152 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1154         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
1155         parsing fails.
1157 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1159         * loader.c (mono_loader_error_prepare_exception): Handle missing field
1160         errors with no class set.
1162         * loader.c (field_from_memberref): If the field signature is of the wrong
1163         type fail with a MissingFieldException instead of a BadImageException as
1164         this is the behavior observed on MS. 
1166 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1168         * loader.c (field_from_memberref): Don't crash if either the field
1169         signature or the typespec class are invalid.
1171 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1173         * verify.c (verifier_load_field): Don't allow field related
1174         ops to reference fields on generic type definition.
1176 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1178         * metadata-verify.c: Add new warning level for errors specified
1179         by ECMA 335 but that MS ignores.
1181         * metadata-verify.c (verify_method_table): Make compiler controled
1182         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
1183         this check is safe because the end result will only be some visibility
1184         exceptions been thrown.
1186 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1188         * verify.c (get_boxable_mono_type): Don't allow the
1189         use of the generic type definition on boxed type positions.
1191         Fixes #531237.
1193 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1195         * threadpool.c: Make sure no cross-domain references remain in
1196         ares_htable or the arrays that are thrown away when resizing.
1198 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1200         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
1201         list of classes for which we have to unregister reflection_info
1202         with the GC and which are not in the namespace cache.
1204         * reflection.c (mono_reflection_initialize_generic_parameter): Add
1205         the class to the list.
1207 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1209         * domain.c (mono_domain_free): Unregister the GC roots in
1210         MonoDomain.
1212 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1214         * reflection.c (mono_reflection_type_get_handle): Fix typo.
1216 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1218         * class.c: Add mono_class_get_field_from_name_full which does
1219         the same as mono_class_get_field_from_name but does check field
1220         signature as well.
1222         * class-internals.h: Export mono_class_get_field_from_name_full as
1223         part of the internal API.
1225         * loader.c (field_from_memberref): Search fields by name and signature
1226         as it's valid to have two fields with same name but different types.
1228         Fixes #528055.
1230 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
1232         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
1234         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
1236         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
1237         System.Type.
1239 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
1241         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
1243         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
1245 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1247         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
1248         to sgen-scan-object.h, which can be included and parameterized via
1249         macros.
1251         * Makefile.am: sgen-scan-object.h added.
1253 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1255         * gc.c: #define GC_dont_gc if we're compiling with SGen.
1257 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1259         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
1260         before clearing a domain in the GC.
1262 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1264         * exception.c (mono_exception_from_name_domain): Actually create
1265         the exception in the specified domain.
1267         * appdomain.c (mono_domain_create_appdomain_internal): Create the
1268         OutOfMemoryException a bit later so that the domain is inialized
1269         "enough" that it works.
1271 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1273         * threads.c (thread_cleanup): Clean up the cached_culture_info
1274         array to prevent cross-domain references.
1276 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
1278         * metadata.c: more documentation for MonoType accessors.
1280 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
1282         Fix incorrect size definitions where the tail array isn't a list
1283         of pointers
1284         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
1285         define size.
1286         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
1287         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
1288         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
1290 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1292         * reflection.h:
1293         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
1295 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1297         * metadata.c:
1298         * loader.c:
1299         * metadata-internals.h:
1300         * method-builder.c:
1301         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
1303 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1305         * cominterop.c:
1306         * metadata.c:
1307         * metadata.h:
1308         * loader.c:
1309         * marshal.c:
1310         * reflection.c: #define for sizeof in MonoType and
1311         MonoMethodSignature.
1313 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1315         * domain.c:
1316         * domain-internals.h: add and use #define's instead of sizeof()
1317         for MonoJitInfo and MonoJitInfoTable.
1319 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1321         * object.c:
1322         * class.h: use #define instead of sizeof() for MonoRemoteClass.
1324 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1326         * metadata.c:
1327         * metadata.h:
1328         * object.c:
1329         * class-internals.h:
1330         * generic-sharing.c:
1331         * marshal.c: use a #define instead of sizeof() for a few
1332         structures that use a zero-length array.
1334 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
1336         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
1337         to handle inflated generic methods.
1339         * appdomain.c: Bump corlib version.
1341         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
1342         instances.
1344         * reflection.c (fixup_method): Same
1346         * reflection.c (resolve_object): Same.
1348         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
1349         g_error and a decent message.
1351 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
1353         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
1354         from the object because it could not yet be available globally
1355         (it happens if the profiler tries to create a gchandle on the
1356         MonoThread object of a thread that is still registering itself
1357         with the runtime).
1359 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
1361         * reflection.c (mono_generic_class_get_object): Initialized the
1362         managed type arguments array.
1364         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
1366         * appdomain.c: Bump corlib version.
1368 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
1370         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
1371         #527902.
1373 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
1375         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1376         Avoid a crash if synch_cs is not set.
1377         
1378         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1379         Handle the case when the handle is 0.
1381         * appdomain.c: Bump corlib version.
1383 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
1385         * reflection.c (mono_type_get_object): Fix a warning.
1387 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1389         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
1390         descriptor here.  We assume it's already been computed.
1392         * generic-sharing.c (instantiate_other_info): Compute the GC
1393         descriptor for info type MONO_RGCTX_INFO_KLASS.
1395 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1397         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
1398         type, so don't use MONO_OBJECT_SETREF to set a field.
1400 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1402         * gc.c: We were missing one case where invoking a finalizer would
1403         not reset the domain.  Also, in the finalizer thread loop, assert
1404         that we're in the root domain.
1406 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1408         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
1409         if the type is not an array.
1411 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1413         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
1414         method bound to the declaring type of the method. Raise an exception
1415         if the type is not a generic param.
1417 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1419         * class.c (print_unimplemented_interface_method_info): Print the
1420         full type name.
1422         * class.c (mono_class_setup_vtable_general): When dealing with a
1423         generic instance first check if the generic type definition is
1424         not broken.
1426 2009-02-11 Tom Hindke <tom_hindle@sil.org>
1428         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
1430         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
1432         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
1434         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
1436         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
1438         Code is contributed under MIT/X11 license
1440 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
1442         * verify.c: Fix naming of stelem and ldelem.
1444 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1446         * generic-sharing.c: Replace the templates lock with the loader
1447         lock because of very hard to resolve deadlock issues.
1449 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
1451         * icall.c (ves_icall_Type_GetMethodsByName): Use 
1452         mono_class_get_vtable_size () instead of accessing klass->vtable_size
1453         directly. Fixes #525338.
1455         * class.c (mono_class_get_vtable_size): New helper function.
1457         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
1458         the field belongs to the type. Fixes #525733.
1460 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1462         * sgen-gc.c: When we stop a thread and its stack top is not within
1463         its allocated stack (because it's in an altstack signal handler),
1464         restart it and stop it again, until it is.
1466 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1468         * sgen-gc.c: Take a thread's stack top and registers from the
1469         sigcontext in the suspend signal handler.
1471         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
1472         stuff to sgen-archdep.h.
1474         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
1475         caller, because have code in sgen-archdep.h to acquire that data.
1477 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
1479         * profiler.c, profiler.h, profiler-private.h:
1480         Added support for keeping track of code chunks and buffers.
1482 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
1484         * metadata-verify.c: Fix endianness problems on decoding functions.
1485         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
1487 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1489         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
1490         schema for vectors and one dimension SZARRAY.
1492 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1494         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
1495         schema for vectors and one dimension SZARRAY.
1497 2009-07-27  Mark Probst  <mark.probst@gmail.com>
1499         * icall-def.h, thread-types.h, threads.c: New separate icalls for
1500         Interlocked.(Compare)Exchange with object arguments, which invoke
1501         write barriers.
1503 2009-07-26  Miguel de Icaza  <miguel@novell.com>
1505         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
1506         passed invalid arguments.   Fixes another crasher in the
1507         Silverlight test suite.
1509         * class.c (mono_class_array_element_size): Return 0 for the size
1510         of the class;  This fixes the crasher exposed by :
1512         typeof (void).MakeArrayType ();
1514         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
1515         if there is no method to dereference.    Put all the code that
1516         depends on this inside the if (method) block.
1518         This fixes the crasher exposed by Microsoft's Silvelright CLR test
1519         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
1521         With this change, we pass the test.
1522         
1523         * reflection.c (mono_reflection_sighelper_get_signature_local):
1524         Only dereference the assembly if it has been set.    Fixes a
1525         crasher exposed by #525328
1527 2009-07-25  Mark Probst  <mark.probst@gmail.com>
1529         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
1530         don't perform the store in mono_gc_wbarrier_generic_nostore().
1531         Remove the second argument (value), which is not needed.
1533 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
1535         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
1536         the build.
1538         * boehm-gc.c: Ditto.
1539         
1540 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1542         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
1543         not perform the store itself.  Introduce
1544         mono_gc_wbarrier_generic_nostore(), which is the same as
1545         mono_gc_wbarrier_generic_store(), except it doesn't perform the
1546         store.
1548 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1550         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
1551         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
1552         we still need the memcpy().
1554 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1556         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
1557         so that big arrays are handled correctly.  Always use
1558         safe_object_get_size() to calculate array object sizes, which
1559         takes bounds into account.
1561 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1563         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
1564         GC descriptor is computed before we use it.
1566 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1568         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
1569         write barrier if necessary.
1571 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1573         * icall-def.h, icall.c, thread-types.h: New separate icall for
1574         VolatileWrite(object&,object) that uses a write barrier.
1576         * console-unix.c, file-io.c, icall.c, threads.c: Use write
1577         barriers in icalls which write to "ref" or "out" arguments.
1579 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
1581         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
1582         handler in a separate icall, to reduce the size of the wrappers.
1584 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1586         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
1588 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1590         * metadata-verify.c (parse_field): Allow byref field.
1592         * metadata-verify.c (parse_locals_signature): Allow byref locals.
1594         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
1596 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1598         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
1599         Fixes #522784.
1601 2009-07-20  Robert Jordan  <robertj@gmx.net>
1603         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
1604         Fix invalid IL in valuetype handling (STOBJ must push the
1605         corresponding class). Fixes bug #523149.
1607         Code is contributed under MIT/X11 license.
1609 2009-07-20  Geoff Norton  <gnorton@novell.com>
1611         * gc.c: Use proper semaphores where available on posix and darwin.
1613 2009-07-19  Geoff Norton  <gnorton@novell.com>
1615         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
1617 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
1619         * refletion.c (is_sre_usertype): Change name to is_usertype and
1620         invert it's result so it returns true if the type is an user type
1621         and not the opposite.
1623         * reflection.c (is_*_type): Change all of those to use new macro
1624         check_corlib_type_cached that cached the type lookup so we don't
1625         need to do string comparisons all the type. Changed the signature
1626         to take a MonoClass instead.
1628         * reflection.c: Change mono_image_create_token and resolve_object
1629         to use is_sre_* functions.
1631 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1633         * sgen-gc.c: Check for writes to the stack in the managed
1634         wbarrier as well.
1636 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1638         * sgen-gc.c: When a thread is unregistered, don't free its remsets
1639         but put them on a list which is processed with the other thread's
1640         remsets.
1642 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1644         * sgen-gc.c: Fix and enable the internal allocator instead of
1645         using malloc/free (which causes deadlocks).
1647 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1649         * refletion.c: Fix builds with SRE disabled by adding a minimal
1650         implementation of mono_reflection_type_get_handle.
1652 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1654         * refletion.c: Make mono_reflection_type_get_handle non static.
1656         * object-internals.h: Export mono_reflection_type_get_handle.
1658         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
1659         unmanaged handle using mono_reflection_type_get_handle.
1661 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1663         * refletion.c: Replace all reads of MonoReflectionType::type with
1664         calls to mono_reflection_type_get_handle. Only the functions that
1665         deal with constructing TypeBuilder::type have not been changed
1666         because they have to deal with NULL values.
1668         This is a first step into supporting reflection types that don't
1669         map directly into their unmanaged counterpart.
1671 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1673         * metadata-verify.c (parse_locals_signature): Don't complain
1674         on signature with zero locals since MS generates it and doesn't
1675         bother with.
1677 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1679         * reflection.c (mono_image_get_array_token): Resolve return
1680         type using mono_reflection_type_get_handle.
1682         * reflection.c (mono_image_get_array_token): Resolve array method
1683         parent type using mono_reflection_type_get_handle.
1685 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
1687         * reflection.c (mono_image_basic_init): Applied patch from
1688         <Dax@daxxfiles.net>. Set the public key token from the assembly
1689         builder. Fixes #518909.
1691         * appdomain.c: Bump corlib version.
1693 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
1695         * class.c (mono_class_needs_cctor_run): Make this return false if
1696         the class has no cctor.
1698 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1700         * sgen-gc.c: When the minor GC needs to allocate a new section,
1701         invoke the major GC afterwards.
1703 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
1705         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
1706           Applying the window_style field to the SHELLEXECUTEINFO struct.
1708         Code is contributed under MIT/X11 license.
1710 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1712         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
1713         locking earlier.  Fix it in the managed allocator by making sure
1714         that no thread is stopped there before the GC runs.  If we do stop
1715         a thread there, we restart it and let it run a but, until it stops
1716         somewhere else.
1718         * gc-internal.h, gc.c: Function for getting the IP from a signal
1719         context via a function registered by mini.
1721 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
1723         * object-internals.h (MonoIntPtr): New structure describing a boxed
1724         IntPtr.
1726         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
1727         returns. Fixes #519953.
1729         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
1731 2009-07-09  Mark Probst  <mark.probst@gmail.com>
1733         * class-internals.h, generic-sharing.c: New RGCTX info type for
1734         getting a remoting invoke with check wrapper.
1736 2009-07-07  Geoff Norton  <gnorton@novell.com>
1738         * icall-def.h: Fix the enable-minimal build.
1740 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1742         * object-internals.h: Add MonoReflectionDerivedType.
1744         * reflection.c: Implement support for PointerType.
1745         Fixed tons of warnings.
1747 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1749         * object-internals.h: Add MonoReflectionByRefType.
1751         * reflection.c: Implement support for ByRefType.
1753 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1755         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
1757         * object-internals.h: Add MonoReflectionArrayType and
1758         mono_reflection_create_unmanaged_type.
1760         * reflection.c: Implement support for ArrayType.
1762 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1764         * metadata-verify.c (is_valid_method_header): Parse EH block
1765         flags correctly.
1767 2009-07-03  Mark Probst  <mark.probst@gmail.com>
1769         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
1770         processing the disappearing links, and process disappearing links
1771         in a loop until no new objects are copied.
1773 2009-07-03  Mark Probst  <mark.probst@gmail.com>
1775         * object.c (handle_enum): Invoke the write barrier when copying
1776         value type instances.
1778         * sgen-gc.c: Register remsets for unmanaged write barriers only
1779         when the address written to is actually on the heap.  This makes
1780         set_value() in object.c work without requiring that the result be
1781         on the heap.
1783 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
1785         The runtime wrappers are all bound to a given type that must
1786         exist in the same image. For regular images we use the <Module>
1787         type, which is required to exist for all images.
1789         The <Module> type can't be used for dynamic images because it
1790         might not exist at the time the wrapper is required, so we create
1791         a synthetic type to use instead.
1793         The current code works because of the 2 stage setup of MonoClass,
1794         but once this is gone it will no longer work.
1796         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
1798         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
1800         * object-internals.h: Export mono_image_set_wrappers_type icall
1801         as part of the internal API.
1803         * marshal.c (get_wrapper_target_class): If the image is dynamic,
1804         use MonoDynamicImage::wrappers_type instead of the <Module> type.
1806         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
1807         image wrappers_type to the provided value.
1809 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
1811         * appdomain.c (deregister_reflection_info_roots): No need
1812         to use the image lock here.
1814 2009-07-02  Mark Probst  <mark.probst@gmail.com>
1816         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
1818 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
1820         * threads.c: Store the thread start argument in a hash table instead of
1821         registering it as a root, as libgc doesn't support unregistering roots
1822         under windows, leading to 'too many root sets' errors when many threads
1823         are created.
1825         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
1826         shutdown, they can still be referenced by the other dying objects.
1827         Fixes #514506.
1829 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1831         * socket-io.c: DontLinger does not allow LingerOptions.
1833 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1835         * metadata-verify.c: The spec doesn't mention that it's possible to add
1836         custom attribute to a generic parameter. Fixed.
1838 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1840         * class.c (inflate_generic_type): Don't crash while trying to output a message
1841         on why we're aborting.
1843 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1845         * socket-io.c: DontLinger can take an int or a boolean too.
1847 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
1849         * gc.c: check for a null argument to SuppressFinalize () and
1850         ReRegisterForFinalize ().
1852 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1854         * loader.c (method_from_methodspec): Call into the verifier to check
1855         the signature.
1857         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
1859         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
1860         part of the internal API.
1862 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1864         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
1865         the signature.
1867         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
1869         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
1870         part of the internal API.
1872 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1874         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
1875         the signature.
1877         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
1878         blob verification.
1880         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
1881         part of the internal API.
1883 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1885         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
1886         when doing basic verification. 
1888         This check must be done since the runtime peeks into signatures in much
1889         more places than it does decoding so it makes sense to ensure that all
1890         pointers to blob objects are well formed.
1892 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1894         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
1895         Use proper overflow dectection. Fix usage of it.
1897 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1899         * loader.c (field_from_memberref): Call into the verifier to check
1900         the signature.
1902         * loader.c (mono_method_get_signature_full): Same.
1904         * loader.c (method_from_memberref): Same.
1906         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
1908         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
1909         part of the internal API.
1911 2009-06-25  Mark Probst  <mark.probst@gmail.com>
1913         * threadpool.c (mono_thread_pool_add): If the domain is unloading
1914         or unloaded, still return an AsyncResult, but don't add it to the
1915         threadpool.
1917 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1919         * threads.c: fix missing colon when DEBUG is defined.
1921 2009-06-25  Mark Probst  <mark.probst@gmail.com>
1923         * threadpool.c: Don't add new calls to a threadpool if the domain
1924         of the call is unloading or unloaded.  When dequeuing a job, null
1925         the reference in the queue.
1927 2009-06-25  Mark Probst  <mark.probst@gmail.com>
1929         * sgen-gc.c (null_link_in_range): Add the dislink for the old
1930         generation if an object was moved.
1932 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
1934         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
1935           parameters of type SAFEARRAY[VARIANT].
1937         * reflection.c (encode_marshal_blob): Properly generate element type
1938           (SafeArraySubType marshal attribute option).
1940         Code is contributed under MIT/X11 license.
1942 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
1944         * reflection.c: in mono_method_clear_object () really ensure all the
1945         objects are removed.
1947 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1949         * loader.c (mono_method_signature): Call into the verifier to check
1950         the method signature.
1952         * metadata-verify.c (verify_method_table): Move signature verification
1953         to verify_method_table_full.
1955         * metadata-verify.c: Add mono_verifier_verify_method_signature.
1957         * verify-internals.h: Export mono_verifier_verify_method_signature as
1958         part of the internal API.
1960 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1962         * loader.c (mono_method_get_header): Call into the verifier to
1963         check the method header.
1965         * metadata-verify.c: Add mono_verifier_verify_method_header.
1967         * verify-internals.h: Export mono_verifier_verify_method_header as
1968         part of the internal API.
1970 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1972         * class.c (mono_class_find_enum_basetype): Call into the verifier to
1973         check the field signature. Replace an assert with an explicit check.
1975         * class.c (mono_class_setup_fields): Call into the verifier to check
1976         the field signature.
1978         * metadata-verify.c: Add mono_verifier_verify_field_signature.
1980         * verify-internals.h: Export mono_verifier_verify_field_signature as
1981         part of the internal API.
1983 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1985         * class.c (mono_class_find_enum_basetype): Simplify this function
1986         by moving code outside of the loop and not decoding static fields.
1988 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1990         * metadata-verify.c (verify_typedef_table): Check the extends
1991         token here. Move to here a flags check from verify_typedef_table_full.
1993 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
1995         * metadata-verify.c (is_valid_method_header): Fix a warning.
1997         * metadata-internals.h (MonoImage): Remove the unused 
1998         static_rgctx_invoke_wrapper_cache.
2000         * image.c marshal.c: Ditto.
2002 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2004         * image.c (do_mono_image_load): Enable table data verification.
2006 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2008         * metadata-verify.c (is_valid_constant): Fix nullref check.
2010 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2012         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2014 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2016         * sgen-gc.c: Managed allocation with pthreads TLS.
2018         * threads.c, threads-types.h: Functions for the JIT to tell the
2019         runtime whether it supports the MONO_TLS opcode.
2021 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2023         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2024         without methods.
2026 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2028         * metadata-verify.c (is_valid_constant): Fix the string length check.
2029         Use safe overflow checking. Add decent error messages.
2031 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2033         * metadata-verify.c: Move remaininh blob checks to the offline
2034         verification path.
2036 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2038         * metadata-verify.c: Move more blob checks to the offline verification
2039         path.
2041 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2043         * object-internals.h : Adding interrupt_on_stop field.
2045         * threads.c (mono_thread_request_interruption) : On Windows exit the
2046           thread if interrupt_on_stop is set.
2048         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2049          Removing old interrupt logic and setting the interrupt_on_stop for the
2050          thread when calling accept.
2052         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2053          setting the interrupt_on_stop for the thread when calling accept.
2055         Contributed under MIT/X11 license.
2057 2009-06-20  Martin Baulig  <martin@ximian.com>
2059         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2061 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2063         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2064         running in no-exec mode.
2066 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2068         * metadata-verify.c (verify_method_table): Move header
2069         checking to verify_method_table_full.
2071         * metata-verify.c (mono_verifier_verify_full_table_data):
2072         Call verify_method_table_full.
2074 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2076         * metadata-verify.c (verify_field_table): Move signature
2077         checking to verify_field_table_full.
2079         * metata-verify.c (mono_verifier_verify_full_table_data):
2080         Call verify_field_table_full.
2082 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2084         * metadata-verify.c (verify_typedef_table): Move remaining
2085         stuff to verify_typedef_table_full.
2087 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2089         * metadata-verify.c: Kill is_corlib from VerifyContext.
2090         It is only used by the offline mode.
2091         So we better remove it from the runtime path.
2093 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2095         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2096         function that perform the offline metadata verification steps.
2098         * metadata-verify.c (verify_typedef_table): Move some checks to
2099         verify_typedef_table_full and make it been called by new function
2100         mono_verifier_verify_full_table_data.
2102         * pedump.c: Call mono_verifier_verify_full_table_data.
2104         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2105         part of the internal API.
2107 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2109         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2110         check.
2112         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2113         flags bits. SupportLastError was confused as bit 7 instead of 6.
2115         * metadata-verify.c (verify_implmap_table): Fix import scope verification
2116         to check against the module ref table instead of module.
2118         * metadata-verify.c (verify_implmap_table): Fix corlib check.
2120         * pedump.c: Call mono_image_load_names.
2122 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2124         * image.c: Extract mono_image_load_names from do_mono_image_load.
2126         * metadata-internals.h: Export mono_image_load_names as part of
2127         the internal API.
2128         
2129 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2131         * metadata.c (mono_metadata_cleanup): Free the generic method cache
2132         first, as it could reference data in the other caches.
2134 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2136         * metadata-verify.c: Finished with method header verification.
2138 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2140         * metadata-verify.c: Added more header verification code.
2141         Now only EH clauses are missing.
2143 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2145         * marshal.c (get_runtime_invoke_type): Don't share primitive types
2146         for return values.
2148 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2150         * metadata-verify.c: Initial method header verification.
2152 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2154         * metadata-verify.c (verify_import_table): The IAT contents
2155         might end been patched by the windows DL when running with
2156         coree enabled.
2158 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
2160         * class.c (mono_class_from_typeref): If the enclosing type is not
2161         found return null instead of crashing. Fixes #508487.
2163 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
2165         * normalization-tables.h : updated to the latest unicode charcter
2166           data.
2167         * appdomain.c : bump corlib version.
2169 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
2171         * class.c (mono_class_from_name): Fix support for assembly references
2172         in the EXPORTEDTYPE table. Fixes #511704.
2174 2009-06-13  Geoff Norton  <gnorton@novell.com>
2176         * domain.c: Ensure that mono_domain_assembly_open actually opens the
2177         assembly in the target domain.
2179 2009-06-12  Robert Jordan  <robertj@gmx.net>
2181         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
2182         because "this" of the managed signature has become an
2183         ordinary parameter in the unmanaged signature.
2185 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
2187         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
2188         field for owner-less generic containers.
2190         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
2191         image field of the owner-less generic containers created here.
2193         * metadata.c (mono_metadata_load_generic_params): Ditto, the
2194         contain is ownerless until the caller sets its owner.
2196         * metadata.c (type_in_image): Handle owner-less generic containers
2197         correctly.
2198         
2199 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2201         * image.c (mono_image_close): Support debug_assembly_unload for
2202         dynamic images too.
2204 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
2206         * class.c: Fix some typos in comments.
2208 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2210         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
2212         * threads.c (mono_thread_execute_interruption): Avoid creating the
2213         abort exception object while holding the synch_cs lock.
2215 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2217         * metadata-verify.c: Verify basic cattr content.
2219 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2221         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
2222         nested types.
2223         
2224         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
2225         support for nested types. Fixes #511704.
2227 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2229         * metadata-verify.c: Verify methodspec signatures.
2231 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2233         * metadata-verify.c: Verify typespec signatures.
2235 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
2237         * metadata.c (free_inflated_method): Call 
2238         mono_marshal_free_inflated_wrappers (), which was missed earlier.
2240 2009-06-08  Miguel de Icaza  <miguel@novell.com>
2242         * mono-config.c: Small change to report the PPC64/ILP32 model.
2244 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2246         * metadata-verify.c (parse_type): Check szarray.
2248 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2250         * metadata-verify.c (parse_type): Check fnptr.
2252 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2254         * metadata-verify.c (parse_type): Check generic instances.
2256 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2258         * metadata-verify.c (parse_type): Check array shape.
2260 2009-06-05  Robert Jordan  <robertj@gmx.net>
2262         * class.c (mono_class_create_from_typedef): Check only for
2263         mscorlib's System.Array.
2265 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2267         * metadata-verify.c (parse_type): Check pointer, class/valuetype
2268         and generic params. 
2270         * metadata-verify.c (parse_field): Check the signature.
2272 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2274         * metadata-verify.c: Implement locals signature check.
2276 2009-06-04  Marek Safar  <marek.safar@gmail.com>
2278         * domain.c: Add .NET 4.0 Beta 1 version.
2280 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
2282         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
2283           For QueryInterface on CCWs consider the base class
2284           interfaces as well.
2286         Code is contributed under MIT/X11 license.
2288 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2290         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
2292         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
2293         used.
2295         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
2296         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
2298         * generic-sharing.c (inflate_other_data): Ditto.
2299         
2300 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2302         * metadata-verify.c: Implement property signature check.
2304 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2306         * sgen-gc.h: Register saving support for PPC.
2308 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2310         * sgen-gc.c: Fixed a pthread TLS screwup.
2312 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2314         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
2315         supported.
2317 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2319         * sgen-gc.c: Disable TLA and managed allocation if the __thread
2320         keyword is not supported.
2322 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2324         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
2325         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
2326         the inflated method is freed. Fixes #508389.
2328         The code is contributed under the MIT/X11 license.
2329         
2330 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
2332         * marshal.c (get_wrapper_target_class): New helper function.
2333         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
2334         the <Module> class of the image. Fixes #509049.
2336 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2338         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
2339         Check if the thread was interrupted and proccess it straight away.
2340         Makes abortion much more responsive.
2342 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2344         * threads.c (mono_thread_execute_interruption): Use atomic cas with
2345         MonoThread::interruption_requested to match it's counterpart.
2347         Fixes a hang in abort-stress-1 on a 2 core x86.
2349         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2350         Fix warning.
2352 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2354         Change MonoImage::name_cache to be protected by the image lock
2355         instead of the loader lock.
2357         * appdomain.c (deregister_reflection_info_roots): Protect access
2358         to name_cache.
2360         * class.c (mono_image_init_name_cache): Change from the loader lock
2361         to the image lock. Check if the cache wasn't already created.
2363         * class.c: Change from the loader to the image lock.
2365         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
2366         the code to hold the image lock while iterating over name_cache and
2367         not go into mono_array_new holding it.
2369         * metadata-internals.h: Add a comment about this change.
2371 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2373         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2374         Under the 2.0 profile raise the loader error.
2376         Fixes #508532.
2378 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2380         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
2381         of ldind opcode for generic instances so we don't fail for direct wrappers.
2382         This only affect direct calls.
2384 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2386         * reflection.c (create_dynamic_mono_image): Fix warnings.
2388         * generic-sharing.c (other_info_equal): Ditto.
2389         
2390 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2392         * metadata-verify.c: Implement field signature check.
2394 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2396         * metadata-verify.c: Implement standalone signature check.
2398 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2400         * metadata-verify.c: Implement methodref signature check.
2402 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
2404         * object-internals.h (MonoRuntimeCallbacks): New structure containing
2405         callbacks supplied by the runtime.
2407         * object.c (mono_install_callbacks): New internal function to install
2408         the callbacks.
2410         * object.c (mono_create_ftnptr): Move the implementation of this to
2411         mini/.
2413         * object.c (mono_get_addr_from_ftnptr): Ditto.  
2415 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2417         * metadata-verify.c (parse_return_type): Proper byref check.
2418         * metadata-verify.c (is_valid_method_signature): Check for zero arity
2419         generic signatures and method params.
2421 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2423         * metadata-verify.c (decode_signature_header): Fix bounds check.
2425         * metadata-verify.c (parse_custom_mods): Check custom mods.
2427         * metadata-verify.c (parse_type): Do initial basic verification
2428         of valid values.
2429         
2430         * metadata-verify.c (is_valid_method_signature): Parse the generic
2431         param count.
2433 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
2435         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
2436         discarded based on their most specific definition so we set the method_slots
2437         array before checking if the method is acceptable or not.
2439         Fixes #506757.
2441 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2443         * icall.c: Free the old array when resizing a mono_ptr_array.
2445 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2447         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
2448         for the hashes whose keys are managed objects.
2450 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2452         * object-internals.h, threads.c: Set the execution context on
2453         thread start here, not in corlib.
2455         * appdomain.c: Bump corlib version.
2457 2009-05-27  Martin Baulig  <martin@ximian.com>
2459         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
2460         if `_mono_debug_using_mono_debugger' is set to make things work
2461         properly when embedding Mono.
2463 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2465         * class.c (mono_class_setup_fields): Don't mark simd types as having
2466         16 bytes alignment as the whole runtime doesn't support.
2468 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2470         * metadata-verify.c (safe_read): Use endian safe read macros.
2472 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
2474         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
2475         it is read-only when using full aot.
2477 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2479         * metadata-verify.c (is_valid_method_signature): Verify parts
2480         of the return type. Provide an error message in case of failure.
2482 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2484         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
2486 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2488         * metadata-verify.c: Include the size prefix in the bounds check.
2490 2009-05-22  Miguel de Icaza  <miguel@novell.com>
2492         * icall.c: Remove warnings.
2494         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
2495         prevent auto-detection based on GCC defines.
2497         Add PS3
2499         * metadata-verify.c: Do not include signal.h
2501         * generic-sharing.c, marshal.c: Add returns to avoid some warning
2502         messages.  Not sure why the g_assert_not_reached is not enough to
2503         quiet the compiler.
2504         
2506         * appdomain.c: Remove code that is not used when
2507         DISABLE_SHADOW_COPY is set.
2509         * image.c: use g_getenv
2511 2009-05-21  Miguel de Icaza  <miguel@novell.com>
2513         * reflection.c: Remove code that it not used with
2514         DISABLE_REFLECTION_EMIT is defined.
2516 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2518         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
2519         invoke wrappers.
2521 2009-05-20  Miguel de Icaza  <miguel@novell.com>
2523         * socket-io.c
2524         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
2525         the ifdef here and instead put that on io-layer
2527 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2529         * metadata-verify.c: Verify the generic param constraint table.
2531 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2533         * metadata-verify.c (verify_generic_param_table): Fix
2534         thinko on the valid flags bits for generic params.
2536 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2538         * metadata-verify.c: Verify the methodspec table.
2540 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2542         * metadata-verify.c: Verify the generic param table.
2544 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2546         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
2548 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2550         * sgen-gc.c: Use generation enum more consistently and use the
2551         correct generation in mono_gc_register_for_finalization().
2553 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2555         * metadata-verify.c: Verify the nested class table.
2557 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2559         * metadata-verify.c: Verify the manifest resource table.
2561 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
2563         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
2565 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
2567         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
2568         wrappers, this is now done in the JIT.
2569         
2570         * class.c (mono_set_generic_sharing_supported): New internal function.
2571         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
2573 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2575         * metadata-verify.c: Verify the exported type table.
2577 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2579         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
2581 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2583         * metadata-verify.c: Verify the file table.
2585 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2587         * metadata-verify.c (verify_assembly_table): Fix an error message.
2589         * metadata-verify.c: Verify the assemblyref table.
2591 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2593         * metadata-verify.c (verify_assembly_table): Fix the valid
2594         bits mask for flags.
2596 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
2598         * debug-helpers.c (mono_method_full_name): Print generic parameters of
2599         generic methods as well.
2601 2009-05-15  Geoff Norton  <gnorton@novell.com>
2603         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
2604         use-case and is significantly more performant than the wapi layer.
2606 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2608         * metadata-verify.c: Verify the assembly table.
2610 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2612         * metadata-verify.c: Fix rows limit check.
2614 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2616         * metadata-verify.c: Verify the fieldrva table.
2618 2009-05-13  Mark Probst  <mark.probst@gmail.com>
2620         * sgen.c: Speed up weak links and finalizers by grouping them by
2621         generation.
2623 2009-05-13  Mark Probst  <mark.probst@gmail.com>
2625         * marshal.c (delegate_hash_table_add): When overwriting an entry,
2626         free the old GCHandle (only applies to SGen).
2628 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
2630         * loader.c (mono_get_method_from_token): Avoid the expensive call to
2631         mono_metadata_load_generic_params () for non-generic methods.
2633 2009-05-12  Mark Probst  <mark.probst@gmail.com>
2635         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
2636         New function for returning a monitor's weak link if it has one.
2638         * sgen-gc.c: Remove an object's monitor's weak link (if it has
2639         one) when clearing a domain.  These can still be around because
2640         the object might not have been collected.
2642 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
2644         * gc.c: Fix a warning.
2646 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
2648         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
2649         prevous wait that resulted in a deadlock on Windows when initializing
2650         the runtime form DllMain. Also results in improved startup time.
2651         (finalizer_thread): Get rid of thread_started_event.
2652         * threads.c, threads-types.h (mono_thread_create_internal): Return the
2653         resulting MonoThread.
2655         Contributed under MIT/X11 license.
2657 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
2659         * metadata-verify.c: Verify the implmap table.
2660         Don't require that #US and #Strings be present.
2662 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
2664         * security-core-clr.c: Delegate checks are done at creation time,
2665         not a invocation time. Fix exception for Telerik Silverlight demo
2667 2009-05-11  Mark Probst  <mark.probst@gmail.com>
2669         * sgen-gc.c (need_remove_object_for_domain): Remove the special
2670         case for the Thread class.
2672         * threads.c: Do clean-up of abort exception/state in
2673         thread_cleanup() instead of Thread.free_internal().  Also clean up
2674         current_appcontext.  The reason we have to do that is because
2675         those references might point into another domain and if that
2676         domain is unloaded before the thread is finalized, they point to
2677         invalid data.
2679 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
2681         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
2682         stub signatures.
2683         
2684         Contributed unter MIT/X11 license.
2686 2009-05-09  Miguel de Icaza  <miguel@novell.com>
2688         * verify.c, metadata-verifier.c: Add support for disabling the
2689         verifier in some builds.
2691         [ Sorry, my previous commit accidentally commited some work in
2692         progress ]
2694 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
2696         * class.c (mono_class_setup_fields): Set class->field.first for
2697         generic instances.
2699 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2701         * metadata-verify.c: Verify the typespec table.
2703 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2705         * metadata-verify.c: Verify the module table.
2707 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2709         * metadata-verify.c: Verify the methodimpl table.
2711 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2713         * metadata-verify.c: Verify the property table.
2715 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
2717         * debug-helpers.c (mono_method_desc_match): Add support for generic
2718         glob patterns.
2720 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
2722         * metadata-verify.c: Verify the propertymap table.
2724 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
2726         * metadata-verify.c: Verify the event table.
2728         * metadata-verify.c (search_sorted_table): Fix offset
2729         calculation.
2731 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
2733         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
2735 2009-05-01  Mark Probst  <mark.probst@gmail.com>
2737         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
2738         because mono_delegate_free_ftnptr() needs it.
2740 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2742         * metadata-verify.c: Verify the eventmap table.
2744 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2746         * metadata-verify.c: Verify the standalonesig table.
2748 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2750         * metadata-verify.c: Verify the field layout table.
2752 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2754         * class.c (mono_type_get_name_recurse): Don't crash
2755         for ownerless generic params.
2757         * debug-helpers.c (mono_type_get_desc): Correct the format
2758         for ownerless generic params.
2760 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2762         * metadata-verify.c: Verify the class layout table.
2764 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2766         * metadata-verify.c: Verify the decl security table.
2768 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2770         * domain.c (mono_domain_set_internal_with_options): Don't do
2771         anything if the old domain is the same as the old one.  Fixes
2772         #499326.
2774 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2776         * appdomain.c: Deregister the reflection_info roots when unloading
2777         a domain.
2779         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
2780         memory allocated by a domain and frees its disappearing links.
2782         * boehm-gc.c, null-gc.c: Empty implementation of
2783         mono_gc_clear_domain().
2785 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2787         * appdomain.c (clear_cached_vtable): Free the static fields memory
2788         block.
2790 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2792         * gc.c: Set the correct domain when invoking finalizers.
2794         * appdomain.c: Set the correct domain when creating threads.
2796 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2798         * sgen-gc.c: Fix skip size for vectors.
2800 2009-05-03  Martin Baulig  <martin@ximian.com>
2802         * mono-debug-debugger.c
2803         (mono_debugger_check_breakpoints): Check class init handlers even
2804         if we don't have any method load handers.
2806 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
2808         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
2809         returning refonly assemblies if refonly is FALSE. Fixes #499013.
2811 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
2813         * metadata-verify.c: Verify the field marshal table.
2815 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
2817         * metadata-verify.c: Verify the custom attribute table.
2819 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2821         * metadata-verify.c: Verify the constant table.
2823 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2825         * metadata-verify.c: Verify the memberef table.
2827 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2829         * metadata-verify.c (get_coded_index_token): Remove
2830         dead argument.
2832 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2834         * metadata-verify.c: Verify the interfaceimpl table.
2836 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2838         * verify.c: Improve error message.
2840         * debug-helpers.c (mono_type_get_desc): Harden the code that
2841         deals with VAR and MVAR.
2843 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
2845         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
2846         part of #498692.
2848 2009-04-23 Tom Hindle <tom_hindle@sil.org>
2850         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
2851         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
2853 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
2855         * security-core-clr.c: Avoid redundant checks for platform code, 
2856         e.g. check for method and for class (very common) and check
2857         for class and outer class (less common)...
2859 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
2861         * reflection.c: Avoid returning random cattrs for synthetic methods.
2862         Fixes #498545.
2864 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2866         * assembly.c: assemblies in the GAC should never be shadow-copied.
2868 2009-04-26  Mark Probst  <mark.probst@gmail.com>
2870         * domain.c, domain-internals.h: Disable
2871         track_resurrection_{objects,handles}_hash in MonoDomain if using
2872         SGen.
2874 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2876         * metadata-verify.c: Verify the param table.
2878 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2880         * metadata-verify.c (verify_typedef_table): Range check FieldList and
2881         MethodList.
2883         * metadata-verify.c (verify_method_table): Proper check the ParamList
2884         field.
2886 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2888         * metadata-verify.c (verify_method_table): Check for runtime
2889         implemented functions such as delegate .ctors. Remove spurious
2890         printf.
2891         
2892 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2894         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
2896 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2898         Don't allocate MonoGenericInfo for ownerless generic params.
2899         * class-internals.h (MonoGenericParam::info): Move field to ...
2900         (MonoGenericParamFull): ... this.  New struct.
2901         (MonoGenericContainer::type_params): Change type to
2902         MonoGenericParamFull.
2903         (MonoGenericParam, MonoGenericContainer): Update accessors.
2904         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
2905         'info' field for ownerless generic param.
2906         (mono_metadata_load_generic_params): Update to changes.
2907         * reflection.c (mono_reflection_create_generic_class): Likewise.
2908         (reflection_methodbuilder_to_mono_method): Likewise.
2909         (mono_reflection_initialize_generic_parameter): Likewise.
2911 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2913         Don't use MonoGenericParamInfo for ownerless generic params.
2914         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
2915         use ParamInfo class at all.
2916         (mono_class_from_generic_parameter): Use them.
2917         (make_generic_param_class): Fix a couple of instances where 'pinfo
2918         == NULL' wasn't handle.
2920 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2922         * class.c (make_generic_param_class): Carve out of ...
2923         (mono_class_from_generic_parameter): ... here.
2925 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2927         Simplify mono_class_from_generic_parameter
2928         * class-internals.h (MonoGenericParamInfo::token): New field.
2929         * metadata.c (mono_metadata_load_generic_params): Initialize it
2930         from metadata.
2931         * class.c (mono_class_from_generic_parameter): Use it instead of
2932         searching through metadata.
2934 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2936         * metadata-verify.c: Add verification of the method table.
2938 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2940         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
2941         Delegate::Invoke optimization.
2943 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2945         * appdomain.c (mono_domain_create_appdomain_internal): Free the
2946         string returned by get_shadow_assembly_location_base.
2948         * appdomain.c (get_shadow_assembly_location_base): Add a comment
2949         about caller's ownership.
2951 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2953         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
2954         reflection memory on domain unload.
2956         * domain.c (mono_domain_free): Don't free refobject_hash, let the
2957         reflection cleanup code do it.
2959         * domain-internals.h: Add mono_reflection_cleanup_domain.
2961         This fixes a memory leak for managed mirrors of reflection objects
2962         on domain unload. 
2964 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
2966         * metadata-verify.c: Implement more verification of the field table.
2968 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
2970         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
2971         doesn't try to parse the input assembly, which can be broken.
2973 2009-04-23  Mark Probst  <mark.probst@gmail.com>
2975         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
2976         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
2977         by using the lowest bit in the link to store whether the link is
2978         tracked.  Move the track_resurrection hashes into boehm-gc.c.
2980 2009-04-22  Miguel de Icaza  <miguel@novell.com>
2982         * Makefile.am: Split the console support in platform specific code
2983         and put together a framework for making this easy in the future so
2984         that we can start splitting code instead of having a mess of PLATFORM_WIN32
2986 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
2988         * pedump.c: Fix a warning.
2990 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
2992         * verify.c (mono_delegate_type_equal): Compare valuetypes using
2993         mono_class_from_mono_type to avoid bad interactions with the dual representation
2994         of the generic type definition.
2996 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
2998         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
2999         get the MonoClass for the call context type as it might be a generic
3000         instance.
3002         Fixes #491483.
3004 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3006         * object-internals.h: The Thread object has no execution_context
3007         member anymore.
3009         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3010         the execution context.
3012         * appdomain.c: Bump corlib version.
3014 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3016         * verify.c (do_newobj): Improve error message.
3018 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3020         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3021         is nested in the filter block.
3023         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3024         block is not fully nested.
3026         Fixes #495656.
3028 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3030         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3031         not MonoType to check for equality of valuetypes as the generic type
3032         definition allows for two different encodings: the generic type definition
3033         class or a generic instance over the GTD arguments.
3035         Fixes #496175.
3037 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3039         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3041         * verify.c (do_initobj): Improve error message.
3043 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3045         * metadata-verify.c: Enable pe verification as the issue with #496453
3046         is that the authenticode data directory have a different unspecified
3047         format. Ignore it for now.
3049         * pedump.c: Run the metadata verifier together with the IL verifier.
3051         Fixes ##496453.
3053 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3055         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3057 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3059         * class.c (can_access_type): Check visibility against
3060         the element type for pointers and arrays.
3062         Fixes #496150.
3064 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3066         * metadata-verify.c: Fix cli and table verification to use information
3067         from the MonoImage. A lot of duplicated code got killed.
3069 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3072         This patch starts to integrate the metadata verifier with the runtime code.
3074         This patch causes major regression in functionality for the metadata verifier
3075         as cli and table verification are disabled since they require to be ported to
3076         use MonoImage information.
3078         * image.c (do_mono_image_load): Split the code in this function
3079         into mono_image_load_pe_data and mono_image_load_cli_data.
3080         Add     care_about_pecoff parameter to not load pecoff data.
3081         Call into the metadata verifier for pecoff and cli verification.
3083         * image.c (mono_image_open_raw): New function that doesn't perform
3084         any parsing of the image contents.
3085         
3086         The reason for the 3 new functions is to give pedump better control
3087         into the interaction with the verifier.
3089         * metadata-internals.h: Add new functions from image.c as part of the
3090         internal mono API.
3092         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3093         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3094         to make those functions work together with the runtime.
3096         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3097         true if the image needs to be verified.
3099         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3101         * pedump.c: Use new metadata verifier API.
3103 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3105         * object.c (mono_install_vtable_trampoline): Make this receive a
3106         trampoline creation function instead of trampoline, allowing the JIT
3107         to use a different trampoline for each vtable.
3109 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3111         * object.c (mono_raise_exception): Don't reset the thread abort
3112         exception state here.
3114 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3116         * icall-def.h: New icall for getting the thread abort exception
3117         state for a thread.
3119         * object.c, thread.c, object-internals.h: A thread's abort
3120         exception state is now a GC handle.  To get the object it stands
3121         for, we must move it into the current app domain, if it's
3122         different than the one where it originated from.
3124         * appdomain.c: Bump corlib version.
3126         * domain.c, domain-internals.h: New function for setting the
3127         domain and migrate the thread abort exception or not.
3129 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3131         * metadata-verify.c: Add initial verification of the
3132         field table.
3134 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3136         * metadata-verify.c: Add a macro to conditionally enable
3137         dumping of verification information. Add  make_coded_token
3138         and search_sorted_table to enable search sorted tables
3139         by a given coded token.
3141 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3143         * metadata-verify.c: Add array mapping from table index
3144         to description offset. Add get_col_offset and get_col_size
3145         functions.
3147 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3149         * metadata-verify.c: Add remaining table descriptions offsets.
3150         Add remaining coded index descriptions.
3152 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3154         * metadata-verify.c: Fixed constant table description.
3155         Fixed calculation of HasCustomAttribute coded index size.
3156         Fixed calculation of size for many table indexes. 
3158 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3160         * pedump.c (dump_metadata): Dump table offset instead
3161         of useless pointer in memory.
3163 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3165         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
3167 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3169         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
3170         a missing of for interface types.
3172 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3174         * metadata-verify.c (verify_pe_optional_header): Add comment of why
3175         the code is commented.
3177         * metadata-verify.c (verify_resources_table): Remove spurious printf
3178         and don't fail if there are unmanaged resources. Gmcs generates a useless
3179         one     for all assemblies - I bet it's some MS compatibility junk.
3181 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3183         * metadata-verify.c (verify_typedef_table): Verify the extends field.
3185         * metadata-verify.c (mono_image_verify): Add a is_corlib.
3187         * verify-internals.h: Same.
3189         * pedump.c: Fix for mono_image_verify new signature.
3191 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3193         * metadata-verify.c (verify_typedef_table): Verify for some invalid
3194         flags combinations.
3196 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3198         * metadata-verify.c (verify_module_table): Ignore the generation field.
3200 2009-04-15  Martin Baulig  <martin@ximian.com>
3202         * debug-mono-symfile.c
3203         (mono_debug_symfile_lookup_location): Don't print a warning for
3204         unknown extended opcodes if they're within 0x40 and 0x7f.
3206 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
3208         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
3209         invoke signatures returning an enum. Fixes #494847.
3211 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3213         * metadata-verify.c: Initial code to verify the typedef table.
3215 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3217         * verify.c (mono_method_verify): Don't fail if an unconditional branch
3218         with non empty stack happens before the beginning of a try block.
3220         Fixes #494812.
3222 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3224         * metadata-verify.c: Verify typename and typenamespace fields of
3225         the typeref table.
3227 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3229         * metadata-verify.c: Initial code to verify the typeref table.
3231 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3233         * verify.c (verify_delegate_compatibility): Fix error message.
3235 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
3237         * security-core-clr.c: Fix typo
3239 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3241         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
3242         a MonoGHashTable to keep its values alive.
3243         (emit_marshal_boolean): Fix a warning.
3245 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3247         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
3248         not have any interface configured for IPv4/IPv6.
3250 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3252         * assembly.c: fix typo in error message.
3254 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3256         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
3257         allocating the location holding the this argument to prevent
3258         'too many root sets' errors.
3260         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
3261         to mark fields as special static.
3262         (mono_field_static_get_value): Handle special static fields.
3263         (mono_field_static_set_value): Ditto.
3265         * class-internals.h (struct _MonoClassField): Document this.
3267 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3269         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
3270           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
3271           case.  This will handle when managed code returns null to native code.
3273         Code is contributed under MIT/X11 license.
3275 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3277         * object.c (build_imt_slots): Changing a free to a g_free to match
3278           the g_malloc0 in add_imt_builder_entry that allocated this memory.
3280         Code is contributed under MIT/X11 license.
3282 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3284         * marshal.c (emit_marshal_boolean): Adding code to ensure that
3285           the correct TRUE value is passed through the marshaling layer.
3287         Code is contributed under MIT/X11 license.
3289 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
3291         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
3292         correctly. Fixes #492330.
3293         
3294         * marshal.c: Fix the embedding of object pointers into JITted code in
3295         the native-to-managed wrappers by allocating some GC tracked memory, and
3296         embedding the address of that.
3298 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
3300         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
3301         pointers into the vtable.
3303 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3305         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
3307         * verify.c (verify_ldftn_delegate): Improve error message.
3309 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3311         * reflection.c (my_mono_class_from_mono_type): Remove.
3313 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3315         Prepare to reduce memory usage of owner-less generic parameters (1/n)
3316         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
3317         and constraints fields into ...
3318         (MonoGenericParamInfo): ... this.
3319         (mono_generic_param_info, mono_generic_container_get_param_info):
3320         New accessors.
3321         * class.c, debug-helpers.c, icall.c: Update to changes.
3322         * metadata.c, reflection.c, verify.c: Likewise.
3324 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
3326         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
3328         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
3329         
3330         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
3331         booleans with sbytes.
3333 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3335         * class.c (can_access_instantiation): Verify accesibility of element types
3336         for arrays and pointers.
3338         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
3340         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
3342         Fixes #493068.
3344 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3346         * verify.c (do_invoke_method): Improve error messages.
3348 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
3350         * verify.c:  Fixing the MSVC build.
3352         Code is contributed under MIT/X11 license.
3354 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
3356         * security-core-clr.c: Simplify get_reflection_caller not to call
3357         mono_method_get_last_managed (another stack walk) and adjust the
3358         callers to handle a (should not happen) NULL return value.
3360 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3362         Add accessors to some MonoGenericParam fields
3363         * class-internals.h (mono_generic_param_owner): New accessor.
3364         (mono_generic_param_num): Likewise.
3365         (mono_type_get_generic_param_owner): New helper.
3366         (mono_type_get_generic_param_num): New helper.
3367         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
3369 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3371         * class-internals.h (mono_generic_container_get_param): New wrapper.
3372         * class.c, icall.c, metadata.c, verify.c: Use it.
3374 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3376         Fix gtest-252.cs
3377         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
3378         the standard case/loop.  In particular, don't complain about
3379         references to generic type definitions.
3381 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
3383         * debug-helpers.c (dis_one): Decode string arguments.
3385 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3387         * pedump.c (dump_verify_info): Dump type name correctly.
3389 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3391         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
3392         are larger than code size.
3394         This can happen in valid code if the try/catch block is not followed by any instruction
3395         and do a backward branch on the leave instruction.
3397         Fixes #492494.
3399 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
3401         * security-core-clr.c: Fix typo while comparing second method names
3402         in can_avoid_corlib_reflection_delegate_optimization
3404 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3406         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
3408         Fixes #487738.
3410 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3412         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
3413         a MVAR using a class context.
3415         Fixes #490335.
3417 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
3419         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
3421         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
3423         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
3424         functions supplied by the JIT for the SGEN GC.
3426         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
3427         
3428 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3430         monitor.c (mono_monitor_try_enter_internal):
3431         Added calls to profile monitor contentions.
3432         Also duplicated a small piece of code (the "get the monitor" logic)
3433         from the fast path to the slow path, and changed the relevant goto
3434         statements, so that monitor acquisition events can be emitted from the
3435         slow path (this is by Paolo Molaro).
3437 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3439         * profiler.c, profiler.h, profiler-private.h:
3440         Added support for profiling monitor contentions.
3442 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3444         * metadata-verify.c: Verify the modules table.
3446 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
3448         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
3449         using the context of the method been verifier and not of the method been called.
3451         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
3452         safely inflate generic types. 
3454 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3456         * security-core-clr.c: Change the strategy for checking the 
3457         "reflection using delegates optimization" to avoid unneeded 
3458         attributes in multiple class libraries.
3460 2009-04-02  Mark Probst  <mark.probst@gmail.com>
3462         * sgen-gc.c: Remove object element in the disappearing link struct
3463         by storing the object pointer in the link.
3465 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3467         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
3469 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3471         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
3473         * verify.c (mono_method_verify): Do proper bounds checking of exception
3474         clause ranges.
3476 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3478         * loader.c (mono_field_from_token): Don't crash if the field parent could
3479         not be decoded.
3481 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3483         * sgen-gc.c: Execute critical finalizers after ordinary
3484         finalizers.
3486         * class-internals.h, domain.c: Add CriticalFinalizerObject to
3487         mono_defaults.
3489 2009-03-31 Jb Evain <jbevain@novell.com>
3491         * verify.c (do_ldstr): don't check if a string is in the user strings
3492         heap if the current image is dynamic.
3494 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3496         * sgen-gc.c: Wait until the last finalizer has executed when
3497         returning from WaitForPendingFinalizers.
3499 2009-03-31  Martin Baulig  <martin@ximian.com>
3501         * mono-debug-debugger.h (MonoDebuggerEvent): Add
3502         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
3503         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
3504         (mono_debugger_event_create_appdomain): New function.
3505         (mono_debugger_event_unload_appdomain): New function.
3507         * appdomain.c (mono_domain_create_appdomain_internal): Call
3508         mono_debugger_event_create_appdomain().
3510 2009-03-31  Martin Baulig  <martin@ximian.com>
3512         * mono-debug-debugger.c
3513         (mono_debugger_register_class_init_callback): Also register the
3514         class init callback if the class is already initialized to make
3515         things work with shadow copied assemblies.
3517 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
3519         * security-core-clr.c
3520         (mono_security_core_clr_ensure_reflection_access_field): Let 
3521         critical code access the field (just like we do for methods). Use
3522         check_field_access helper.
3523         (mono_security_core_clr_ensure_reflection_access_method): Use 
3524         check_field_access helper.
3526 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3528         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
3529         call the run-finalize function directly.
3531         * gc.c, gc-internal.h: Make run_finalize() non-static.
3533 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3535         * sgen-gc.c: Use a separate struct for disappearing links.
3537 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3539         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
3540         * MaxIOVectorLength enabled, just ignore them.
3541         Fixes bug #349688.
3543 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
3545         * metadata-verify.c: Fix eglib build.
3547 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
3549         * threads-types.h: Fix the win32 build.
3551 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
3553         * class.c: move coreclr inheritance/override checks to 
3554         security-core.clr.c
3555         * security-core.clr.c|h: add code from class.c with additional
3556         documentation. Fix override check when the method is not critical.
3558 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
3560         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
3561         (match_class): Ditto.
3563 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3565         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
3567         * metadata-verify.c: Implement table layout row size calculation. Verify
3568         the total size of the tables.
3570 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3572         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
3574 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3576         * appdomain.c:
3577         * console-io.[ch]: added new mono_console_init() to make sure that
3578         file descriptors 0, 1 and 2 are opened.
3579         Bug #489019 fixed.
3581 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
3583         * appdomain.h: Export a new callback type and a new function to
3584         set this callback. This allow a mono host to provide it's own
3585         definition for "platform code".
3586         * metadata-internals.h: Add a core_clr_platform_code flag on 
3587         _MonoImage to (cache and) know if it is representing platform 
3588         code.
3589         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
3590         on platform code images.
3591         * security-core-clr.c|h 
3592         (mono_security_set_core_clr_platform_callback): Allow the host
3593         to provide it's own platform check definition.
3594         (mono_security_core_clr_determine_platform_image): Detect if an 
3595         image is platform code (using the specified callback).
3596         (mono_security_core_clr_is_platform_image): Return cached value 
3597         for platform code.
3599 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
3601         * threads.c (mono_create_thread): New helper function to wrap CreateThread
3602         which has different parameter types for the 'tid' argument in windows and
3603         the io-layer.
3605         * appdomain.c attach.c threads.c: Use the new helper.
3607 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3609         * metadata-verify.c: Verify valid table bits.
3611 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3613         * metadata-verify.c (verify_metadata_header): Store size in the size field.
3615         * metadata-verify.c: Add initial table schema verification.
3617 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3619         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
3620         obtain the refclass argument needed by mono_param_get_objects (). Fixes
3621         #488383.
3623         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
3625         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
3627 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
3629         * security-core-clr.c: Add/update documentation
3631 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3633         * marshal.c (emit_marshal_object): Generate code to throw an exception
3634         instead of throwing it. Fixes #488670.
3636 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
3638         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
3639         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
3640         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
3641         and add a call to mono_security_core_clr_ensure_delegate_creation
3642         to do the extra checks required by CoreCLR.
3643         * security-core-clr.c|h: Add function to check delegate creation,
3644         both in the binding and accessibility, under CoreCLR.
3646 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
3648         * reflection.c (mono_reflection_create_dynamic_method): when 
3649         coreclr is enabled make sure that every resolved object are
3650         checked (e.g. field and method access).
3651         * security-core-clr.c|h: Add function to check objects resolved
3652         when a dynamic method is created.
3654 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3656         * metadata-verify.c: Cache directory rva translations.
3658         * metadata-verify.c: Add cli-header and streams verification.
3660 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3662         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
3663         the wrong offset (8 instead of 6).
3665 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
3667         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
3668         methods, return the native function address itself. Fixes
3669         #487758.
3671 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3673         * console-io.c: some of the values for control characters might not be
3674         present.
3676 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
3678         * exception.c|h: Add helpers to create [Field|Method]AccessException
3679         * icall.c: Add required coreclr check calls for field reflection.
3680         Move the existing (method) check logic into security-core-clr.c
3681         * security-core-clr.c: Add functions to check if the access of a
3682         field or method is allowed when reflecting under coreclr. This is
3683         mostly done using a stack walk to find the "real" caller: i.e. the
3684         code that is calling the reflection
3686 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
3688         * gc-internal.h: Change location of gc_wrapper.h
3690 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
3692         * class.c: Simplification to coreclr checks for overrides that
3693         makes it easier to set breakpoints.
3695 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
3697         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
3698         mono_security_core_clr_method_level): Avoid potential 
3699         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
3700         user/application code) and make it easier to set breakpoints
3702 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3704         * metadata-verify.c: Reject cli header tables that mono don't handle.
3706 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3708         * pedump.c: Fix CLI header dumping.
3710 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3712         * metadata-verify.c: More CLI header verification.
3714 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3716         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
3718 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3720         * metadata-verify.c: Initial verification of the CLI header.
3722 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3724         * metadata-verify.c (verify_resources_table): Fix verification of zero
3725         sized resource section and id entries count.
3727 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
3729         * icall.c: Handle user types in many Type icalls. Fixes #486303.
3731 2009-03-17  Jb Evain  <jbevain@novell.com>
3733         * profiler.c: call mono_gc_base_init from mono_profiler_load.
3735 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
3737         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
3738         (mono_gc_make_descr_for_array): Ditto.
3740 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
3742         * verify.c (mono_verifier_is_class_full_trust): Add support for
3743         CoreCLR security mode where trusted assemblies are defined as
3744         "platform code".
3746 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3748         * metadata-verify.c: Add minimal PECOFF resource verification.
3750 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3752         * metadata-verify.c: Be less restrictive with some coff fields.
3754 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3756         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
3757         params as boxed values on stack. Fixes #485706.
3759 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
3761         * console-io.c: the termios values may vary in different flavors of unix.
3763 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
3765         * console-io.[ch]: return the entire set of control characters when
3766         initializing the terminal.
3767         * appdomain.c: bump corlib version.
3769 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
3771         * mono-perfcounters.c: added support for in-process custom
3772         performance counters.
3774 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3776         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
3778 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3780         * metadata-verify.c: Verify the data pointed by the import table. 
3782 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3784         * metadata-verify.c (load_data_directories): Store data
3785         directory contents.
3787         * metadata-verify.c: Verify the import table. 
3789 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3791         * metadata-verify.c: Verify data directories.
3793 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3795         * metadata-verify.c: Check section header flags.
3797 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3799         * appdomain.c: if the assembly name is a shadow-copied file, return
3800         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
3801         in mono_make_shadow_copy.
3802         * icall.c: if the assembly name is a shadow-copied file, replace it
3803         with the original assembly path.
3805         Bug #484244 fixed. NUnit tests for corlib can be run without
3806         --noshadow now.
3808 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
3810         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
3811         entries when the table is reallocated.
3813         * icall.c: Allocate the memory used by the mono_ptr_array macros using
3814         mono_gc_alloc_fixed () since it contains GC refs.
3816 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
3818         * reflection.c (ensure_complete_type): New helper function to call
3819         type resolve handlers for unfinished dynamic types.
3820         (resolve_object): Call it for MonoClassFields. Fixes #483852.
3822 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
3824         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
3825         #483247.
3827 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
3829         * appdomain.c (get_shadow_assembly_location): Fix memleak.
3831 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
3833         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
3834         between GCHandles of type WeakTrackResurrection and the objects they
3835         point to.
3837         * gc.c: Partly implement the sematics of GCHandles of type 
3838         WeakTrackResurrection: these handles should only be cleared after the
3839         finalizer of the object they are pointing to has ran.
3841 2009-03-06  Mark Probst  <mark.probst@gmail.com>
3843         * icall.c: Partially revert r126631 because using the jump
3844         trampolines for generic shared methods makes it superfluous.
3846 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
3848         * threads.c (handle_store): Create the 'threads' hash table with the proper
3849         MONO_HASH_VALUE_GC type.
3851 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
3853         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
3854         FIRST_GC_TRACKED.
3856         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
3857         and LAST_GC_TRACKED as a GC root.
3859         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
3861         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
3862         the static data even if it consists of 1 reference.
3864         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
3865         if there is a GC descriptor.
3867         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
3868         instead of through the GC since they contain no object references.
3870 2009-03-05  Mark Probst  <mark.probst@gmail.com>
3872         * generic-sharing.c (instantiate_other_info): Always return a jump
3873         trampoline for method code.
3875 2009-03-05  Marek Habersack  <mhabersack@novell.com>
3877         * culture-info-tables.h: generated to include the en-tt culture.
3879 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
3881         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
3882         capture the thread context.
3884         * object.c (mono_async_result_new): Cache the invoke wrappers to
3885         ExecutionContext::Capture.
3887 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
3889         * marshal.h: Add a prototype for what mono_compile_method returns
3890         for invoke wrappers.
3892         * gc.c: Use the new prototype declaration.
3894 2009-03-04  Geoff Norton  <gnorton@novell.com>
3896         * boehm-gc.c: Add some MONO_LOG tracing for the GC
3897         * gc-internal.h:
3898         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
3900 2009-03-04  Martin Baulig  <martin@ximian.com>
3902         * mono-debug.h
3903         (mono_debugger_runtime_invoke): Removed.
3905         * mono-debug-debugger.c
3906         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
3908 2009-03-02  Martin Baulig  <martin@ximian.com>
3910         * mono-debug.h
3911         (mono_debugger_unhandled_exception): Removed.
3912         (mono_debugger_handle_exception): Removed.
3913         (mono_debugger_throw_exception): Removed.
3915         * mono-debug.c
3916         (mono_debug_debugger_version): Bump to 5.
3918         * mono-debug-debugger.c: Moved the exception handling code to
3919         ../mini/debug-mini.c
3921 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
3923         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
3924         finalize_objects_hash.
3926         * gc.c: Use the separate lock to access the finalize_objects_hash field.
3927         
3928         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
3929         field.
3931         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
3932         cache.
3934         * image.c (mono_image_close): Free it.
3935         
3936         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
3937         allowing a creation of a wrapper which invokes its method using a CALLVIRT
3938         on the this argument.
3940         * gc.c (run_finalize): Optimize the calling of the finalizers.
3942 2009-03-03  Martin Baulig  <martin@ximian.com>
3944         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
3945         of the `MonoGenericInst' changes.
3947 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3949         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
3950         mono_array_class_get_cached to reduce locking contention. Extract
3951         a domain var.
3953         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
3954         intermediary managed arrays. Use caching version of mono_array_new
3955         to allocate the result array.
3957         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
3959         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
3961         * locales.c (create_names_array_idx):  Use mono_array_new_cached
3962         to reduce locking contention.
3964 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
3965                 
3966         * object.c (mono_method_add_generic_virtual_invocation): Put back the
3967         thunk builder code for the non-interface case.
3969 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
3971         * object.c (get_generic_virtual_entries): New helper function to collect
3972         the virtual generic method instances which need to be added to an IMT
3973         thunk.
3974         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
3975         Instead of creating a new IMT thunk, reset the vtable slot to the
3976         trampoline, the thunk will be created the next time the trampoline is called.
3977         (build_imt_slots): Add support for virtual generic methods in interfaces by
3978         adding to the IMT thunk all the methods registered using 
3979         mono_method_add_generic_virtual_invocation ().
3981         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
3982         (struct _MonoIMTCheckItem): Ditto.
3984         * object.c (mono_method_add_generic_virtual_invocation): Take a
3985         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
3986         the IMT thunk to include all items.
3987         
3988         * object.c (mono_class_create_runtime_vtable): Add a missing
3989         mono_loader_unlock ().
3991 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
3993         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3995         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
3997 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
3999         * object-internals.h: Rename _MonoReflectionEvent to
4000         MonoReflectionMonoEvent so it reflects the right managed type.
4001         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4003         * icall.c:
4004         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4005         type.
4007 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4009         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4010         intermediary managed arrays. Use caching version of mono_array_new
4011         to allocate the result array.
4013 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4015         * reflection.c: Use cached version of mono_array_new alongside
4016         the mono_reflection_get_custom_attrs_by_type call path.
4018 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4020         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4021         intermediary managed arrays. Use caching version of mono_array_new
4022         to allocate the result array.
4024         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4026 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4028         * icall.c: Add small implementation of a growable stack bound array.
4030         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4032         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4033         intermediary managed arrays. Use caching version of mono_array_new
4034         to allocate the result array.
4036 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4038         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4039         helps Enum::CompareTo to be implemented without reboxing all enums
4040         to their underlying type.
4041 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4043         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4044         since it acquires a global lock leading to scalability problems.
4046         * profiler.c: Make the stat profiler work with multiple appdomains, this
4047         currently only works when no appdomains are unloaded.
4049 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4051         * appdomain.c: make the check to avoid copying when the assembly is
4052         already shadow copied actually work.
4054 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4056         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4058         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4059         changes to the managed side.
4061 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4063         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4064         classes + a separate lock for it, as it is used frequently at runtime, not
4065         just during metadata loading/JIT compilation.
4067         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4068         for szarrays.
4069         
4070         * object-internals.h (mono_class_from_name_cached): New macro to cache
4071         the results of the lookup locally without having to declare a static
4072         variable to hold it.
4073         (mono_class_get_field_from_name_cached): Ditto.
4074         (mono_array_class_get_cached): Ditto.
4076         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4077         the new macros.
4078         
4079         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4080         slower search in metadata.
4082         * pedump.c: Fix a warning.
4084 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4086         * reflection.c (encode_locals): Add checks for user types.
4087         (method_encode_clauses): Ditto.
4088         (method_encode_code): Ditto.
4089         (mono_image_create_token): Ditto.
4091         * object-internals.h: Change the type of more fields from MonoReflectionType*
4092         to MonoObject*.
4094 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4096         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4097         the a thread does not suspend within 100ms.
4099         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4100         in addition to StopRequested as well.
4102         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4104         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4105         search the method_hash before inserting a new entry, to avoid crashes when
4106         the same method is inserted multiple times, causing the old 
4107         MonoDebugMethodInfo structure to be freed by the value dtor function.
4109 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4111         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4112         SO_EXLUSIVEADDRUSE where available.
4114 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4116         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
4117         runtime invoke wrappers, this time it is string ctor wrappers, which
4118         pass a dummy string as 'this' instead of their obj argument. Fixes
4119         #478473.
4121 2009-02-21  Jb Evain  <jbevain@novell.com>
4123         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4124         only get create_culture once.
4126 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4128         * reflection.c (mono_reflection_setup_internal_class): Move the user type
4129         check before the locking.
4130         
4131         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
4132         (mono_reflection_create_runtime_class): Ditto.
4133         (mono_reflection_sighelper_get_signature_local): Ditto.
4134         (mono_reflection_sighelper_get_signature_field): Ditto.
4136         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
4137         is a System.MonoType object or similar.
4138         (monotype_cast): New helper function to cast a MonoObject to a 
4139         MonoReflectionType object.
4141         * object-internals.h: Change MonoReflectionType* members in structures to
4142         MonoObject* members to force the usage of the monotype_cast () function.
4144         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
4145         structures/arrays. This causes us to assert instead of crashing when 
4146         instances of user defined subclasses of System.Type are encountered.
4148 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4150         * cil-coff.h:
4151         * icall-def.h:
4152         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
4153         win32 resource loaded from a PE file.
4155         * image.c: fix mono_image_lookup_resource.
4157 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4159         * icall-def.h:
4160         * threads-types.h:
4161         * threads.c: added internal call for WaitHandle.SignalAndWait.
4163 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
4165         * cominterop.c : Adding cominterop_type_from_handle and 
4166           registering it as an icall.  Replacing all references
4167           to type_from_handle.
4169         Code is contributed under MIT/X11 license.
4171 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4173         * Makefile.am: Add lock-tracer.h and lock-trace.c.
4175         * appdomain.c: Call the tracer init function.
4177         * domain-internals.h: Enable the tracer for the domain locks.
4179         * image.c: Enable the tracer for image locks.
4181         * loader.c: Enable the trace for the loader lock.
4183         * lock-tracer.h:
4184         * lock-tracer.c: Initial implementation of the lock trace utility.
4185         The tracer requires a compile time define to be enabled and a env var
4186         to be enabled at runtime.
4188 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4190         * domain.c (mono_domain_code_foreach): Improve documentation.
4192 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4194         * appdomain.c:
4195         * generic-sharing.c:
4196         * object.c:
4197         * reflection.c:  Adjust locking order to the new semantics where the loader lock
4198         comes first.
4200 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4202         * domain.c: Add mono_domain_code_* functions that perform locking
4203         around the domain codeman.
4205         * domain-internals.h: Export those functions.
4207         * object.c: Use new functions instead of acquiring the domain lock.
4209 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
4211         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
4212         delegate. Fixes #477396.
4214 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4216         * reflection.c (create_custom_attr): Get rid of alloca.
4218 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
4220         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
4221           Adding exception handling for all CCW calls.
4223         Code is contributed under MIT/X11 license.
4225 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4227         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
4229         * marshal.c (emit_marshal_boolean): Add null checks to the new 
4230         native->managed marshalling code. Fixes #476247.
4232 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4234         * class.c (mono_class_get_vtable_entry): Move the addition of
4235         static rgctx invoke wrappers for vtable methods here, this simplifies
4236         a lot of code and causes fewer rgctx wrappers to be created.
4238         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
4239         name of the statistics to begin with an uppercase.
4241 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4243         * reflection.c: Revert previous change as it breaks the build.
4244         
4245 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4247         * verify.c: Properly handle SZARRAY element type.
4249         Fixes #474271.
4251 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4253         * reflection.c (mono_image_create_method_token): Correctly encode
4254         MethodDef MemberRefParent token.
4256         Fixes #472845.
4258 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4260         * image.c (mono_image_close): Delete the critical section before
4261         freeing the memory holding it.
4263 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4265         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
4266         Fixes #476257.
4268 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4270         * pedump.c (main): Call mono_marshal_init so pedump
4271         doesn't crash.
4273 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4275         * loader.c (method_from_memberref): Properly fix #474271 and
4276         don't break the runtime bad.
4278 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4280         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
4281         (mono_domain_alloc0): Ditto.
4283 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4285         * loader.c (method_from_memberref): Don't abort if the array
4286         method is not found. A regular loader failure is more informative
4287         and correct.
4289         Fixes #474271.
4291 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4293         *loader.c: Guard MonoImage::method_cache/methodref_cache
4294         using the image lock instead of the loader lock.
4296         * metadata.h: Add comments about which fields are protected by
4297         the image lock.
4299 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4301         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
4303         * generic-sharing.c (mono_method_construct_object_context): Remove the
4304         wrapper_type == NONE assert, it is not needed.
4306 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
4308         * reflection.c (clear_cached_object): New helper function.
4309         (mono_method_clear_object): New function to clear the cached reflection
4310         objects for a dynamic method.
4312         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
4313         Partly fixes # 463323.
4314         
4315 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4317         * class.c:
4318         * loader.c:
4319         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
4321 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4323         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
4324         take the image lock instead of the loader lock.
4326         * metadata-internals.h: Export new functions.
4328 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4330         * domain.c (app_config_parse): Remove another use of stat that is
4331         not necessary as g_file_get_contents already does the presence
4332         check. 
4334 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4336         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
4338         * marshal.c: Move the bstr handling code to cominterop.c.
4340         * marshal.c: Remove some COM interop code missed previously.
4342 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4344         More Paolo patches from the Wii port:
4345         
4346         * security.c: Remove ves_icall_System_Environment_get_UserName
4347         from here.
4349         * icall.c: And put ves_icall_System_Environment_get_UserName
4350         here. 
4352         * appdomain.c (mono_set_private_bin_path_from_config): Remove
4353         redundant call to stat that was only used to test for the file
4354         existence.   Patch from Paolo.
4356         * gc.c (run_finalize): If COM is disabled, do not link in
4357         mono_marshal_free_ccw.
4359         * generic-sharing.c: Use alloca.h here as well.
4361 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
4363         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
4365 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4367         * cominterop.c cominterop.h: New files.
4369         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
4370         function/typedefs which are needed by cominterop.c global.
4372 2009-02-12  Mark Probst  <mark.probst@gmail.com>
4374         * generic-sharing.c: Don't take the loader lock to guard image
4375         mempool allocs.
4377 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4379         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
4380         called without the loader lock which is required to guard MonoImage:tokens.
4382 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4384         * class.c:
4385         * metadata.c:
4386         * method-builder.c:
4387         * marshal.c:
4388         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
4390 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4392         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4393         Rework the code to use regular mono_image_alloc/0.
4395         * loader.c: Rework the code to use regular mono_image_alloc/0.
4397         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4399 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
4401         * object-internals.h : Fixing a typo in the 
4402           MonoReflectionComVisibleAttribute struct.
4404         * marshal.c (cominterop_com_visible): Check the implemented 
4405           interfaces for ComImport.
4407         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
4408           assume that bools should be treated as VARIANTBOOLs.
4410         * marshal.c (emit_marshal_boolean): Adding cases for 
4411           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
4413         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
4414           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
4416         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
4417           should be treated as VARIANTBOOLs.    
4419         Code is contributed under MIT/X11 license.
4421 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4423         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
4424         allocation with the image lock.
4426 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4428         This patch is the last of a series to remove explicit reference of MonoImage::mempool
4429         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
4431         * object.c: Add mono_string_to_utf8_image.
4433         * object-internals.h: Export mono_string_to_utf8_image.
4435         * reflection.c: Rework all explicit references to the the image mempool to go thought
4436         the mono_image_alloc set of functions.
4438 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4440         This patch is the third of a series to remove explicit reference of MonoImage::mempool
4441         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
4442         and generics-sharing.c.
4444         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
4445         as first argument. Note that this function remains broken as it doesn't perform locking around the
4446         mempool allocation.
4448         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
4450         * image.c: Add g_slist_append_image.
4452         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
4453         the supplied image for allocation. Move code into mono_metadata_field_info_full.
4455         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
4456         Fix all related code to do the same.
4458         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
4460         * metadata-internals.h: Fix the signatures.
4462 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4464         This patch is the second of a series to remove explicit reference of MonoImage::mempool
4465         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
4466         and similar to work using MonoImage.
4468         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
4469         MonoMemPool.
4471         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
4473         * class.c (mono_metadata_signature_deep_dup): Same.
4475         * class.c (inflate_generic_type): Same.
4477         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
4479         * metadata.c (mono_metadata_signature_dup_full): Same.
4481         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
4482         mono_metadata_signature_dup_full.
4484         * metadata.c (mono_metadata_type_dup): Same.
4486         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
4488         * reflection.c: Same.
4490         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
4492         * metadata-internals.h: Fix the signatures.
4494         * class-internals.h: Same.
4496 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4498         This patch is the first of a series to remove explicit reference of MonoImage::mempool
4499         and use mono_image_alloc set of functions instead. 
4501         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
4502         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
4503         of a MonoMemPool.
4505         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
4507         * class.c (g_list_prepend_mempool): Removed.
4509         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
4511         * image.c: Add g_list_prepend_image.
4513         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
4515         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
4518 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4520         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
4521         mono_image_unlock.
4523         * image.c (mono_image_init): Init the lock field.
4525         * image.c (mono_image_init): Cleanup the lock field.
4527         * image.c: Add mono_image_(un)lock functions.
4529 2009-02-11  Mark Probst  <mark.probst@gmail.com>
4531         * class.c, class-internals.h: mono_method_get_context_general()
4532         combines the functionality of mono_method_get_context() and
4533         mini_method_get_context().
4535         * generic-sharing.c, domain-internals.h:
4536         mono_method_construct_object_context() and
4537         mono_domain_lookup_shared_generic() moved from mini.
4539         * icall.c (ves_icall_InternalInvoke): Handle the case where the
4540         method doesn't have the correct instantiation because it's shared
4541         generic code.  Fixes #473999.
4543 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
4545         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
4547         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
4548         
4549 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4551         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
4553         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
4555         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
4556         and recheck the cache for dups after it.
4558         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
4560         Fixes one of the deadlocks found in #473150.
4562 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
4564         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
4565           For Win32, add additional break conditions for accept.
4567         Code is contributed under MIT/X11 license.
4569 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4571         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
4572         lazily initialize the native wrapper cache.
4573         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
4574         cache, since they are different from the normal wrappers.
4576         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
4578         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
4579         AOT compiled native wrappers.
4581 2009-02-09  Geoff Norton  <gnorton@novell.com>
4583         * appdomain.h:
4584         * security-core-clr.c: Allow enabling core-clr from the embedding
4585         API.
4587 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4589         * socket-io.c: when requesting all the local ips, if there are no
4590         interfaces up and running, MS returns 127.0.0.1.
4592 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4594         * mono-perfcounters-def.h: processor time is an inverse time.
4595         Fixes bug #468625.
4597 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4599         * socket-io.c: an empty host name returns the list of local IPs.
4600         Fixes bug #386637 part 1/2.
4602 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4604         * verify.c (mono_class_interface_implements_interface): Call
4605         mono_class_setup_interfaces ().
4606         (merge_stacks): Ditto.
4608 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4610         * class.c (mono_class_setup_interfaces): New function to lazily initalize
4611         klass->interfaces.
4612         (mono_generic_class_get_class): Don't initalize klass->interfaces.
4613         (mono_generic_class_get_class): Ditto.
4615 2009-02-06  U-QUACK\miguel  <miguel@quack>
4617         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
4618         they live in security.c
4620         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
4621         another bit from Paolo's code.
4623 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4625         * object.c (build_imt_slots): Add a small optimization to avoid inflating
4626         methods which will be discarded by add_imt_builder_entry ().
4628         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
4629         need to be boxed.
4631         * loader.c: Add a statistics for the size of the memberref signature cache.
4632         
4633         * loader.c (find_cached_memberref_sig): New helper function.
4634         (cache_memberref_sig): Ditto.
4636         * loader.c: Cache the result of parsing memberref signatures, since otherwise
4637         they will be parsed again for every generic instantiation, leading to unbounded
4638         memory growth.
4640 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4642         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
4643         parameters of generic methods.
4645         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
4646         after the original method is copied to the inflated method.
4647         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
4649         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
4650         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
4652         * class.c metadata.c: Update after the changes above.
4654 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4656         * metadata-verify.c: Simplified error handling and added
4657         section table validation.
4659 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4661         * class-internals.h (MonoClassExt): New structure containing rarely used
4662         fields of MonoClass.
4663         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
4664         through a new 'ext' field.
4666         * class.c (mono_class_alloc_ext): New helper function to allocate 
4667         class->ext.
4669         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
4671 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4673         * object.c (mono_object_get_virtual_method): Properly inflate
4674         generic methods.  Fixes #472692.
4676 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4678         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
4679         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
4680         for the parent type, the created type must be ready to be used on a generic
4681         instantiation.
4682         We fill this_arg/byval_arg if the parent is a generic instance to make sure
4683         we won't have duplicated entries in generic_inst_cache.
4685         Fixes #469553.
4687 2009-02-05  Miguel De Icaza  <miguel@novell.com>
4689         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
4690         replace with plain BSD per the comments on the bug MONO77637.
4692 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4694         * class.c (mono_class_get_generic_class): New accessor function.
4695         (mono_class_get_generic_container): Ditto.
4697         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
4698         fields, similar to the ones in MonoMethod.
4700         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
4701         (mono_class_create_from_typedef): Set klass->is_generic if needed.
4703         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
4704         
4705         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
4706         the same information as element_class->byval_arg.
4708         * class.c reflection.c: Remove references to class->byval_arg.
4710         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
4711         klass->enum_basetype directly.
4713         * verify.c metadata.c object.c icall.c reflection.c: Use 
4714         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
4715         directly.
4717 2009-02-04  Miguel de Icaza  <miguel@novell.com>
4719         * icall-def.h: Remove internal calls for sockets when
4720         DISABLE_SOCKET is defined, file system writing features when the
4721         OS only support reading and not writing data and Policy support if
4722         the Policy is disabled.
4723         
4724         * image.c (do_mono_image_open): Apply Paolo's patches for using
4725         mono_file_map_ APIs here.
4727         * assembly.c: Add support for platforms to avoid prefix
4728         auto-detection. 
4730 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4732         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
4733         warning.
4735         * class.c (mono_class_inflate_generic_class): New helper function.
4737         * class.c: Use mono_class_inflate_generic_class in a few places. Add
4738         statistics for inflated methods/classes.
4740         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
4742         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
4743         the call is made from Delegate.CreateDelegate () for the invoke method of
4744         a delegate.
4746         * loader.c: Add a statistics for the memory occupied by inflated signatures.
4748         * metadata.c (mono_metadata_signature_size): New helper function.
4750         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
4751         generic instances.
4753         * metadata.c (inflated_method_in_image): Avoid calling 
4754         mono_method_signature () if the method does not already have a signature.
4756 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4758         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
4759         valuetype is compatible with target type, check by inheritance as a
4760         VT is not really compatible with System.ValueType, for example.
4762         * verify.c (do_invoke_method): Improve error message.
4764         * verify.c (do_box_value): If boxing a nullable, use the type argument
4765         on stack instead.
4767         * verify.c (do_newobj): Improve error message.  
4769         Fixes #469549.
4771 2009-02-03  Miguel de Icaza  <miguel@novell.com>
4773         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
4775 2009-02-03  Mark Probst  <mark.probst@gmail.com>
4777         * generic-sharing.c: Don't hold domain lock when calling
4778         instantiate_other_info().  Fixes #471958.
4780         * domain-internals.h, loader.c: Describe locking policy of domain
4781         lock vs loader lock.
4783 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4785         * verify.c (mono_delegate_signature_equal): Make it possible to check
4786         first-arg-bound delegates to static method.
4788         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
4789         static methods with the first arg bound.
4791         Fixes #469529.
4793 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4795         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
4796         errors.
4798         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
4799         under strict mode. Any type, when boxed can be seen as a reference type.
4801         Fixes #469528.
4803 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4805         * object.h: The lower bound of an array is a signed integer value.
4806         Introduce mono_array_lower_bound_t typedef. It should be used instead of
4807         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
4809         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
4810         calculate the upper bound.
4811         
4812         Fixes #471252.
4814 2009-02-02  Miguel de Icaza  <miguel@novell.com>
4816         From Paolo's work, refactored, cleared up:
4817         
4818         * threadpool.c, icall.c: ifdef code that requires a working socket
4819         stack.
4821         * metadata.c (mono_metadata_field_info): Do not attempt to return
4822         a value from a function declared as void.
4824         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
4825         from the console stack.
4827         * assembly.c: use strrchr instead of rindex.
4829         * class.c, object.c, marshal.c, icall.c, reflection.c: include
4830         alloca.h on systems that have it.
4832         * environment.c: Avoid code that uses stuff from
4833         HAVE_SYS_UTSNAME_H
4834         
4835         * appdomain.c: Include sys/time.h.
4837         * console-io.c: include sys/ioctl.h if it is available.
4839 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
4841         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
4843         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
4844         the method builder.
4846         * marshal.c: Set mb->skip_visibility instead of setting it on the method
4847         after it was created and cached, as the later is not thread safe.
4848         
4849 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
4851         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
4852         called while the debugging module is not initialized. Fixes #471669.
4854 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
4856         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
4858         Fixes #471255.
4860 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4862         * generic-sharing.c (lookup_or_register_other_info): Make sure the
4863         loader lock is not taken while the templates lock is held.  Fixes
4864         #471089.
4866 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4868         * metadata.c (type_in_image): Added a check to fix a monodis
4869         crash.
4871 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
4873         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
4874         nullable arguments.
4876         * object.c (mono_runtime_invoke_array): Ditto.
4877         
4878         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
4879         freeing wrappers of dynamic methods.
4881         * loader.c (mono_free_method): Call it. Fixes #463323.
4882         
4883         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
4884         methods taking vtype/byref arguments, to fix yet another bug caused by
4885         the sharing of runtime invoke wrappers. Partly fixes #471259.
4887 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
4889         * debug-mono-symfile.c (check_line): Return NULL instead of returning
4890         <first file in file table>:1 when the IL offset does not have an associated
4891         line number.
4893 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
4895         * mono-debug.c (mono_debug_lookup_locals): New function to return local
4896         variable info for a method.
4898         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
4899         
4900 2009-01-30  Jb Evain  <jbevain@novell.com>
4902         * pedump.c: reuse code from monodis to make sure pedump honors
4903         MONO_PATH, which is needed to verify net_2_1 assemblies.
4905 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
4907         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
4908         there is no line number info.
4910 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
4912         Avoid some MonoType allocations
4913         * reflection.c (mono_reflection_initialize_generic_parameter):
4914         Reuse MonoType from param->pklass rather than allocating one.
4915         (mono_dynamic_image_free): Update to changes.
4917 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
4919         Rearrange some code to improve consistency
4920         * reflection.c (mono_reflection_setup_generic_class): Move body ...
4921         (mono_reflection_initialize_generic_parameter): ... here.
4923 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
4925         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
4926         with type constraints as an experiment.
4928         * boehm-gc.c (on_gc_notification): Update mono_stats.
4930 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
4932         Avoid some allocations
4933         * class-internals.h (_MonoGenericInst::type_argv): Convert from
4934         pointer to tail array to avoid extra allocation.
4935         * metadata.c (free_generic_inst): Update to changes.
4936         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
4937         on-stack struct.
4939 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
4941         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
4942         return TRUE if the two type objects are the same.
4944 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
4946         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
4947         (mono_class_native_size): Use klass->marshal_info->min_align instead of
4948         klass->min_align, since klass->min_align contains the managed alignment,
4949         while the native alignment can be different, like for longs on x86.
4950         Fixes #469135.
4952         * class-internals.h (MonoMarshalType): Add a min_align field.
4954 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
4956         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
4957         the 1.0 format.
4959 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
4961         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
4962         some comments about the usage of the used_regs field.
4964         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
4965         Fixes #469217.
4967 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
4969         * appdomain.c: return NULL instead of throwing FileNotFoundException
4970         when LoadAssembly() fails.
4972 2009-01-23  Mark Probst  <mark.probst@gmail.com>
4974         * metadata.c (mono_metadata_generic_param_equal): Only compare the
4975         image if the owner is NULL.  Fixes the AOT failures.
4977 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
4979         * metadata.c (mono_metadata_load_generic_params): Initialize the 
4980         MonoGenericParam structure using memset so the image field is initialized
4981         as well.
4983 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4985         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
4986         a plain store.
4988 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
4990         * class.c (mono_class_setup_vtable_general): In the generic instance
4991         optimization, set method->slot for abstract virtual methods. Fixes part of
4992         #467834.
4994 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4996         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
4997         which signals that the unloading has started but all appdomain services must
4998         remain operational.
5000         * appdomain.c (mono_domain_unload): The initial state for unloading now
5001         is unloading_start and we switch to unloading after the managed call to
5002         AppDomain::DomainUnload has finished.
5004         The new unloading state has to be created because managed code in the
5005         DomainUnload event can depend on things like the threadpool still working.
5006         The domain must remain fully functional while the event executes.
5008         This shown as an issue due to Process::WaitForExit, which waits for
5009         async reads of stdout and stderr to complete. Since those are processed
5010         in the threadpool the code deadlocks because the DomainUnload callback 
5011         waits for the async read finished event, which should have been set by a
5012         threadpool job but has been discarded due to the domain been in unload
5013         state.
5015 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5017         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5018         image must match.
5020 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5022         * reflection.c (resolve_object): For fields, inflate the class and
5023         then get the field in the inflated class.
5025 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5027         * object-internals.h (struct _MonoException): Added a comment
5028         explaining the new use of trace_ips.
5030 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5032         * generic-sharing.c (inflate_other_data): Inflate array methods
5033         correctly.
5035         * loader.c, class-internals.h: Rename search_in_array_class() to
5036         mono_method_search_in_array_class() and make it non-static.
5038 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5040         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5041         Hopefully fixes #458168.
5043 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5045         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5046         as it is performed elsewhere.
5048         Code is contributed under MIT/X11 license
5050 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5052         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5053         requests queued.
5054         * object.c (mono_raise_exception): Increment the exceptions total
5055         counter when an exception is thrown.
5056         * class-internals.h: Add a location for storing the total number of
5057         asp.net requests served.
5058         * mono-perfcounters.c: Implement update support for asp.net counters
5059         from the class libraries. Implement read support for asp.net counters
5060         and exceptions total counter.
5062 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5064         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5065         accessing klass->methods. Fixes #467385.
5067 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5069         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5070         for byval arguments without an [Out] attribute. Fixes #467212.
5072         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5073         Fix compilation under android.
5074         
5075         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5076         processed, scan them directly after they are copied, to achieve better locality
5077         and cache usage.
5079         * socket-io.c: Applied patch from Koushik Dutta
5080         (koush@koushikdutta.com). Disable IPV6 when running under android.
5082 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5084         * icall.c (ves_icall_InternalExecute): Add write barriers.
5086         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5087         the GC code.
5089         * sgen-gc.c: Implement write barriers in IL code.
5091 2009-01-17  Geoff Norton  <gnorton@novell.com>
5093         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5095 2009-01-17  Geoff Norton  <gnorton@novell.com>
5097         * image.c: When unloading the image->references table, there can be gaps
5098         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5099         when unloading an appdomain.
5101 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5103         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5104         speed up ptr-in-nursery checks.
5106         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5107         threads_lock () to prevent deadlocks.
5109         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5110         does not need to be scanned during minor collections, since writes to it
5111         must use write barriers.
5113 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
5115         * metadata-verify.c: Add pe nt header verification.
5116         
5117 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5119         * gc.c: Fix a few warnings when using SGEN.
5121 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
5123         * metadata-verify.c: Add pe optional header verification.
5125 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5127         * sgen-gc.c: Add support for user defined marker functions, used by
5128         MonoGHashTable to avoid registering a GC root for every hash node.
5130 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5132         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
5133         non-pinned roots into separate hashes to avoid having to traverse them
5134         in functions which are only interested in one kind.
5136 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5138         * metadata-verify.c: Add pe header machine field verification.
5139         
5140 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5142         * metadata-verify.c: Add pe header size verification.
5144 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5146         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
5147         using the GC, they don't contain references.
5149         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
5151 2009-01-13  Geoff Norton  <gnorton@novell.com>
5153         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
5154         AppDomains created on the native side can be cleaned up on the native side.
5156 2009-01-13  Geoff Norton  <gnorton@novell.com>
5158         * appdomain.c: Ensure that we call mono_context_init for the embedding api
5159         as well as the managed api.
5161 2009-01-13  Geoff Norton  <gnorton@novell.com>
5163         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
5164         with a MonoAppDomain initialized against it.
5166 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5168         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
5169         
5170         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
5172         * marshal.c: Avoid setting the exception clauses after a method has been entered 
5173         into the wrapper caches. Fixes #465700.
5175         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
5176         method builder.
5177         (mono_mb_create_method): Set the clauses from the method builder.
5179 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5181         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
5182         Patch from Makoto Kishimoto.
5184 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5186         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
5187         encoding them as ROOT_DESC_COMPLEX.
5188         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
5190 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
5192         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
5193         no longer point to the nursery.
5195         * sgen-gc.c: Add a few comments/FIXMEs.
5196         
5197         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
5199         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
5200         initialization of the various _method variables thread safe. Fixes
5201         #465377.
5203 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5205         * domain.c, domain-internals.h: Remove the shared_generics_hash
5206         and its lookup functions.
5208 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
5210         * socket-io.c:  Fixing the MSVC build. 
5212         Code is contributed under MIT/X11 license.
5214 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
5216         * metadata-verify.c: Add pe header watermark verification.
5218 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5220         * metadata-verify.c: Add lfanew verification.
5222 2009-01-12  Jb Evain  <jbevain@novell.com>
5224         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
5225         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
5227 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
5229         * socket-io.c: Fix the build.
5231         * environment.c: Fix an #ifdef.
5233 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5235         * threadpool.c (async_invoke_thread): Handle the wait function returning
5236         WAIT_IO_COMPLETION as well.
5237         (async_invoke_io_thread): Ditto.
5239 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
5241         * threads.c: Fixing the Windows build.
5243         Code is contributed under MIT/X11 license.
5245 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5247         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
5248         interrupt a wait.
5249         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
5250         the thread to wait again.
5252 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5254         * metadata-verify.c: Initial skeleton of the metadata verifier.
5256         * pedump.c: Add support for the metadata verifier.
5258         * verify-internal.h: Export the whole assembly metadata verifier function.
5260 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5262         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
5264 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5266         * Makefile.am: Upgrade dtrace-prelink.sh location.
5268 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5270         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
5271         well. Otherwise the shutdown deadlock that happens on unix will can happen
5272         as well.
5273         If the main thread code finishes too fast it's possible that the finalizer
5274         thread won't have executed yet, won't record itself as the finalizer thread
5275         and the shutdown sequence will wait on it forever.
5277 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5279         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
5280         with MSVC.
5282 2009-01-08  Miguel de Icaza  <miguel@novell.com>
5284         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
5285         Robert Jordan for pointing this out.
5287 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
5289         * icall.c
5290         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
5291         ves_icall_System_IO_DriveInfo_GetDriveType.
5293 2009-01-07  Miguel de Icaza  <miguel@novell.com>
5295         * icall.c: Wrap calls to mono_strtod in CriticalSection
5296         invocations when using eglib, to work around #464316.
5298 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5300         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
5301         return value of GetCurrentDirectory to never access unitialized memory.
5303 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5305         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
5306         return value of GetCurrentDirectory and expand the buffer if needed.
5308         Fixes #459094.
5310 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
5312         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
5313           Adding a call to mono_init_com_types.
5315         Code is contributed under MIT/X11 license.
5317 2009-01-07  Geoff Norton  <gnorton@novell.com>
5319         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
5320         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
5321         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
5322         be the value of the ip buffer.
5324 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5326         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
5327         interfaces_packed here.
5329         Fixes part of #463294.
5331 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5333         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
5335         Fixes part of #463294.
5337 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5339         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
5340         is a boxed complex as well.
5342         Fixes part of #463294.
5344 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5346         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
5347         control if a methodspec should be created for the generic method definition from external assemblies.
5348         Caching of methodspec is done using the handleref hash table.
5350         Fixes #462592.
5352 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
5354         * loader.c (find_method): When searching the interfaces of a class
5355         check the transitive closure of implemented interfaces.
5357         Fixes #463303.
5359 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5361         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
5362         
5363 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5365         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
5366         interfaces calculation to fill_valuetype_array_derived_types.
5368         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
5369         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
5370         for example.
5372         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
5373         interfaces for valuetypes if needed.    
5375         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
5376         for their basetype as well. Types are array expanded if rank is > 0.
5378         Fixes #400716.
5380 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
5382         * socket-io.h : Changing the signature of
5383           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
5384           the blocking state.
5386         * icall-def.h :  Changing the signature of
5387           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
5389         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5390           For Windows only.  Avoid blocking when calling accept by
5391           querying for a connection via select.  The loop also queries
5392           the thread state every 1000 micro seconds for the thread
5393           stop state.  This will avoid the process hanging on shutdown
5394           when using a TcpChannel that is never connected to.
5396         Code is contributed under MIT/X11 license.
5398 2008-12-30  Marek Safar  <marek.safar@gmail.com>
5400         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
5402 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5404         * class.c (get_implicit_generic_array_interfaces): Extract common
5405         code to a helper function making it a lot easier on the eyes.
5407 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5409         * class.c (get_implicit_generic_array_interfaces): If the internal
5410         enumerator is an interface inflate System.Object instead of itself.
5412         Fixes #461261.
5414 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
5416         * object.c (mono_runtime_invoke_array): Don't assert with
5417         byref nullable types.
5419         * marshal.c (mono_marshal_get_runtime_invoke): To handle
5420         byref nullables we unbox the object and store it on the
5421         stack. 
5422         We can't use the boxed object since it is the T of Nullable<T>
5423         and the boxed representation of a nullable it's underlying type
5424         or null.
5425         We could cheat and create a boxed nullable and use the same
5426         machinery of other byref VTs but this feels like a hack and
5427         using the stack has the bonus of reducing heap pressure.
5429         Fixes #461941.
5431 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
5433         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
5434         return value.
5436         Fixes #461867.
5438 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
5440         * icall-def.h : Adding an internal call definition for 
5441           System.Environment.internalBroadcastSettingChange.
5443         * icall.c : Adding a Windows only implementation to broadcast a 
5444           WM_SETTINGCHANGE when an environment variable has changed.
5446         Code is contributed under MIT/X11 license.
5448 2008-12-19  Mark Probst  <mark.probst@gmail.com>
5450         * class.c, class-internals.h: Made
5451         mono_class_has_parent_and_ignore_generics() non-static.
5453 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
5455         * image.c: deal with the mmap failing when loading an image.
5457 2008-12-17  Geoff Norton  <gnorton@novell.com>
5459         * threadpool.c: Ensure that the io_queue_lock is initialized
5460         in all circumstances, as we always attempt to cleanup against it.
5462 2008-12-17  Miguel de Icaza  <miguel@novell.com>
5464         * icall.c (ves_icall_System_Environment_get_Platform): For
5465         compatibility reasons for existing client code we will keep
5466         returning 4 for a while.   
5468         For how long will depend on the documentation being updated, and
5469         for us to give client code a chance to be updated.
5471         This reverts the original decison on #433108 since we did not
5472         catch roughly 33 instances of the broken code in our own source
5473         code base, we did not catch failures on the buildbots, and QA did
5474         not bring this as a problem.
5476         Only today I found some customer's code breaking due to our own
5477         class libraries not being fully updated and tracked it down to
5478         this change.  I am reverting it because if we could not even get
5479         our story straight in our own code base, how can we hope that our
5480         end user code be fixed?
5482         As of this morning, our Wiki page that documents how to detect
5483         Unix had not been fixed.    
5485 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
5487         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
5489         * class.c (mono_class_get_fields): Handle loading errors.
5491 2008-12-12 Mark Mason <mmason@upwardaccess.com>
5493         * 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.
5494         
5495 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5497         * mono-perfcounters.c: avoid warning.
5499 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5501         * reflection.c (ensure_runtime_vtable): Work on generic instances and
5502         make sure all interfaces have MonoClass::interface_id set.
5504         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
5505         method table is property set.
5507 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5509         * class.c: New function mono_class_setup_interface_id that setup
5510         MonoClass::interface_id if needed.
5512         * class-internals.h: Export new function.
5514 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5516         * class.c: Add code to sanity check the vtable after setup_vtable_general
5517         has done it's work.
5519 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5521         * icall.c: make Assembly.GetExecutingAssembly work properly when
5522         reflection is used to invoke the method.
5523         Bug #321781 fixed.
5525 2008-12-11  Mark Probst  <mark.probst@gmail.com>
5527         * metadata/generic-sharing.c: Look for constraints in all type
5528         arguments, not just the first one.
5530 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5532         * appdomain.c: return the correct CodeBase for an Assembly instance
5533         that was loaded from the shadow-copy directories.
5534         Bug #458190 fixed.
5536 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5538         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
5540         * sgen-gc.c (check_object): New debugging helper function.
5542         * object.c: Fix calls to mono_value_copy_array ().
5544 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5546         * class.c (mono_class_setup_fields): If working on an inflated class
5547         first check if the generic definition did init with success.
5549         Fixes #445361.
5551 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5553         pedump.c (main): Fix a warning.
5555 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
5557         * object-internals.h : Adding a definition for 
5558           MonoReflectionComVisibleAttribute.
5560         * marshal.c (cominterop_com_visible) :  Method added to check the 
5561           ComVisible attribute of a class.
5563         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
5564           cominterop_raise_hr_exception added to consolidate common code 
5565           to raise hr exceptions.
5567         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
5568           if a managed class should support IDispatch.
5570         * marshal.c 
5571           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
5572           Added additional checks for managed object when getting 
5573           an IDispatch interface.
5575         Code is contributed under MIT/X11 license.
5577 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5579         pedump.c (main): Handle mono_get_method () returning NULL. 
5581 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5583         * marshal.h: Fix a warning.
5585 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5587         * marshal.c : Adding cominterop_release_all_rcws to release all
5588           runtime callable wrappers held by the runtime.
5590         * marshal.h : Adding declaration for cominterop_release_all_rcws.
5591           
5592         Code is contributed under MIT/X11 license.
5594 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5596         * metadata.c (mono_image_alloc_lock): New helper function.
5597         (mono_image_alloc0_lock): Ditto.
5599         * metadata.c: Use the alloc_lock () helper functions for allocating
5600         memory from the image mempool.
5602 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
5604         * class.c (mono_class_from_generic_parameter): Document it's
5605         locking behavior. Fix double checked locking here, we stored in
5606         param->pklass a partially initialized MonoClass and no membar was used.
5608 2008-12-05  Marek Habersack  <mhabersack@novell.com>
5610         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
5611         (3) functions are present in the C library use them to do the
5612         job. If they are absent, make sure that the sum of int_part and
5613         dec_part is rounded before returning. This is necessary due to the
5614         division of dec_part by the power of 10 before the final addition
5615         is performed - if the result is not rounded in some cases it will
5616         yield invalid results.
5618 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
5620         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
5621         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
5622         instruction instead of a pointer constant.
5624 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
5626         * loader.c (mono_method_get_header): Do most of the work outside the
5627         loader lock, to avoid assembly load hook deadlocks.
5629         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
5630         (mono_metadata_parse_type_full): Ditto.
5632 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
5634         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
5635         Make the stack depth fixed. Ensure proper argument passing to the backtrace
5636         funtions. Finally, use a lock to produce well ordered output.
5638         The lock looks silly, as all calls to the corlib mempool should be guarded
5639         with the loader lock, but for some reason this fact doesn't help. 
5641         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
5643 2008-12-02  Mark Probst  <mark.probst@gmail.com>
5645         * socket-io.c: 64 bit big-endian fixes.
5647 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
5649         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
5650         targets that require strict compatibility between the types.
5652         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
5653         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
5654         Kill the strict argument and create a new one valuetype_must_be_boxed.
5656         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
5657         state that all valuetypes must be boxed.
5659         Fixes #448560.
5661 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
5663         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
5664         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
5666         Contributed under MIT/X11 license.
5668 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
5670         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
5671         the inflate_generic_type machinery should handle it.
5673         This avoids a crash when the field's flags is zero and it's type is
5674         a primitive.
5675         What happens is that mono_metadata_parse_type_full will see that opt_attrs
5676         is zero and will return one of the cached built-in primitive types. Since
5677         those types live in read-only memory, the code that copies it crashes.  
5679 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5681         * object.c: Don't put function descriptors into generalized IMT
5682         thunks.
5684 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5686         * class.c: Enable generic code sharing on PPC64.
5688 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5690         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
5691         from mini/mini.c.
5693         * generic-sharing.c: Allocate the method template slists from the
5694         image mempool so it doesn't leak.
5696 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
5698         * class.c (generic_array_methods): Release the linked list.
5700 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5702         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
5703         invocation to g_utf16_to_utf8().
5705 2008-11-26  Mark Probst  <mark.probst@gmail.com>
5707         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
5708         arguments on big endian archs.
5710 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5712         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
5713         the type name (test added in corlib).
5715 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5717         * pedump.c: initialize perf. counters. Fixes a segv.
5719 2008-11-25  Martin Baulig  <martin@ximian.com>
5721         * mono-debug-debugger.c
5722         (mono_debugger_runtime_invoke): Return the exception object if an
5723         exception was thrown.  Visual Studio displays the exception object
5724         in the locals window.
5726 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5728         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
5729         ftnptr.
5731 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5733         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
5734         MONO_TYPE_U are sizeof (gpointer), too.
5736 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5738         * marshal.c (mono_type_native_stack_size): Fixed size and
5739         alignment for reference types.
5741 2008-11-23  Mark Probst  <mark.probst@gmail.com>
5743         * class.c (mono_class_generic_sharing_enabled): Disable generic
5744         code sharing for PPC64.
5746 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
5748         * icall.c (mono_method_get_equivalent_method): Make sure
5749         method->klass->methods is inited before looping over it.
5751 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5753         * object.c: when calling ExecuteAssembly in a newly created domain,
5754         the configuration file and application base are already set up.
5755         Bug #446353 take 2 fixed.
5757 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
5759         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
5760         Fixes #444715. Fix a warning.
5762 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
5764         * appdomain.c: write the full path of the assembly to the .ini file
5765         created when "shadow-copying"
5766         Bug #446353 fixed.
5768 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
5770         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
5771         if signature==FALSE.
5773 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
5775         * marshal.h : Fix the cygwin build.
5776            marshal.c:12442: undefined reference to `_IID_IMarshal'
5777           
5778         Code is contributed under MIT/X11 license.
5780 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
5782         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
5783           free threaded marshaler when QueryInterface is called on a COM callable
5784           wrapper requesting the IMarshal interface.
5785           
5786         Code is contributed under MIT/X11 license.
5788 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
5790         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
5792         * reflection.c (mono_type_get_object): Special case the very common
5793         void type.
5795         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
5796         hold typeof(void).
5798 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
5800         * process.h : Adding method declaration for
5801           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5802           
5803         * process.c : Adding implementation for
5804           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5805           
5806         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
5807           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5809         Code is contributed under MIT/X11 license.
5811 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
5813         * appdomain.c (unload_thread_main): Clean up threadpool by
5814         calling mono_thread_pool_remove_domain_jobs.
5816         * domain-internals.h (struct _MonoDomain): Add new fields to
5817         help coordinate the cleanup of the threadpool.
5819         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
5820         that cleans up the threadpool of all jobs associated with an appdomain.
5821         It does that by cleaning up the queues and making sure all active
5822         threads are accounted.
5824         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
5825         unloaded or in the process of. Take this is such way that there is
5826         no race condition between another thread starting the unload and the
5827         current thread acknowledging it.
5829         * threadpool.c (async_invoke_thread): Same.
5831         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
5832         firing the new thread.
5834         * threadpool.c (start_tpthread): Same.
5836         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
5838         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
5840 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
5842         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
5843         Add support for DuplicateHandle.
5844         
5845         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
5846         Add support for DuplicateHandle.
5847         
5848         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
5849         Add support for DuplicateHandle.
5851         Code is contributed under MIT/X11 license.
5853 2008-11-06  Mark Probst  <mark.probst@gmail.com>
5855         * class-internals.h: Make min_align into a whole byte.
5857         * class.c: Set min_align for SIMD types to 16.
5859 2008-11-05  Geoff Norton  <gnorton@novell.com>
5861         * attach.c: Default the attacher to enabled for all cases including
5862         embedded.
5864 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
5866         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
5867         change r117650.
5869 2008-11-04  Mark Probst  <mark.probst@gmail.com>
5871         * monitor.c, monitor.h: New function for querying offsets of
5872         members of MonoThreadsSync.
5874 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
5876         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
5877         to speed up this function and to avoid the boundless memory growth caused by
5878         the signature_dup () calls.
5880 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
5882         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
5883         wrapper.
5885         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
5886         by 1 bit.
5888         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
5890 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
5892         * appdomain.c:
5893         * domain-internals.h: made mono_set_private_bin_path_from_config()
5894         "internal".
5895         * object.c: call the above function after setting the configuration
5896         file path for the root domain.
5897         Fixes bug #314478.
5899 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
5901         * assembly.c: when the assembly is loaded from an absolute path, end
5902         basedir with a directory separator.
5903         Bug #440781 fixed.
5905 2008-10-30  Mark Probst  <mark.probst@gmail.com>
5907         * monitor.c (mono_monitor_get_fast_enter_method): If
5908         CompareExchange is not available, don't create the fastpath
5909         instead of asserting.  (The method is missing in the 1.1 profile.)
5911 2008-10-30  Mark Probst  <mark.probst@gmail.com>
5913         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
5915         * monitor.c, monitor.h: Code for generating Monitor.Enter and
5916         Monitor.Exit IL fastpaths.
5918 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
5920         * class.c (mono_class_create_from_typedef): Added Vector2ul.
5922 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
5924         * class.c (mono_class_create_from_typedef): Added Vector2l.
5926 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
5928         * class.c (mono_class_create_from_typedef): Added Vector2d.
5930 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5932         * appdomain.c: translate \ into / for cache_path.
5933         * domain-internals.h: new mono_is_shadow_copy_enabled().
5934         * icall.c: (fill_reflection_assembly_name) do the same path
5935         manipulations that get_code_base does.
5936         (get_code_base) use mono_is_shadow_copy_enabled.
5938 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5940         * appdomain.c: shadow-copied assemblies go to CachePath +
5941         ApplicationName when both are set. DynamicBase has nothing to do with
5942         shadow copies.
5943         Bug #406877 fixed.
5945 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
5947         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
5948         STANDALONESIG table.
5950         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
5951         standalone signatures.
5953         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
5954         comparison code: instead of comparing the signatures using a custom
5955         equals function, transform them to a common signature and compare that. This
5956         works better with AOT.
5958 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
5960         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
5962         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
5963         call for generic instances.
5964         (mono_class_setup_properties): Call setup_properties () before accessing
5965         gklass->properties.
5967         * class.c (mono_class_get_virtual_methods): New helper function to iterate
5968         over the virtual methods of a class using metadata if possible, avoiding the
5969         creation of MonoMethod's for non-virtual methods.
5970         
5971         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
5972         get_virtual_methods () to iterate over the virtual methods of classes.
5974 2008-10-25  Martin Baulig  <martin@ximian.com>
5976         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
5978 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
5980         * class.c (mono_class_create_from_typedef): Added Vector4i.
5982 2008-10-24  Mark Probst  <mark.probst@gmail.com>
5984         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
5985         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
5986         special-casing applies to eliminate the call completely.
5988 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
5990         * class.c (mono_class_create_from_typedef): Added Vector8s.
5992 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
5994         * class.c (mono_class_create_from_typedef): Added Vector16sb.
5996 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5998         * icall.c: get rid of annoying warning.
6000 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6002         * threadpool.c: in 1.x, if you change the background status of the
6003         threadpool thread, it's not reset.
6004         Remove unnecessary calls to SetState.
6006 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6008         * threadpool.c: asynchronously create a set of idle threads upon first
6009         use of the threadpool. SetMinThreads will now start the appropriate
6010         number of idle threads if they are not already running. The default is
6011         1 threadpool thread per CPU. Increased the maximum number of threads
6012         per CPU to 10.
6014 2008-10-22  Martin Baulig  <martin@ximian.com>
6016         Revert r116521 from Zoltan, it breaks the debugger:
6018         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6019         over the virtual methods of a class using metadata if possible, avoiding the
6020         creation of MonoMethod's for non-virtual methods.
6021         
6022         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6023         get_virtual_methods () to iterate over the virtual methods of classes.
6025 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6027         * threads.c: when creating a threadpool thread, set its state to
6028         'background'.
6029         * threadpool.c: reset the background state of a threadpool thread
6030         after finishing each work item
6031         Bug #437888 fixed.
6033 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6035         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6036         
6037         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6038         generic instances which works by inflating the methods in the container
6039         class's vtable.
6041         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6042         variant which doesn't make a copy if no inflation was done.
6043         (mono_class_setup_fields): Use it.
6045         * metadata.c (mono_metadata_get_shared_type): New helper function to
6046         return a shared instance of a given MonoType.
6048         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6049         a copy of most non-generic types.
6051 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6053         * threadpool.c: remove one more GetSystemInfo () call.
6055 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6057         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6058         use the code in mono-proclib.h to get processor information.
6060 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6062         * appdomain.c: fixed the logic that determines whether assemblies in a
6063         directory are "shadow-copied" or not. Bug #433483 fixed.
6065 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6067         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6068         warning.
6070 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6072         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6073         returning a vtype.
6075         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6076         reflection.c: Use mono_field_get_name () for accessing a field's name.
6078         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6079         class.c
6081         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6082         field.
6084         * loader.c (find_method_in_class): Reenable the metadata optimization by
6085         not using it for generic instances.
6087         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6088         data/def_type fields from MonoClassField into a separate structure.
6089         (struct MonoClassField): Remove data/def_type fields.
6090         (struct _MonoClass): Add a 'field_def_values' array to store the default
6091         values/RVA for fields.
6093         * class.c reflection.c: Update after the changes.
6094         
6095         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6096         for accessing field->data.
6098         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6100         * loader.c (find_method_in_class): Revert the last change for now as
6101         it breaks Mono.C5 unit tests.
6103         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6104         'field_generic_types' and 'field_objects' which contain the information
6105         previously stored in MonoInflatedField.
6106         (MonoInflatedField): Delete.
6107         (struct _MonoClassField): Delete 'generic_info' field.
6109         * reflection.c: Store the information which was previously in 
6110         field->generic_info in MonoDynamicGenericClass instead.
6112         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6113         MonoClassField changes.
6115 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
6117         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
6118         store the value inside the data array of the MonoMethodWrapper.
6119         This saves memory, is faster and fixes the lifetime issues (methods
6120         were never removed from the hash previously). May also fix bug#436996.
6122 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6124         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
6125         generic instances, compute the type from the generic definition instead of
6126         looking in field->generic_info.
6128         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
6129         for inflated fields, the only user was get_fieldref_token () which no
6130         longer needs it.
6132         * class.c (mono_class_init): Revert the last change as it seems to cause
6133         crashes.
6135         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
6136         bytes on 64 bit platforms.
6138         * object.c (mono_class_create_runtime_vtable): Fix a warning.
6139         
6140         * object.c (mono_class_create_runtime_vtable): Don't initalize
6141         field->data/field->def_type here, it is done lazily by 
6142         mono_class_get_field_default_value ().
6144         * icall.c (ves_icall_get_enum_info): Call 
6145         mono_class_get_field_default_value () instead of directly accessing
6146         field->data and field->def_type.
6148         * object.c (get_default_field_value): Ditto.
6150         * class.c (mono_field_get_data): Ditto.
6151         
6152         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
6153         call for generic instances.
6155         * loader.c (find_method_in_class): If klass != from_class, then inflate
6156         the method with the context of from_class, since the caller assumes this.
6158 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
6160         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
6161         for accessing method->slot.
6163 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
6165         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
6167 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
6169         * class.c (mono_method_get_vtable_index): Use
6170         mono_method_get_vtable_slot () for accessing method->slot.
6172         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
6173         accessing klass->methods.
6175         * class.c (mono_method_get_vtable_slot): New helper function.
6176         (mono_class_get_vtable_entry): Ditto.
6177         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
6178         accessing method->slot.
6180         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
6181         method to get_inflated_method ().
6183         * class.c (mono_class_get_inflated_method): New helper method to obtain
6184         a method of an inflated class without calling setup_methods ().
6185         (mono_class_get_cctor): Use get_inflated_method.
6187         * generic-sharing.c (mono_class_get_method_generic): Ditto.
6188         
6189         * marshal.c image.c: Lazily create all the marshal caches.
6191         * image.c (mono_image_init): Move initialization of runtime_invoke
6192         caches to marshal.c.
6194         * marshal.c (get_cache): New helper function to lazily initialize a 
6195         wrapper cache.
6196         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
6198         * debug-helpers.c (mono_method_full_name): Include generic arguments.
6200 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
6202         * loader.c: fixed check for interface type.
6204 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
6206         * appdomain.c: check for NULL setup before it's referenced.
6209 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
6211         * class.c: remove the unused old vtable setup code.
6213 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
6215         * class.c: don't depend on interface order in
6216         setup_interface_offsets (bug #435777).
6217         * reflection.c: sort the InterfaceImpl table (patch from
6218         Jb Evain  <jbevain@novell.com>).
6220 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
6222         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
6223         the low level assemblies lock.
6225 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
6227         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
6228         object.c, reflection.c, socket-io.c, threads.c: introduced
6229         mono_framework_version () to return the major framewrok version,
6230         changed the code that was using more complex patterns to use it.
6231         Return the correct value for PlatformID for OSX.
6233 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
6235         * icall-def.h, process.h, process.c: added an icall to get info about
6236         processes using mono-proclib.
6238 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
6240         * mono-perfcounters.c: use the mono-proclib functions to
6241         access process information.
6243 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
6245         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
6246         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
6247         reflection.c: remove rawbuffer usage: mmap support is more sanely
6248         provided by utils/mono-mmap.
6250 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
6252         * gc.c: use posix semaphores when possible so that
6253         mono_gc_finalize_notify() is signal safe.
6255 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
6257         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
6258         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
6259         be #ifdef-ed out, the linker will remove the rest.
6261         * marshal.c: Implement DISABLE_COM.
6263         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
6265 2008-10-11  Miguel de Icaza  <miguel@novell.com>
6267         * locales.c (string_invariant_compare_char): Optimization: do not
6268         call g_unichar_type unless we actually need the information.
6270 2008-10-10  Mark Probst  <mark.probst@gmail.com>
6272         * object.c, class-internals.h: Also create remoting trampolines
6273         for generic methods.  Pass the domain to the remoting trampoline
6274         creation function, too.
6276 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
6278         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
6280 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6282         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
6283         Vector4ui.
6285 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6287         * assembly.c:
6288         * locales.c: remove the use of g_strdown. Fixes bug #322313.
6290 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
6292         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
6293         for the least possible amount of time (extending the fix in r113458).
6295 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6297         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
6299 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6301         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
6302         as possible simd intrinsic types.
6303         Optimized the test to check for the common prefix first.
6305 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
6307         * class.c: back out part of a broken optimization committed on
6308         May 23th (bug #433908).
6310 2008-10-09  Mark Probst  <mark.probst@gmail.com>
6312         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
6313         Win32.  Should fix #432388 for most cases until we have the new
6314         profiler on Win32.
6316 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
6318         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
6319         instead of using inst->id so the hash is stable for AOT.
6321 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6323         * appdomain.c:
6324         * icall.c: create a .ini file for shadow-copied assemblies that
6325         contains the location of the original assembly. Use this to return the
6326         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
6327         Also fix the number of '/' for windows when returning the CodeBase.
6328         Fixes bug #430920.
6330 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6332         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
6334         Code is contributed under MIT/X11 license.
6336 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6338         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
6339           if if the class vtable needs initialized.
6341         Code is contributed under MIT/X11 license.
6343 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6345         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
6346           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
6347           STRING->BSTR, and CLASS->INTERFACE.
6349         Code is contributed under MIT/X11 license.
6351 2008-10-07  Marek Habersack  <mhabersack@novell.com>
6353         * sysmath.h: changed the declaration of the
6354         ves_icall_System_Math_Round2 icall by adding an extra
6355         away_from_zero parameter.
6357         * sysmath.c (ves_icall_System_Math_Round2): added support for
6358         away from zero rounding. The icall now takes an extra boolean
6359         parameter to signal that away from zero operation is requested.
6361 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
6363         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
6364         the delegate klass so it can work with full-aot.
6365         (mono_marshal_get_delegate_end_invoke): Ditto.
6366         (mono_marshal_get_delegate_invoke): Ditto.
6368 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
6370         * gc.c, attach.h, attach.c: remove a bad pattern:
6371         add_finalizer_callback () is not implemented correctly, it can't
6372         without adding more overhead to the finalizer loop and it's not
6373         even needed, since we know exactly what we need to call, so there is
6374         no need to do so through an expensive function pointer.
6376 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
6378         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
6379         for the no-gc case.
6380         * attach.c (mono_attach_init): Remove the #ifdef.
6382 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
6384         * attach.c (mono_attach_init): Don't use
6385         mono_gc_add_finalizer_thread_callback when compiling without GC.
6386         Fixes #432306.
6387         
6388         Code is contributed under MIT/X11 license.
6390 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
6392         * class.c (mono_class_create_from_typedef): Remove the 
6393         #ifndef DISABLE_SIMD stuff.
6395 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
6397         * class-internals.h (MonoClass): Added simd_type bit field.
6399         * class.c (mono_class_create_from_typedef): Check if type is a simd
6400         intrinsic.
6402 2008-10-03  Mark Probst  <mark.probst@gmail.com>
6404         * object.c (mono_method_add_generic_virtual_invocation): Only add
6405         instantiations to the thunk whose count is at least as large as
6406         the threshold.
6408 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
6410         * icall.c: changed the Type of the exception thrown when trying to
6411         invoke a constructor on an abstract class. Part of the fix for bug
6412         #324185.
6414 2008-10-02  Mark Probst  <mark.probst@gmail.com>
6416         * class.c, class-internals.h (mono_method_get_vtable_index): New
6417         function which returns the index into the vtable and properly
6418         handles inflated virtual generic methods.
6420 2008-10-01  Mark Probst  <mark.probst@gmail.com>
6422         * object.c, domain.c, object-internals.h, domain-internals.h:
6423         Generalize IMT thunk machinery to also handle thunks for virtual
6424         generic method invokes.  When a virtual generic method is invoked
6425         more than a number of times we insert it into the thunk so that it
6426         can be called without lookup in unmanaged code.
6428         * generic-sharing.c, class-internals.h: Fetching a
6429         MonoGenericInst* for a method from an (M)RGCTX.
6431 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
6433         * marshal.c (emit_marshal_string): Applied a variant of a patch by
6434         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
6435         marshalling. Fixes #431304.
6437 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
6439         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6440           handle when ref is specified without In or Out.
6442         Code is contributed under MIT/X11 license.
6444 2008-09-30  Mark Probst  <mark.probst@gmail.com>
6446         * loader.c (mono_get_method_constrained): Don't expand method with
6447         the class's context, because it's already a method of that class.
6449 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
6451         * attach.c : should be correct build fix.
6453 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
6455         * attach.c: Fix the previous change.
6457 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
6459         * attach.c : quick w32 build fix.
6461 2008-09-27  Miguel de Icaza  <miguel@novell.com>
6463         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
6464         crashes MonoDevelop: #430455.
6466 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
6468         * domain-internals.h (struct _MonoDomain): Move most fields used only by
6469         the JIT do MonoJitDomainInfo in ../mini/mini.h.
6471         * domain.c: Remove initialization/cleanup of the removed fields.
6473 2008-09-27  Mark Probst  <mark.probst@gmail.com>
6475         * class.c (mono_class_generic_sharing_enabled): Enable generic
6476         code sharing for PPC.
6478 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
6480         * attach.c : Fixing the Windows builds.
6482         Code is contributed under MIT/X11 license.
6484 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6486         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
6487         the default generic sharing mode to 'all'.
6489 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6491         * generic-sharing.c, class-internals.h: New function for checking
6492         whether a method needs a static RGCTX invoke wrapper.  A few
6493         funtions moved from mini/generic-sharing.c.
6495         * icall.c: New function used.
6497 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6499         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
6500         Static RGCTX invoke wrapping applies to value type methods, too.
6502         * class.c (mono_class_setup_vtable_general): In generic-shared
6503         value types, wrap methods with a static RGCTX invoke wrapper.
6505 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6507         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
6508         osx build.
6510 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
6512         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
6513         register a callback which is called when the finalizer thread is woken
6514         up.
6515         (finalizer_thread): Call the callback if it exists.
6517         * attach.h attach.c: New files, implementing the attach mechanism.
6519         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
6520         
6521         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
6522         by the previous change.
6524 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6526         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
6527         loader.c, marshal.c, metadata-internals.h, metadata.c,
6528         method-builder.c, object.c, reflection.c: introduced specific functions
6529         to allocate from the domain and image mempools and cleaned up most of
6530         the code to use them (still missing a few in reflection.c).
6531         Keep the loader bytes counter updated.
6533 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
6535         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
6536         loader-related counters.
6538 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
6540         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
6541         added more MS-compatible counters.
6543 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
6545         * class.c (mono_class_setup_fields): Call setup_fields before accessing
6546         class->blittable. Fixes #428217.
6548 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
6550         * reflection.c (mono_image_get_field_on_inst_token): Call 
6551         field_encode_signature () since that handles custom modifiers too.
6552         Fixes #424663.
6554 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
6556         * reflection.c (add_custom_modifiers): New helper function to merge custom
6557         modifiers stored in objects to a MonoType.
6558         (fieldref_encode_signature): Encode custom modifiers.
6559         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
6560         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
6562 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
6564         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
6565         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
6566         64-bit IL only images because imports are not resolved for IL only images.
6567         Special thanks to Bill Holmes for finding this bug and testing the patch.
6568         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
6570         Contributed under MIT/X11 license.
6572 2008-09-19  Miguel de Icaza  <miguel@novell.com>
6574         * mono-config.c (dllmap_start): Add support for the bits keyword
6575         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
6577 2008-09-19  Mark Probst  <mark.probst@gmail.com>
6579         * reflection.c (inflate_mono_method): When the class the method is
6580         to be inflated for is itself not inflated, just return the method.
6582 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
6584         * mono-perfcounters.c: use more user friendly process instance names.
6586 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
6588         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6589           handle "[in] ref" and "[in][out] ref" cases.
6591         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
6592           to mono_mb_create_method.  This was causing problems calling native to
6593           managed passing Variants by value.
6595         Code is contributed under MIT/X11 license.
6597 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
6599         * class.c (can_access_internals): Call mono_assembly_load_friends ()
6600         before accessing the friend_assembly_names field.
6602         * assembly.c (mono_assembly_load_friends): Make this callable multiple
6603         times.
6604         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
6605         called lazily when it is needed.
6607         * metadata-internals.h (struct _MonoAssembly): Add 
6608         'friend_assembly_names_inited' flag.
6610 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
6612         * mono-perfcounters-def.h: fix the types of a few counters.
6613         * mono-perfcounters.c: implemented the instance names getter
6614         and a few bugfixes.
6616 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
6618         * culture-info-table.h : regenerated.
6620 2008-09-17  Robert Jordan  <robertj@gmx.net>
6622         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
6623         context bound objects. Fixes #415577.
6625         Code is contributed under MIT/X11 license.
6627 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
6629         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
6630         implementation (bug #423582).
6632 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
6634         * object.c (mono_object_get_virtual_method): Handle the case method->slot
6635         is not set. Fixes #426309.
6637 2008-09-16  Jb Evain  <jbevain@novell.com>
6639         * class.c (mono_class_from_name): fix the exported type look up
6640         when the type is defined in a referenced assembly.
6642 2008-09-16  Jb Evain  <jbevain@novell.com>
6644         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
6645         increment the next index counter on each iteration to make that work
6646         for more than one type forwarder. Unmanaged part to fix #422929.
6648 2008-09-15  Mark Probst  <mark.probst@gmail.com>
6650         * object-internals.h: enum ComInterfaceType in
6651         MonoInterfaceTypeAttribute is guint32, not guint16.
6653 2008-09-12  Mark Probst  <mark.probst@gmail.com>
6655         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
6656         writing code.
6658 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6660         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
6661         not gboolean.
6663 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6665         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
6666         Endianness fixes for MonoSymbolFileOffsetTable.
6668 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6670         * process.c (complete_path) : Removing quotes from the 
6671           input path.  The glib file routines do not handle file paths
6672           that have quotes around them.
6674         Code is contributed under MIT/X11 license.
6676 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6678         * socket-io.h : Adding a comment to provide locations where 
6679           changes to MonoSocketAsyncResult need to be synced.
6681         Code is contributed under MIT/X11 license.
6683 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
6685         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
6686         parameters as well. Fixes #425001.
6688 2008-09-08  Miguel de Icaza  <miguel@novell.com>
6690         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
6691         windows build.
6693 2008-09-07  Miguel de Icaza  <miguel@novell.com>
6695         * console-io.c: Add support for tracking the window size if it
6696         changes.
6698         The setup is very simple: the TtySetup function will now return a
6699         pointer to a location in memory that tracks the current console
6700         size.  The managed code checks its current value every time its
6701         queried against the last value set, and updates accordingly.
6703         With this setup we can work with multiple consoles, and we do not
6704         require to poke into managed code from a signal handler.
6706         Additionally, the environment for COLUMNS and LINES is now handled
6707         in unmanaged code.
6709         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
6711 2008-09-07  Mark Probst  <mark.probst@gmail.com>
6713         * marshal.c (mono_type_native_stack_size): Treat
6714         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
6716 2008-09-04  Jb Evain  <jbevain@novell.com>
6718         * class.c (mono_class_is_assignable_from): fix assignability of nullables
6719         to nullables.
6721 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
6723         * verify.c (verify_type_compatibility_full): Revert change
6724         to allow converting a native int to unmanaged pointer be verifiable
6725         under non-strict mode.
6726         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
6728         * verify.c: Added some TODOs.
6730 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
6732         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
6733           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
6734           Changed to use GlobalAlloc for the memory returned on Windows platforms.
6736         Code is contributed under MIT/X11 license.
6738 2008-09-02  Jb Evain  <jbevain@novell.com>
6740         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
6742 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
6744         reflection.c (typebuilder_setup_fields): Handle classes with
6745         explicit size.
6747 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
6749         class.c (mono_class_setup_events): Add memory barrier due to
6750         double checked locking.
6751         
6752         class.c (mono_class_setup_properties): Same.
6754 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
6756         * class.c (mono_class_is_assignable_from): Fix the build.
6757         
6758         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
6759         before accessing klass->interface_bitmap. Fixes #421744.
6761 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
6763         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
6764         the runtime into no-exec mode, useful when running the AOT compiler.
6766         * appdomain.c gc.c object.c: Avoid executing managed code when running
6767         in no-exec mode.
6768         
6769         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
6771         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
6772         special case when the mono_assembly_loaded () returns NULL because the 
6773         search hook is not installed.
6775 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
6777         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
6778         crashes in bstr marshalling on linux.
6780 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
6782         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
6783         with more than one parameter.
6785 2008-08-24  Miguel de Icaza  <miguel@novell.com>
6787         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
6788         start/stop flow control as well when turning off ICANON (allows
6789         C-s and C-q to be read by Console.ReadKey).
6791 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
6793         * class.c (mono_class_init): Move the initialization of nested classes
6794         into mono_class_get_nested_types (). Fixes #418433.
6796         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
6797         flag.
6799         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
6800         iterating tough the nested classes of a class.
6802 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
6804         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
6805         on arm.
6807 2008-08-22  Miguel de Icaza  <miguel@novell.com>
6809         * console-io.c (sigcont_handler): Support signal chaining for
6810         SIGCONT.
6812         (console_set_signal_handlers): Use best practices with sigaction,
6813         clear the structure before using it. 
6815 2008-08-22  Robert Jordan  <robertj@gmx.net>
6817         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
6818         Fix the Windows build.
6820 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
6822         * class.c (mono_class_generic_sharing_enabled): Make the default
6823         sharing mode 'corlib'.
6825 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
6827         * console-io.c (console_set_signal_handlers): Fix a warning.
6829         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
6830         method normally, the JIT will take care of avoiding recursion.
6832 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
6834         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
6836         Code is contributed under MIT/X11 license.
6838 2008-08-20  Miguel de Icaza  <miguel@novell.com>
6840         * console-io.c (sigcont_handler): We need to restore the entire
6841         termios state, not only the original settings, as things like echo
6842         can be controlled after this (Booish exposes this issue with its
6843         own ReadLine implementation).
6845         Additionally, we need to set the terminal back into keypad_xmit
6846         mode.
6847         
6848         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
6849         string as a paramter as well.   Otherwise we get different
6850         keyboard sequences.
6852 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
6854         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
6855         delegates with byref out parameter passing. Fixes #351520.
6857         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
6858         a generic context.
6859         (mono_type_get_desc): Add the type arguments for GENERICINST.
6860         (mono_method_full_name): Stringify the class name using mono_type_full_name
6861         so it picks up generic arguments.
6863 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
6865         * console-io.c: Removed debug output.
6867 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
6869         reflection.c (mono_reflection_create_runtime_class): Alloc
6870         the nested classes linked list using the dynamic image mempool.
6871         Fixes leak in corlib compilation.
6873 2008-08-19  Miguel de Icaza  <miguel@novell.com>
6875         * console-io.c: Fix incredibly annoying behavior on the console
6876         after resuming execution after control-z.   This affected every
6877         console application.
6879 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
6881         * mempool-internals.h: Header for mono private mempool functions. The first
6882         two function are for allocating glib linked lists using pools.
6884         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
6886         * Makefile.am: Added mempool-internals.h.
6888 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
6890         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
6891         (mono_domain_free): Ditto.
6893         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
6894         be used by the JIT to store its domain-specific information, instead of putting
6895         it directly into MonoDomain.
6897         * domain.c (mono_install_create_domain_hook): New helper function to install
6898         a hook which initializes domain->runtime_info.
6900         * domain.c (mono_install_free_domain_hook): Ditto.
6901         
6902 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
6904         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
6905         asserting if the ares parameter is null.
6907         * mono-perfcounters.c: Fix warnings.
6909         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
6910         is not needed, don't check for interruptions either.
6911         (mono_marshal_get_delegate_end_invoke): Ditto.
6913 2008-08-15  Marek Habersack  <mhabersack@novell.com>
6915         * mono-perfcounters.c (predef_readonly_counter): added support for
6916         reading the ASP.NET Requests Queued counter from another process.
6918 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
6920         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
6921         MonoImage to simplify the AOT code.
6923 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
6925         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
6926         marshalling. Fixes #416078.
6928 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
6929         
6930         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
6931         it is set, looking up the icall address is deferred to the JIT, since 
6932         in embedded scenarios, the icall might not be registered in the runtime
6933         doing the AOT compilation. Backported from the 2.0 branch.
6935 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
6937         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
6938         Fixes #415621.
6940 2008-08-05  Marek Habersack  <mhabersack@novell.com>
6942         * Makefile.am: added support for cross-compilation.
6944 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
6946         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
6948 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6950         * mono-perfcounters.c: jitted methods and jitted bytes counters.
6952 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
6954         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
6955         mono-perfcounters.c: performance counters implementation.
6957 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
6959         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
6960         to gpointer, letting the AOT code decide what to store in it.
6962 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
6964         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
6965           mono_class_setup_methods if the methods are not initialized.
6967         Code is contributed under MIT/X11 license.
6969 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
6971         * verify.c: Remove some debug code I commited by accident.
6973         * verify.c (mono_method_is_valid_in_context): Change the return value
6974         to make possible to distinguish between invalid and unverifiable.
6976         * verify.c (verifier_load_method): Don't return NULL for unverifiable
6977         methods.
6979 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
6981         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
6982         constraints. Fixes regression in gtest-253.
6984 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
6986         * verify.c (mono_verifier_verify_class): Don't allow generic types
6987         with explicit layout.
6989         * verify.c (mono_method_verify): Check locals and argument types.
6991 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
6993         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
6994         wait if the thread is in StopRequested state.
6996         * class.c (mono_class_from_name): Refactor the module searching code into
6997         a separate function so it can be reused in the AOT case too.
6999 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7001         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7002         Check both the type and it's generic type definition for loader errors.
7003         
7004         * verify.c (mono_method_is_valid_in_context): Don't generate another
7005         error when a type errors occur, this leads to the wrong exception been
7006         thrown.
7008 2008-07-28  Dick Porter  <dick@ximian.com>
7010         * icall-def.h
7011         * process.c
7012         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7013         New internal calls to duplicate and close a process handle.
7015 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7017         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7019 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7021         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7023 2008-07-27  Robert Jordan  <robertj@gmx.net>
7025         * class.c (mono_class_init): Don't compute class.has_finalize for
7026         valuetypes. Fixes #412477.
7028 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7030         * verify.c: Implement constraint equivalence checking.
7031         This is required when a generic parameter is used as
7032         argument to a constrained one.
7034         Fixes #410637.
7036 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7038         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7040         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7042         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7043         synch with managed object layout.
7045 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7047         * verify.c (do_branch_op): Handle valuetypes and generic
7048         arguments properly.
7050         * verify.c (do_cmp_op): Same.
7052         Fixes #410383.
7054 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7056         * generic-sharing.c: Fix memory leaks.
7058         * class.c, class-internals.h: Make
7059         mono_class_inflate_generic_type_with_mempool() non-static.
7061 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7063         * pedump.c (dump_verify_info): Dump full class name.
7065 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7067         * generic-sharing.c: Removed some old code that didn't do anything.
7069 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7070         * profiler.c: Added runtime_initialized_event,
7071         mono_profiler_install_runtime_initialized and
7072         mono_profiler_runtime_initialized. This new hook tells the profiler
7073         when the runtime is sufficiently initialized to be able to call
7074         mono_thread_attach on the root appdomain.
7075         * profiler.h, profiler-private.h: Likewise.
7077 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7079         * verify.c (do_cast): Do boxing for generic arguments as well.
7081         * class.c (is_nesting_type): Drop generic instantiations before
7082         checking for nesting.
7084         * class.c (can_access_instantiation): Allow access to generic
7085         arguments.
7087 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7089         * verify.c (verify_class_for_overlapping_reference_fields):
7090         On some cases, the field size might be zero, guard against that.
7091         Fix the explicit layout check to work as expected.
7093 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7095         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7096         mono_thread_resume () during shutdown, since the thread we want to abort
7097         might be suspended.
7099 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7101         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7102         warning.
7104         * debug-mono-symfile.c: Fix a warning.
7106         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7108         * object.c (mono_class_vtable): Check if exception_type is set, and return
7109         NULL as defined by the function comments.
7111 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7113         * mempool.c: Use malloc for every single mempool allocation if the
7114         configure option is set.  This makes it easier to track mempool
7115         allocations with tools like Valgrind.
7117 2008-07-22  Jb Evain  <jbevain@novell.com>
7119         * reflection.c (create_dynamic_mono_image): emit the same
7120         metadata version that SL2 does when creating a SL2 image.
7122 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
7124         * icall-def.h:
7125         * icall.c: New icall System.Enum:get_hashcode. This function
7126         avoids the overhead of boxing the enum to the underlying type.
7128 2008-07-21  Mark Probst  <mark.probst@gmail.com>
7130         * reflection.c (mono_method_get_object): Don't let static RGCTX
7131         invoke wrappers get into MonoReflectionMethods.
7133 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
7135         * object-internals.h:
7136         * object.c: New mono_runtime_class_init_full function
7137         that makes throwing the exception optinal.
7139         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
7140         for the case where the exception object is supplied.
7142 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
7144         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
7145         old ld versions.
7147         Contributed under MIT/X11 license.
7149 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7151         * string-icalls.c (ves_icall_System_String_InternalSplit):
7152         Optimize array allocation by caching the MonoClass of the
7153         array type.
7155         * icall.c (ves_icall_Type_GetMethodsByName): Same.
7157         * reflection.c (mono_param_get_objects): Same.
7159 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7161         * icall-def.h:
7162         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
7163         It inflates the given type using the class context.
7165 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
7167         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
7168         the vtable if it already exists.
7170         * object-internals.h: Add mono_class_try_get_vtable as part of the
7171         internal API.
7173         * reflection.c (mono_type_get_object): Use the MonoObject from the
7174         vtable when possible. Reduces locking contention on reflection heavy
7175         code.
7177 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
7179         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
7180         g_bit_nth_msf () since that macro is not implemented in eglib.
7182 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
7184         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
7185         on platforms which do not support it.
7187 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
7189         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
7191 2008-07-11  Martin Baulig  <martin@ximian.com>
7193         * mono-debug-debugger.h
7194         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
7196         * mono-debug-debugger.c
7197         (_mono_debugger_interruption_request): New global volatile variable.
7198         (mono_debugger_check_interruption): New public function.
7200         * threads.c
7201         (mono_thread_current_check_pending_interrupt): Call
7202         mono_debugger_check_interruption().
7203         (mono_thread_interruption_checkpoint_request): Likewise.
7205 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7207         * verify.c: Add more type checks for loaded types. Verify the result
7208         handle from ldtoken.
7210 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7212         * loader.c (field_from_memberref): Don't crash if the field
7213         wasn't found.
7215 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7217         * verify.c: Verify if type and method instantiations
7218         don't have invalid VAR or MVAR arguments.
7220 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7222         * verify.c: Fix double free of function pointer list.
7224 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7226         * object.c (mono_string_to_utf8): Comment the new code as it
7227         breaks under eglib.
7229 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
7231         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
7233 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
7235         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
7236           is not throw too many times.
7238         Code is contributed under MIT/X11 license.
7240 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
7242         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
7243         debugging is turned off.
7245 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
7247         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
7249 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7251         * class-internals.h, class.c: Added new generic sharing option:
7252         Share only stuff in System.Collections.Generic, which is now the
7253         default.
7255 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7257         * generic-sharing.c, class-internals.h: New function for getting a
7258         generic method in a generic class given the corresponding method
7259         for a different instantiation of the class.  Partly refactored
7260         from mini-trampolines.c.
7262         * class.c: Make sure generic methods have a class_inst if they are
7263         part of a generic class.
7265         * metadata.c (mono_type_stack_size_internal): Handle type
7266         variables.
7268 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7270         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
7271         Signifies whether information on the this/vtable/mrgctx variable
7272         is available.
7274 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7276         * object.c, object-internals.h, icall.c: New function
7277         mono_delegate_ctor_with_method(), which does the same as
7278         mono_delegate_ctor(), but takes an explicit method argument
7279         instead of taking the method from the jit info.
7281         * marshal.c: When creating a delegate with an inflated method take
7282         the "this" argument as the target class for the castclass.
7284 2008-07-03  Mark Probst  <mark.probst@gmail.com>
7286         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
7287         mono_jit_info_table_find() to perform very badly in some cases.
7289 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
7291         * icall.c (type_from_typename): Handle 'string'.
7293         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
7294         wrappers into the wrapper_hash, since the key is not a MonoMethod.
7296 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
7298         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
7300         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
7301         number of available managed allocator types.
7303         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
7304         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
7306 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
7308         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
7309         which is a low level lock protecting just the 'jit_code_hash' hash table.
7311         * domain.c: Initialize+cleanup jit_code_hash_lock.
7312         
7313 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7315         * coree.c (mono_load_coree): Set coree_module_handle global variable only
7316         after initialization.
7318         * coree.h: Make MonoFixupExe internal.
7320         Contributed under MIT/X11 license.
7322 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7324         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
7325         because that is platform independent. Check NumberOfRvaAndSizes in PE32
7326         as well.
7327         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
7328         image being loaded is a CLI image and _CorValidateImage gets called.
7330         * coree.h: Add MonoLoadImage.
7332         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
7333         instead of LoadLibrary.
7335         Contributed under MIT/X11 license.
7337 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
7339         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
7340         for any primitive type.
7342 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
7344         * object.c (mono_array_new_specific): Optimize this and the other allocation
7345         functions a bit.
7346         
7347         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
7348         domains too if mono_dont_free_domains is set.
7350         * domain-internals.h (mono_dont_free_domains): New internal option controlling
7351         whenever to free appdomain data after it has been unloaded.
7353         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
7354         
7355 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
7357         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
7358         (mono_method_get_equivalent_method): Fix a warning.
7360         * object.c (mono_message_init): Avoid looking up array types for each call.
7362 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
7364         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
7365         call.
7367         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
7368         even more.
7370         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
7371         each iteration.
7373         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
7374         fields of an enum.
7376 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
7378         * object.c (mono_value_box): Fix boxing of nullables.
7380 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
7382         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
7383         mono_module_handle that is defined by the linker; no initialization required.
7384         * coree.h: Remove mono_module_handle, add __ImageBase, update
7385         mono_image_open_from_module_handle.
7386         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
7387         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
7388         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
7389         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
7390         to 4 GB away from image base address. IA64 version is not tested but was very
7391         easy to implement and should work if we ever need it.
7392         * domain.c (mono_init_internal): Avoid system error message boxes.
7393         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
7394         with has_entry_point. Handle do_mono_image_load fauilre correctly.
7395         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
7396         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
7397         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
7399         Contributed under MIT/X11 license.
7401 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7403         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
7404         as part of the private mono API.
7405         
7406         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
7407         Do proper argument checking for methods that belong to generic classes.
7408         Do proper type resolution for GMFH/2.
7409         Fixes #377324.
7410         
7411 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7413         * verify.c (do_switch): Fix a memory corruption bug with
7414         the jump index is out of bound.
7416 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7418         * verify.c: Disable debug code.
7420 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7422         * reflection.c (mono_image_get_methodbuilder_token): Use
7423         mono_image_get_methodspec_token_for_generic_method_definition
7424         instead of mono_image_get_memberref_token. We cache more memberef
7425         entries now.
7427 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7429         * verify.c: Inflate exception clause types.
7430         Fixes #402606.
7431         
7432 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7434         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
7435         name.
7437         * reflection.c (mono_image_get_ctorbuilder_token): Same.
7439         * reflection.c (mono_image_create_method_token): Same.
7441 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7443         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
7444         It does the same as mono_image_get_methodref_token but works on
7445         MethodBuilder.
7447         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
7448         and always generate a methodspec. This follows the old behavior and fixes
7449         the regressions in System.Core. 
7451 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
7453         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
7454         don't event mono_class_get () succeeds. Fixes #402182.
7456 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7458         * metadata-internals.h: Added MonoDynamicImage::methodspec
7459         hashtable to store methodspec tokens created for MethodBuilders.
7461         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
7462         MethodBuilders as open instantiations if a methodspec was requested.
7464         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
7466         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
7468         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
7470         Fixes bug #349190.
7472 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7474         * loader.c (method_from_methodspec): Avoid crashing if the
7475         method lookup fails.
7477 2008-06-20  Dick Porter  <dick@ximian.com>
7479         * socket-io.c (get_socket_assembly): Cope with Moonlight network
7480         classes being in a different assembly.  Fixes bug 399184.
7482 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
7484         * loader.c (mono_loader_init): Make this callable multiple times.
7485         (mono_dllmap_insert): Call mono_loader_init () so this works even before
7486         the runtime is initialized. Fixes #401755.
7488 2008-06-19  Dick Porter  <dick@ximian.com>
7490         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
7491         Fixes bug 349688.
7493 2008-06-19  Dick Porter  <dick@ximian.com>
7495         * socket-io.c:
7496         * icall-def.h: Implement Socket generic Send() and Receive()
7497         methods.  Fixes bug 395168.
7499 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
7501         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
7503         Contributed under MIT/X11 license.
7505 2008-06-18  Martin Baulig  <martin@ximian.com>
7507         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
7508         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
7509         set to 80.0.  The debugger <-> runtime interface is now frozen as
7510         well.   
7512         * mono-debug.c
7513         (mono_debug_debugger_version): Bump to 4.
7515 2008-06-18  Martin Baulig  <martin@ximian.com>
7517         * debug-mono-symfile.c
7518         (load_symfile): Don't check the minor version.
7520         * debug-mono-symfile.h: Bump the version number to 50.0.
7522 2008-06-18  Martin Baulig  <martin@ximian.com>
7524         * debug-mono-symfile.c
7525         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
7526         minimum required version.
7528 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7530         * reflection.c (mono_custom_attrs_from_property): Fix support for
7531         retriveving cattrs of dynamic inflated generic types.
7533         * reflection.c (mono_custom_attrs_from_event): Same.
7535         * reflection.c (mono_custom_attrs_from_field): Same;
7537         * reflection.c (typebuilder_setup_events): Same cattrs of events.
7539         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
7540         Moved to metadata.c.
7542         * metadata.c: New functions to retrive the equivalent field, event
7543         of property from the generic type definition.
7545         * metadata-internals.h: Added new functions from metadata.c.
7547 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7549         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
7550         to cached in a mempool is used.
7552         * metadata.c (free_generic_class): In some situations field generic_info type
7553         is not properly dup'ed and leads to double free'ing.
7555         Fixes #400643.
7557 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7559         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
7560         this arguments (will be needed later for generic methods).
7561         Collect stats.
7563 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7565         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7566         Create a static RGCTX invoke wrapper for methods which require it.
7568 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7570         * object.c, class-internals.h: New function for checking whether
7571         an individual field is special static.
7573 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
7575         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
7576         linear search since the table is sorted.
7578         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
7579         Fixes #324180.
7581 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
7583         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
7584         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
7586         * gc.c (mono_domain_finalize): Allow an infinite timeout.
7588         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
7589         
7590         * threads.c (mono_thread_request_interruption): Get rid of locking, use
7591         InterlockedCompareExchange to query and modify 
7592         thread->interruption_requested.
7594         * object-internals.h (struct _MonoThread): Change interruption_requested
7595         to a gint32 so it can be modified by atomic operations. Add 
7596         'critical_region_level' from the managed side, change small_id to a guint32,
7597         add new set of 'unused' fields.
7599         * appdomain.c: Bump corlib version.
7601 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
7603         * class.c (mono_class_from_name): Search modules as well. Fixes
7604         #322332.
7606 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7608         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
7609         templates.  Templates are generalized with an additional type_argc
7610         argument.  RGCTX templates have type_argc==0, MRGCTX templates
7611         have type_argc>0.
7613         * domain-internals.h, domain.c: New hash table for looking up
7614         MRGCTXs.
7616         * metadata.c, metadata-internals.h: Rename hash and equal
7617         functions for MonoGenericInst's and make them public.
7619         * class-internals.h: New data structures for the MRGCTX.  Macros
7620         for distinguishing slots in the RGCTX and the MRGCTX.
7622 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7624         * object.c (mono_method_get_imt_slot): Put the same methods of
7625         different instantiations of the same generic interface in the same
7626         IMT slots, to make generic sharing simpler.
7628 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7630         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
7632         * metadata.c (mono_metadata_field_info_with_mempool): Added.
7633         This function works just like mono_metadata_field_info, but
7634         accept a mempool as argument to be used allocating memory.
7636         * marshal.c (mono_marshal_load_type_info): Use new function
7637         to load marshal data into image mempool.
7639 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7641         * class.c (mono_class_inflate_generic_type_with_mempool):
7642         This function allows to inflate a generic type using
7643         a mempool.
7645         * class.c (inflate_generic_type): Take a mempool as argument
7646         and use it to do type dup'ing.
7648         * class.c (mono_class_setup_fields): Field type for generic
7649         generic classes are allocated from the image mempool.
7651         * metadata.c (free_generic_class): Inflated field type is
7652         now allocated in the image mempool.
7654 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7656         * threads.c (thread_cleanup): Free MonoThread::name.
7658 2008-06-12  Marek Habersack  <mhabersack@novell.com>
7660         * appdomain.c (ensure_directory_exists): avoid unnecessary
7661         mkdir(2) calls when the shadow directory already exists.
7662         (mono_make_shadow_copy): copy also satellite assemblies from the
7663         private bin directories.
7665 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7667         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
7668         
7669         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
7670         a page boundary. Fixes #396219.
7672 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7674         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
7675         due to double-checked locking.
7677 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7679         * assembly.c (build_assembly_name): Release memory on failure.
7681         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
7683 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7685         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
7686         memory on failure.
7688 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7690         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
7691         memory on failure.
7693 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7695         * loader.c (field_from_memberref): Check if field signature type is equal
7696         to the non-inflated type of the field. Fixes #398980.
7698 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7700         * assembly.c (mono_assembly_load_from_full): Call 
7701         mono_assembly_load_friends () outside the assemblies lock, since it can
7702         acquire the loader lock. Fixes #323696.
7704         * reflection.c (resolve_object): Inflate the inst with the context for
7705         FieldOnTypeBuilderInst. Fixes #399010.
7707 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7709         * reflection.c (mono_image_get_field_on_inst_token): Don't
7710         inflate the field to encode it's signature. If it's a
7711         VAR or MVAR it should stay that way in the signature.
7712         Fixes #399047.
7714 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7716         * reflection.c (resolve_object): Release memory of inflated types.
7718 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7720         * loader.c (mono_method_get_signature_full): Remove assert about
7721         loading a methodspec to a generic method. We have such methods, such as
7722         System.Threading.Interlocked::CompareExchange<T>.
7723         This assert was removed since it crashes the verifier when it checks
7724         methods calling CompareExchange<T>.
7726 2008-06-10  Marek Safar  <marek.safar@gmail.com>
7728         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
7729         of Type array and not MonoType.
7731 2008-06-10  Marek Habersack  <mhabersack@novell.com>
7733         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
7734         <lupus@ximian.com>
7736 2008-06-10  Martin Baulig  <martin@ximian.com>
7738         * debug-mono-symfile.h
7739         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
7740         changes to the file format, but we were generating incorrect
7741         source file indices in the line number table due to a bug, which
7742         made backtraces report an incorrect source file.
7744 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7746         * mono-debug.c: Moved mono_debug_free_method_jit_info from
7747         mini/debug-mini.c to here.
7749         * mono-debug.c (il_offset_from_address): Free memory from find_method.
7751         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
7752         use it to release structs returned by mono_debug_find_method.
7754 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
7756         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
7757         since it needs to set method->slot for all interface methods.
7759 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7761         * class-internals.h: Forgot to add.
7763 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7765         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
7767         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
7768         Lookup the custom attributes from property_hash.
7770         * reflection.c (mono_save_custom_attrs): Save the custom attributes
7771         in property_hash. Allocate all data using the image mempool.
7773         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
7774         for dynamic_custom_attrs to checks if the image is dynamic.
7776 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
7778         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
7779         assemblies array.
7780         
7781         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
7782         runtime functions while holding the domain assemblies lock.
7784 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7786         * verify.c: Reapplied the last bit of the reverted changes.
7788 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7790         * verify.c: Reapplied more of the reverted changes.
7792 2008-06-09  Martin Baulig  <martin@ximian.com>
7794         * debug-mono-symfile.c (load_symfile): Check the major version
7795         first; if it's wrong, don't print the minor version in the error message.
7797 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
7799         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
7800         lock instead of the domain lock to avoid deadlocks, since the thread might
7801         already hold the loader lock.
7803         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
7804         (mono_thread_attach): Ditto.
7806         * monitor.c: Use a TLS variable for holding the current thread id instead
7807         of calling pthread_self ().
7808         (mono_monitor_init_tls): New internal function to initialize the TLS
7809         variable.
7810         (mono_monitor_try_enter_internal): Put the owner == id check after the
7811         owner == 0 check.
7813         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
7814         missed optimizations when using gcc-4.3.
7816 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
7818         * reflection.c (mono_dynamic_image_free): Free the memory
7819         used by MonoGenericParam in MonoDynamicImage::gen_param.
7821         * reflection.c (mono_reflection_setup_generic_class): Allocate
7822         container from mempool.
7824         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
7825         container from mempool.
7827 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
7829         * threads.c (mono_set_pending_exception): New internal function to set the
7830         pending exception of the current thread.
7831         (mono_thread_get_and_clear_pending_exception): Check for 
7832         thread->pending_exception as well.
7834         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
7836         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
7837         it can trigger a collection.
7839 2008-06-06  Martin Baulig  <martin@ximian.com>
7841         Merged the `debugger-kahalo' branch.
7843         * mono-debug.h
7844         (MONO_DEBUGGER_VERSION): Bumped to 72.
7846         * debug-mono-symfile.h
7847         (MonoSymbolFileMethodIndexEntry): Removed.
7848         (MonoSymbolFileMethodEntry): New public typedef.
7849         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
7850         (MonoSymbolFileSourceEntry): Remove everything except `index' and
7851         `data_offset'.
7852         (MonoSymbolFileMethodEntry): Removed.
7853         (MonoSymbolFileLexicalBlockEntry): Removed.
7854         (MonoSymbolFileLineNumberEntry): Removed.
7855         (MonoDebugLexicalBlockEntry): Removed.
7856         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
7857         removed `num_il_offsets' and `il_offsets'.
7858         (MonoSymbolFile): Replace `version' with `major_version' and
7859         `minor_version'.
7860         (MONO_SYMBOL_FILE_VERSION): Replace with
7861         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
7862         `MONO_SYMBOL_FILE_MINOR_VERSION'.
7864         * debug-mono-symfile.c
7865         (mono_debug_symfile_lookup_location): Add support for the new line
7866         number table format.
7868 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7870         * metadata.c (free_generic_class): Release the inflated
7871         MonoClass of dynamic generic classes if it's not a generic
7872         type definition.
7874 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7876         * verify.c: Reapplied more of the reverted changes.
7878 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7880         * reflection.c (lookup_custom_attr): Clean the cached flag or
7881         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
7882         for SRE types.
7884 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7886         * verify.c: Reapplied a small part of the reverted changes.
7888 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
7890         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7892         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
7893         previously in managed code.
7894         (mono_monitor_exit): Ditto.
7895         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
7897         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
7898         the managed definition.
7900 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
7902         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
7904 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
7906         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
7907         
7908         * monitor.c: Add some micro optimizations.
7910         * icall.c (type_from_typename): Handle 'bool'.
7912 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
7914         * verify.c: Implement constructor verification per P III 1.8.1.4.
7915         Fixes #396716.
7917 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
7919         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
7920         holding the assemblies lock here too.
7922 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7924         * verify.c: Kill stack_top function.
7926 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7928         * verify.c: Kill stack_get function.
7930 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7932         * verify.c (mono_method_verify): Last change broke the build. Fixed.
7934 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7936         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
7937         more reliable.
7939         * verify.c (mono_method_verify): Inflate params and locals to avoid
7940         mismatch when checking for compatibility.
7942 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
7944         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
7945         Length prefix should be size in bytes. Fix bug #339530.
7946         
7947         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
7948         Length prefix should be size in bytes. Fix bug #339530.
7950         Code is contributed under MIT/X11 license.
7952 2008-06-05  Bill Holmes <billholmes54@gmail.com>
7954         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
7956         Contributed under MIT/X11 license.
7958 2008-06-05  Martin Baulig  <martin@ximian.com>
7960         * mono-debug-debugger.c
7961         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
7963 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
7965         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
7966         while holding the assemblies lock to prevent deadlocks. Handle the case
7967         where the search hook returns NULL but the assembly was still loaded.
7968         Fixes #323696.
7970         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
7971         modify domain state.
7973 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
7975         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
7976         * Makefile.am (pedump_LDADD): Post-process object files and
7977         add dtrace-generated object file, if necessary.
7979         Code is contributed under MIT/X11 license.
7981 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
7983         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
7985 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
7987         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
7989 2008-06-04  Mark Probst  <mark.probst@gmail.com>
7991         * threads.c: Try to free everything from the delayed free table
7992         when shutting down threads, and set the variable to NULL after the
7993         table is freed so that calling
7994         mono_thread_hazardous_try_free_all() when shutting down the root
7995         domain doesn't crash.
7997 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
7999         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8000         the caller if resulting type was inflated.
8002         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8003         was inflated.
8005         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8008 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8010         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8011         class library tests.
8013         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8014         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8015         #396989.
8017 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8019         * domain.c, domain-internals.h: The JIT infos are now freed by the
8020         JIT info table code.  They are freed immediately if there only a
8021         single JIT info table in circulation.  If there is more, the free
8022         is delayed via a queue.
8024         * threads.c, threads-types.h: New hazard pointer function for
8025         freeing all freeable delayed items in one sitting.
8027 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8029         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8031         * reflection.c (typebuilder_setup_properties): Same.
8033         * reflection.c (typebuilder_setup_events): Same.
8035 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8037         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8038         and use it for allocating memory.
8040         * reflection.c (mono_marshal_spec_from_builder): Same.
8042         * reflection.c: Change code to use new signatures.
8044         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8046 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8048         * decimal.c (rescale128): Put back one line which was accidently commented
8049         out.
8050         
8051         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8052         to cause crashes.
8054 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8056         * reflection.c (mono_reflection_generic_class_initialize): Name must
8057         be always malloc'ed so we can free it later on. Do this for field, property
8058         and event.
8060         * metadata.c (free_generic_class): Free field, property and event names.
8062 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8064         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8065         instead of g_memdup.
8067         * reflection.c (typebuilder_setup_fields): Same.
8069 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8071         * decimal.c (rescale128): Optimize this function a bit more.
8073 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8075         * metadata.c (free_generic_class): Release some memory from
8076         SRE generic classes.
8078 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8080         * reflection.c (mono_image_get_generic_field_token): No reference
8081         to name is kept, free it.
8083         * reflection.c (mono_reflection_generic_class_initialize): Free
8084         more memory of the inflated field.
8086 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8088         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8089         code.
8091 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8093         * reflection.c (mono_dynamic_image_free): Release memory used by
8094         MonoDynamicImage::array_methods elements.
8096         * reflection.c (assembly_add_win32_resources): Release memory after
8097         encoding.
8099 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8101         * decimal.c (log2_32): Use an optimized version for this function too.
8102         
8103         * decimal.c (log2_64): Fix this on 32 bit machines.
8105 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8107         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8109         * class.c (mono_metadata_signature_deep_dup): Same.
8111         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8112         a mempool.
8114         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
8116         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
8118         * metadata-internals.h: Added mono_metadata_signature_dup_full.
8120         * class-internals.h: Update signatures to take a MonoMemPool.
8122 2008-06-02  Dick Porter  <dick@ximian.com>
8124         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
8125         * icall-def.h: Add
8126         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
8127         FormatMessage API to get the error text.  Fixes bug 321827.
8129 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8131         * decimal.c: Add some micro optimizations to make decimal operations faster.
8133 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
8135         * reflection.c (method_encode_clauses): Take a mempool
8136         as parameter and use it to allocate the clause array.
8138         * reflection.c (mono_image_get_field_on_inst_token): Free
8139         the inflated type after encoding it.
8141         * reflection.c (mono_dynamic_image_free): Free each element
8142         of MonoDynamicImage::gen_params.
8144         * reflection.c (reflection_methodbuilder_to_mono_method):
8145         Allocate the generic param array from the mempool.
8146         Allocate signature params from the mempool.
8148         * reflection.c (mono_reflection_generic_class_initialize):
8149         Free inflated fields after been used.
8151 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8153         * icall.c: Reapply the memory leak fixes as they no
8154         longer make mono crash.
8156 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8158         * reflection.c (mono_type_get_object): Don't store the suplied
8159         MonoType with type_hash. A caller which pass a type that
8160         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
8161         might end with a pointer to freed memory.
8162         The solution is to use byval_arg or this_arg from the associated
8163         MonoClass of the supplied type.
8165 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
8167         * icall.c: Revert the rest of the last change as it breaks the build too.
8169 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8171         * icall.c: Revert a leak fix as it's breaking the build.
8173 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8175         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
8177 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8179         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
8181 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8183         * icall.c: Fix some memory leaks.
8185 2008-05-29  Dick Porter  <dick@ximian.com>
8187         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
8188         async socket operations from the pending list when a socket
8189         closes.  Leaving it until the threadpool services the event
8190         exposes a race condition when a socket descriptor is reused.
8191         Fixes bug 377589.
8193 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8195         * object.c: Fix negative index check for array alocation.
8197 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8199         * icall.c, marshal.c: Delegate wrappers should skip visibility.
8200         This check is performed by the verifier for IL created delegates
8201         and by Delegate::CreateDelegate for programatically created ones.
8202         Fixes #372406.
8204 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8206         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
8207         Fix code to use mono_array_size_t instead of int.
8209         Based on patch by Luis F. Ortiz.
8210         Contributed under X11 license.
8211         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8213 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8215         * icall.c: Added ves_icall_System_Array_GetLongLength and
8216         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
8217         arrays.
8219         * icall.h: Export both new functions.
8221         Based on patch by Luis F. Ortiz.
8222         Contributed under X11 license.
8223         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8225 2008-05-28  Martin Baulig  <martin@ximian.com>
8227         The debugger now requires exactly r103463.
8229         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
8230         This version is not supported by the debugger, wait for 72.
8232 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8234         * object.h: Changed array related functions to use
8235         mono_array_size_t instead of guint32. Forgot to commit this file.
8237         Patch by Luis F. Ortiz.
8238         Contributed under X11 license.
8239         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8242 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8244         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
8245         don't define it. Use the number literal instead.
8247 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8249         * icall.c: Changed array related functions to use
8250         mono_array_size_t instead of guint32.
8252         * icall.c (ves_icall_System_Array_GetLength): Check for length
8253         overflow under MONO_BIG_ARRAYS.
8255         Based on patch by Luis F. Ortiz.
8256         Contributed under X11 license.
8257         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8259 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8261         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
8263         Based on patch by Luis F. Ortiz.
8264         Contributed under X11 license.
8265         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8267 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8269         * object.c, object.h: Changed array related functions to use
8270         mono_array_size_t instead of guint32.
8272         Patch by Luis F. Ortiz.
8273         Contributed under X11 license.
8274         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8276 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8278         * object.h: Introduced mono_array_size_t typedef. This must be used
8279         in all places an array length is expected. This is 64bits wide if
8280         MONO_BIG_ARRAYS is enabled.
8282         Patch by Luis F. Ortiz.
8283         Contributed under X11 license.
8284         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8286 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
8288         * security-manager.c class.c: Set the class exception info by calling
8289         mono_class_set_failure ().
8291         * class.c (mono_class_get_exception_data): New accessor function.
8292         (mono_class_set_failure): Store exception_data in the property hash.
8294         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
8295         the struct as a property.
8297         * loader.c (mono_get_method_full): Store the lookup result for method
8298         tokens in method_cache, the others in methodref_cache to decrease the memory
8299         usage of hash tables.
8301         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
8302         (mono_image_init): method_cache is lazy inited now.
8304         * metadata-internals.h (struct _MonoImage): Change method_cache to
8305         a MonoValueHashTable, add a separate methodref_cache.
8307 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
8309         * number-formatter.h: Fix tables to avoid arithemtic overflow in
8310           Double.ToString as exposed by Bug #383531.
8312 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
8314         * number-formatter.h: Make some tables static.
8316         * class.c (mono_method_set_generic_container): New accessor function.
8317         (mono_method_get_generic_container): Ditto.
8319         * class-internals.h (struct _MonoMethod): Remove rarely used 
8320         'generic_container' field, store it in the property hash instead. Add 
8321         'is_generic' boolean field instead.
8323         * image.c (mono_image_init): Initialize property_hash.
8324         (mono_image_close): Destroy property_hash.
8326         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
8327         hold rarely used fields of runtime structures belonging to this image.
8329         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
8330         to get/set method->generic_container.
8332         * loader.c (mono_get_method_from_token): Avoid loading the method header for
8333         generic methods.
8335 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
8337         * class.c (mono_class_inflate_generic_method_full): Don't increase
8338         mono_stats.inflated_method_count for methods found in the cache.
8340         * threads.c (mono_thread_request_interruption): Add a comment about 
8341         QueueUserAPC ().
8343 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
8345         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
8346         interface_offsets_packed table.
8347         
8348         * class.c (mono_class_init): Remove some dead code.
8350         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
8351         mono_class_setup_vtable () when CAS is active to detect security problems.
8353 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
8355         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
8357         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
8358         parameters as it's irrelevant for delegate checking.
8360 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
8362         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
8364         * class.c (mono_class_init): Control the creation of a generic vtable using
8365         a global which is true by default, but set to false by the runtime startup code.
8366         
8367         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
8368         Disabled for now since it breaks the embedding API.
8369         Move the setup of class->methods for arrays to mono_class_setup_methods ().
8370         (mono_class_setup_methods): Add a memory barrier.
8372         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
8373         when mono_class_init () doesn't compute the generic vtable.
8374         
8375 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
8376         * profiler.c: Added mono_profiler_install_statistical_call_chain,
8377         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
8378         to support call chains (backtrace) in the stat profiler.
8379         * profiler.c, profiler-private.h: Likewise.
8381 2008-05-22  Mark Probst  <mark.probst@gmail.com>
8383         * generic-sharing.c: Init generic class when a method of it is
8384         requested via a runtime generic context.
8386 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
8388         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
8390         * reflection.c (mono_type_get_object): Add a FIXME.
8392         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
8394         * class.c (mono_class_get_method_by_index): New helper function, returning an
8395         entry in the class->methods array.
8397 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8399         * class.c (mono_class_init): Only do the array optimization for szarrays. 
8400         Avoid creating a generic vtable for generic instances as well.
8401         (mono_class_get_method_from_name_flags): Don't search in the metadata for
8402         generic instances.
8404 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
8406         * loader.c (mono_get_method_constrained): Inflate the signature
8407         with class context. Fix #325283.
8409 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8411         * object.c (mono_class_create_runtime_vtable): Add a comment.
8413         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
8414         where needed.
8415         (setup_interface_offsets): Handle the case when this is called twice for arrays.
8416         (mono_class_setup_vtable_general): Add an assert.
8417         (mono_class_init): Avoid creating a generic vtable for arrays.
8419         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
8420         here, let mono_class_init () do that.
8422         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
8423         interfaces in mscorlib.
8425         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
8426         interfaces. Add some comments.
8427         (mono_class_init): Call mono_class_setup_methods () here since it is no
8428         longer called by mono_class_setup_vtable ().
8430         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
8431         not set in class->vtable.
8432         (mono_class_create_runtime_vtable): Reenable the disabled code.
8434         * object.c (mono_class_create_runtime_vtable): Disable the last change for
8435         now as it causes some test failures.
8437         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
8438         if using the vtable trampoline. Also remove some strange code which put the
8439         generic methods themselves into the vtable slots. Remove the AOT init_vtable
8440         stuff as it is no longer needed.
8442 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
8444         * pedump.c: Give make --verify all option check code as well.
8445         Using --verify code won't check for metadata now.
8447 2008-05-19  Martin Baulig  <martin@ximian.com>
8449         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
8451         * mono-debug.c
8452         (_mono_debug_using_mono_debugger): New global variable; it's set
8453         directly by the debugger, so mono_debug_using_mono_debugger() also
8454         works after attaching.
8456 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
8458         * object.c (mono_class_create_runtime_vtable): Use memory barriers
8459         as we do double checked locking on MonoClass::runtime_info and
8460         MonoClassRuntimeInfo::domain_vtables.
8462 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
8464         * debug-helpers.c (print_field_value): Fix a warning.
8466 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
8468         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
8469         set in the AOT case.
8471 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8473         * class.c (mono_class_setup_vtable_general): Use memory barriers
8474         as we do double checked locking on MonoClass::vtable.
8476 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8478         * reflection.c (resolve_object): Inflate only if the generic context
8479         is not null. Fixes #389886.
8481 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
8483         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
8484         instead of g_free.
8486         Code is contributed under MIT/X11 license.
8488 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8490         * class.c: Revert unrelated change.
8492 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8494         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
8495         a generic instantiation, use mono_class_from_mono_type instead of playing
8496         with MonoType directly.
8498 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8500         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
8501         checks must ignore generic instantiations, so mono_class_has_parent is not
8502         suitable. Fixes #390128.
8504 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
8506         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
8507         it to avoid registering tokens during metadata generation. Fixes #390023.
8509 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8511         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
8512         consistent.
8514         Contributed under MIT/X11 license.
8516 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8518         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
8519         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
8520         to fixup the EXE image.
8521         (mono_cleanup): Use mono_close_exe_image.
8522         (mono_close_exe_image): New function.
8523         * image.c: Include "marshal.h".
8524         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
8525         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
8526         counting when the image is loaded outside of mono_image_open_full. Set status
8527         based on GetLastError.
8528         * coree.c: Include required headers. Add init_from_coree.
8529         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
8530         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
8531         (_CorExeMain): Set init_from_coree.
8532         (CorExitProcess): Only call ExitProcess for now.
8533         (CorBindToRuntimeEx): New stub implementation.
8534         (CorBindToRuntime): New function.
8535         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
8536         (MonoFixupExe): ILONLY executables require no fixups.
8537         (mono_set_act_ctx): New function to set activation context.
8538         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
8539         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
8540         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
8541         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
8542         as MONO_INTERNAL.
8543         * domain-internals.h: Add mono_close_exe_image.
8545         Contributed under MIT/X11 license.
8547 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
8549         * metadata.c (mono_metadata_compute_size): Correctly calculate field
8550         size for generic param and event tables. Fixes #388977.
8552 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
8554         * loader.c (mono_method_signature): Use memory barriers because of the double
8555         checked locking pattern.
8557         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
8558         aborting or aborted as well. Fixes #376391.
8559         
8560         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
8561         existing runtime state in the Suspend handler during shutdown.
8563 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
8565         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
8567         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
8568         which are starting up or shutting down.
8570         * threads.c (mono_threads_set_shutting_down): Don't return a value since
8571         this function never returns if the runtime is already shutting down.
8573         * icall.c (ves_icall_System_Environment_Exit): Update after 
8574         mono_threads_set_shutting_down () signature change.
8575         
8576 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
8578         * class.c: Added can_access_instantiation to verify if the instantiation
8579         is visible. Fix access check for nested types as they returned TRUE
8580         before doing type and generic instantiation visibility checks.
8582 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8584         * reflection.c (mono_reflection_create_generic_class): The created type
8585         must have a different container from its TypeBuilder. Otherwise they
8586         will end sharing generic arguments, which is wrong.
8588         Due to the sharing, making a generic instance of the created type using
8589         the TypeBuider generic arguments resulted in the generic type definition
8590         been returned, which is wrong as well.
8592         As a bonus the code was leaking the type_params array. This memory should
8593         be allocated from the image mempool.
8595         This fixes bug #354047.
8597 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8599         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
8600         to here         as they are now used in assembly.c new code.
8601         Added a skipverification flag to MonoAssembly.
8602         New internal function mono_assembly_has_skip_verification.
8604         * assembly.c: New function mono_assembly_has_skip_verification. It checks
8605         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
8606         part of #387274.
8608 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
8610         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
8611         needed. Fixes #387034.
8613         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
8615 2008-05-06  Miguel de Icaza  <miguel@novell.com>
8617         * assembly.c (mono_assembly_load_reference): Prevent crash while
8618         disassembling Silverlight 2.0 executables while we still do not
8619         have GACed libraries.
8621 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
8623         * reflection.c: Special case generic type definitions as well. Fixes #383444.
8625 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
8627         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
8628         of the dynamic case. Fixes #387404.
8630 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8632         *verify.c (mono_verifier_is_class_full_trust): If under
8633         verify_all and the verifier mode was not set, only
8634         gac and corlib types are fulltrust. This makes --verify-all
8635         usable to detect unverifiable code, which is the expected
8636         use case.
8638 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8640         * verify.h: Ops, commited the header with debug
8641         enabled.
8643 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8645         * verify.c (merge_stack): Use the new value on unverifiable
8646         stack merges.
8648         * verify.c (verify_type_compatibility_full): Comparison
8649         of nullable types can't use mono_class_is_assignable_from.
8651         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
8652         that makes all verification errors be reported.
8654         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
8655         mono_method_verify.
8657 2008-05-05  Robert Jordan  <robertj@gmx.net>
8659         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
8660         support for value types. See #386415.
8662         * object.c: comments.
8664         Code is contributed under MIT/X11 license.
8666 2008-05-05  Martin Baulig  <martin@ximian.com>
8668         * debug-mono-symfile.h
8669         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
8670         for old pre-terrania symbol files.
8672 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8674         * mono-config.c: Add ppc64 architecture.
8676         Code is contributed under MIT/X11 license.
8678 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8680         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
8681           PPC64 uses function descriptors as well.
8683         Code is contributed under MIT/X11 license.
8685 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
8687         * object.c (compute_class_bitmap): Ignore literal static fields.
8689         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
8690         var has an invalid format.
8691         (describe_ptr): Add some sanity checks for the vtable.
8692         (add_nursery_frag): Clear unused nursery fragments.
8693         (major_collection): Clear all remaining nursery fragments.
8695 2008-05-03  Robert Jordan  <robertj@gmx.net>
8697         * image.c, metadata-internals.h: add thunk_invoke_cache.
8699         * marshal.c, marshal.h: implement
8700         mono_marshal_get_thunk_invoke_wrapper ().
8702         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
8704         Code is contributed under MIT/X11 license.
8706 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8708         * verify.c (do_leave): Empty the stack.
8710 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8712         * class.c (mono_class_is_assignable_from): Variance
8713         doesn't work between reference and value types. For example,
8714         given type C<T+>, C<int32> is not assignable to C<object>.
8715         Break the argument checking loop on first error. 
8717 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
8719         * icall.c : base64_to_byte_array() needs some more strict
8720           check for sequence of '=' characters. Patch by Santa
8721           Marta (http://deee.g.hatena.ne.jp/santamarta).
8723           Contributed under MIT/X11 license.
8724           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
8726 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
8728         * domain.c: Disable LoadLibrary support to fix Win32 build.
8730         Code is contributed under MIT/X11 license.
8732 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
8734         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
8735         to help with cache behaviour.
8737 2008-05-01  Miguel de Icaza  <miguel@novell.com>
8739         * appdomain.c (mono_domain_from_appdomain): Add new accessor
8740         method. 
8742 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
8744         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
8746 2008-05-01  Dick Porter  <dick@ximian.com>
8748         * process.c (process_get_fileversion): Only pass 16 bits of
8749         language ID to VerLanguageName.  Fixes bug 381204.
8751 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
8753         * verify.c (mono_method_verify): Fix the comparison
8754         operator for code bounds check.
8756 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
8758         * verify.c (mono_method_verify): Check the bounds of
8759         all access of the code array.
8761 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
8763         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
8765 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
8767         * image.c (mono_image_strong_name_position): Fix return value when the rva is
8768         not valid.
8770 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
8772         * loader.c (mono_get_method_from_token, mono_method_signature): Add
8773         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
8774         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
8775         fixup main EXE images when using mono.exe for mixed-mode assembly support.
8776         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
8777         mono_runtime_load.
8778         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
8779         runtime initialization from metadata.
8780         * assembly.c: Remove obsolete ceGetModuleFileNameA.
8781         (mono_set_rootdir): Use mono_get_module_file_name.
8782         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
8783         handles.
8784         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
8785         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
8786         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
8787         MonoCLIImageInfo. Add support for module handles.
8788         (load_cli_header): Update mono_cli_rva_image_map signature.
8789         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
8790         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
8791         (mono_image_rva_map): Add support for module handles.
8792         (mono_image_ensure_section_idx): Add support for module handles.
8793         (mono_image_close): Add support for module handles.
8794         (do_load_header): Add support for module handles.
8795         (mono_image_open_from_module_handle): New function for internal use.
8796         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
8797         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
8798         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
8799         handles.
8800         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
8801         * image.h: Add mono_image_fixup_vtable.
8802         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
8803         support.
8804         * coree.h: New file.
8805         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
8806         unsupported native code.
8807         (mono_marshal_set_callconv_from_modopt): New function splitted from
8808         mono_marshal_get_managed_wrapper.
8809         (mono_marshal_get_managed_wrapper): Use
8810         mono_marshal_set_callconv_from_modopt.
8811         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
8812         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
8813         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
8814         that results in a deadlock when the runtime is loaded in _CorDllMain.
8815         * Makefile.am: Add coree.c and coree.h.
8817         Contributed under MIT/X11 license.
8819 2008-04-28  Mark Probst  <mark.probst@gmail.com>
8821         * generic-sharing.c: Search for type arguments in array element
8822         types as well.
8824 2008-04-28  Mark Probst  <mark.probst@gmail.com>
8826         * class-internals.h, generic-sharing.c: New, small runtime generic context.
8828         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
8830         * object.c: Don't setup the RGCTX when the vtable is created,
8831         because we're setting it up lazily now.
8833 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
8835         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
8836         64 bit support.
8838 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
8840         * verify.c (verify_class_for_overlapping_reference_fields): 
8841         If class is under fulltrust allow reference types to overllap
8842         if they have the same RVA.
8844 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
8846         * pedump.c: Added new flag valid-only, that makes the verifier
8847         behaves just like --security=validil. It won't fail type load
8848         due to unverifiable restrictions.
8850 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
8852         * class-internals.h (struct MonoMethod): Added a verification_success
8853         field to cache verifier executions. Reduced MonoMethod:slot size by
8854         one bit.
8856 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
8858         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
8859         instead of a 'vt' argument to save an indirection and to allow these to be used
8860         for valuetypes.
8861         (scan_vtype): New helper function to scan an area using a gc descriptor.
8862         (mono_gc_wbarrier_value_copy): Implement this.
8863         (handle_remset): Add support for REMSET_VTYPE.
8864         (find_in_remset_loc): Ditto.
8865         (mono_gc_base_init): Allow some debugging options to be controlled through the
8866         use of the MONO_GC_DEBUG env variable.
8867         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
8868         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
8870 2008-04-23  Martin Baulig  <martin@ximian.com>
8872         * domain.c (mono_domain_create): Move the call to
8873         mono_debug_domain_create() down, after allocating the domain id.
8875 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
8877         verify.c (verify_class_for_overlapping_reference_fields): Skip
8878         static fields while verifying for overlapping fields as they
8879         don't matter at all.
8881 2008-04-23  Marek Habersack  <mhabersack@novell.com>
8883         * domain-internals.h: added a declaration of
8884         mono_make_shadow_copy.
8886         * assembly.c (mono_assembly_open_full): shadow copying of
8887         assemblies moved to here, so that all the assemblies within the
8888         application domain's private binary directories can be
8889         processed. Fixes bug #380546
8891         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
8892         mono_make_shadow_copy and made non-static. The decision whether
8893         to shadow-copy an assembly is made based on its location - it's
8894         copied if it's in one of the private application domain binary
8895         directories and its different to the target file in the shadow
8896         directory. Fixes bug #380546
8898 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
8900         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
8902         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
8903         types.
8905         * reflection.c (mono_image_create_token): Handle 
8906         Method/ConstructorOnTypeBuilderInst.
8907         (resolve_object): Ditto.
8908         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
8909         so it can be called from resolve_object. Also handle the case when the inflated
8910         class already has its methods setup.
8912 2008-04-21  Martin Baulig  <martin@ximian.com>
8914         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
8916 2008-04-20  Geoff Norton  <gnorton@novell.com>
8918         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
8919         pointer dereference.
8921 2008-04-15  Marek Habersack  <mhabersack@novell.com>
8923         * appdomain.c (try_load_from): if IOMAP is in effect, call the
8924         portability API to look up the assembly file. Fixes behavior in
8925         situations when the application has a bin/ directory, but the
8926         assembly search patch refers to Bin/ (and thus the requested file
8927         name is Bin/SomeLibrary.dll). Fixes bug #379888
8929 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
8931         verify.c (mono_type_is_generic_argument): Extracted this check
8932         from a dozen places to here.
8934         verify.c: Fixed all issues related to boxing generic arguments
8935         and their constraints.
8937 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
8939         verify.c (mono_class_interface_implements_interface): Fix win32 build.
8941 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
8943         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
8944         isn't finished yet. Fixes #363447.
8946 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
8948         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
8949         Fixes #346419.
8951 2008-04-13  Jb Evain  <jbevain@novell.com>
8953         * domain.c: update the 2.1 profile versions.
8954         Merged from the Moonlight 2 branch.
8956 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
8958         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
8959         mscorlibs for the non-refonly case as well.
8961         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
8962         in mono_assembly_load_from_full (). Fixes #378924.
8964 2008-04-11  Geoff Norton  <gnorton@novell.com>
8966         * icall.c: The global extern environ doesn't exist on Mac.  We
8967         need to call NSGetEnviron instead.
8969 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8971         verify.c: Add generic method constraint verification.
8973 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8975         class.c (mono_class_inflate_generic_method_full): Add a long
8976         explanation to the is_mb_open hack. Remove the FIXME.
8978 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8980         * verify.c (mono_method_verify): Mark all unknown opcodes
8981         as invalid. Mark jmp as unverifiable.
8983 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8985         * verify.c: Add code to do type constraint verification on class instances.
8987         * verify.c (mono_verifier_verify_class): Use the type constraint 
8988         verification code.
8990 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8992         * class.c (mono_class_get_field_default_value): Don't pass cindex
8993         as hint to mono_metadata_get_constant_index. The local is not initialized
8994         and should contain garbage most of the time. This could only work
8995         with a lot of luck.
8997 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
8999         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9001 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9003         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9005         * class.c (mono_class_from_generic_parameter): Save the token of the
9006         generic param in MonoClass::sizes.generic_param_token.
9008         * reflection.c (mono_custom_attrs_from_class): If the class type is
9009         VAR or MVAR retrieve the attributes of the generic param.
9011 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9013         * class.c (mono_class_init): Do class verification if the verifier
9014         is enabled.
9016 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9018         * verify-internal.h: Added mono_verifier_verify_class.
9020         * verify.c: Added mono_verifier_verify_class. It checks for
9021         classes with explicit layout that have overlapping reference fields.
9023         * pedump.c: Init the verifier state prior to verification. Fixed
9024         command line arguments.
9026 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9028         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9030 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9032         * verify-internals.h: Fix a warning.
9034 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9036         * verify-internals.h: New header with the verifier configuration
9037         extracted from mini.c.
9039         * verify.c: Implemented the new functions exported by verify-internals.h.
9041 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9043         * verify.c: Add proper verification of ckfinite.
9045 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9047         * verify.c (do_conversion): Improved error message to something
9048         more meanfull.
9050         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9051         with primitive types.
9053 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9055         * verify.c: Added tail prefix checking. Marked icall
9056         as unverifible.
9058 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9060         * verify.c: Fix the detection of branches to the middle
9061         of an instruction.
9063 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9065         * verify.c: Implemented verification of volatile. and
9066         unaligned. prefix. Check if a type is valid after retrieving it.
9068 2008-04-01  Dick Porter  <dick@ximian.com>
9070         * process.c (process_get_fileversion): If there's no string block,
9071         set the file language to en_US.  Fixes the other new part of bug
9072         374600.
9074 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9076         * class.c: New functions mono_method_can_access_field_full and
9077         mono_method_can_access_method_full. They perform type visibility
9078         and type site check.
9080         * class-internal.h: Added exported functions.
9082         * verify.c: Use new functions to implement proper visibility checks.
9084 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9086         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9088 2008-03-28  Dick Porter  <dick@ximian.com>
9090         * process.c (process_get_fileversion): Use the first language ID
9091         we see, rather than insisting on an invariant language.  Fixes bug
9092         374600.
9094 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9096         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9097         the streams to fix reading of invalid memory later.
9099         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9100         to ease debugging.
9102 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9104         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9105         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9107 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9108         * threads.h: Added MonoThreadManageCallback type and
9109         mono_thread_set_manage_callback prototype
9110         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9111         (used to store the mono_thread_manage callback).
9112         * threads.c: Added mono_thread_set_manage_callback, and handle
9113         "MonoThread->manage_callback" in build_wait_tids.
9115 2008-03-26  Dick Porter  <dick@ximian.com>
9117         * process.c (process_get_fileversion): Set FileVersionInfo strings
9118         to Empty when the resource doesn't have the particular info.
9119         Fixes bug 355717.
9121 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
9123         * verify.c (mono_method_verify): Proper prefix validation.
9125 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
9127         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
9128         itself in a separate argument instead of throwing them. Fixes #373448.
9130         * appdomain.c: Bump corlib version.
9132 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
9134         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
9136 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
9138         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
9139         version macros.
9141 2008-03-20  Mark Probst  <mark.probst@gmail.com>
9143         * generic-sharing.c, class-internals.h: Code for putting
9144         reflection types into the runtime generic context.
9146 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
9148         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
9149         Fixes #340662. 
9152 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
9154         * verify.c (VerifyContext): Added instruction prefix data to the struct.
9156         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
9158         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
9160         * verify.c (do_cast): Let the result value keep the boxed status.
9162         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
9164 2008-03-17  Jb Evain  <jbevain@novell.com>
9166         * reflection.c: when running on a 2.0 runtime, emit
9167         unconditionally the #~ header version as 2.0, and the
9168         CLI header version as 2.5, for symmetry's sake with csc.
9170 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9172         * class.c: Remove the unused cache_interface_offsets stuff.
9174         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
9175         profiler.c: Fix warnings.
9177 2008-03-16  Mark Probst  <mark.probst@gmail.com>
9179         * generic-sharing.c, class-internals.h: Support for putting
9180         methods into the runtime generic context.
9182 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9184         * class.c (mono_class_setup_fields): Ignore calls made to this function for
9185         classes which are generic instances of not-yet finished typebuilders. Fixes
9186         #351172.
9188         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
9190 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
9192         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
9194         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
9195         field, replace it with a hash table in MonoDynamicImage.
9197         * reflection.c (inflate_mono_method): Access the generic definition object from
9198         image->generic_def_objects instead of imethod->reflection_info.
9200         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
9202         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
9203         
9204         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
9205         function in reflection.c so it is easier to keep in sync with the dynamic image
9206         creation code.
9208         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
9209         mono_image_close ().
9211 2008-03-15  Mark Probst  <mark.probst@gmail.com>
9213         * class.c (mono_class_generic_sharing_enabled): Disable generic
9214         sharing for all architectures except AMD64 and x86 to fix build.
9216 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9218         * verify.c: Use the generic definition MonoGenericContext when available.
9219         Remove code for checking generics instance compatibility in favor of
9220         mono_class_is_assignable_from.
9222 2008-03-14  Mark Probst  <mark.probst@gmail.com>
9224         * marshal.c, marshal.h, metadata-internals.h, image.c,
9225         wrapper-types.h: New wrapper for invoking a shared static method
9226         without having to pass the runtime generic context argument.
9228 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9230         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
9232 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
9234         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
9235         
9236         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
9237         create a token from a FieldOnTypeBuilderInst.
9238         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
9239         (resolve_object): Ditto.
9241         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
9242         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
9244 2008-03-14  Martin Baulig  <martin@ximian.com>
9246         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
9248         * debug-mono-symfile.h
9249         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
9250         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
9252 2008-03-10  Martin Baulig  <martin@ximian.com>
9254         * debug-mono-symfile.h
9255         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
9256         `lexical_block_table_offset'.
9257         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
9258         `lexical_blocks'.
9259         (MonoSymbolFile): Added `version'.
9261         * mono-debug.h
9262         (MonoDebugLexicalBlockEntry): Removed.
9263         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
9264         `lexical_blocks'.
9266         * mono-debug.c (mono_debug_add_method): Don't compute lexical
9267         blocks here; the debugger now does this internally.
9269 2008-02-27  Martin Baulig  <martin@ximian.com>
9271         * object.c (mono_runtime_exec_main): Call
9272         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
9273         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
9275 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9277         * verify.c (verify_type_compatibility_full): Allow native int to be converted
9278         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
9280 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9282         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
9283         ldftn with a virtual method.
9285 2008-03-13  Geoff Norton  <gnorton@novell.com>
9287         * decimal.c:  Only include memory.h if the platform has it.
9289 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
9291         * assembly.c, class.c, metadata-internals.h: make sure public key
9292         tokesns are compared in a case-insensitive way. Also, all
9293         the lookups in the GAC use a lowercase public key token
9294         (gaacutil already does the lowercasing on install). Fixes
9295         bug #369541.
9297 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
9299         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
9300         and return value.
9302 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
9304         * image.c: when someone loads a mscorlib from a file, return the
9305         currently loaded mscorlib (fixes bug #369253).
9307 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9309         * class.c: handle types with no parents by forcing them to have
9310         System.Object as a parent and marking them as broken (this currently
9311         allows the first part of bug #369173 to work as well, likely because
9312         we don't check for typeload exceptions everywhere yet).
9314 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
9316         * class.c: more complete check that types belong to corlib
9317         (fixes second part of bug #369173).
9319 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
9321         * generic-sharing.c:  Including glib.h for the MSVC builds to define
9322           "inline" to "__inline" before including mono-membar.h.
9323           
9324         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
9325           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
9326           MSVC builds.
9328         Contributed under MIT/X11 license.
9330 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9332         * verify.c (do_invoke_method): Remove return type validation.
9334         * verify.c (do_ret): Do return type validation at return site instead of
9335         call site.
9337 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9339         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
9341         * verify.c: Some todos cleaned and improved a few error messages.
9343 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
9345         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
9347 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
9349         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
9350         system types correctly.
9352         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
9353         function.
9355 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9357         * assembly.c (build_assembly_name): Fix a warning.
9359 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9361         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
9362         the called function takes an object type argument. Fixes storing or
9363         valuetypes across remoting as well as reducing memory usage.
9364         * image.c, metadata-internals.h: remove now unused ldfld_remote and
9365         stfld_remote wrapper caches.
9367 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9369         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
9370         is not found.
9372         * reflection.c (mono_image_register_token): New helper function to save
9373         a token->object mapping.        
9375         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
9376         managed code.
9378         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
9379         one dimension arrays. Fixes #367670.
9380         (mono_reflection_get_type_internal): Ditto.
9382 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
9384         * marshal.c: mono_load_remote_field_new() always returns object.
9385         so use the proper signature (fixes bug #366445).
9387 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9388         
9389         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
9390         add an 'inline_failure' flag instead.
9392 2008-03-04  Mark Probst  <mark.probst@gmail.com>
9394         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
9395         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
9396         contains the location of "this", used for exception handling.
9398 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9400         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
9401         their size on all platforms for perf reasons.
9403 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9405         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
9406         object-internal.h
9408         * object-internal.h: Same.
9410 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9412         * reflection.h: Fix the build I just broke.
9414 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9416         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
9417         Test if a token is valid, this remove explicit usage of 
9418         MonoDynamicImage::tokens from the verifier code.
9420         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
9422         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
9423         instead of direct access to MonoDynamicImage::tokens.
9425 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9427         * verify.c (token_bounds_check): Fix the build I just broke.
9429 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9431         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
9433         * verify.c (verifier_load_method): Fixed the errors message.
9435         * verify.c (mono_method_verify): Fixed a debug message.
9437 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
9439         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
9440         mono-perfcounters.h, class-internals.h: support for predefined
9441         writable counters, query of categories and counters, bugfixes.
9443 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9445         * verify.c (do_refanytype): Verify the refanytype opcode.
9447         * verify.c (mono_method_verify): Use do_refanytype.
9449 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9451         * verify.c (do_mkrefany): Verify the mkrefany opcode.
9453         * verify.c (mono_method_verify): Use do_mkrefany.
9455 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
9457         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
9458         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
9459         implementation.
9461 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9463         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
9464         the type load exception.
9466 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
9468         * verify.c: Added a few FIXME for method signatures
9470         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
9471         of mono_method_get_signature and get vararg call working. Removed unused
9472         checks for return value.
9474         * verify.c (do_refanyval): Verify the refanyval opcode.
9476         * verify.c (mono_method_verify): Implemented verification of arglist and
9477         use do_refanyval.
9479 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9481         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
9482         vtypes to marshal.c.
9484         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
9485         it works for AOT as well.
9487 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9489         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
9490         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
9491         the system time is adjusted.
9493 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
9495         * icall.c, icall-def.h: use the new time functions (fixes the
9496         non-monotonic behaviour of TickCount).
9498 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
9500         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
9501         it breaks the build.
9502         
9503         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
9504         cattr is not finished yet.
9506 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9508         * verify.c: Proper token validation for field, method and type.
9510 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9512         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
9514         * loader.c (method_from_memberref): Generate type load error instead of method missing
9515         if the type is not found.
9517 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
9519         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
9520         some of the conversions caused the generation of a marshal directive exception.
9522 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9524         verify.c: Report which exception should be thrown by the JIT.
9525         Added a lot of FIXME notes.
9527 2008-02-22  Mark Probst  <mark.probst@gmail.com>
9529         * generic-sharing.c: Runtime generic context slots are not
9530         instantiated on init anymore.  Instead, provide function to do the
9531         instantiating on demand.
9533         * class-internals.h: Added vtable to runtime generic context.
9534         Macros for encoding direct and indirect slot offsets in one
9535         guint32.
9537 2008-02-21  Mark Probst  <mark.probst@gmail.com>
9539         * object.c, generic-sharing.c: Moved some generic sharing code
9540         from object.c to generic-sharing.c.
9542         * generic-sharing.c: Added support for extensible runtime generic
9543         context.
9545         * metadata-internals.h: Two new hash tables in MonoImage for
9546         extensible runtime generic context support.
9548         * domain.c: Unregister generic vtables upon domain unloading.
9550         * image.c: Destroy new hash tables upon image unloading.
9552         * metadata.c: Unregister generic subclasses upon image unloading.
9554         * class-internals.h: New data structure for runtime generic
9555         context template.  New fields in the runtime generic context for
9556         extensible part.
9558         * Makefile.am: Added generic-sharing.c.
9560 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9562         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
9563         there is a pending loader exception, raise it.
9565         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
9566         same.
9568         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
9569         same.
9571         Fixes #363450.
9573 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
9575         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
9577         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
9578         
9579         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
9580         ref-only requests for compatibility with MS.
9582 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9584         * reflection.c (mono_custom_attrs_from_method): Don't silently
9585         return an empty list for generic method instances.
9586         (mono_custom_attrs_from_param): Likewise.
9588 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
9589             Raja R Harinath  <harinath@hurrynot.org>
9591         Fix #354757
9592         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
9593         * class.c (mono_class_inflate_generic_method_full): Initialize it
9594         when a fully-open method is instantiated.
9595         * metadata.c (inflated_method_equal, inflated_method_hash): Update
9596         to new field.
9597         * reflection.c (inflate_mono_method): Don't create a temporary context.
9599 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9601         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
9602         Compute correct value, to prepare for imethod->reflection_info going away.
9604 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
9606         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
9608 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9610         * verify.c: Implement skip visibility flag.
9612 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9614         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
9615         which contains an extra field to tell the kind of exception that should be thrown.
9617         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
9619 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
9621         * loader.c (mono_method_get_param_names): Initialize 'klass' after
9622         'method' is updated.
9624 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
9626         * class.c (mono_class_layout_fields): Set class->min_align for classes using
9627         explicit layout as well. Fixes #360375.
9629 2008-02-11  Geoff Norton  <gnorton@novell.com>
9631         * loader.c: Guard and dereference against inflated generic methods
9633 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
9635         * class.c: Include Retargetable spec in assembly name.
9636         * assembly.c: Always include PublicKeyToken spec in assembly name
9637         (with value "null" if assembly is not signed), and include
9638         Retargetable spec.
9639         * icall-def.h: Added icall for Assembly.get_fullname.
9640         * icall.c: Added icall returning the fullname of an assembly.
9642 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
9644         * class.c (mono_class_setup_vtable_general): Add a missing call to
9645         mono_class_setup_methods () which is needed in the AOT case.
9647 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
9649         * verify.c (mono_type_get_stack_name): Added. Return the name for the
9650         stack type of the given MonoType.
9652         * verify.c (verify_type_compatibility_full): Handle the void type.
9654         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
9655         way stack merging works.
9657         * verify.c (store_local): Improved verification message.
9659         * verify.c (do_branch_op): If the merging is invalid, the method
9660         is unverifiable and not invalid. Improved error message.
9662         * verify.c (merge_stacks): Properly merge a boxed valuetype and
9663         a reference type diferent than System.Object. Improved error
9664         message.
9666 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
9668         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
9670         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
9671         type of an enum even if the argument is byref.
9673         * verify.c: Replace all explicit uses of enumtype and enum_basetype
9674         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
9676         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
9678         *verify.c (verify_type_compatibility_full): Make enum types
9679         compatible with their base types.
9681         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
9682         types are compatible for the special case of a boxed valuetype and
9683         System.Object.
9685         * verify.c (verify_stack_type_compatibility): The function
9686         is_compatible_boxed_valuetype was extracted from here.
9688         * verify.c (push_arg): Only set ctx->has_this_store if the method
9689         is not static.
9691         * verify.c (do_ldelem): Fixed a typo in an error message and added
9692         strict check for mixing int32 and native int as the array type
9693         and ldelem type.
9695         * verify.c (merge_stacks): Consider boxed valuetypes in the
9696         compatibility checks.
9698 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
9699         * profiler.h: (MonoGCEvent): Added start-stop the world events.
9701 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9702         *class.c: use_new_interface_vtable_code: renamed the env var to have
9703         a "MONO_" prefix, and fix the logic to enable it by default.
9705 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9706         *class.c:
9707         mono_class_setup_vtable_general: rewrote the way in which interface
9708         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
9709         makes the code more maintainable.
9710         For now the old code is still there, and can be activated setting
9711         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
9713 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
9715         * verify.c: guarded some debug functions around and #ifdef.
9717         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
9719 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
9721         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
9722         changes for now since they seem to break too many things.
9724 2008-02-05  Mark Probst  <mark.probst@gmail.com>
9726         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
9727         mono_marshal_find_nonzero_bit_offset): Added macro and function
9728         for finding the byte- and bit-offset of a bitfield within a
9729         struct.
9731 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
9733         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
9734         (mono_marshal_get_struct_to_ptr): Ditto.
9736         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
9737         cctor_signature.
9739 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
9741         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
9742         between methods for non-corlib types.
9744 2008-02-02  Geoff Norton  <gnorton@novell.com>
9746         * loader.c (mono_method_get_param_names): Populate the parameter name for 
9747         generic parameters as well. (Fixes #342536)
9749 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
9751         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
9753         * verify.c (do_invoke_method): Fix for calling with byref structs.
9755         * verify.c (do_cast): push a boxed value type based on the type token and not
9756         the type of stack.
9758 2008-01-31  William Holmes  <billholmes54@gmail.com>
9760         * process.c (process_module_string_read): Check the size returned form 
9761           VerQueryValue to avoid out of memory exception. 
9763 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
9765         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9766         Handle properly modules which are not in the moduleref table. Fixes
9767         #356938.
9769 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
9771         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
9772         the dynamic case which is now in managed code.
9773         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
9775         * marshal.c (mono_string_to_bstr): Fix a warning.
9776         (init_com_provider_ms): Ditto.
9778         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
9780         * exception.c (mono_get_exception_out_of_memory): New helper function.
9782 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
9784         * marshal.c: Add support for BSTR marshalling
9785         using other COM systems.
9787         Code is contributed under MIT/X11 license.
9789 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9791         * object.c (mono_runtime_invoke_array): reverted previous
9792         commit as it breaks the build.
9794 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9796         * object.c (mono_runtime_invoke_array): Verify arguments for
9797         invalid types. Fixes #348522.
9799 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9801         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
9802         non-final virtual calls using call. 
9804         * verify.c (do_invoke): fixed some TODOs.
9806         * verify.c (push_arg): set has_this_store for "ldarga 0".
9808 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
9810         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
9811         which belong to an inflated class. Fixes #356531.
9813 2008-01-26  Robert Jordan  <robertj@gmx.net>
9815         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
9816         which resort to FindFirstFile when a certain error condition
9817         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
9818         Code is contributed under MIT/X11 license.
9820 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
9822         * marshal.c (emit_marshal_string): Fix out string marshalling
9823         to use specified encoding. Fixes #323900.
9825         Code is contributed under MIT/X11 license.
9827 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
9829         * class.c (mono_class_inflate_generic_method_full): Don't modify
9830         iresult->context after cache check.
9832 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
9834         * class.c (mono_class_inflate_generic_method_full): Change the
9835         struct assignments to memcpy for better visibility and add some comments.
9837 2008-01-23  Dick Porter  <dick@ximian.com>
9839         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
9840         procedure, and make it work on windows.
9842 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
9844         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
9845         a MonoReflectionTypeBuilder since it is always of that type.
9847         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
9849         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
9851         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
9852         
9853         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
9855         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
9857         * reflection.c (mono_reflection_create_runtime_class): Remove already created
9858         instantiations from the type cache.
9860 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9862         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
9864         * verify.c (do_unbox_value): push a controled mutability managed pointer.
9866 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9868         * verify.c (do_ldstr): added, verifies if the #US token is valid.
9870         * verify.c (mono_method_verify): removed old TODO
9872 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9874         * verify.c (do_newobj): add visibility check.
9876 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9878         * verify.c (do_load_function_ptr): add visibility check.
9880 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
9881         *class.c:
9882         mono_generic_class_get_class: hook profiler events.
9883         mono_field_get_offset: added to support heap-shot in the new profiler.
9884         *class.h: exported mono_field_get_offset.
9885         * reflection.c:
9886         mono_reflection_setup_internal_class: hook profiler events.
9888 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
9890         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
9891         argument here too and use it to avoid checking for pending exceptions if 
9892         possible.
9894 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
9896         * assembly.c (build_assembly_name): add arg for passing the assembly
9897         flags. Do not consider a PublicKey with value "null" valid.
9898         (mono_assembly_name_parse_full): added boolean argument that will be
9899         set if the assembly name contains a PublicKeyToken spec. Added support
9900         for the Retargetable spec for which only Yes or No are allowed as valid
9901         value. Consider assembly name invalid if Retargetable spec is set, but
9902         either version, culture or public key (token) are not specified.
9903         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
9904         with implementation in assembly.c.
9905         * icall.c (fill_reflection_assembly_name): also copy assembly flags
9906         from MonoAssemblyName.
9907         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
9908         introduced argument for mono_assembly_name_parse_full to know if the
9909         assembly name has a PublicKeyToken spec, and if it has instruct
9910         fill_reflection_assembly_name to use default value for keyToken (if
9911         PublicKeyToken is null).
9913 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
9915         * verify.c (mono_method_verify): fixed ovf ops with
9916         float values. They are unverifiable now.
9918 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
9920         * class.c (set_failure_from_loader_error): add BadImageException to the
9921         list of exceptions that can cause a type to fail to load.
9923         * class.c (mono_class_get_exception_for_failure): same.
9925 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
9927         * verify.c (in_any_exception_block): added, check if offset
9928         is part of any exception handling clause.
9930         * verify.c (get_stack_type): added VAR and MVAR types.
9932         * verify.c (do_stobj): better error messages.
9934         * verify.c (do_cpobj): added, check cpobj.
9936         * verify.c (do_initobj): added, check initobj.
9938         * verify.c (do_sizeof): added, check sizeof.
9940         * verify.c (do_localloc): added, check localloc.
9942         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
9944 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
9946         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
9947         save_lmf/restore_lmf opcodes.
9949         * threads.c (mono_threads_install_notify_pending_exc): New function to
9950         install a callback notifying the JIT there is a pending exception on a thread.
9951         (mono_thread_request_interruption): Call the new callback.
9952         (mono_thread_get_and_clear_pending_exception): New function to return the
9953         exception pending on a thread.
9955         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
9956         to turn off checking for pending exceptions.
9957         (mono_marshal_get_native_wrapper): Ditto.
9959 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
9961         * threads-types.h: Get rid of the unnecessary extern declarations.
9963 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
9965         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
9966         return field from parent class if not private.
9967         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
9968         returns fields from parent class if they are not private.
9969         (method_nonpublic): added function to determine if a given method
9970         should be considered non-public. Returns false for private methods
9971         on parent class, and internal methods from parent on the 1.0 profile.
9972         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
9973         use method_nonpublic function to determine whether method should be
9974         returned.
9975         (property_accessor_public): use newly introduced method_nonpublic
9976         function to determine whether accessor is non-public. 
9977         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
9978         event from parent class if not private. Only return static event if
9979         Static flag is set, and only return static event from parent class if
9980         FlattenHierarchy flag is set.
9981         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
9982         include non-private events from parent class.
9984 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
9986         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
9987         warning.
9989 2008-01-16  Wade Berrier <wberrier@novell.com>
9991         * security.c: Add assembly.h header to appease some warnings
9993 2008-01-16  Dick Porter  <dick@ximian.com>
9995         * process.c (process_module_string_read): Remove trailing null
9996         when saving string.
9998 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10000         * class-internals.h: A new data structure describing the layout of
10001         a runtime generic context (MonoRuntimeGenericContextTemplate).
10003         * metadata-internals.h: Added a hash table to MonoDomain that maps
10004         from open generic classes to their runtime generic context
10005         templates.
10007         * object.c: Building of the runtime generic context, including
10008         proper handling of generic type arguments of superclasses.
10009         Building of the runtime generic context according to the template.
10011 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10013         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10014         Fixes #350856.
10016         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10017         mono_portability_find_file (). Fixes #325466.
10018         (mono_image_get_public_key): Fix a warning.
10020 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10022         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10023         Fixes #353550.
10024         (mono_class_from_name_case): Ditto.
10026 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10028         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10029           common storage for the tables used in the System/NumberFormatter class.
10031 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10033         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10035 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10037         * verify.c (get_boxable_mono_type): check if the token is valid.
10039         * verify.c (set_stack_value): changed to add an error if an
10040         invalid type is set on stack. Changed all callers due to signature change.
10042         * verify.c (do_stobj): implement stobj validation.
10044 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10046         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10047         set container->is_method, it was set earlier.
10049         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10050         generic methods.
10052         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10053         is_method of the generic container to TRUE for methods.
10055 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10057         * metadata.c (type_in_image): Handle type parameters properly.
10059         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10060         memory ownership of this structure.
10062 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10064         * verify.c (get_boxable_mono_type): make typedref types been just
10065         unverifiable. check for void type.
10067         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10069         * verify.c (do_load_function_ptr): accept method spec tokens.
10071 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10073         * marshal.c (mono_class_native_size): Always set *align even if this is called
10074         recursively.
10076 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10078         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10079         out-of-date.
10081 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10083         * verify.c: removed some old unused tables. A huge bunch of small fixes
10084         to things found while testing the verifier with mono basic.
10086         * verify.c (dump_stack_value): dump null literal flag to.
10088         * verify.c (verify_type_compatibility_full): fix comparison
10089         for types that have a generic super type.
10091         * verify.c (verify_stack_type_compatibility): fix compatibility
10092         between null literals and reference types. fix compatibility between
10093         boxed valuetypes and object. fix corner case test for enums.
10095         * verify.c (do_cmp_op): proper verification of cgt.un in case
10096         of reference types.
10098         * verify.c (do_invoke_method): fix error message.
10100         * verify.c (do_store_indirect
10102         * verify.c (check_is_valid_type_for_field_ops): proper verification
10103         of managed pointers to valuetypes and boxed valuetypes. proper verification
10104         of null literals.
10106         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10107         allow token to be a reference type.
10109         * verify.c (do_cast): proper handling of boxes valuetypes.
10111         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10112         in object[].
10114         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
10115         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
10116         fixed the decoding of unbox_any
10118 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
10120         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
10122 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
10124         * verify.c (do_newobj): do delegate verification.
10126         * verify.c (verify_delegate_compatibility): perform delegate
10127         verification.
10129         * verify.c (verify_ldftn_delegate): perform tests related to
10130         ldftn delegates.
10132         * verify.c (mono_delegate_signature_equal): perform the
10133         slightly diferent signature comparison required by delegates.
10135         * metadata.c (mono_metadata_type_equal_full): added and exported
10136         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
10137         allows signature only comparison.
10139         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
10140         as MONO_INTERNAL.
10142 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
10144         * verify.c: added a bunch of stack_slot_* functions to
10145         make access to stack slot type easier. This is required to
10146         allow optional flags, like null literal, boxed value and
10147         this pointer.
10148         All access paths to IlStackDesc::stype have been changed 
10149         to use these new funcions.
10150         Removed a bunch of unused functions and cleared all warnings.
10151         This patch introduces the usage of the this pointer and 
10152         boxed value flags.
10154 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
10156         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
10158 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
10160         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
10161         match managed version.
10163         * appdomain.c: Bump corlib version.
10164         
10165         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
10166         argument.
10168 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
10170         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
10171         Set public key token to zero-length byte array if assembly is not
10172         strongnamed.
10174 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10176         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
10177         writing a vtype array elem.
10179 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
10181         * assembly.c (build_assembly_name): return FALSE if length of token is
10182         not 16 (if not "null").
10183         (mono_assembly_name_parse_full): return FALSE if value of version,
10184         culture, token or key is 0.
10185         * icall.c (fill_reflection_assembly_name): add boolean arguments to
10186         specify whether public key and public key token must be set to default
10187         value (zero-length byte array) if not available. Set versioncompat to
10188         SameMachine. If public key is available or the default is set, then
10189         set PublicKey flag.
10190         (ves_icall_System_Reflection_Assembly_FillName): if no public key
10191         is available, use empty byte array as default value. On the 2.0
10192         profile, use default value for public key token if not set.
10193         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
10194         profile, use default value for public key if not set. On the 2.0
10195         profile, use default value for public key token if not set.
10196         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
10197         default values for public key and public key token.
10199 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10201         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
10202         field to keep it in synch with the managed object.
10204         * marshal.c (emit_marshal_object): Add support for byref marshalling of
10205         delegates. Fixes #351520.
10207         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
10208         contains defined memory.
10209         
10210         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
10212         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
10213         
10214         * sgen-gc.c (check_consistency): New helper function to do a consistency check
10215         of the GC data structures.
10217         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
10219         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
10220         
10221         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
10222         barrier.
10223         (mono_array_clone_in_domain): Ditto.
10224         (mono_array_clone_in_domain): Ditto.
10226         * threads.c (start_wrapper): Register the thread start argument as a GC root.
10227         (cache_culture): Use a write barrier.
10229         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
10230         (ves_icall_get_property_info): Ditto.
10232         * object.h (MONO_STRUCT_SETREF): New macro.
10234         * class-internals.h (MonoStats): Add some GC statistics.
10236         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
10238 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
10240         * exception.c (mono_exception_from_name_two_strings):
10241         Break from loop after method is found.
10243 2008-01-04  Dick Porter  <dick@ximian.com>
10245         * process.c (process_module_string_read): Rename variable to
10246         reflect correct usage, after fixing bug 345972.
10248 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
10250         * verify.c (mono_type_create_fnptr_from_mono_method): 
10251         created a MonoType function pointer instance to be used during
10252         verification. The verifier releases this memory at end.
10254         * verify.c (mono_method_is_constructor): extracted repeated
10255         checks for constructor into a single class.
10257         * verify.c (do_push_field): use new extracted method
10258         for constructor check.
10260         * verify.c (do_newobj): same.
10262         * verify.c (do_ldftn): renamed to do_load_function_ptr
10263         and make it verify ldvirtftn too.
10265         * verify.c (mono_method_verify: proper verification
10266         of ldvirtftn. release created MonoMethod instances.
10268 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10270         * verify.c (token_bounds_check): added.
10272         * verify.c (do_ldftn): added.
10274         * verify.c (mono_method_verify): proper verificartion of ldftn.
10276 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10278         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
10279         than the table row count. It's the resposibility of the caller to
10280         make the bounds check and raise the correct error.
10282         * metadata.c (mono_metadata_decode_row_col): Same.
10284         * loader.c (mono_get_method_from_token): perform bounds check
10285         on token for methoddef table.
10287 2007-12-29  Miguel de Icaza  <miguel@novell.com>
10289         * icall.c
10290         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
10291         assert into a negative result, the managed code already coped with
10292         that.
10294         Some folks on Windows reported this error. 
10296 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
10298         * appdomain.c: Bump corlib version.
10299         * icall.c:
10300         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
10301         CultureInfo.CreateCulture to create CultureInfo for name.
10302         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
10303         create CultureInfo for name. Fixes bug #347174.
10305 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10307         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
10308         flags.
10310         * verify.c (is_valid_branch_instruction): allow branching to the
10311         first instruction of the protected block.
10313         * verify.c (is_valid_cmp_branch_instruction): same.
10315         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
10316         avoid double initialization.
10318         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
10319         detect which cases the eval stack should just be copied.
10321         * verify.c (mono_method_verify): check if the eval stack
10322         is empty when entering a protected block.
10324 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10326         * verify.c: added is_clause_in_range, is_clause_inside_range,
10327         is_clause_nested and verify_clause_relationship. They perform
10328         the verifications stated in P1 12.4.2.7.
10330         * verify.c (mono_method_verify): remove some unused variables,
10331         add the new exception clause checks, add instruction border
10332         checks for protected block start/end, improved some error 
10333         messages and fixed a bug in the way invalid instruction access
10334         is detected.
10336 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
10338         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
10339         from GC 7.0 if available.
10341         * object.c: Remove an unused define.
10342         
10343         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
10345         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
10347         * null-gc.c (mono_gc_make_descr_for_array): Implement.
10349         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
10351         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
10352         to take the same arguments as the other make_descr functions.
10354         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
10356         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
10357         directly.
10359         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
10360         mini.c.
10362         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
10363         call to boehm-gc.c.
10365         * boehm-gc.c (mono_gc_register_root): Fix a warning.
10367         * null-gc.c (mono_gc_register_root): Fix a warning.
10369         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
10371         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
10372         (mono_gc_base_init): Call GC_init ().
10374         * null-gc.c: Define mono_gc_register_root () as a no-op.
10376         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
10378 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
10380         * verify.c: add prototype for merge_stacks at top
10382         * verify.c (do_switch): added.
10384         * verify.c (merge_stacks): on some cases the stack merging
10385         was not happening properly. Unequal stack sizes at merge
10386         points should be invalid.
10388         * verify.c (mono_method_verify): added more debug info on stack state.
10389         verify switch properly.
10391 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
10393         * method-builder.h: New file, moved the mono_mb_ declarations here from 
10394         marshal.h.
10396         * boehm-gc.c marshal.c: Include method-builder.h.
10398         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
10400         * marshal.c: Remove some code which is now in method-builder.c.
10402 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
10404         * method-builder.c: New file, extraction of the method builder functionality 
10405         from marshal.c.
10407         * marshal.c: Move the mb functions into method-builder.c.
10409         * marshal.h marshal.c: Export some mono_mb_... functions.
10411         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
10413         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
10414         the caller.
10416         * class.c (mono_class_get_full): Check the token type in the dynamic case.
10418         * loader.c (mono_field_from_token): Ditto.      
10420         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
10421         type as well.
10422         
10423         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
10424         Fixes #342565.
10426         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
10427         a helper function for setting it.
10429         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
10431         
10432         * assembly.c: Significally simplify code now that referenced assemblies are 
10433         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
10435         * threads.h: Don't include  the internal threads-types.h header file. Fixes
10436         #349952.
10438 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
10440         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
10441         instructions that were target of branches or are at protected block boundaries.
10443         * verify.c (in_same_block): handle filter clauses.
10445         * verify.c (is_valid_branch_instruction): added. checks the target of
10446         instructions br or brtrue/false.
10448         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
10449         binary branch instructions such as beq and bge.
10451         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
10452         and made it pin the instruction as been part of the exception block.
10454         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
10455         of in_same_block.
10457         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
10458         of in_same_block.
10460         * verify.c (do_ret): ret from a protected block is unverifiable and
10461         not invalid.
10463         * verify.c (do_static_branch): verify br and br.s instructions.
10465         * verify.c (merge_stacks): add extra param to support detection
10466         of branches in the middle of instructions.
10467         
10468         * verify.c (mono_method_verify): verify branches and exception blocks
10469         that target the middle of instructions. Proper verification of br and br.s.
10471 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
10473         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
10474         skip_visibility field.
10475         (reflection_methodbuilder_from_dynamic_method): Ditto.
10477         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
10478         registrations. Fixes #348193.
10480         * threads.h: Move the internal mono_thread_get_pending_exception () to
10481         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
10483 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
10485         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
10486         icall registration. Fixes #348193.
10488         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
10489         for corlib classes into object. Fixes #349621.
10491 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
10493         * icall.c (property_accessor_nonpublic): new function to determine
10494         whether an accessor allows a property to be considered non-public.
10495         Returns false for private accessor(s) from parent class, and internal
10496         accessor(s) from parent on 2.0 profile (and higher).
10497         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
10498         to determine whether property should be included if NonPublic flag
10499         is set. Fixes bug #349078.
10501 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
10503         * verify.c (init_stack_with_value): added.
10505         * verify.c (mono_method_verify): extracted common
10506         code for exception initialization into init_stack_with_value.
10508         * verify.c (mono_method_verify): initialize the exception
10509         for handler clauses as well.
10511         * verify.c (mono_method_verify): fix the exception clause
10512         ordering rules, it should use handler end offset and not
10513         start offset.
10515 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
10517         * rawbuffer.c: remove useless warning.
10519 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
10521         * threads.h, threads-types.h: move functions to the correct header
10522         (fixes bug#349952).
10524 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10526         * verify.c (mono_method_verify): proper verification
10527         of exception handling clauses ranges and fallthru in
10528         and out of protected blocks.
10530 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10532         * verify.c (mono_method_verify): fixed compilation issue.
10534 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10536         * verify.c (mono_method_verify): a printf slipped in, changed
10537         to use verifier debug macro.
10539 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
10541         * verify.c (is_correct_leave): check for filter clauses.
10543         * verify.c (do_filter): added.
10545         * verify.c (mono_method_verify): property verification of leave.
10548 2007-12-18  Mark Probst  <mark.probst@gmail.com>
10550         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
10551         Win32 build, until we figure out how to do the proper thing on
10552         Win32.
10554 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
10556         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
10557         by the previous patch.
10558         
10559         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
10560         the assembly resolve handler for refonly assemblies.
10562 2007-12-17  Mark Probst  <mark.probst@gmail.com>
10564         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
10565         Make sure only one thread is allowed to commence shutdown, and
10566         don't allow new threads to be started once shutdown is in
10567         progress.
10569 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
10571         * verify.c (is_correct_endfilter): added.
10573         * verify.c (is_unverifiable_endfilter): added.
10575         * verify.c (do_endfilter): added.
10577         * verify.c (mono_method_verify): property verification of endfilter
10578         and fixed a corner case or endfinally.
10580 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
10582         * verify.h: new flags to support fail fast of unverifiable code and
10583         do non-strict verification. Non-strict verification is required to
10584         have MS runtime compatibility. There are a huge amount of unverifiable
10585         code that it accepts as verifiable. The strict mode verifies the code
10586         as the specs says.
10587         Non-strict mode will be required in cases where code needs to be
10588         accepted as verifiable but fails under strict mode.
10590         * pedump.c: added support to fail fast and non-strict verification.
10592         * verify.c: added support for both fail fast and non-strict verification.
10594 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
10596         * verify.c (is_correct_endfinally): added.
10598         * verify.c (mono_method_verify): property verification of endfinally.
10600 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10602         * verify.c (in_any_block): check for filter clauses.
10604         * verify.c (is_correct_rethrow): added.
10606         * verify.c (mono_method_verify): property verification of rethrow.
10608         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
10610 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10612         * verify.c (do_throw): added.
10614         * verify.c (mono_method_verify): property verification of throw
10616 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
10618         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
10619         assemblies. Fixes #346425.
10621 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
10623         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
10624         FieldBuilders.
10626         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
10628         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
10629         prevent asserts when this is called with a token which might not be valid.
10631         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
10632         lookup_dynamic_token_class with valid_token == FALSE.
10634         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
10636         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
10638         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10639         
10640 2007-12-10  Mark Probst  <mark.probst@gmail.com>
10642         * gc.c: Don't delay threadpool thread finalization unless Mono is
10643         shutting down.
10645 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10647         * threads.c: turn an assert into a non-fatal warning.
10649 2007-12-09  Robert Jordan  <robertj@gmx.net>
10651         * icall.c (GetVirtualMethod): Add missing argument validation.
10653 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10655         * verify.c (do_cast): added.
10657         * verify.c (mono_method_verify): property verification of castclass and isinst.
10660 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10662         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
10664         * verify.c (do_stelem): added.
10666         * verify.c (mono_method_verify): property verification of stelem.X.
10668 2007-12-07  Mark Probst  <mark.probst@gmail.com>
10670         * class.c, class-internals.h: Introduce an environment variable
10671         (MONO_GENERIC_SHARING) through which the extent of generic code
10672         sharing can be controlled (share all classes, share only corlib
10673         classes, or share nothing).
10675         * object.c: Only create runtime generic context for classes for
10676         which sharing is enabled.
10678 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10680         * verify.c (do_ldelem): refactor it to work with ldelem.any.
10682         * verify.c (mono_method_verify): property verification of ldelem.any.
10684 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10686         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
10687         added ldelem.X opcodes.
10689         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
10691         * verify.c: proper verification of ldelem.X 
10693 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
10695         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
10697 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10699         * verify.c (mono_method_verify): null literal requires special handling,
10700         the value pushed on stack need to be flagged as so.
10702         * verify.c (do_ldelema): Verify ldelema properly.
10704 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10706         * verify.c: Verify ldlen properly.
10708 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
10710         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
10711         to the target object's type. Fixes #346160.
10713 2007-12-05  Dick Porter  <dick@ximian.com>
10715         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
10716         Solaris needs the same workaround as BSD-derived systems.  Fixes
10717         bug 323524, patch by Burkhard Linke
10718         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
10720 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
10722         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
10723         handle to use when error dialog is shown; otherwise, update mask
10724         to show no error dialog when an error occurs.
10726 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
10728         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
10730         * class.c (mono_class_get_field_default_value): New helper function to initialize
10731         field->def_type and field->data.
10733 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
10735         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
10736         the general one.
10738         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
10740         * marshal.c: Avoid depending on delegate->method_info being set.
10742         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
10743         
10744         * object.c (mono_delegate_ctor): Set delegate->method.
10746         * object-internals.h (struct _MonoDelegate): Add 'method' field.
10748         * appdomain.c: Bump corlib version.
10750 2007-11-27  Raja R Harinath  <harinath@gmail.com>
10752         * metadata.c (mono_generic_inst_equal_full): Short-circuit
10753         equality check if we're comparing canonicalized MonoGenericInsts.
10755 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
10757         * class.c (generic_array_methods): Call mono_class_setup_methods () before
10758         accessing class->methods.
10760 2007-11-22  Dick Porter  <dick@ximian.com>
10762         * threads.c: Ensure that the synch_cs is set before trying to use
10763         it.
10765 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
10767         * profiler.c: r89126 broke the statistial profiler, unbreak.
10769 2007-11-22  Martin Baulig  <martin@ximian.com>
10771         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
10773         * mono-debug.c
10774         (mono_debug_debugger_version): Bump to 3.
10775         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
10776         -> mono_debugger_class_initialized().
10778         * mono-debug-debugger.c
10779         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
10781         * class.c
10782         (mono_debugger_start_class_init_func): Removed.
10783         (mono_debugger_class_loaded_methods_func): Added.
10784         (mono_class_setup_methods): Call it here.
10786 2007-11-22  Martin Baulig  <martin@ximian.com>
10788         * mono-debug.c
10789         (mono_debug_add_delegate_trampoline): New public method.
10790         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
10792         * mono-debug.h
10793         (MonoSymbolTable): Added `global_data_table'.
10794         (MonoDebuggerTypeKind): Removed.
10796 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
10798         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
10799         these methods.
10801         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10802         
10803 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
10805         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
10807 2007-11-20  Martin Baulig  <martin@ximian.com>
10809         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
10811         * mono-debug-debugger.c
10812         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
10813         (mono_debugger_remove_breakpoint): Likewise.
10814         (mono_debugger_check_breakpoints): Likewise.
10815         (mono_debugger_register_class_init_callback): New public method.
10816         (mono_debugger_remove_class_init_callback): Likewise.
10817         (mono_debugger_add_type): Likewise.
10819         * mono-debug-debugger.h
10820         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
10822 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
10824         * class.c: more interface implementations needed for the
10825         array enumerator (fixes bug #341112).
10827 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
10829         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
10830         fix ParamName of ArgumentNullExceptions.
10832 2007-11-17  Miguel de Icaza  <miguel@novell.com>
10834         * reflection.c (mono_reflection_encode_sighelper): Generate the
10835         modopts and modreqs.   I have a useless test that crashes monodis,
10836         but that shows the code working.
10838 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
10840         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
10841         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
10843 2007-11-15  Dick Porter  <dick@ximian.com>
10845         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
10846         When joining a thread, it's the thread that's calling Join that
10847         gets WaitSleepJoin state not the target.  Fixes the standalone
10848         test case in bug 334740, and hopefully the whole bug too.
10850 2007-11-15  Dick Porter  <dick@ximian.com>
10852         * process.c: Read file version info from the files pointed at by
10853         process modules, not the current process.  Fixes bug 315969.
10855         Use windows typedef names in some places to fix warnings on the
10856         windows build.
10858 2007-11-15  Mark Probst  <mark.probst@gmail.com>
10860         * image.c, metadata-internals.h: Added a generic_class_cache hash
10861         to MonoImage for looking up generic classes when sharing generics.
10863 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
10865         * sgen-gc.c: warning cleanups.
10867 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
10869         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
10870         inherited properties.
10872 2007-11-14  Mark Probst  <mark.probst@gmail.com>
10874         * object.c, class-internals.h: Added more information to the
10875         runtime generic context.
10877 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
10879         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
10880         instead of just the target method. Generalize the abstract method handling to
10881         handle any non-static method.
10883         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
10884         mono_marshal_get_delegate_invoke () signature change.
10886 2007-11-13  Mark Probst  <mark.probst@gmail.com>
10888         * class.c, class-internals.h: Made
10889         mono_type_get_basic_type_from_generic () public.  Fixed member
10890         access check for shared generics.
10892         * loader.c: Don't insert field into field cache if it's part of a
10893         non-inflated generic class.
10895         * domain.c, domain-internals.h: The generic sharing context is now
10896         part of the jit info data structure.  Added two accessor
10897         functions.
10899 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
10901         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
10902         the array Get/Set/Address methods, since the JIT inlines them.
10904         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
10906         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
10907         (mono_image_init): Initialize runtime_invoke_direct_cache.      
10909         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
10910         mono_marshal_get_delegate_invoke signature change.
10912         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
10913         an additional argument. Add support for invoking abstract methods.
10915         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
10917         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
10919 2007-11-09  Mark Probst  <mark.probst@gmail.com>
10921         * class.c: Do field layout for open generic classes as well.
10923 2007-11-09  Mark Probst  <mark.probst@gmail.com>
10925         * gc.c, gc-internal.h: Don't finalize threadpool threads with
10926         other objects, because the threadpool is still around.  Put them
10927         in a list instead and after finalizing all other objects in the
10928         root domain shut down the thread pool and then finalize the
10929         threads.  Fixes bug #337383.
10931         * threads.c, thread-types.h: New mono_thread_create_internal()
10932         function for marking a thread with the threadpool flag before it
10933         started.  Set synch_cs to NULL after freeing it.
10935         * threadpool.c: Mark threadpool threads before they start.
10937 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
10939         * reflection.h, reflection.c: don't export random functions
10940         and lazy load dbnull and missing objects.
10942 2007-11-07  Jonathan Chambers <joncham@gmail.com>
10944         * class.c: Initialize COM types if COM interfaces
10945         are present (not just COM classes).
10946         
10947         Code is contributed under MIT/X11 license.
10949 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
10950         * reflection.c:
10951         create_dynamic_mono_image: hook module profiler events (dynamic case).
10952         mono_image_basic_init: hook assembly profiler events (dynamic case).
10954 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
10955         * profiler.c:
10956         simple_appdomain_unload: completely terminate the profiler
10957         instead of only processing the statistical samples.
10958         simple_shutdown: make sure this is really called exactly once,
10959         even in multithreaded applications, and always listen to
10960         appdomain events.
10961         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
10962         here, the "[un]load" functions will do it.
10963         Fixes bugs #333791 and #325261.
10965 2007-11-07  Geoff Norton  <gnorton@novell.com>
10967         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
10968         rather than depend on __APPLE__.
10970 2007-11-07  Mark Probst  <mark.probst@gmail.com>
10972         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
10974 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
10976         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
10977         UTF16 MonoString. Fix the crash from bug #335488
10979 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
10981         * marshal.c: Correct (for non-Win32 OS) length != size in 
10982         mono_string_from_bstr. Fix #339530.
10984 2007-11-06  Geoff Norton  <gnorton@novell.com>
10986         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
10987         to succeed
10989 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
10991         * process.c: Added run-time GetProcessId API detection for Windows.
10993 2007-11-04  Miguel de Icaza  <miguel@novell.com>
10995         * reflection.c  (mono_param_get_objects): If a parameter has the
10996         attribute [System.Runtime.InteropServices.Optional] we should
10997         set the DefaultValue of the ParameterInfo to be
10998         System.Reflection.Missing instead of DBNull.
11000         See bug #339013.
11002         (mono_get_reflection_missing_object): New method,
11003         returns the System.Reflection.Missing.Value singleton instance.
11005 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11007         * culture-info-table.h : regenerated.
11009 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11011         * icall.c: Use GetEnvironmentStrings on windows
11012         so we are using the same environment block as 
11013         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11014         #333740.
11015         
11016         Code is contributed under MIT/X11 license.
11018 2007-10-31  Martin Baulig  <martin@ximian.com>
11020         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11022         * mono-debug-debugger.h
11023         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11025 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11027         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11028         classes.
11030 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11032         * culture-info-table.h : regenerated.
11034 2007-10-30  Robert Jordan  <robertj@gmx.net>
11036         * icall-def.h, icall.c:
11037         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11039         Code is contributed under MIT/X11 license.
11041 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11043         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11044         inflated class instead of inflating them again.
11045         
11046         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11047         dynamic case.
11049         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11050         Call setup_supertypes () after klass->parent is set.
11051         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11053         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11054         for inflated instances of not yet created dynamic generic classes.
11055         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11056         times from inflated_method.
11057         (methodbuilder_to_mono_method): Ditto.
11059 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11061         * gc.c: code cleanup and removed old untested option of not creating the
11062         finalizer thread.
11064 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11066         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11067         creating a jump trampoline for dynamic methods.
11069 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11071         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11072         generic TypeBuilders when called from another method of the same type (bug #335131).
11075 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11077         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11078         doesn't seem to work perfectly.
11079         
11080         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11081         called multiple times.
11082         (methodbuilder_to_mono_method): Ditto.
11083         (resolve_object): Inflate FieldBuilder's.
11085 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11087         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11088         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11089         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11091 2007-10-26  Dick Porter  <dick@ximian.com>
11093         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11094         Thread initialisation changes
11096 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11098         * verify.c: fix compatibility check between arrays and System.Array
11100 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11102         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11103         too. Fixes #336999.
11105 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11107         * object.c (mono_value_box): Use typed allocation here.
11109 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11111         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11112         trampoline instead of compiling the method right away.
11114         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
11116 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
11118         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
11119         related fields for dynamic classes. Fixes #334493.
11121 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
11123         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
11124         
11125         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
11127         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
11128         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
11130         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
11132         * reflection.c (create_generic_typespec): Initialize klass->generic_container
11133         if needed.
11134         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
11136 2007-10-18  Jonathan Chambers <joncham@gmail.com>
11138         * marshal.c: Use correct key when removing item
11139         from ccw_hash.
11140         
11141         Code is contributed under MIT/X11 license.
11143 2007-10-17  William Holmes  <billholmes54@gmail.com>
11145         *marshal.c: Adding a case to marshal booleans to U1
11147         Code is contributed under MIT/X11 license.
11149 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
11151         * class.c (mono_class_from_name): Search the modules compromising dynamic
11152         assemblies. Fixes #331601.
11154 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
11156         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
11157         exception if the type name contains an assembly component. Fixes #334203.
11159         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
11160         modules inside dynamic assemblies. Fixes #334200.
11161         
11162         * reflection.c: Set image->public_key and image->public_key_length;
11164         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
11165         fields.
11167         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
11168         
11169 2007-10-16  Mark Probst  <mark.probst@gmail.com>
11171         * metadata.c: Implemented correct comparing of generic classes.
11172         An inflated generic class can be equal to a non-inflated one if it
11173         is inflated with generic type variables as type arguments.  Fixes
11174         bug #333798.
11176 2007-10-15  Dick Porter  <dick@ximian.com>
11178         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
11179         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
11180         81646.
11182         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
11183         instead of a monitor lock.  This means that monitor_try_enter and
11184         co can set the thread state safely.
11185         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
11186         thread_interrupt_requested, so interrupt actually works.
11188         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
11189         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
11190         state accessor function
11192 2007-10-15  Martin Baulig  <martin@ximian.com>
11194         * mono-debug.h
11195         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
11196         the debugger with the current runtime.
11198 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
11200         * object.c, object-internals.h: added the ability to set a single
11201         trampoline for all the slots in a vtable.
11203 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11205         * marshal.c: deal with a possible race condition during multicast
11206         delegate invocation.
11208 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11210         * class.c: ensure value type methods don't have the synchronized
11211         flag set.
11213 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
11215         * string-icalls.c, string-icalls.h: reverted unapproved patch that
11216         breaks the build.
11218 2007-10-11  Joel Reed  <joelwreed@comcast.com>
11220         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
11221         to take an options parameter so that empty entries can be removed during
11222         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
11224 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11226         * marshal.c: make sure we don't store the signature from a dynamic
11227         method into the runtime invoke cache (bug #327189).
11229 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11231         * marshal.c: make sure the wrapper methods are properly initialized.
11233 2007-10-11  Mark Probst  <mark.probst@gmail.com>
11235         * metadata.c, metadata-internals.h: Generalized
11236         mono_type_stack_size() to mono_type_stack_size_internal() which
11237         takes an additional argument specifying whether it allows open
11238         types.
11240 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
11242         * verify.c (do_invoke_method): handle typedbyref params
11243         correctly and check for unverifiable return values.
11245         * verify.c (do_newobj): fix a warning.
11247 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11249         * verify.c: don't tread typedbyref as allways unverifable,
11250         so uses, like (ld/st)loc.0 are valid. verify for the cases
11251         that it matters, like boxing related operations.
11253 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11255         * verify.c: add verification of the newobj opcode. verification
11256         of delegate instantation still missing due ldftn and virldftn not
11257         pushing the function type on stack
11259 2007-10-08  Mark Probst  <mark.probst@gmail.com>
11261         * class-internals.h: Runtime generic context data structure
11262         definition.
11264         * object.c: Initialization of runtime generic context at runtime
11265         vtable creation time.
11267 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
11268         * class.c (mono_class_create_from_typedef,
11269         mono_class_from_generic_parameter, mono_ptr_class_get,
11270         mono_fnptr_class_get, mono_bounded_array_class_get)
11271         * domain.c (mono_domain_create, mono_domain_free)
11272         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
11273         * image.c (do_mono_image_load, mono_image_close):
11274         Hooked up load-unload profiler events.
11276 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
11278         * domain.c: track statistics about the actual amount of native code
11279         allocated.
11281 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
11283         * class.c: the valuetype enumerators don't have the additional
11284         supertypes interfaces.
11286 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11288         * class.c: need more interfaces setup for the IEnumerator<T>
11289         object created for arrays (tests/ienumerator-interfaces.2.cs).
11291 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
11293         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
11295 2007-10-05  Alp Toker  <alp@atoker.com>
11297         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
11298         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
11299         #315863.
11301 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11303         * verify.c (verify_type_compatibility_full): verification of
11304         compatibility improved, validates correctly non-strict checks between
11305         native int and I4 types different than (unsigned)int32.
11307         * verify.c (do_store_indirect): added, do all verification of
11308         ldind.X opcodes. 
11310         * verify.c (get_load_indirect_mono_type): renamed to
11311         get_indirect_op_mono_type, as it now returns the MonoType for 
11312         ldind.X and stind.X opcodes.
11314 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11316         * reflection.c: Fix the encoding of generic type definition for
11317         TypeBuilders.
11319         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
11320         mono_image_typedef_or_ref but allows to specify if typespec lookups should
11321         be made. Typespec check is done prior to typeref cache lookup.
11323         * reflection.c (mono_image_typedef_or_ref): now just delegate to
11324         mono_image_typedef_or_ref_full.
11326         * reflection.c (encode_generic_class): encode the generic class
11327         directly instead of calling encode_type.
11329         * reflection.c (encode_type): encode the generic type definition
11330         MonoClass as a generic instantiation.
11332         * reflection.c (create_typespec): cache typespec tokens in
11333         the assembly->typespec cache. Don't create typespec for a generic
11334         instance MonoClass. Create typespec for the generic type defintion.
11336         * reflection.c (create_generic_typespec): encode the generic
11337         class directly instead of calling encode_type.
11339         * reflection.c (mono_image_create_token): encode the generic
11340         type definition not using a typespec for MonoType instances.
11343 2007-10-04  Raja R Harinath  <rharinath@novell.com>
11345         Fix #328812
11346         * class.c (mono_image_init_name_cache): Don't return nested
11347         'protected internal' classes.
11348         (mono_class_from_name_case): Likewise.
11350 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
11352         * icall-def.h, icall.c : get_bundled_machine_config() is now the
11353           common function used by both DefaultConfig in System.dll and
11354           InternalConfigurationHost in System.Configuration.dll.
11356 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11358         * class.c: automatically add to vectors only a few essential explicit
11359         generic interfaces. The rest of the interfaces that arrays should
11360         provide are currently implicitly added (but still not lazily, see the
11361         design in the discussion of bug#325495 for the details of what is
11362         needed for that). Additionally, implicit interfaces are assigned the
11363         same vtable slot as the explicit interfaces (as they are compatible):
11364         this enables huge memory savings since we don't need to instantiate
11365         as many memthods and as large vtables anymore. Also, Since
11366         GetEnumerator<T> returns an instance of a type that is required to
11367         support a similarly large set of interfaces as arrays, we add
11368         implicit interfaces and interface offset sharing support to those
11369         types, too. This change adds all the required interfaces so that
11370         the anonarray.cs test case in the bug report works (we don't add
11371         all the interfaces to arrays of arrays 3-level deep and more because
11372         of the memory requirements explained in the bug and since they are much
11373         less common: the lazy-loading support will enabled them to work, too).
11375 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11377         * verify.c (merge_stacks): major clean up, all type compatibility
11378         checks are done by verify_type_compatibility. This fix my earlier lack
11379         of understanding of the CLR type system and merge_stacks no longer looks
11380         scary.
11382         * verify.c: fixed some bad spelling.
11384 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11386         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
11387         a given stack slock.
11388         
11389         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
11390         verify_type_compatibility_full. This removed a near indentical function and fixed
11391         handling of Int32 and IntPtr across all opcodes.
11393 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11395         * class.c: only vectors have the additional generic interfaces.
11397 2007-10-01  Jonathan Chambers <joncham@gmail.com>
11399         * mono-config.c: Use g_strcasecmp instead of
11400         strcasecmp like everywhere else to fix
11401         compilation with MSVC.
11402         
11403         Code is contributed under MIT/X11 license.
11405 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11407         * object.c, object-internals.h: refactored the IMT code to enable
11408         building a single slot at a time and lazily creating the IMT trampolines
11409         and thunks.
11411 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
11413         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
11415         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
11416         Fixes #328501.
11417         
11418 2007-09-29  Raja R Harinath  <harinath@gmail.com>
11420         * loader.c (method_from_methodspec): Rearrange to avoid
11421         un-necessary exposition.  Don't assert out if the method's
11422         declaring type is a generic type definition.
11424 2007-09-28  Martin Baulig  <martin@ximian.com>
11426         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
11428 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
11430         * class-internals.h: optimize field layout of MonoClass to
11431         requires less cachelines at runtime and save a few bytes on 64 bit
11432         systems.
11434 2007-09-28  Jb Evain  <jbevain@novell.com>
11436         * reflection.c: when encoding type names in custom attributes,
11437         if the type is a closed generic type, its generic arguments
11438         have to be serialized as AssemblyQualifiedName, so that when
11439         they are deserialized, it's possible to re-create them properly.
11440         Fixes #329450.
11443 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
11445         * object.c, class-internals.h: added delegate-creation counter.
11447 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
11449         * class.c: cleanup of the code that synthetizes interfaces for
11450         arrays in 2.0: saves quit a bit of corlib mempool memory.
11451         Code to fix bug #325495 ifdeffed out for now until the issues
11452         with memory usage and O(n^2) behaviour are fixed.
11454 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11456         * marshal.c: when possible, do not duplicate the name of the methods
11457         in the method builder and in the generated MonoMethod.
11459 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11460         * verify.c: added support for type checking ldind_* opcodes.
11462 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11464         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
11465         which is used to distinguish the fully open instantiation of a TypeBuilder
11466         with the rest. This temporary hack is required to restore the property that
11467         the fully open instantiation is the same type of the generic type definition.
11469         * class-internals.h (mono_generic_class_is_generic_type_definition):
11470         new function as part of the internal API.
11472         * class.c (inflate_generic_type): return NULL when the generic inst is
11473         fully open. The fully open generic type is now the same as the generic type
11474         definition for non TypeBuilder types.
11476         * class.c (mono_generic_class_get_class): removed assert since it is
11477         no longer valid, gklass->cached_class can point to the generic type definition.
11479         * class.c (mono_generic_class_is_generic_type_definition): new.
11481         * metadata.c (mono_generic_class_hash): added is_tb_open field
11482         to the hash calculation.
11484         * metadata.c (free_generic_class): if the generic class is associated
11485         with the generic type definition, its field will come from the mempool and
11486         must not be freed.
11488         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
11489         new, this function identifies the corner case of a TypeBuilder fully open
11490         instantiation.
11492         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
11493         for lookup. Set gclass->cached_class to be the container class in case of
11494         the fully open instantiation of non TypeBuilder types.
11496         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
11497         to compare generic classes.
11499         * reflection.c (method_encode_methodspec): remove assert that
11500         no longer is valid.
11502         * reflection.c (mono_reflection_generic_class_initialize): add
11503         an aditional assert to ensure the proper type is used.
11505 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
11507         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
11508         to enjoy it.
11510 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11512         * verify.c (push_arg): Fixed support for ldarga
11513         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
11514         MonoType used as first arg in case of instance calls.
11516 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11518         * verify.c: Support for verifying VAR and MVAR types, 
11520 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
11522         * icall.c (ves_icall_get_property_info): Set the reflected type of the
11523         accessors correctly.
11525 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
11527         * threads.c: support OSX and other systems in
11528         mono_thread_get_stack_bounds (bug #328026).
11530 2007-09-25  Martin Baulig  <martin@ximian.com>
11532         * mono-debug.h
11533         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
11535 2007-09-24  Martin Baulig  <martin@ximian.com>
11537         * mono-debug.h
11538         (MonoDebugClassEntry): Moved the definition of this struct into
11539         mono-debug.c to make it private.
11541         * mono-debug.c
11542         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
11543         type table per symbol file, we don't need to store the symfile id
11544         any longer.
11546 2007-09-24  Martin Baulig  <martin@ximian.com>
11548         Create one type table per symbol file, since a `MonoClass *' gets
11549         invalid when its image is unloaded.
11551         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
11552         (MonoDebugHandle): Added `type_table'.
11554 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
11556         * mempool.c, mempool.h: added mono_mempool_new_size () API
11557         to be able to specify a smaller initial size for the pool.
11558         Adjusted the code to slowly increase pool size before using
11559         the previous default size.
11560         * image.c: use a small initial size for image mempools.
11562 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
11564         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
11565         Fixes ##320990.
11567         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
11568         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
11570 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
11572         * metadata.c (mono_type_create_from_typespec): Remove an invalid
11573         free. Fixes #327438.
11575 2007-09-21  Raja R Harinath  <harinath@gmail.com>
11577         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
11578         generic instantiations, etc.
11579         <MONO_TYPE_ARRAY>: Likewise.
11581 2007-09-21  Martin Baulig  <martin@ximian.com>
11583         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
11584         these structs were never defined.
11585         (MonoDebugHandle): Removed the `_priv' field, it was never used.
11587 2007-09-21  Martin Baulig  <martin@ximian.com>
11589         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
11591 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
11593         * image.c: removed the guid hash tables: we can get the same info
11594         without the additional memory usage hit (partially fixes also bug #327052).
11596 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11598         * profiler.h, profiler-private.h, profiler.c: add a new profiler
11599         event to handle unloading methods. After the event is called, the
11600         corresponding MonoMethod* must be considered invalid.
11601         * loader.c (mono_free_method): call the new mono_profiler_method_free
11602         event.
11604 2007-09-20  Mark Probst  <mark.probst@gmail.com>
11606         * domain-internals.h: New flag in MonoJitInfo which marks shared
11607         generic methods.  New hash table (shared_generics_hash) in
11608         MonoDomain to keep track of shared generic methods.  Prototypes
11609         for functions to register and lookup shared generic methods.
11611         * domain.c: Support for registering and looking up shared generic
11612         methods via a hash table (shared_generics_hash) in MonoDomain.
11614         * class-internals.h: New exception to signal failure of shared
11615         compilation of a generic method.  New counters for generics
11616         sharing in MonoStats.
11618 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
11620         * image.c, metadata-internals.h: don't keep a file descriptor open
11621         for loaded assemblies (bug#325988).
11623 2007-09-19  Raja R Harinath  <rharinath@novell.com>
11625         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
11626         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
11627         use the corresponding datatypes.
11628         (type_in_image): Update to changes.
11629         (CleanForImageUserData): Simplify.
11630         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
11631         Avoid quadratic behaviour in handling the "stolen" list by
11632         separating the filter predicate out, and by prepending the stolen
11633         items rather than appending them.
11634         (steal_ginst_in_image): Likewise.
11635         (mono_metadata_clean_for_image): Update to changes.
11637 2007-09-19  Martin Baulig  <martin@ximian.com>
11639         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
11641 2007-09-19  Martin Baulig  <martin@ximian.com>
11643         * mono-debug.c (mono_debug_cleanup): Don't call
11644         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
11646 2007-09-19  Raja R Harinath  <harinath@gmail.com>
11648         Fix crash on 'make run-test' in mcs/errors
11649         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
11650         Avoid more potential allocations in mono_class_from_mono_type.
11651         (ginst_in_image): Update to changes.
11652         (gclass_in_image): Rearrange slightly.
11654 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11656         * class.c (mono_class_init): Move the code that sets up class->methods to 
11657         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
11659         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
11660         canonical instance of an inflated generic signature.
11661         (mono_type_create_from_typespec): Remove an invalid free.
11663         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
11665 2007-09-18  Marek Habersack  <mhabersack@novell.com>
11667         * domain-internals.h: added a declaration of the
11668         mono_assembly_load_full_nosearch internal function.
11670         * assembly.c (mono_assembly_load_with_partial_name): use
11671         mono_try_assembly_resolve return value properly.
11672         (mono_assembly_load_full_nosearch): copied the function body from
11673         mono_assembly_load_full, without the code to invoke assembly
11674         search hooks.
11675         (mono_assembly_load_full): calls the above new function and if the
11676         assembly is not resolved, invokes the search hooks.
11678         * appdomain.c (mono_runtime_init): restore the global postload
11679         assembly search handlers.
11681 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11683         * class.c (mono_class_init): Make sure class->methods and class->properties
11684         are never NULL in the generics case.
11686         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
11688 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
11690         * metadata.c (free_generic_class): Disable some code to fix the build.
11692         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
11694         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
11695         from the image mempool.
11697         * metadata.c (free_generic_class): Free more data from the inflated class.
11699         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
11701         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
11702         mempool.
11703         (mono_type_create_from_typespec): Ditto.
11705         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
11706         MonoImage to the caller.
11707         (mono_init_internal): Save the opened image in a global variable.
11708         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
11710         * reflection.c (resolve_object): Fix a leak.
11712         * metadata.c: Fix the freeing of data in the generics caches.
11713         
11714         * metadata.c (free_generic_inst): Comment this out to fix the build.
11715         (free_generic_class): Ditto.
11717         * metadata.c: Free cached generic methods, instantinations and classes when
11718         they are removed from the caches.
11719         (mono_metadata_free_type): Free the type itself.
11721         * class.c: Free the result of mono_class_inflate_generic_type () in a few
11722         places.
11724 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
11726         * boehm-gc.c: restrict managed allocs to __thread supporting
11727         architectures.
11729 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
11731         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
11732         (mono_generic_class_get_class): Fix a leak.
11734         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
11735         mono_metadata_free_type ().
11736         (mono_metadata_inflate_generic_inst): Fix a leak.
11738 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11740         * mono-debug.c (free_header_data): Fix a leak missed earlier.
11742         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
11743         mempool.
11745         * mono-debug.c (mono_debug_close_image): Fix call to 
11746         g_hash_table_remove ().
11748 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
11750         * icall-def.h: redirect all the string ctor to the managed
11751         CreateString () methods.
11752         * string-icalls.c, string-icalls.h: removed dead code for string
11753         ctors and icalls.
11755 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11757         * mono-debug.c: Fix memory leaks.
11759 2007-09-14  Jonathan Chambers <joncham@gmail.com>
11761         * threads-types.h: Implement mono_hazard_pointer_set and 
11762         mono_hazard_pointer_clear macros using do/while(0) to fix
11763         compilation with MSVC.
11764         
11765         Code is contributed under MIT/X11 license.
11767 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11769         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
11770         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
11772 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11774         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
11775         icalls.
11777 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11779         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
11780         managed-code allocated as well.
11782 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
11784         * class.c (mono_class_is_assignable_from): Add support for generic variance.
11786 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
11788         * boehm-gc.c: fixed the build after the AOT changes.
11790 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
11792         * wrapper-types.h: Add an ALLOC wrapper type.
11794         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
11795         reference managed allocator methods.
11797 2007-09-12  Marek Safar  <marek.safar@gmail.com>
11799         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
11800         of Type array and not MonoType, a fix suggested by Hari.
11801         
11802 2007-09-12  Jonathan Chambers <joncham@gmail.com>
11804         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
11805         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
11806         
11807         Code is contributed under MIT/X11 license.
11809 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11811         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
11813 2007-09-12  Marek Habersack  <mhabersack@novell.com>
11815         * image.c (do_mono_image_open): if assembly file fails to open and
11816         MONO_IOMAP is in effect, try to find the path in a
11817         case-insensitive way.
11819         * appdomain.c (mono_runtime_init): do not install postload hooks -
11820         tests show that MS.NET doesn't use anything of that sort to
11821         trigger the AppDomain.AssemblyResolve event.
11822         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
11823         made non-static.
11824         (mono_runtime_init): init portability helpers here.
11826         * assembly.c (mono_assembly_load_with_partial_name): if other   
11827         attempts fail, trigger the AppDomain.AssemblyResolve event handler
11828         to resolve the assembly.
11830         * domain-internals.h: added mono_try_assembly_resolve and marked
11831         it as internal.
11833 2007-09-11  Jb Evain  <jbevain@novell.com>
11835         * object-internals.h (MonoReflectionDynamicMethod): add
11836         a `MonoReflectionType *owner` field. The owner is used
11837         * reflection.c:
11838         (mono_reflection_create_dynamic_method): use the owner of the dynamic
11839         method as the class declaring the dynamic method.
11840         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
11841         dynamic method to the declaring type of the methodbuilder.
11843 2007-09-11  Mark Probst  <mark.probst@gmail.com>
11845         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
11846         rules for calling methods via reflection.
11848 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
11850         * reflection.c (resolve_object): Add support for MonoGenericClass. 
11851         Inflate MonoType's.
11853 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
11855         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
11856         provide a managed method that does fast allocations without needing
11857         a managed->unmanaged transition. Boehm GC implementation currently
11858         enabled for ptrfree objects on sane architectures.
11860 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
11862         * marshal.c, marshal.h: exported a couple of useful functions and
11863         added mono_mb_get_label () to easily handle backward branches.
11865 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
11867         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
11869 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11871         * loader.c (find_method): Fixed the regression introduced while
11872         fixing bug #81466.
11874 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
11876         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
11877         well.
11878         
11879         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
11880         icall.c reflection.c: Pass a MonoGenericContext argument to 
11881         mono_lookup_dynamic_token ().
11883         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
11884         #82744.
11885         
11886 2007-09-09  Robert Jordan  <robertj@gmx.net>
11888         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
11889         for generic methods.
11891         * object.c (mono_object_get_virtual_method): Handle generic methods.
11892         Fixes bug #78882.
11894         Code is contributed under MIT/X11 license.
11896 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
11898         * image.c: fix locking in mono_image_load_file_for_image ().
11900 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
11902         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
11903         used only as a cache: added an icall to fill it.
11905 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
11907         * reflection.h: exposed mono_reflection_free_type_info
11908         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
11909         since mono_reflection_bind_generic_parameters makes a copy of it.
11910         * reflection.c (free_type_info): subinfos should be freed.
11911         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
11912         made non static.
11913         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
11914         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
11915         this fixes #82695 and #81726.
11916    
11918 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
11920         * process.h, process.c:  added support for user profile/info in
11921           ProcessStartInfo. For now only Windows works.
11923 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11925         * metadata.c: consider the generic arguments when comparing
11926         signatures (bug #82614).
11928 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11930         * cil-coff.h, image.c: updated assembly loader to cope with the
11931         PE32+ 64 bit file format.
11933 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11935         * assembly.c, class.c, domain.c, loader.c: remove useless
11936         inclusion of cil-coff.h.
11938 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
11940         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
11941         if interface is marked with CoClassAttribute. 
11942    
11943         Code is contributed under MIT/X11 license.
11945 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
11947         * sgen-gc.c: ensure no object from the to space is copied again or finalized
11948         if it's seen twice in major collections.
11950 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
11952         * sgen-gc.c: big objects are not copied to the gray area, but they
11953         need to be considered for scanning, too, if they are brought alive
11954         by an object ready for finalizations or a survived one.
11956 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11958         * sgen-gc.c: properly account the number of disappearing links when
11959         they are nullified.
11961 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
11963         * sgen-gc.c: share the code to scan the registered roots between the
11964         different types of collections.
11966 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
11968         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
11970 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
11972         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
11973         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
11975 2007-08-28  Mark Probst  <mark.probst@gmail.com>
11977         * security-manager.c (mono_security_manager_get_methods):
11978         LinkDemandSecurityException now has 2 arguments instead of 3.
11980 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
11982         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
11983         platforms which need it.
11985 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
11987         * sgen-gc.c: unregister thread data structures with a pthread_key_t
11988         dtor.
11990 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
11992         * threads.c: free the thread static data on thread exit.
11994 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
11996         * class.c: walk the hierarchy to find the generic definition for
11997         a class (fixes runtime part of bug #82498).
11999 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12001         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12002         ...
12004         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12006 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12008         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12010 2007-08-24  Robert Jordan  <robertj@gmx.net>
12012         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12014 2007-08-24  Jb Evain  <jbevain@novell.com>
12016         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12017         for byref types.
12019 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12021         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12022         #82286.
12024 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12026         * assembly.c: Fix a warning.
12027         
12028 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12030         * appdomain.c: parse the <runtime> section looking for the probing
12031         element with the 'privatePath' attribute, which sets additional
12032         directories in which the runtime should look for assemblies.
12034 2007-08-23  Robert Jordan  <robertj@gmx.net>
12036         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12037         Fixes #82499.
12039 2007-08-23  Martin Baulig  <martin@ximian.com>
12041         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12042         _mono_debug_init_corlib() and remove it from the header file.
12044 2007-08-23  Martin Baulig  <martin@ximian.com>
12046         * mono-debug-debugger.c
12047         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12048         don't notify the debugger about it.
12050         * mono-debug-debugger.h
12051         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12053 2007-08-23  Robert Jordan  <robertj@gmx.net>
12055         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12056         Code is contributed under MIT/X11 license.
12058 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12060         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12062 2007-08-22  Martin Baulig  <martin@ximian.com>
12064         * mono-debug.c: Store debugging info on a per-domain basis and
12065         free it on domain unload.  Add support for unloading symbol files.
12067         * mono-debug.h
12068         (MonoDebugList): New typedef.
12069         (MonoSymbolTable):
12070         - add `data_tables and `type_table'.
12071         - replace 'symbol_files' and `num_symbol_files' with a
12072           `MonoDebugList *'.
12073         (mono_debug_data_table): Removed.
12074         (mono_debug_list_add): New public function.
12075         (mono_debug_list_remove): New public function.
12076         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12077         (mono_debug_init_2_memory): Renamed into
12078         mono_debug_open_image_from_memory().
12079         (mono_debug_close_image): New public function.
12080         (mono_debug_domain_create): Likewise.
12081         (mono_debug_domain_unload): Likewise.
12082         (MONO_DEBUGGER_VERSION): Bump to 60.
12084         * mono-debug-debugger.h
12085         (MonoDebuggerEvent):
12086         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12087         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12088         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12089         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12090           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12091         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12092           meaning.
12093         (mono_debugger_add_symbol_file): Removed.
12094         (mono_debugger_add_type): Removed.
12095         (mono_debugger_lookup_type): Removed.
12096         (mono_debugger_lookup_assembly): Removed.
12098         * domain.c
12099         (mono_domain_create): Call mono_debug_domain_create().
12100         (mono_init_internal): Call mono_debug_init_corlib().
12102         * assembly.c
12103         (mono_assembly_close): Call mono_debug_close_image().
12105 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12107         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12108         mmap call.
12110 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12112         * sgen-gc.c: ensure section->pin_queue_end is initialized
12113         correctly when non pinning objects in the section have been found.
12115 2007-08-22  Marek Habersack  <mhabersack@novell.com>
12117         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
12118         containing a list of directories separated by ':'. MSDN docs say
12119         the directories should be separated with ';'. Part of a bugfix for
12120         bug #81446
12122 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
12124         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
12125         it should MonoType and not MonoClass.
12127 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
12129         * culture-info-table.h : regenerated.
12131 2007-08-20  William Holmes  <billholmes54@gmail.com>
12133         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
12134          to call ReplaceFile Kernel32 on windows or in io-layer.
12135         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
12136         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
12137          as an internal call.
12139         Code is contributed under MIT/X11 license.
12141 2007-08-20  Jb Evain  <jbevain@novell.com>
12143         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
12144         and MONO_EXCEPTION_FIELD_ACCESS.
12146         * debug-helpers.[c|h]: new mono_field_full_name function.
12148 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12150         * class.c: Removed class_security_level() and moved it to
12151         security-core-clr.c.
12153         * security-core-clr.c, security-core-clr.h: class_security_level()
12154         is now public and renamed to mono_security_core_clr_class_level().
12155         It also looks for security attributes in the classes a class is
12156         nested in.
12158 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12160         * security-core-clr.c, security-core-clr.h: CoreCLR security
12161         utility functions.
12163         * Makefile.am: Added security-core-clr.[ch].
12165         * security-manager.c, security-manager.h: Functions and enum for
12166         setting and getting the security mode.
12168         * class.c: CoreCLR security checks.
12170 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12172         * icall-def.h, process.c, process.h: implemented icall to get
12173         user/system processor times.
12175 2007-08-17  Mark Probst  <mark.probst@gmail.com>
12177         * domain.c, threads.c, class-internals.h, domain-internals.h: New
12178         reader-lock-free jit_info_table.
12180 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
12182         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
12184         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
12186         * object-internals.h (MonoException): Add missing _data member.
12188 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12190         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
12191         checking that only methods with matching qname or fqname are picked
12192         from implemented interfaces.
12194 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12196         * verify.c (do_newarr):added, do type verification of
12197         newarr ops, push the right value on the eval stack.
12198         * verify.c (mono_method_verify): use do_newarr
12201 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12203         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
12204         factored the common code into get_boxable_mono_type, which
12205         is now using mono_type_get_full, this fixed byref related tests.
12207 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12209         * class.c: added mono_type_get_full, this function has the same
12210         behavior of mono_class_get_full but the returned MonoType has
12211         all metadata of the associated token in case of a typespec token.
12212         * class.c: added mono_type_retrieve_from_typespec, used by 
12213         mono_type_get_full to retrieve the token type.
12214         * class.c (mono_class_create_from_typespec): changed to use
12215         mono_type_retrieve_from_typespec.
12216         * class.c (mono_ldtoken): changed to use mono_type_get_full
12217         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
12218         * class-internals.h: exported mono_type_get_full for internal use.
12220 2007-08-16  Jb Evain  <jbevain@novell.com>
12222         * domain.c (supported_runtimes): add entry for
12223         the 'moonlight' runtime version.
12225 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12227         * verify.c (mono_method_verify): small typo sliped in.  
12229 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12231         * verify.c (do_unbox_value): added, do type verification of
12232         unboxing ops
12233         * verify.c (mono_method_verify): use do_unbox_value
12236 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12238         * verify.c (dump_stack_value): fixed typo, was printing string
12239         instead of object on stack.
12240         * verify.c (do_box_value): moved the byref check up as it leads
12241         to invalid code and should be done earlier.
12242         * verify.c: improved error messages for and ldobj
12244 2007-08-15  William Holmes  <billholmes54@gmail.com>
12246         * marshal.c (emit_marshal_custom): Omit the call to 
12247           marshal_native_to_managed when calling native to managed 
12248           and the argument is specified as an out argument.
12250         Code is contributed under MIT/X11 license.
12252 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12254         * verify.c: fixed the type checks for generics, function pointers and vectors.
12255         Added type verification for ldobj and ldtoken. The verifier
12256         would segfault if header or signature of a method contained references
12257         to non-existant types.
12259 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12261         * marshal.c (cominterop_get_ccw): Patch from
12262         Bill Holmes to no walk up interface hierarchy. 
12263         All parent methods should be present in the interface for COM.
12264    
12265         Code is contributed under MIT/X11 license.
12267 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12269         * marshal.c (emit_marshal_com_interface): Patch from
12270         Bill Holmes to handle COM Interfaces as return values
12271         for native->managed calls.
12272    
12273         Code is contributed under MIT/X11 license.
12275 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
12277         * marshal.c (cominterop_get_idispatch_for_object): Implement
12278         for runtime callable wrappers.
12279    
12280         Code is contributed under MIT/X11 license.
12282 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
12284         * pedump.c (main): changed from mono_init to mono_init_from_assembly
12285         so 2.0 types are accessible
12288 2007-08-13  Miguel de Icaza  <miguel@novell.com>
12290         * domain.c (mono_init_internal): Call mono_assembly_load_friends
12291         once we load mscorlib.   Due to the order in which we initialize,
12292         the mono_assembly_load_full routine that loads mscorlib did not
12293         load friends.   We now load it once we load the
12294         mono_defaults.internals_visible_class class. 
12296         * assembly.c: Expose the mono_load_friend_assemblies method.
12298 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
12300         * verify.c: improved the handling of boxing, better
12301         type checking for unary ops and conversion. Fix bug
12302         regarding managed pointer compatibility checking
12304 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
12306         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
12308         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
12310 2007-08-09  Raja R Harinath  <rharinath@novell.com>
12312         * reflection.c (dup_type): Remove.
12313         * class.c (dup_type): Remove.
12314         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
12315         instead of the dodgy 'dup_type'.
12316         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
12317         handle the case where 'dup_type' needed the second argument.
12319 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
12321         * domain.c: Fix a warning.
12323 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12325         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
12326         checking that methods with the same fqname are not overridden
12327         with a method from an ancestor.
12329 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
12331         * threads.c (free_thread_static_data_helper): Avoid a crash if
12332         thread->static_data is not yet set.
12334 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
12336         * marshal.c: Use correct image when emitting
12337         native wrapper for COM calls.
12338    
12339         Code is contributed under MIT/X11 license.
12341 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
12343         * icall-def.h, security.c, security.h :
12344           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
12346 2007-08-07  Martin Baulig  <martin@ximian.com>
12348         * mono-debug-debugger.h
12349         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
12351         * domain.c (mono_domain_free): Call
12352         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
12354 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
12356         * verify.c (check_underflow, check_overflow): error message now returns IL offset
12357         * verify.c (in_same_block): code should test if either offset is inside the clauses
12358         * verify.c (mono_method_verify): push the exception into the eval stack of exception
12359         and filter blocks
12361 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12363         * image.c (mono_image_close): Fix a leak.
12365         * object.c (mono_runtime_invoke_array): Avoid using alloca.
12367         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
12369 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
12371         * domain.c, threads.c, threads-types.h: fix memory retention issue
12372         with thread static variables not being cleared on domain unload.
12373         Reuse thread static slots after domain unload.
12375 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12377         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
12378         nullable type.
12380         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
12381         now done in mono_runtime_invoke_array.
12383         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
12384         receiver is a nullable type.
12386         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
12387         generic parameter.
12389 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
12391         * marshal.c: Implement COM Objects as return type for 
12392         managed->unmanaged calls. Added Release calls for COM Object
12393         out/return values in managed->unmanaged calls.
12395         Code is contributed under MIT/X11 license.
12397 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
12399         * threads.h, threads-type.h: move the hazard pointer declarations
12400         to the private header.
12402 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
12404         * file-io.c, appdomain.c: memory leak fixes.
12406 2007-08-02  Dick Porter  <dick@ximian.com>
12408         * socket-io.c
12409         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
12410         SO_REUSEADDR setting into io-layer/sockets.c.
12412 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
12414         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
12415         from Object when called on a generic parameter. Fixes #82211.
12417 2007-08-01  Dick Porter  <dick@ximian.com>
12419         * file-io.c (convert_share): Test FileShare values bit-by-bit.
12420         Fixes bug 79250 yet again.
12422 2007-07-30  Martin Baulig  <martin@ximian.com>
12424         Merged the `debugger-dublin' branch.
12426         * mono-debug.h
12427         (MonoDebugDataTable): New typedef.
12428         (MonoDebugMethodAddressList): New typedef.
12429         (MonoDebugWrapperData): Removed.
12430         (MonoDebugSymbolTable): Removed `current_data_table',
12431         `current_data_table_size', `current_data_table_offset'.
12432         (MonoDebugDataItemType): Moved into mono-debug.c.
12433         (MonoDebugMethodJitInfo): Remove `address'.
12434         (mono_debug_data_table): New global variable.
12435         (mono_debug_lookup_method_addresses): New public function.
12436         (mono_debug_find_method): Take a `MonoMethod *', not a
12437         `MonoDebugMethodInfo *'.
12439         * mono-debug.c: Drop support for the old symbol tables.
12441 2007-06-28  Martin Baulig  <martin@ximian.com>
12443         * mono-debug.c (mono_debug_debugger_version): New public variable.
12445 2007-07-31  William Holmes  <billholmes54@gmail.com>
12447         * metadata.c Changed mono_type_create_from_typespec to not insert
12448           the type into the hash map until after
12449           do_mono_metadata_parse_type has completed.
12450         Fixes Bug #82194
12451         Code is contributed under MIT/X11 license.
12453 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
12455         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
12456         generic parameter. Fixes #82211.
12458 2007-07-27  Jb Evain  <jbevain@novell.com>
12460         * pedump.c (dump_metadata, dump_metadata_header): dump
12461         versions contained in the metadata header.
12463 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12465         * threads.c: register small_id_table with the GC.
12467 2007-07-27  Mark Probst  <mark.probst@gmail.com>
12469         * threads.c, threads.h, class-internals.h, object-internals.h:
12470         Hazard pointers, to be used by lock-free parallel algorithms.
12472 2007-07-26  Dick Porter  <dick@ximian.com>
12474         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
12475         routine on non-windows platforms, as I've not managed to think of
12476         a non-kludgy way of doing this.  Finishes off bug 78739.
12478 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
12480         * object.c: properly setup interface_bitmap in proxy vtables.
12482 2007-07-25  Marek Habersack  <mhabersack@novell.com>
12484         * appdomain.c (get_shadow_assembly_location): do not use TickCount
12485         to create unique shadow copy target directories, use the domain's
12486         serial number instead. Each domain gets a unique target directory
12487         that way.
12489         * domain.c (mono_domain_create): added code to increment domain
12490         shadow copy serial number and cache the value in the current
12491         domain structure.
12493         * domain-internals.h (struct _MonoDomain): added a new field -
12494         shadow_serial to hold the serial number used in generation of
12495         shadow-copy directories. This is to make sure that the directory
12496         name is unique for each and every domain created. We avoid a race
12497         condition with overriding assemblies already in use by other app
12498         domains.
12500 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
12502         * class.c (mono_bounded_array_class_get): fixed memory leak when 
12503         binding generic parameters.
12505 2007-07-24  Raja R Harinath  <rharinath@novell.com>
12507         * metadata.c (do_mono_metadata_parse_generic_class): Use
12508         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
12509         error.
12511 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
12513         * loader.c, class-internals.h, reflection.c: removed the per-method
12514         generics hashtable: we use the global one through the call of
12515         mono_class_inflate_generic_method ().
12517 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
12519         * class.c, metadata.c, class-internals.h: introduce yet another
12520         generics global cache for inflated methods (fixes 98% of the perf
12521         issue in bug #81806).
12523 2007-07-23  Raja R Harinath  <rharinath@novell.com>
12525         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
12526         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
12527         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
12528         return a MonoGenericInst containing (a copy) of those types.
12529         (mono_metadata_inflate_generic_inst): Update to changes.
12530         (mono_metadata_parse_generic_inst): Likewise.
12531         (mono_get_shared_generic_inst): Likewise.
12532         * reflection.c (mono_class_bind_generic_parameters): Likewise.
12533         (mono_reflection_bind_generic_method_parameters): Likewise.
12534         * metadata-internals.h: Likewise.
12535         * icall.c (free_generic_context): Kill.
12536         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
12538         * reflection.c (reflection_methodbuilder_to_mono_method): Use
12539         mono_metadata_type_dup.
12540         * marshal.c (mono_mb_create_method): Likewise.
12542         * metadata.c (mono_metadata_type_dup): Rename from
12543         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
12544         MonoImage.  Handle a few more cases, esp. when no mempool is given.
12545         * marshal.c, metadata-internals.h: Update to changes.
12547 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12549         * class.c: fixed a small leak for array classes and removed warning.
12551 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
12553         * loader.c (mono_method_get_param_token): Make this work on generic methods.
12554         Return 0x8000000 for return parameters. Fixes #82161.
12556 2007-07-21  Marek Habersack  <grendello@gmail.com>
12558         * appdomain.c (get_shadow_assembly_location): append the current
12559         ticks value to the path. Avoids overwriting the same assemblies by
12560         several threads at the same time.
12562 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12563         and Raja R Harinath  <rharinath@novell.com>
12565         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
12566         Simplify slightly.
12567         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
12568         property for testing if a method is a generic method definition.
12570 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12572         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
12574 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12576         * verify.c: used function from private branch, reverted to the one in class.h 
12578 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12580         * verify.c: a typo slipped in and the code wont compile
12582 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12584         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
12585         disabled box instruction as it is doing the wrong thing
12586         improved stack dump messages, now it is easier to debug type related issues
12589 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
12591         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
12593 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12595         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
12596         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
12597         grouped with class and valuetype. This change will simply 
12598         the code as it should be handled just like unmanaged pointers.
12600 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12602         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
12604 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12606         * verify.c: several stack merge issues fixed, reference comparisons now
12607         check the type size. strict type check now works correctly.
12608         added more uses of IS_MANAGED_POINTER macro.
12609         fixed issues pointed by running the test suite against .net.
12610         
12612 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12614         * class.c, loader.c, class-internals.h: Removed the
12615         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
12616         defines.
12618         * icall.c: Better error checking in some internal reflection
12619         methods.
12621 2007-07-18  William Holmes  <billholmes54@gmail.com>
12623         * filewatcher.c : removed unused variable 'filename' in 
12624           ves_icall_System_IO_FSW_SupportsFSW
12626 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
12628         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
12629         obsolete, removed.
12631 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
12633         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
12634         
12635         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
12637 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
12639         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12640         Implement generics support.
12641         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12643         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
12644         type_args and method_args arguments.
12645         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
12646         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12647         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
12649 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
12651         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
12652           It adds a rootimage parameter to mono_reflection_get_type_internal,
12653           adds new function mono_reflection_get_type_with_rootimage and use
12654           the rootimage to resolve the types instead of the current image
12656 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12658         * culture-info-table.h: Forgot to update after r78304.
12660 2007-07-13  Raja R Harinath  <rharinath@novell.com>
12662         * class.c (mono_class_is_open_constructed_type)
12663         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
12665 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
12667         * class.c (mono_bounded_array_class_get):  method fails if used with
12668         an incomplete TypeBuilder enum (no basetype field), fixed it by 
12669         avoiding calculating the size for such array as it cannot be instantiated.
12670         Fix bug #82015
12672 2007-07-12  Raja R Harinath  <rharinath@novell.com>
12674         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
12675         field.
12676         * metadata.c, reflection.c: Update to changes.
12678 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
12680         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
12681         mono_class_is_valid_enum, they are used to valide a enum when loading.
12682         * reflection.c: used new functions to throw TypeLoadException when and
12683         invalid enum is build with TypeBuilder. Fixes #82018
12684   
12685 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12687         * object.c: forgot commit of mono_class_setup_methods () to access
12688         iface->methods.
12689         * object-internals.h: added a few more handy fields to
12690         MonoIMTCheckItem.
12692 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
12694         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
12695         iface->methods.
12697 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12699         * class-internals.h, object-internals.h, object.c: IMT-based
12700         interface invocation core from Massimiliano Mantione
12701         (massi@ximian.com) with a reworked arch-specific interface,
12702         bsearch implementation and a few bugfixes and memory savings by me.
12704 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
12706         * class.c (mono_class_create_from_typedef): mono would segfault if 
12707         an enum did not have a __value field. It now throws a TypeLoadException
12708         for such cases. Fix bug #82022
12710 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12712         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
12714 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12716         * class.c (mono_class_init): If a class is already inited but has
12717         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
12719 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12721         * class.c: Properly handle the case of an unimplemented interface
12722         method.  Fixes: 81673.
12724 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12726         * class-internals.h, object.c: cleanup patch from massi: use
12727         MonoVTable->interface_bitmap since the vtable interfaces offset array
12728         is going away.
12730 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12732         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
12733         GetMDStreamVersion icall instead.
12735 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
12737         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
12738         not use mono_dl_build_path() with a full library name: makes
12739         fallbacks to libgaim and libfam work.
12741 2007-07-06  William Holmes  <billholmes54@gmail.com>
12743         * assembly.c: Added a continue statement in probe_for_partial_name when
12744          parse_assembly_directory_name fails.  Fixes : 82002
12746 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
12748         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
12749         and added a verification  for TYPEDBYREF.
12750         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
12751         make native int interchangeable with int32 and some small cleanup and formating.
12752         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
12753         handle byref of byref.
12754         * verify.c (push_local): handle byref of byref.
12755         * verify.c (do_binop): invalid mix of values is unverifiable
12756         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
12757         added visibility checks
12758         * verify.c (field related method): added visibility checks
12759         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
12761 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
12763         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
12764         string.
12766 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
12768         * profiler.c (mono_profiler_load): Fix an off-by-one error.
12770         * marshal.c (emit_marshal_string): When returning a string from managed code,
12771         allways make a copy even for unicode strings. Fixes #81990.
12773 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
12775         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
12776         of byref generic inst types (bug #81997).
12778 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
12780         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
12781         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
12783 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
12785         * marshal.c (emit_marshal_string): Add support for unicode strings in
12786         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
12788 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
12790         * verify.c: field load/store are now verified, missing only access checks now
12792 2007-06-28  Martin Baulig  <martin@ximian.com>
12794         * mono-debug.c (mono_debug_debugger_version): New public variable.
12796 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
12798         * locales.c: When constructing DateTimeFormat or NumberFormat for
12799         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
12800         MonoCultureInfo contructed from the current locale is always
12801         read-only and has UseUserOverride set to true. All MonoCultureInfo
12802         instances returned for GetCultures have both IsReadOnly and
12803         UseUserOverride set to true. Fixes part of bug #81930.
12805 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
12807        * icall-def.h: Update System.__ComObject icalls
12808        * marshal.c: Avoid managed transition (and object creation)
12809        when looking up COM interface in RCW.
12810        * marshal.h: Ditto.
12811        
12812        Code is contributed under MIT/X11 license.
12814 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
12816         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
12817         to avoid crashes during assembly unloading.
12819 2007-06-22  Raja R Harinath  <rharinath@novell.com>
12821         Fix MethodInfo.IsGenericMethodDefinition
12822         * reflection.c (mono_reflection_bind_generic_method_parameters):
12823         Rearrange code to ensure we always uses a generic method definition.
12824         * class.c (mono_class_inflate_generic_method_full): Set
12825         'generic_container' field only for generic method definitions.
12826         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
12827         Use presense of 'generic_container' field as indication of being a
12828         generic method definition.
12830 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
12832         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12834         * object-internals.h: Reflect changes in the layout of the managed Delegate
12835         class.
12836         
12837         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
12838         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
12839         runtime memory used by the dynamic method. Fixes #77146.
12841 2007-06-21  Dick Porter  <dick@ximian.com>
12843         * file-io.h: 
12844         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
12845         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
12846         81767.
12848 2007-06-21  Raja R Harinath  <rharinath@novell.com>
12850         * reflection.c (method_encode_methodspec): Add a tripwire.
12851         * class.c (inflate_generic_type): The fully open generic type is
12852         not the same as the generic type definition.
12854 2007-06-21  Martin Baulig  <martin@ximian.com>
12856         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
12858         * mono-debug-debugger.h
12859         (MonoDebuggerBreakpointInfo): Removed.
12860         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
12861         (mono_debugger_remove_breakpoint): Likewise.
12862         (mono_debugger_breakpoint_callback): Likewise.
12863         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
12865 2007-06-21  Raja R Harinath  <rharinath@novell.com>
12867         * metadata.c (mono_metadata_lookup_generic_class): The fully open
12868         generic type is not the same as the generic type definition.
12869         * class.c (mono_generic_class_get_class): Likewise.
12871 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
12873         * icall.c: The second argument to 
12874         System.Reflection.MethodBase.GetMethodFromHandleInternalType
12875         is a MonoType not a MonoClass.
12877 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
12879         * verify.c: support for function pointers in the verifier
12881 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
12883         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
12885 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
12887         * assembly.c: removed Mono.Data.SqliteClient from the list of
12888         forward-compatible assemblies as it breaks the ABI (bug #81899).
12890 2007-06-19  Raja R Harinath  <rharinath@novell.com>
12892         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
12893         lookup/update with the loader lock.
12894         * reflection.c (mono_class_bind_generic_parameters): No need to
12895         protect mono_metadata_lookup_* with the loader lock.
12896         * class.c (inflate_generic_type): Likewise.
12897         
12898         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
12899         on a generic instantiated type.
12901 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
12903         *verify.c: produce meanfull error messages on verification error
12904         *verify.c: fixed some cases of verification errors reported as validation errors
12905         *pedump.c: fixed the error name array, now it shows validation errors properly
12906         *verify.h: fixed the contant that should be used for verification errors
12908 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
12910         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
12911         for bug #77596, 81858 and 80743 (generics data structures on domain
12912         unload).
12914 2007-06-15  Raja R Harinath  <rharinath@novell.com>
12916         Avoid allocating 'MonoGenericContext' on the heap.
12917         * class-internals (_MonoMethodInflated::context): Make field
12918         inline, not a pointer.
12919         * loader.c (method_from_methodspec): Allocate 'new_context' on the
12920         stack.  Use the context embedded within the inflated method as the
12921         hash key, rather than 'new_context'.
12922         * class.c (inflate_generic_context): Simplify.  Return a struct
12923         rather than allocating on the heap.
12924         (mono_class_inflate_generic_method_full): Update to changes.  Now,
12925         doesn't salt away a copy of the context -- simplifying the
12926         lifetime rules of a 'MonoGenericContext *'.
12927         (mono_method_get_context): Return pointer to embedded context.
12928         (setup_generic_array_ifaces): Allocate temporary context on stack.
12929         * reflection.c (inflate_mono_method): Likewise.
12930         (mono_reflection_bind_generic_method_parameters): Likewise.
12931         Use the context embedded within the inflated method as the hash key.
12933         Avoid a source of allocation of 'MonoGenericContext'.
12934         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
12935         and 'cached_context' fields into embedded 'MonoGenericContext' field.
12936         * class.c: Update to changes.
12937         (mono_generic_class_get_context): Simplify drastically.  Now just
12938         returns a pointer to the field.
12939         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
12940         argument as a const pointer.
12941         (mono_metadata_generic_context_equal): Likewise.
12942         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
12943         Update to changes.
12945 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
12947         * verify.c improved the handling of brtrue/brfalse, factored out common code
12949 2007-06-14  Raja R Harinath  <rharinath@novell.com>
12951         Kill MonoGenericMethod.
12952         * class-internals.h (MonoGenericContext::method_inst): Rename from
12953         'gmethod' and convert to a MonoGenericInst.
12954         (MonoGenericMethod): Remove.
12955         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
12956         * loader.c (method_from_methodspec): Update to changes.  Use a
12957         MonoGenericContext as the key to the hashtable.
12958         * metadata.c (mono_metadata_generic_context_equal): Rename from 
12959         'mono_metadata_generic_method_equal' and take MonoGenericContext.
12960         (mono_metadata_generic_context_hash): Likewise from
12961         'mono_metadata_generic_method_hash'.  Change hash function.
12962         (mono_metadata_load_generic_params): Update to changes.
12963         (mono_get_shared_generic_method): Remove.
12964         * metadata-internals.h (mono_get_shared_generic_method): Remove.
12965         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
12966         (inflate_generic_context): Likewise.
12967         (mono_class_inflate_generic_method_full): Likewise.
12968         (setup_generic_array_ifaces): Likewise.
12969         (mono_class_create_from_typespec): Likewise.
12970         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
12971         (method_encode_methodspec): Update callsite.
12972         (reflection_methodbuilder_to_mono_method): Update to changes.
12973         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
12974         MonoGenericContext as the key to the hashtable.
12975         (inflate_mono_method): Update to changes.
12977         * class-internals.h (MonoGenericMethod::container): Remove.
12978         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
12980 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
12982         * profiler-private.h, profiler.c, profiler.h: added API to profile
12983         exception events.
12985 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
12987         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
12989 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
12991         * verify.c: method invocation is now validated, now we verify parameter types on stack.
12992         Fixed overflow and underflow not aborting the verification process.
12994 2007-06-13  Mark Probst  <mark.probst@gmail.com>
12996         * class-internals.h (MonoStats): Added stats entries for dynamic
12997         code allocations.
12999 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13001         * loader.c (mono_free_method): Free header->locals and header->clauses.
13003         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13004         dynamic case.
13006         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13008         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13010 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13012         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13013         the tables.
13015 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13017         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13019 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13021         MonoGenericMethod on a diet
13022         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13023         here ...
13024         (_MonoGenericMethod::reflection_info): ... from here.
13025         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13026         Update to changes.
13027         * reflection.c (inflate_mono_method): Likewise.
13028         (mono_reflection_bind_generic_method_parameters): Likewise.
13030 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13032         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13033         *verify.c: factored long ldarg forms to share code with short forms
13035 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13037         *verify.c: fixed code formating factored some duplicate code
13038         into a new function
13040         *verify.h: fixed binary incompatibility introduced earlier
13042         *pedump.c: fixed formating
13044 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13046         Fix assertion when disassembling Mono.C5.dll
13047         * loader.c (method_from_methodspec): Avoid inflating a method
13048         twice with the same context.  If the methodref is inflated, use
13049         the declaring method instead.
13051         * class.c (mono_class_from_generic_parameter): Fix case similar to
13052         bug #81830 handled below, but for method containers.
13054 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13056         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13057         get_shared_generic_class.  Directly inflate the instance.
13058         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13059         (inflate_generic_class): Delete.
13060         (get_shared_generic_class): Delete.  Move setting of
13061         'cached_class' and 'cached_context' ...
13062         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13064         * metadata.c (mono_metadata_lookup_generic_class): Change
13065         signature to take the components of a MonoGenericClass rather than
13066         an allocated MonoGenericClass.  Change semantics to be intern-like.
13067         * reflection.c (mono_class_bind_generic_parameters): Update to
13068         changes.  Make locking region tighter.
13069         * class.c (inflate_generic_class): Update to changes.
13070         (get_shared_generic_class): Likewise.
13071         * metadata-internals.h: Likewise.
13073         * reflection.c (mono_class_bind_generic_parameters): Take and
13074         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13075         (mono_reflection_bind_generic_parameters): Use
13076         'mono_class_bind_generic_parameters' rather than duplicate the code.
13077         * class.c (mono_bounded_array_class_get): Update to changes.
13078         * object-internals.h: Likewise.
13080         * reflection.c (mono_class_bind_generic_parameters): Only support
13081         parameterizing generic type definitions.  Remove support for other
13082         open types.
13084 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13086         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13088         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13089         in the dynamic case.
13091 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13093         * threads.c: When cleaning up thread, reset the Background bit.
13094         Fixes bug #81720.
13096 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13098        * metadata.c: Move variable declarations to top of scope.
13099        * verify.c: Move variable declarations to top of scope.
13101        Code is contributed under MIT/X11 license.
13103 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13105         * reflection.c (mono_class_bind_generic_parameters): Replace
13106         open-coded loop with mono_metadata_inflate_generic_inst.
13108         * class.c (get_shared_generic_class): Don't call
13109         mono_get_shared_generic_inst.  Use the container's own
13110         'class_inst'.
13112         * metadata.c (mono_metadata_load_generic_params): Move
13113         initialization of 'context' field here from ...
13114         * class.c (mono_class_create_from_typedef): ... here, and ...
13115         * loader.c (mono_get_method_from_token): ... here.
13117         * class.c (get_shared_generic_class): Rename from
13118         mono_get_shared_generic_class and make static.
13119         (mono_get_shared_generic_inst): Move to metadata.c.
13120         * loader.c (mono_get_shared_generic_method): Likewise.
13121         * class-internals.h, metadata-internals.h: Update to changes.
13123         Fix #81830
13124         * class.c (mono_class_from_generic_parameter): Don't assume a
13125         generic container owner exists.  Generic containers from monodis
13126         don't have any.
13128 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
13130         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
13131         * verify.h: new typedefs to returns the non-verifiable status
13132         * verify.c: initial implementation of generics, stack merging and object compatibility check
13134 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13136         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13137         a MonoInternalHashTable again (fixed bug in internal hash table
13138         code).
13140 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13142         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13143         MonoInternalHashTable again (fixed bug in internal hash table
13144         code).
13146 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13148         * class.c, image.c, class-internals.h, domain.c,
13149         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
13150         changes.  Have to figure out what makes them break the SWF
13151         regression.
13153 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13155         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13156         a MonoInternalHashTable now.
13158 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13160         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13161         MonoInternalHashTable now.
13163 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
13165         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
13166         invoke_impl code.
13168         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
13170         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
13171         dependent trampoline.
13173         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13175         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
13177 2007-05-29  Robert Jordan  <robertj@gmx.net>
13179         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
13181 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
13183         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
13185 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
13187        * marshal.c: Fix interface lookup loops for
13188        cominterop_get_com_slot_for_method and 
13189        cominterop_get_method_interface. Only need to lookup
13190        if type is a class, else use interface type method is on.
13192        Code is contributed under MIT/X11 license.
13194 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
13196         * reflection.c: HasSecurity can be present even if no specially 
13197         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
13198         SecurityAttribute). Fix CAS regression tests on buildbot.
13200 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
13202        * appdomain.c: Add configure checks for header files.
13203        * image.c: Add configure checks for header files.
13204        * file-io.c: Add configure checks for header files.
13205        * debug-mono-symfile.c: Add configure checks for header files.
13206        * threadpool.c: Add configure checks for header files.
13207        * console-io.c: Add configure checks for header files.
13208        * profiler.c: Add configure checks for header files.
13209        * rawbuffer.c: Add configure checks for header files.
13210        * icall.c: Add configure checks for header files.
13211        * rand.c: Add configure checks for header files.
13212        * socket-io.c: Add configure checks for header files.
13214        Code is contributed under MIT/X11 license.
13216 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
13218         * reflection.c (mono_custom_attrs_from_builders): Remove the 
13219         assertion as it breaks the build.
13220         
13221         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
13223         * reflection.c (lookup_custom_attr): Make a copy here too.
13225         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
13226         dynamic images.
13228         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
13229         images.
13231         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
13232         info.
13234 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
13236         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
13237         (load_cattr_value): Ditto.
13239 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
13241         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
13243 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
13245         * threads.c: In "start_wrapper", set apartment_state to MTA if
13246         apartment_state is Unknown and we're running on 2.0 profile or
13247         higher.
13248         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
13249         to main method, then set apartment_state to Unknown on 1.0 profile,
13250         and MTA on 2.0 profile.
13252 2007-05-16  Jb Evain  <jb@nurv.fr>
13254         * class-internals.h (MonoDefaults): Add an attribute_class and
13255           customattribute_data_class.
13256         * domain.c (mono_init_internal): Populate them.
13257         * reflection.c: Use them to remove duplicates. Make a vew
13258         MonoClass variables `static'.
13260 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
13262         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
13263         step in implementing IMT, so that all isinst checks now can go
13264         through the bitmap.
13265         This was needed because vtables for TransparentProxy need to look
13266         like the vtable of the "target" class, so they need to point to
13267         its interface bitmap directly.
13269         * object.c: inside "mono_class_create_runtime_vtable" and
13270         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
13272 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13274         * object-internals.h
13275           culture-info.h : added territory field in MonoCulture and
13276           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
13277         * locales.c : fill territory field above too.
13278         * culture-info-table.h : regenerated.
13280 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
13282         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
13283         Fixes #81599.
13285 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
13287         * object.c: Always initialize apartment, even if 
13288         there is no custom attributes on entry point.
13289         
13290         Code is contributed under MIT/X11 license.
13292 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
13294         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
13295         * metadata.c: If no encoding is set, check for unicode
13296         on class.
13297         
13298         Code is contributed under MIT/X11 license.
13300 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13302         * threads.c: Handle if mono_thread_current returns NULL 
13303         
13304         Code is contributed under MIT/X11 license.
13306 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13308         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
13309         in start_wrapper. Added mono_thread_init_apartment_state and
13310         mono_thread_cleanup_apartment_state.
13311         * object.c: Initialize thread apartment state on main thread
13312         by checking for STAThreadAttribute on entry point.
13313         * object-internals.h: Add apartment_state field to MonoThread.
13314         * threads-types.h: Add unmanaged definition of 
13315         System.Threading.ApartmentState, MonoThreadApartmentState.
13316         
13317         Code is contributed under MIT/X11 license.
13318         
13319 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
13321         * class.c: Fix windows build.
13322         * class-internals.h: Fix windows build.
13323         
13324         Code is contributed under MIT/X11 license.
13326 2007-05-08  Robert Jordan  <robertj@gmx.net>
13328         * process.c (CreateProcess_internal):
13329         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
13330         .CreateNoWindow was specified. Fixes #81496.
13332 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13334         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
13335         step in implementing IMT, replaced it with two compact arrays
13336         (interfaces_packed and interface_offsets_packed) and a bitmap that
13337         is used for isinst checks (interface_bitmap).
13339         * class.c: (compare_interface_ids): compare function to pass to
13340         bsearch when looking for an interface with a given id.
13341         (mono_class_interface_offset): reimplemented using bsearch on
13342         interfaces_packed, getting the offset from interface_offsets_packed.
13343         (print_implemented_interfaces): utility debugging function.
13344         (setup_interface_offsets): reworked to initialize interfaces_packed,
13345         interface_offsets_packed and interface_bitmap.
13347         * object.c: replaced all accesses to "MonoClass.interface_offsets"
13348         with uses of interfaces_packed and interface_offsets_packed.
13350 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13352         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
13353         mono_class_interface_offset prototype to wrap all accesses to
13354         "MonoClass.interface_offsets".
13356         * class.c: Implemented mono_class_interface_offset, and wrapped all
13357         accesses to "MonoClass.interface_offsets".
13359         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
13360         "MonoClass.interface_offsets".
13362 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13364         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
13365         GetMethodFromHandle overloads (bug #78637).
13367 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13369         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
13370         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
13372 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
13374         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
13375         #81498.
13377         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
13378         gracefully.
13379         (mono_custom_attrs_from_index): Ditto.
13381         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
13382         Fixes #81501.
13384 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
13386         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
13387         is now allocated from a mempool.
13389 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
13391         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
13392         caller holds threads_lock, leading to deadlocks. Fixes #81476.
13394 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
13396         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
13397         mono_loader_clear_error () too late. Fixes #81463.
13399 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
13401         * culture-info-table.h : regenerated.
13403 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
13405         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
13406         is missing.
13408 2007-04-25  Dick Porter  <dick@ximian.com>
13410         * Makefile.am: Put the mingw enforced-optimisation back into the
13411         PLATFORM_WIN32 section.
13413 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
13415         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
13416         patch.
13418         * image.c (mono_image_load_module): New API function to load a module reference.
13420         * image.c (load_modules): Load modules lazily. Fixes #80812.
13422         * class.c (mono_class_from_typeref): Use mono_image_load_module.
13423         
13424         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
13426         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
13427         to mono_image_load_module_dynamic.
13429 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
13431         * marshal.c: Fix calling convention for CCW on non-windows
13432         platforms. STDCALL on windows, CDECL everywhere else to work 
13433         with XPCOM and MainWin COM.
13434         
13435         Code is contributed under MIT/X11 license.
13437 2007-04-23  Martin Baulig  <martin@ximian.com>
13439         Fix #80969.
13441         * loader.c
13442         (method_from_memberref): Added `gboolean *used_context' argument.
13443         (mono_get_method_from_token): Likewise.
13444         (mono_get_method_full): Don't insert the method in the cache when
13445         `used_context' is true.
13447 2007-04-23  Raja R Harinath  <rharinath@novell.com>
13449         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
13451         * reflection.c (mono_reflection_bind_generic_parameters): Don't
13452         create new MonoTypes for returned types.
13453         * class.c (mono_generic_class_get_class): Export mono-internal.
13454         * class-internals.h: Update to changes.
13456 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13458         * threadpool.c, threadpool.h, icall-def.h: patch from
13459         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
13461 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
13463         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
13464         
13465         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
13467         * threads.c (mono_thread_get_stack_bounds): New helper function.
13469         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
13470         Correctly compute stack bounds when attaching. Fixes #81394.
13472 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
13474         * reflection.c: fix handling of doubles in custom attributes
13475         for the arm-fpa format (bug #81368).
13477 2007-04-18  Raja R Harinath  <rharinath@novell.com>
13479         * reflection.c (assembly_add_win32_resources): Mildly relax an
13480         bounds check to let the end pointer point just past the end of the
13481         allocated buffer.  (may fix #81384)
13483 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
13485         * culture-info-table.h : regenerated.
13487 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
13489         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
13490         the thread is aborted early.
13492 2007-04-05  Dick Porter  <dick@ximian.com>
13494         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
13495         FindFirstFile()/FindNextFile() to find entries.  This lets the
13496         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
13497         81038.
13499         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
13500         the parameters of
13501         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
13503 2007-04-04  Martin Baulig  <martin@ximian.com>
13505         * debug-helpers.c
13506         (mono_method_desc_full_match): Add support for nested classes.
13508 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
13510         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
13512 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
13514         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
13515         waiting for too many threads.
13517 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
13519         * environment.c: Fix return value check on uname so we can get the 
13520         executing version on Solaris operating systems.
13522 2007-03-28  Jb Evain  <jbevain@gmail.com>
13524         * class.c (mono_type_get_name_recurse): Complete the
13525         fix for the creation of assembly qualified names for
13526         pointer types. Fixes #81208.
13528 2007-03-27  Dick Porter  <dick@ximian.com>
13530         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
13531         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
13532         changed.
13534         * threads.c
13535         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
13536         the value of ReleaseMutex().
13538 2007-03-27  Dick Porter  <dick@ximian.com>
13540         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
13541         in little-endian order, not network endian, so must be converted
13542         to host endian here.  Fixes bug 80593.
13544 2007-03-22  Jb Evain  <jbevain@gmail.com>
13546         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
13547         qualified names for pointer types. Fixes #81208.
13549 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
13551         * marshal.c: Add support for PreserveSigAttribute. 
13552         
13553         Code is contributed under MIT/X11 license.
13555 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
13557         * process.c: Fix endianness issues. Fixes #81126.
13559         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
13560         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
13562         * image.c (mono_image_lookup_resource): Make this work on big-endian
13563         machines.Change API contract so the caller needs to free the return value.
13564         
13565         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
13566         API change.
13567         
13568 2007-03-14  Martin Baulig  <martin@ximian.com>
13570         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
13571         mono_type_get_desc() as well.
13573 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13575         * icall.c:  Fix environ access in VS.  
13576         
13577 2007-03-13  Alp Toker  <alp@atoker.com>
13579         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13580         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13581         #63841.
13583 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
13585         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
13586         circular references among dynamic methods. Fixes #81091.
13588         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
13590 2007-03-09  Martin Baulig  <martin@ximian.com>
13592         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
13594 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
13596         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
13597         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
13598         
13599         Code is contributed under MIT/X11 license.
13600         
13601 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
13603         * loader.c: Reapply patch for bug #79424.
13605 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13607         * metadata.c (mono_type_to_unmanaged): Only convert object to
13608         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
13610 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
13612         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
13613         (and incorrectly set) is_reference field from MonoGenericInst.
13615 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13617         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
13618         a little earlier.
13620         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
13622         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
13624 2007-03-05  Miguel de Icaza  <miguel@novell.com>
13626         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
13627         FileOptions.1 value to mean "temporary", map that to
13628         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
13630         Fixes 80688
13632 2007-03-03  Marek Habersack  <mhabersack@novell.com>
13634         * appdomain.c: implement MS .Net style shadow copying. Copies of
13635         the assemblies are made in a subdirectory of the dynamic base
13636         directory, the assembly names are preserved.
13637         Copy .mdb and .config files along with the assemblies being shadowed.
13639 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13641         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
13642         (emit_marshal_handleref): Ditto.
13644         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
13645         on Visual C++. Fixes #80671.
13647 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
13649         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
13650         for clone operations.
13652 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13654         * marshal.c: Fix warnings.
13656 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
13658         * loader.c: allow case-insensitive matching of the dll name
13659         in dllmap handling when prefixed with "i:".
13661 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
13663         * threads.c: Fix #ifdef for dummy_apc function for VS.
13665 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
13667         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
13669 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
13670         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
13671         giving precedence to the methods with a fully qualified name
13672         (InterfaceName.MethodName) when building the interface sections
13673         of the vtable.
13675 2007-02-16  Dick Porter  <dick@ximian.com>
13677         * threadpool.c (append_job): Fix fast-path array handling, so it's
13678         less likely the array will grow exponentially when the load is
13679         heavy.
13681 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13683         * metadata-internals.h, loader.c: fix dllmap lookup order
13684         for non-function maps, too, and prepare for fallback code.
13686 2007-02-12  Robert Jordan  <robertj@gmx.net>
13688         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
13689         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
13690         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
13691         GlobalFree. Fixes a part of bug #77075.
13693 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
13695         * loader.c: implemented typedef parent in field memberref.
13697 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
13699         * marshal.c: Fix warnings and remember to call Release on
13700         IUnknown of RCW.
13701         
13702         Code is contributed under MIT/X11 license.
13704 2007-02-10  Miguel de Icaza  <miguel@novell.com>
13706         * class-internals.h: Add MonoHandleRef definition, and
13707         handleref_class to mono_defaults. 
13709         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
13710         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
13712         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
13713         (do nothing on this stage)
13714         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
13715         (emit_marshal_handleref): New method, used for argument handling
13716         of HandleRefs. 
13718 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
13720         * class.c (mono_class_setup_parent): Lazily init com types.
13721         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
13722         init com types.
13723         * object.c (mono_remote_class_vtable): Lazily init com types.
13724         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
13725         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
13726         * domain-internals.h: Expose mono_init_com_types.
13727         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
13728         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
13729         Add support for COM Callable Wrapper marshalling.
13730         * marshal.h: Add icall definitions.
13731         * gc.c: Handle freeing of CCWs in finalizer code.
13732         
13733         Code is contributed under MIT/X11 license.
13735 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
13737         * reflection.c: changed all the signature encoding code to use
13738         a variable-sized buffer.
13740 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13742         * marshal.c: locking fixes: never take the loader lock
13743         or other runtime locks when holding the marshal lock
13744         (fixes bug#80664).
13746 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
13748         * marshal.c: make the delegate function pointer mapping
13749         work for the moving GC.
13751 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
13753         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
13754         for bug #80618.
13756 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13758         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
13759         gmodule.
13761 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
13763         * threadpool.c: made the code moving-GC safe.
13765 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13767         * assembly.c, boehm-gc.c, class-internals.h, class.c,
13768         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
13769         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
13770         warning cleanup.
13771         * reflection.c: warning cleanup, some threading and moving GC fixes.
13773 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
13775         * class.c, loader.c: create the needed Set/Get/Address array methods
13776         as well as the .ctors in mono_class_init (), fixes bug #80567.
13778 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
13780         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
13781         we doesn't decrease its alignment. Should fix the sparc build.
13783 2007-01-24  Dick Porter  <dick@ximian.com>
13785         * socket-io.c
13786         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
13787         Create the returned object if we need to ignore an unsupported
13788         socket option.  Fixes a segfault reported by Atsushi.
13790 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13792         * class.c, object.c: restrict GC-tracked fields to
13793         UIntPtr fields used inside corlib, so we provide better
13794         type info to the GC and also allow broken packing as in
13795         bug #80580.
13797 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
13799         * sgen-gc.c: removed duplicated function.
13801 2007-01-19  Miguel de Icaza  <miguel@novell.com>
13803         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
13804         value that means that the value is not supported, but that we
13805         should not return a failure, but instead report this as a
13806         successful operation.
13808 2007-01-19  Raja R Harinath  <rharinath@novell.com>
13810         Fix tests/bug79956.2.il
13811         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
13812         (mono_generic_class_get_class): If the generic definition in an
13813         enum, copy over other fields related to it.
13815 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
13817         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
13818         genericinst enums (bug #79215).
13820 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
13821         * class.c: Fix bug 80307.
13823 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
13825         * image.c: if the file table is not present, try to load
13826         all the modules, since we don't have info about them
13827         having or not metadata (bug #80517).
13828         * assembly.c: allow mono_assembly_load_references () to
13829         work for netmodules.
13831 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13833         * image.c, metadata-internals.h, object.c: execute module
13834         cctors when running on the 2 runtime if present (bug #80487).
13836 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13838         * icall.c: optimized InitializeArray() on bigendian.
13840 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
13842         * icall.c: fix for the broken ARM FPA double format.
13844 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
13846         * icall.c: handle endian issues for r4 and r8 types, too, in
13847         the InitializeArray() icall.
13849 2007-01-15  Miguel de Icaza  <miguel@novell.com>
13851         * loader.c (mono_loader_error_prepare_exception): Clear the error
13852         once we have extracted the information from it, do this before we
13853         call into the JIT's class loading mechanisms.
13855         * object.c (mono_class_create_runtime_vtable): Do not clear the
13856         loader error before calling mono_class_get_exception_for_failure
13857         as the loader error is needed inside
13858         mono_class_get_exception_for_failure to throw the error (thinko).
13860         Fixes #80521
13861         
13862 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
13864         * reflection.c: align fields rva data so it's faster to load at
13865         runtime.
13867 2007-01-12  Raja R Harinath  <rharinath@novell.com>
13869         Prepare to simplify GenericMethod handling.
13870         * class-internals.h (mono_method_get_context): New accessor function.
13871         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
13872         rather than directly accessing '->context' field.
13874         * class-internals.h (_MonoGenericParam.method): Move ...
13875         (_MonoGenericContainer): ... here.  Add into union with klass field.
13876         * class.c, icall.c, loader.c, metadata.c, reflection.c:
13877         Update to changes.
13879 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
13881         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
13882         the wrapper type enum and reduce relocations.
13884 2007-01-12  Raja R Harinath  <rharinath@novell.com>
13886         * reflection.c (inflate_mono_method): Reuse method instantiation
13887         from the generic method, if available.
13889 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
13891         * marshal.c (emit_marshal_variant): Fix conv_arg
13892         type in last commit, based on whether parameter is byref.
13893         
13894 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
13896         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
13897         marshalling.
13898         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
13899         MONO_TYPE_OBJECT back for VARIANT support.
13901 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
13903         * marshal.c, marshal.h, icall-def.h: Implement 
13904         Marshal.ReAllocCoTaskMem.
13906 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
13908         * marshal.c: memory retention fixes: use the proper
13909         image cache for runtime_invoke method lookups.
13911 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
13913         * mempool.c: added code to help debug mempool allocations.
13915 2007-01-11  Dick Porter  <dick@ximian.com>
13917         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
13918         support (experimenting with faking it with IP_MTU_DISCOVER for
13919         systems that don't have IP_DONTFRAGMENT.)
13920         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
13921         icall.
13923         * icall-def.h: new System.Net.Sockets.Disconnect icall.
13925         * socket-io.h: Add new fields to MonoSocketAsyncResult
13926         corresponding to the new ones in Socket.cs.
13928 2007-01-11  Raja R Harinath  <rharinath@novell.com>
13930         Fix IronPython regression mentioned in #80249
13931         * metadata.c (do_mono_metadata_parse_generic_class): Clear
13932         'cached_context' field, since it may have been initialized as a
13933         side-effect of metadata parsing.
13935         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
13936         (_MonoGenericClass.cached_class): Move here and rename from lone
13937         remaining field of ...
13938         (_MonoInflatedGenericClass): ... this.  Remove.
13939         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
13940         to changes.
13942         Fix mcs/tests/test-128.cs regression.
13943         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
13944         2007-01-10 change below.
13945         [MONO_TYPE_OBJECT]: Recurse into array case.
13947 2007-01-11  Raja R Harinath  <harinath@gmail.com>
13949         * class-internals.h (mono_get_inflated_generic_class): Remove.
13950         * class.c (mono_get_inflated_generic_class): Remove.
13951         (mono_generic_class_get_class): Rename from
13952         mono_class_create_generic.
13953         (mono_class_from_mono_type) [GENERICINST]: Use it.
13954         * reflection.c, metadata.c: Update to changes.  Use
13955         'mono_class_from_mono_type'.
13957 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
13959         * reflection.c: use passed type when encoding an array element
13960         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
13962 2007-01-09  Robert Jordan  <robertj@gmx.net>
13964         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
13965         result arguments (someDelegate.EndInvoke (unrelatedAres)).
13966         Fixes bug #80392.
13968 2007-01-09  Raja R Harinath  <rharinath@novell.com>
13970         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
13972         * object.c (set_value): Avoid aliasing between type->data.klass
13973         and type->data.generic_class.
13975         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
13977 2007-01-08  Raja R Harinath  <rharinath@novell.com>
13979         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
13980         between type->data.klass and type->data.generic_class.
13982 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
13984         * marshal.c: In MS.NET, StringBuilder objects are not copied by
13985         value in out parameters.
13987 2007-01-08  Raja R Harinath  <rharinath@novell.com>
13989         Simplify invariant for MonoGenericClass::klass field.
13990         * class.c (mono_class_create_generic): Verify 'klass' is null.
13991         * metadata.c (do_mono_metadata_parse_generic_class): Don't
13992         initialize 'klass' field.
13994 2007-01-05  Raja R Harinath  <rharinath@novell.com>
13996         Ongoing work to avoid redundant data and simplify invariants.
13997         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
13998         'generic_class', and change type to a GenericInst.
13999         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14000         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14002 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14004         * class.c : skip io-layer under PLATFORM_WIN32.
14006 2007-01-03  Tor Lillqvist  <tml@novell.com>
14008         Fix #80305: In a bundled executable, look in the bundled exe
14009         assembly to determine the runtime version. Add the possibility to
14010         bundle also the machine.config file.
14011         
14012         * assembly.c (mono_assembly_open_from_bundle): Make
14013         non-static. Allow being called even if we have no bundled
14014         assemblies, and return NULL right away in that case.
14016         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14017         here.
14019         * domain.c (app_config_parse): Take an assembly exe file name as
14020         parameter instead of a config file name. Check for a bundled
14021         config file for that assembly by calling
14022         mono_config_string_for_assembly_file() (see below) before looking
14023         for one in the file system.
14024         (get_runtimes_from_exe): Corrsponding change to call of
14025         app_config_parse().
14026         (get_runtimes_from_exe): Check for bundled assembly exe file first
14027         by calling mono_assembly_open_from_bundle(). If no bundled
14028         assembly exe file is found, call mono_image_open() as before to
14029         look it up in the file system.
14031         * mono-config.c: Add variable bundled_machinec_onfig.
14032         (mono_config_string_for_assembly_file): New function.
14033         (mono_config_for_assembly): Move code snippet that looks for a
14034         bundled assembly .config file into the above new function. Call
14035         it.
14036         (mono_register_machine_config, mono_get_machine_config): New
14037         functions to set and retrieve
14039         * assembly.h: Declare mono_register_machine_config().
14041         * mono-config.h: Declare mono_get_machine_config() and
14042         mono_config_string_for_assembly_file().
14044         * icall.c: No declaration of environ necessary on Win32. It is
14045         declared (as a macro expanding to a function call) in stdlib.h.
14046         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14047         New internal mono function. Returns the value of
14048         mono_get_machine_config() as a Mono string.
14050         * icall-def.h: Add get_bundled_machine_config().
14052 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14054         Remove redundant field
14055         * class-internals.h (_MonoGenericContext.container): Remove field.
14056         * loader.c (mono_method_get_signature_full): Don't parse a
14057         "container" for a signature parse when the signature is inflated
14058         immediately.
14059         (method_from_methodspec): Likewise, for a generic_inst.
14060         * class.c, metadata.c, reflection.c: Update to changes.
14062 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14064         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14065         'cached_context', and change semantics -- it starts off NULL, and
14066         is initialized on demand.
14067         * class.c (mono_generic_class_get_context): New accessor to
14068         replace 'context' field accesses.
14069         (mono_class_get_context): New helper.
14070         (*): Update to changes.
14071         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14073 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14075         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14076         before the memcpy.   Fixes Marshal2 regression.
14078 2007-01-02  Jb Evain  <jbevain@gmail.com>
14080         * blob.h: add a MONO_TYPE_ENUM definition
14081         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14082         fix the encoding of arrays of enums in custom attributes.
14084         Fixes #79666.
14086 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14088         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14089         string is null terminated, but only cut the string short if it
14090         overflows the buffer.   
14091         
14092         (mono_string_to_byvalstr): Also fix this routine.   The code here
14093         was not properly terminating a string (it was only terminated
14094         because of the previous catch-all memset). 
14096         I left the memset, because I do not know if applications expect
14097         the runtime to clear this region. 
14099         Fixes #79944.
14101         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14102         Clear the error before returning to unmanaged code to prevent the
14103         runtime from being confused later on (fixes  80420).
14104         (ves_icall_type_from_name): Always call mono_loader_clear_error
14105         after parsing a type that could have failed.
14106         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14108         * loader.c (mono_loader_clear_error): Fix indentation.
14110 2006-12-28  Martin Baulig  <martin@ximian.com>
14112         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14114 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
14116         * reflection.c: patch from Rolf Bjarne Kvinge to fix
14117         getting a token for an EnumBuilder.
14119 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
14121         * reflection.c: be more careful in case resource generation
14122         fails to create the data array.
14124 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
14126         * sgen-gc.c: write barrier for clone and fix unregister handles.
14128 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14130         * reflection.c: some fixes needed in the generics code for the moving GC.
14132 2006-12-22  Robert Jordan  <robertj@gmx.net>
14134         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
14135         account. Fixes bug #80299.
14137 2006-12-21  Raja R Harinath  <rharinath@novell.com>
14139         Fix WaitHandle usage in delegates.
14140         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
14141         * object.c (mono_wait_handle_new): Use the property set method to
14142         initialize the handle.
14143         (mono_wait_handle_get_handle): New.
14144         * threadpool.c (mono_async_invoke): Use it.
14145         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
14146         Likewise.
14147         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
14149 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
14151         * marshal.c (emit_marshal): Call emit_marshal_variant and
14152         emit_marshal_com_interface when applicable.
14153         (emit_marshal_variant, emit_marshal_com_interface): Add
14154         methods for this case and remove if's from emit_marshal_object.
14155         
14156 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
14158         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
14160 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
14162         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
14163         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
14164         and GlobalFree on Windows. Remove FIXME.
14166 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14168         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
14169         implementation for managed objects.
14171 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14173         * object.c: implemented code to be used for checking
14174         that no reference field overlaps with non-references.
14176 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14178         * threadpool.c: fix queue code to be compatible with the
14179         moving GC.
14181 2006-12-18  Miguel de Icaza  <miguel@novell.com>
14183         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
14184         in structures by throwing ArgumentNullException.
14186         (emit_marshal_safehandle): Also when they are null parameters.
14188         (emit_marshal_safehandle): Add support for ref
14189         SafeHandles parameters
14191 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14193         * profiler.c: updated to use the mono-dl API instead of
14194         gmodule.
14196 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14198         * profiler.c: updated to use the mono-dl dynamic loading
14199         API instead of gmodule.
14201 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
14203         * profiler.c: use readlink, older versions of glib don't have
14204         g_file_read_link ().
14206 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14208         * profiler.c: try to detect the path to mono if libc fails to provide
14209         a useful name (bug #80286).
14211 2006-12-16  Raja R Harinath  <rharinath@novell.com>
14213         Fix #80242
14214         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
14215         instance, use the generic type definition instead.
14216         (ves_icall_Type_GetNestedTypes): Likewise.
14217         * class.c (mono_class_create_generic): Always set the
14218         nested_classes of a generic instance to NULL, even if the generic
14219         type definition has nested types.
14221 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
14223         * marshal.c (mono_string_from_bstr): Revert previous Windows change
14224         and fix on Linux.
14225         
14226 2006-12-15  Miguel de Icaza  <miguel@novell.com>
14228         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
14229         my arguments were in the wrong order.   I also fixed the Windows
14230         version which seems to have had the same issue.
14232         (mono_free_bstr): On Unix, this is g_free.
14233         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
14234         conversions (for the tests in corlib to pass).
14236 2006-12-14  Miguel de Icaza  <miguel@novell.com>
14238         * marshal.c (emit_ptr_to_object_conv): For now, ignore
14239         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
14240         exception if a ref SafeHandle in a struct has changed).
14241         
14242         (emit_struct_conv): Do not perform layout checks for classes
14243         derived from SafeHandle, as those are specially handled. 
14245         (emit_object_to_ptr_conv): Add support for
14246         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
14248         (emit_marshal_safehandle): Implement conversion of return values
14249         of safehandles (MARSHAL_ACTION_CONV_RESULT).
14250         
14251         * threads.c: WaitHandle now is compiled with two different handles
14252         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
14253         for 2.0.
14254         
14255         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
14256         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
14257         these routines to cope with both kinds of fields.
14259 2006-12-12  Miguel de Icaza  <miguel@novell.com>
14261         * metadata.c (mono_type_to_unmanaged): Handle the case where
14262         type->data.klass is a SafeHandle, and in that case, return the
14263         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
14264         MONO_MARSHAL_CONV_SAFEHANDLE. 
14266 2006-12-11  Miguel de Icaza  <miguel@novell.com>
14268         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
14269         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
14270         calling emit_marshal_object.
14272         (emit_marshal_safehandle): Implement marshalling of
14273         SafeHandle parameters (no ref support yet).
14275         (MarshalAction): Document the defines as I implement
14276         them for SafeHandle.
14278         (emit_marshal_object): indentation police.
14280         * class-internals.h: Define MonoSafeHandle.
14281         Add safehandle_class to MonoDefaults type.
14283         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
14284         list of classes to check for fields. 
14286         * domain.c (mono_init_internal): Add SafeHandle to the list of
14287         mono_defaults loaded.
14289 2006-12-15  Raja R Harinath  <rharinath@novell.com>
14291         Fix #80253
14292         * reflection.c (mono_reflection_bind_generic_parameters): If the
14293         generic type definition is a type builder, ensure that it is fully
14294         initialized before instantiating it.  Kill some dead code.
14296 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
14298         * object.c: clear the loader_error () before loading
14299         more metadata stuff (bug #80258).
14301 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
14303         * icall.c, icall-defs.h: type modifiers icalls for
14304         parameters and properties.
14306 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
14308         * object.c, icall.c: fixed warnings.
14310 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14312         * marshal.c: fixed a couple of leaks and coding style in a few places.
14314 2006-12-08  Dick Porter  <dick@ximian.com>
14316         * process.c: Cope with NULL ProcessStartInfo arguments on windows
14317         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
14318         80173.
14320 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
14322         * process.c: ProcessStartInfo may have only filename set and
14323         arguments can be NULL.
14325 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14327         * icall.c: fix leak found by Robert Jordan.
14329 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14331         * marshal.c, marshal.h: generate managed method to access an element
14332         of a multi-dimensional array.
14334 2006-11-30  Paolo Molaro (lupus@ximian.com)
14336         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
14338 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14340         * icall.c: back out GetFields () fix until the serialization code is
14341         fixed to not depend on the incorrect behaviour.
14343 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
14345         * profiler.c: provide defaults if none are set.
14347 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
14349         * Makefile.am, attrdefs.h: new public header file with
14350         constants for attributes for use by embedders.
14352 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
14354         * icall.c: GetFields () fix for bug #80064.
14356 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
14358         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
14359         removed long unused icalls.
14361 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
14362   
14363         * marshal.c: 
14364                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
14365                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
14366                 can be generated without a delegate class.
14367                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
14368         
14369         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14371 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14373         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
14374         #80069.
14376 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14378         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
14379         icall-def.h: added icalls needed by System.GC.
14381 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
14383         * loader.c: ensure the class in catch clauses is handled
14384         correctly for generics methods (fixes bug#79980).
14386 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
14388         * monitor.h, monitor.c: added mono_locks_dump () function
14389         to help debug deadlocks involving managed locks.
14391 2006-11-13  Dick Porter  <dick@ximian.com>
14393         * file-io.c (get_file_attributes): If the file is a symlink try
14394         and get the stat data for the target, but also add the
14395         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
14396         the specs for the windows symlink support, but will probably have
14397         to be reworked when I have test data from a vista machine.  Fixes
14398         bug 79887.
14400 2006-11-13  Dick Porter  <dick@ximian.com>
14402         * gc.c (mono_domain_finalize): 
14403         * marshal.c (mono_delegate_begin_invoke): 
14404         * threadpool.c (socket_io_init, mono_thread_pool_init)
14405         (mono_thread_pool_finish): 
14406         * monitor.c (mono_monitor_try_enter_internal): 
14407         * threads.c (mono_thread_resume, mono_thread_init)
14408         (mono_thread_suspend_all_other_threads)
14409         (mono_thread_execute_interruption): 
14410         * appdomain.c (mono_domain_unload): Check for NULL error returns
14411         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
14412         75733.
14414 2006-11-11  Miguel de Icaza  <miguel@novell.com>
14416         * process.c
14417         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
14418         Only close the handle if the value of the handle is not
14419         INVALID_HANDLE_VALUE.  This just makes the process a bit more
14420         robust.
14422         Improvement for #75733, so that we do not run into this problem. 
14424         
14425         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
14426         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
14427         internal variables.  Fixes #79462 
14428         
14430 2006-11-09  Dick Porter  <dick@ximian.com>
14432         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14433         Use poll() not select().  Fixes bug 79397.
14435 2006-11-09  Raja R Harinath  <rharinath@novell.com>
14437         Fix #79872
14438         * assembly.c (mono_assembly_load_from_full): Check that the given
14439         image has an assembly manifest.
14441 2006-11-09  Ankit Jain  <jankit@novell.com>
14443         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
14444         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
14445         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
14447 2006-11-07  Dick Porter  <dick@ximian.com>
14449         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14450         Put the old resolver behaviour back for pre-2.0 profiles.
14452 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14454         * threadpool.c: precise GC and locking fixes.
14456 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
14458         * class.c: don't load types that have an explicit unaligned
14459         managed reference. Provide better info in the TypeLoad exception.
14460         Part of the fix for bug #79744.
14461         * object.c: use the correct check for class type load issues.
14463 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14465         * class.c: enforce alignment of fields with managed references
14466         even when Pack=1 is forced by the user (bug #77788).
14468 2006-11-03  Dick Porter  <dick@ximian.com>
14470         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14471         If the address reverse lookup fails, return it as the hostname
14472         anyway.  Fixes bug 79721.
14474 2006-11-03  Dick Porter  <dick@ximian.com>
14476         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
14477         Fix build on Windows.
14479 2006-11-02  Dick Porter  <dick@ximian.com>
14481         * icall-def.h: 
14482         * object-internals.h: 
14483         * exception.c (mono_get_exception_thread_interrupted): 
14484         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
14485         Fixes bug 74525.
14487         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
14488         Check for pending Thread.Interrupt.
14490 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
14491         * loader.c: Fixed bug 79684.
14493 2006-10-27  Dick Porter  <dick@ximian.com>
14495         * file-io.c (get_file_attributes): Force symlinks to directories
14496         to be returned as a regular file.  Fixes bug 79733.
14497 2006-10-26  Dick Porter  <dick@ximian.com>
14499         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
14500         CreateFile to open a directory then we need to set the
14501         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
14503 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
14505         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
14506         friends.
14508 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14510         * sgengc.c: small cleanup of timer code.
14512 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14514         * sgen-gc.c: fix some warnings and start adding support for
14515         complete object removal on domain unload.
14517 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
14519         * assembly.c: build_assembly_name should not consider a version
14520         number without build or revision number invalid. Fixes bug #79715.
14522 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
14524         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
14525         call kernel32 function OutputDebugString directly.
14526         
14527         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14528         
14529 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
14531         * reflection.c: small cleanup, using a function to insert a MonoString
14532         in the string heap.
14534 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
14536         * reflection.c: moving GC fixes.
14538 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
14540         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
14541         all the objects with finalizers belonging to an unloading appdomain.
14543 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
14545         * sgen-gc.c: added ability to allocate even when the nursery is fully
14546         pinned and fixed a couple of bugs.
14548 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14550         * threads.h: Revert the last change for now.
14552         * threads.h (mono_thread_get_pending_exception): Rename this to
14553         mono_thread_get_undeniable_exception ().
14555 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
14557         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
14558         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
14559         when fname does not refer to valid assembly. This result in a more
14560         meaningful error message.
14561         * exception.c: added mono_get_exception_bad_image_format2 which 
14562         constructs a BadImageFormatException using the ctor taking a custom
14563         message and the file name. Passing in a NULL msg results in a default
14564         message.
14565         * exception.h: define mono_get_exception_bad_image_format2 function.
14566         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
14567         when file name pointed to an invalid IL image. Use 
14568         mono_get_exception_file_not_found2 to construct FileNotFoundException,
14569         as this results in a more meaningful error message.
14571 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14573         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
14574         #79465.
14576 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
14578         * metadata.c (mono_type_size): Change the align parameter to guint32 for
14579         consistency with the other _size functions.
14580         (mono_type_stack_size): Ditto.
14582         * class.c object.c icall.c: Fix warnings caused by the above change.
14584         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
14586         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
14588         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
14590 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
14592         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
14593         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
14594         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
14595         threadpool.h, threads-types.h: mark more internal functions.
14597 2006-10-11  Dick Porter  <dick@ximian.com>
14599         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14600         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
14601         reproduce the bug even before applying the fix.)
14603 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
14605         * reflection.c: allow retrieving attributes for arguments in generic
14606         methods (bug #79241).
14608 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
14610         * debug-mono-symfile.c: properly check fopen () result (found by
14611         coverity).
14613 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
14615         * reflection.c: make error message clearer and fixed two
14616         issuelets found by Coverity.
14618 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
14620         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
14622 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
14624         * object-internals.h, gc-internal.h, profiler-private.h:
14625         mark internal functions.
14627 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
14629         * reflection.c: put data in the text section.
14630         * icall.c: recognize more types in type_from_typename ().
14631         * process.c, marshal.c: added some GC FIXMEs.
14633 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14635         * loader.c: check for NULL before initializing.
14637 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
14639         * gc.c (finalizer_thread): Use a non-alertable wait here.
14641         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
14642         until the correct solution is found.
14644 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14646         * reflection.c (mono_module_get_object): Avoid an assert when operating on
14647         modules with no metadata. Fixes #79596.
14649         * image.c (load_metadata_ptrs): Put back the error message when
14650         the #- heap is encountered since the support is not complete yet.
14652 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14654         * gc.c: do not allow the user to SuppressFinalize () a
14655         delegate because it would leak the trampoline if present.
14657 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14659         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
14660         PropertyPtr table.
14662 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
14664         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
14666         * metadata.c (mono_metadata_get_param_attrs): Ditto.
14668         * row-indexes.h: Add definitions for *Ptr tables.
14670         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
14672         * metadata.c (mono_metadata_translate_token_index): New helper function to
14673         translate table indexes used in uncompressed metadata.
14674         (mono_metadata_decode_table_row): Ditto.
14675         (mono_metadata_decode_table_row_col): Ditto.
14677         * metadata.c: Add table schema for *Ptr tables.
14679         * class.c loader.c: Use the new helper function to access the affected metadata
14680         tables.
14681         
14682         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
14683         #38532.
14684         
14685 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
14687         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
14688         sequences which can be unbounded in size. Fixes #79583.
14690 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
14692         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
14693         static initialization.
14695         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
14697         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
14699         * domain.c (mono_domain_free): Free up type_init_exception_hash.
14701         * object.c (mono_runtime_class_init): Implement correct semantics when a static
14702         ctor fails, i.e. throw the same exception on subsequent accesses.
14703         
14704 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
14706         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
14707         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
14708         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
14709         Handle marshalling of interfaces and VARIANTs contained in structs.
14710         
14711         Code is contributed under MIT/X11 license.
14712         
14713 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
14715         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
14716         
14717         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
14718         mempool.
14720 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14722         * console-io.c: ignore previous SIGINT handler.
14724 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
14726         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
14727         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
14728         #79460, #79461, #79485.
14730         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
14732         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
14733         #79217.
14735 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14737         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
14738         could be generated from it.
14740 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
14742         * rand.c: fix read loop to correctly handle EINTR.
14744 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14746         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
14747         internal calls are defined to keep methods closer to the declaring
14748         type and allow a significant reduction in runtime relocations and
14749         memory usage.
14751 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
14753         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
14754         exception message to have FileNotFoundException use the default
14755         assembly load error message. Fixes bug #79426.
14756         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
14758 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14760         * threadpool.c: (start_thread_or_queue) use the root domain when
14761         creating the thread instead of the async object one.
14763 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
14765         * class.c, object.c, class-internals.h, reflection.c:
14766         for arrays, store element_size inside MonoClass (speedup
14767         for array object creation).
14769 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
14771         * icall.c: fixed CodeBase to use the file name and not the module
14772         name (bug #79365).
14774 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
14776         * mono-debug.c, mono-debug.h: export find_method as
14777         mono_debug_find_method ().
14779 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14781         * debug-helpers.c, class-internals.h: added a few functions useful
14782         when debugging under gdb.
14784 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14786         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
14787         characters that need special handling.
14789 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
14791         * mono-config.c: make the os/cpu specification more flexible,
14792         allowing lists and negation.
14794 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
14796         * marshal.c: COM Interop fixes. Handle case where method->klass.
14797         is interface. Handle BSTR/MonoString when null. Use CDECL as 
14798         calling convention on non-windows platforms. This is for
14799         compatibility with XPCOM and MainWin COM.
14800         
14801         Code is contributed under MIT/X11 license.
14802         
14804 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
14806         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
14807         correctly. Fixes #79217.
14809         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
14811 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
14813         * mono-config.c: allow both an os and cpu attribute for dllmap
14814         and dllentry elemnets to enable a single config file to be used
14815         for multiple architectures.
14817 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
14819         * loader.c: MonoLoaderError was cleared too soon on load failure.
14820         Fixes bug #79424.
14822 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
14824         * icall.c: use the defining class vtable when accessing a
14825         static field, not a pobblibly derived class.
14827 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
14829         * icall.c string-icalls.c: Remove references to unicode.h.
14831         * unicode.h unicode.c Makefile.am: Remove these unused source files.
14833         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
14835         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
14836         indicating the image where custom marshaller types should be looked up.
14837         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
14838         custom marshallers, instead of corlib. Fixes #79425.
14840 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
14842         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
14844 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
14846         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
14847         Implement Environment.ProcessorCount.
14848         
14849         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
14850         Implement Environment.ProcessorCount.
14851         
14852         * icall.c: 
14853         Add Environment.ProcessorCount icall.
14854         
14855         Patch by Jason McFall.
14857 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14859         * assembly.c: don't append .exe/.dll when the filename already contains
14860         one of those extensions.
14862 2006-09-12  Martin Baulig  <martin@ximian.com>
14864         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
14865         to array interfaces.
14867 2006-09-11  Martin Baulig  <martin@ximian.com>
14869         * reflection.c (mono_image_build_metadata): Create the
14870         MethodImpl's after emitting all types and methods, so we don't
14871         need another fixup pass for them.
14873 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
14875         * class.c (mono_class_from_name_case): Fix regression introduced by the last
14876         change.
14878 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
14880         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
14881         unload.
14883 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
14885         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
14886         args is not set. Fixes #78926.
14888 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
14890         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
14892         * image.c (load_class_names): Move this to class.c, and rename it to 
14893         'mono_image_init_name_cache'.
14894         (load_modules): Fix a warning.
14896         * class.c icall.c image.c: Initialize image->name_cache lazily.
14898         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
14899         on its name using information in the AOT file.
14901         * class.c (mono_class_from_name): Use the new hook function.
14903 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
14905         * reflection.c (mono_param_get_objects): Handle enum default parameter values
14906         correctly.
14908         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
14909         Fixes #79289.
14910         
14911 2006-09-06  Martin Baulig  <martin@ximian.com>
14913         * icall.c (mono_lookup_internal_call): Small fix.
14915 2006-09-05  Raja R Harinath  <rharinath@novell.com>
14917         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
14918         double g_free.
14920 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
14922         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
14923         when --debug is specified.
14925 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
14927         * class.c (setup_generic_array_ifaces): Fix a warning.
14929 2006-09-04  Miguel de Icaza  <miguel@novell.com>
14931         * Temporarily remove the patch to assemly.c that checks the
14932         assembly versions as it breaks our gacutil.
14934 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
14936         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
14938         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
14939         a net 1.0 runtime.
14941         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
14942         created using the default ctor. Fixes #79152.
14943         (mono_string_builder_to_utf16): Ditto.
14945 2006-09-01  Martin Baulig  <martin@ximian.com>
14947         Fix handling of the generic array interfaces.
14949         * class-internals.h
14950         (MonoDefaults): Removed `generic_array_class' and added
14951         `generic_ilist' class.
14953         * class.c
14954         (mono_bounded_array_class_get): Add the new generic array interfaces.
14955         (setup_generic_array_ifaces): New static method; create vtable
14956         entries for each method in the generic array interfaces.
14958         * metadata.c
14959         (select_container): Allow "parent-less" generic methods.
14961         * marshal.c
14962         (mono_marshal_get_generic_array_helper): New public method.
14964         * icall.c
14965         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
14966         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
14967         moved the interncall into System.Array.
14969 2006-09-01  Raja R Harinath  <rharinath@novell.com>
14971         A few more cases of avoiding work on types with ->byref set.
14972         Has the real fix for #79238
14973         * icall.c (is_generic_parameter): New helper.
14974         (ves_icall_Type_GetGenericParameterPosition): Use it.
14975         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
14976         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
14977         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
14978         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
14979         reference types.
14980         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
14981         reference types.
14982         (ves_icall_Type_get_IsGenericInstance): Likewise.
14983         (ves_icall_Type_get_IsGenericType): Likewise.
14985 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
14987         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
14988         class if possible.
14990         * mempool.h (mono_mempool_get_allocated): New helper function.
14992         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
14993         change.
14995         * mempool.c: Fix warnings and the calculation of stats.
14997         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
14999         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15001         * loader.c (mono_get_method_from_token): Update method_count stat.
15003         * class-internals.h (MonoStats): Add some stats.
15005 2006-08-31 Robert Jordan  <robertj@gmx.net>
15007         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15008         with managed variants.
15009         All code is contributed under the MIT/X11 license.
15010         
15011 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15013         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15014         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15016         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15018         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15019         with cycles in classes.
15021         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15023         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15024         missing a [MarshalAs] directive. Fixes #79203.
15026         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15027         klass->marshal_info. Fixes #79217.
15029 2006-08-30  Martin Baulig  <martin@ximian.com>
15031         Committing a patch from Joachim Ante <joe@otee.dk>:
15032         Add support for binary data symbol stores.
15034         * debug-mono-symfile.c
15035         (mono_debug_open_mono_symbol_file): Renamed into
15036         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15037         arguments.
15039         * mono-debug.c
15040         (mono_debug_open_image): Added `raw_contents' and `size' args.
15041         (mono_debug_init_2_memory): New public function.
15043 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15045         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15047 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15049         * appdomain.c: implement support for ShadowCopyFiles.
15051 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15053         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15054         when value is NULL (and should remove CID #51).
15056 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15058         * image.c: moved 2 functions to ../utils.
15060 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15062         * gc.c: cope with the target object of a GC handle being NULL
15063         (bug #78877).
15065 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15067         * class.c: recursively check parent's explicit implementations
15068         of interface methods (fixes bug #79125).
15070 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15072         * filewatcher.c: Avoid warnings when building, do not redefine
15073         constants that are defined.
15075         Remove warnings.
15077 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15079         * image.c: don't fail when the link points to an absolute path.
15081 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15083         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15084         Fix CID #3.
15086 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15088         * image.c (full_path): A new method used to obtain the actual path
15089         of an assembly even in the presence of symbolic links.  
15091         This is necessary for the case where we are running a binary that
15092         has been GACed, but we are using the "published" path name
15093         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15094         file in the GAC.
15096         This was the source of the failure for the `xsp' command with the
15097         recent AppDomain changes, as far as the runtime was concerned,
15098         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15099         $prefix/mono/gac/blah/version/blah.exe.
15101         (do_mono_image_open): use full path
15103 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15105         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15107 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15109         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15110         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15112 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15114         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
15115         small structures. Fixes #78990.
15117 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15119         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
15121         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
15123 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15125         * appdomain.c:
15126         * marshal.c: don't load all the assemblies from a domain into newly
15127         created ones. The new domains might have different rules and load
15128         assemblies from different locations. Fixes bug #76757.
15130         Patch by Lluis. Conflicts resolved by Brian Crowell.
15132 2006-08-16  Alp Toker  <alp@atoker.com>
15134         * socket-io.c: First half of the fix for #79084.
15135         Set sa_size to the length of the content, not that of the struct.
15136         Don't add NULL suffix to the content, this should be done in
15137         managed code if needed.
15139 2006-08-14  Raja R Harinath  <rharinath@novell.com>
15141         Fix part of #79012
15142         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
15143         mono_metadata_parse_type returns NULL.
15145 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
15147         * normalization-tables.h : new file for string normalization data.
15148         * locales.c, locales.h, icall.c :
15149           added load_normalization_resource() for string normalization,
15150           and icall as well.
15151         * Makefile.am : added normalization-tables.h to the sources.
15153 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
15155         * marshal.c: Add more helper functions to reduce code duplication and use them
15156         everywhere.
15158 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
15160         * marshal.c: Fix non-x86 stdcall warnings.
15161         
15162         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
15163         them everywhere.
15165 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
15167         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
15168         type check on multi-dimensional arrays. Fixes #79000.
15170 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
15172         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
15173         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
15174         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
15175         * class-internals.h: add is_com_object to class structure.
15176         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
15177         null checks to COM object marshalling. Fix .ctor call on RCW.
15178         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
15179         
15180         All code is contributed under the MIT/X11 license.
15182 2006-08-09  Dick Porter  <dick@ximian.com>
15184         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
15185         racing mono_monitor_allocator_lock() somewhere, so don't delete
15186         the critical section for now.  Found by running and exiting
15187         monodevelop.
15189 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
15191         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
15192         (ves_icall_System_ComObject_FindInterface): Ditto.
15193         (ves_icall_System_ComObject_CacheInterface): Ditto.
15195         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
15196         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
15198 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15200         * threadpool.c: treat pipes from process asynchronous reads as sockets
15201         when reading from them, so we get select/poll or epoll to wait for
15202         data.
15204 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
15206         * loader.c: Fix a typo (CID #233) in the null check.
15208 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
15210         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
15211         Hopefully fixes #78949.
15212         
15213         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
15214         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
15215         bytes. Fixes #78972.
15217 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15219         * filewatcher.c: we need to set errno here.
15221 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15223         * filewatcher.c: let Win32Exception get the error value.
15225 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15227         * filewatcher.c: translate errno into win32 errors for Win32Exception
15228         to know what happened.
15230 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
15232         * threadpool.c: Fix more warnings.
15234         * assembly.c (search_loaded): Fix warnings.
15236         * threadpool.c (mono_thread_pool_finish): Fix warnings.
15237         (mono_async_invoke): Ditto.
15239 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
15241         * object.c (mono_remote_class_vtable): Need to create proxy vtable
15242         entries for __ComObject type in addition to ComImport types.
15243         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
15244         about hash table.
15245         
15246         All code is contributed under the MIT/X11 license.
15248 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15250         * image.c: avoid tentative loading of modulerefs that contain
15251         no metadata (P/Invoke library names).
15253 2006-07-28  Dick Porter  <dick@ximian.com>
15255         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
15256         mono_loader_lock() somewhere, so don't delete the critical section
15257         for now.  Found by running and exiting monodevelop.
15259 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15261         * filewatcher.c: define the inotify syscalls when we're building on
15262         linux and have sys/syscall.h. The build system might not have support
15263         for inotify but the target system might have it.
15265 2006-07-26  Miguel de Icaza  <miguel@novell.com>
15267         * domain.c: Documentation updates.
15269         * loader.c (mono_free_method): Do not release the method
15270         information if we are being profiled, as profilers will use this
15271         information at shut down to present some data to the user.
15273         This is needed so that the profiler does not crash, as the
15274         profiler tends to keep MonoMethods around, and they might become
15275         invalid if we free these.
15277         (mono_get_method_constrained): Return the original CIL stream
15278         method as well, so verification can be performed against it.
15280 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15282         * filewatcher.[ch]: support for inotify file system watcher.
15283         * icall.c: add new internal calls for the inotify file system watcher.
15285 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15287         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
15288         #78888.
15290 2006-07-20  Dick Porter  <dick@ximian.com>
15292         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
15293         warning.
15295 2006-07-20  Dick Porter  <dick@ximian.com>
15297         * threads.c (start_wrapper): Do the thread cleanup while we still
15298         hold a reference to its object.  Fixes bug 78123.
15300 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
15302         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
15303         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
15304           "managed-to-managed".
15305         * icall.c: Redirect string constructors that take sbyte* to
15306           ves_icall_System_String_ctor_RedirectToCreateString.
15307         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
15308           to CreateString () methods with matching signature.
15309         * reflection.c: Use original security informations for
15310           MONO_WRAPPER_MANAGED_TO_MANAGED.
15311         * security-manager.c: Use original security informations for
15312           MONO_WRAPPER_MANAGED_TO_MANAGED.
15313         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
15314           that is a placeholder and only its address should be used.
15315         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
15316           that is a placeholder and only its address should be used.
15318 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
15320         Begin implementing COM Interop.
15321         * appdomain.c: Increment corlib version.
15322         * class.c: Set ComImport classes' parent to __ComObject.
15323         * loader.c: Mark cominterop methods as such.
15324         * domain.c: Add __ComObject class to MonoDefaults structure.
15325         * image.c: Add 2 hashtables to the image for COM Interop related methods
15326         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
15327         using the mempool allocator
15328         
15329         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
15330         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
15331         declaration for mono_metadata_type_dup_mp.
15332         
15333         * debug-helpers.c: Added strings for two additional wrapper types
15334         * object.c: Create proxy objects for ComImport classes
15335         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
15336         and added __ComObject class to MonoDefaults structure.
15337         
15338         * object-internals.h: Finish MonoRealProxy definition, and add definition of
15339         MonoComInteropProxy and MonoComObject.
15340         
15341         * marshal.c: Added support for COM Interop
15342         (signature_cominterop): Converts managed signature to corresponding
15343         unmanaged COM signature.
15344         (cominterop_get_function_pointer): gets unmanaged function pointer via
15345         COM object vtable
15346         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
15347         (cominterop_get_method_interface): returns interface type that method is defined on
15348         (mono_mb_emit_cominterop_call): emits native call to function pointer
15349         gotten from vtable
15350         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
15351         that matches signature of unmanaged function.
15352         (cominterop_get_native_wrapper): wrapper around adjusted method call.
15353         (cominterop_get_invoke): forwards call from proxy to __ComObject
15354         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
15355         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
15356         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
15357         
15358         * marshal.h: Added Marshal icall declarations.
15359         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
15360         so we can access them in finalizer
15361         
15362 2006-07-14  Dick Porter  <dick@ximian.com>
15364         * object.c (mono_type_initialization_cleanup): Fix a race
15365         condition by temporarily commenting out the critical section
15366         deletion.
15368 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
15370         * reflection.c (create_custom_attr): Fix some warnings.
15371         (create_custom_attr_data): Ditto.
15372         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
15373         types. Fixes #78855.
15375 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
15377         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
15379         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
15381 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
15383         * reflection.c (resolve_object): Add support for DynamicMethod.
15385         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
15386         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
15388 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
15390         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
15391         don't leak GPtrArray's pdata has we have no use (nor free) for it.
15393 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
15395         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
15396         Fixes #77888.
15398 2006-06-30  Raja R Harinath  <rharinath@novell.com>
15400         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
15401         slightly: remove a shadow local variable.
15403 2006-06-29  Raja R Harinath  <rharinath@novell.com>
15405         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
15406         definition that introduces the virtual function slot.
15407         Also fix Coverity #105.
15409 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
15411         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
15412         for dynamic assemblies. Fixes #78724.
15414 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
15416         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
15417         Fixes #78722.
15419 2006-06-21  Martin Baulig  <martin@ximian.com>
15421         * reflection.c
15422         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
15423         fixes #76484.
15425 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
15427         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
15429 2006-06-20  Raja R Harinath  <rharinath@novell.com>
15431         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
15432         nor TYPEREFs.
15433         * class.c (mono_class_create_from_typespec): Add 'context' argument.
15434         Inflate result if necessary.
15435         (mono_class_get_full): Remove old version.  Rename from
15436         'mono_class_get' and add 'context' argument.  Pass it to
15437         ..._create_from_typespec.
15438         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
15439         (mono_ldtoken): Revert change below.
15441 2006-06-20  Martin Baulig  <martin@ximian.com>
15443         * class.c (mono_ldtoken): Don't pass the generic context to
15444         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
15446 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
15448         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
15449         and later freeing it. Fixes #78638.
15451 2006-06-15  Miguel de Icaza  <miguel@novell.com>
15453         * icall.c (mono_class_get_throw): Revert over-zealous error
15454         throwing, the caller for mono_class_get_throw will cope with
15455         errors when classes are not properly initialized already.
15457         The code still copes with loader exceptions though.
15459         Fixes the regression in reftype1 and reftype3 from the CAS tests.
15460         
15461 2006-06-14  Miguel de Icaza  <miguel@novell.com>
15463         Fixes the `make run1' version of RuntimeAbort (to be commited,
15464         source is in Bugzilla).
15465         
15466         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
15467         FALSE on class loading failure instead of returning true.
15469         * class.c (mono_class_create_from_typedef): It is possible for
15470         mono_metadata_interfaces_from_typedef_full to fail if a class is
15471         not found, cope with this.
15472         
15474 2006-06-14  Dick Porter  <dick@ximian.com>
15476         * socket-io.c: 
15477         * process.c: Fix a bunch of signed/unsigned warnings from gcc
15478         4.1.1
15480 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
15482         * culture-info-table.h : oops, forgot to make it nsync with r61548.
15484 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15486         * icall.c: Another fix for building mono in Visual Studio.
15488 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15490         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
15491         
15492 2006-06-09  Martin Baulig  <martin@ximian.com>
15494         * debug-mono-symfile.c: Put this back and really fix it this
15495         time. Sorry for all the trouble.
15497 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
15499         * icall.c (mono_class_get_throw): Fix a warning.
15500         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
15501         ReflectionTypeLoadException if needed. Fixes #78606.
15503         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
15504         (mono_class_init): Ditto.
15506         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
15507         ref_only exceptions.
15508         (mono_loader_clear_error): Make this work even if there is no error.
15510 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
15512         * object-internals.h marshal.c marshal.h icall.c: Implement method 
15513         Marshal.GetComSlotForMethodInfo using internal call.
15515 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
15517         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
15518         a function for signalling it.
15520         * class.c (mono_class_from_typeref): Use the new kind of loader error when
15521         a referenced assembly is not found.
15523         * loader.c (mono_loader_error_prepare_exception): Add support for 
15524         LOADER_ERROR_ASSEMBLY. Fix formatting.
15526 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15528         * domain.c appdomain.c class-internals.h marshal.c: Add support 
15529         for VARIANT marshalling on windows and increment corlib version
15530         since Variant struct was added.
15532 2006-06-03  Miguel de Icaza  <miguel@novell.com>
15534         * debug-mono-symfile.c: Revert Martin's previous patch which broke
15535         stack trace line information:
15537         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
15538         (Martin) when looking up B which is between A and C, return A not C.
15540         Bug is #78573.
15542         Thanks to Alexander Olk for tracking this down.
15544 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
15546         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
15547         
15548         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
15549         avoid clobbering its value.
15550         (mono_string_to_lpstr): Fix a warning on windows.
15552 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15554         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
15556         * reflection.c loader.c: Removed references to 'dummy' flag.
15558         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
15560         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
15561         it gets GC tracking.
15563         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
15564         GC tracking.
15565         
15566         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
15568         * marshal.c threadpool.c: Update callers of mono_async_result_new.
15570         * appdomain.c: Bump corlib version.
15572 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15574         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15575         CEE_STIND_REF when working with object references.
15577 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15579         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
15580         Fixes #78539.
15582 2006-05-30  Miguel de Icaza  <miguel@novell.com>
15584         * loader.c (method_from_memberref): Fix argument value for
15585         mono_loader_set_error_method_load (I was passing the MonoClass
15586         instead of the class name char *).
15588 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15590         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15591         CEE_STIND_REF when working with object references.
15593 2006-05-30  Martin Baulig  <martin@ximian.com>
15595         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
15596         mono_method_full_name() change and replace the ':' with a '.'
15597         here.
15599 2006-05-30  Martin Baulig  <martin@ximian.com>
15601         * debug-mono-symfile.c
15602         (mono_debug_symfile_lookup_location): Fix the algorithm:
15603         when looking up B which is between A and C, return A not C.
15605 2006-05-29  Martin Baulig  <martin@ximian.com>
15607         * mono-debug.h
15608         (MonoDebugMethodInfo): Make the typedef public.
15609         (MonoDebugSourceLocation): New public struct.
15611         * mono-debug.c
15612         (mono_debug_source_location_from_address): Removed.
15613         (mono_debug_source_location_from_il_offset): Removed.
15614         (mono_debug_il_offset_from_address): Removed.
15615         (mono_debug_address_from_il_offset): Removed.
15616         (mono_debug_lookup_method): New public function.
15617         (mono_debug_lookup_source_location): New public function; replaces
15618         the old mono_debug_source_location_from_*() functions; see the
15619         inline documentation.
15620         (mono_debug_free_source_location): New public function.
15621         (mono_debug_print_stack_frame): New public function; see the
15622         inline documentation.
15624         * debug-mono-symfile.c
15625         (mono_debug_find_source_location): Renamed into
15626         mono_debug_symfile_lookup_location(); only take a
15627         `MonoDebugMethodInfo *' and an `offset' argument; added inline
15628         documentation.
15629         (mono_debug_find_method): Renamed into
15630         mono_debug_symfile_lookup_method().
15632 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
15634         * assembly.c (mono_assembly_open_full): Dont overwrite the status
15635         returned by mono_image_open_full ().
15637         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
15638         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
15639         #78517.
15641         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
15642         #78518.
15644 2006-05-27  Miguel de Icaza  <miguel@novell.com>
15646         * class.c (mono_class_from_typeref): handle missing images
15647         earlier, deals with bug #78418.   Refactor code; 
15649         Fix a warning introduced in my previous commit (some stale code
15650         from before I revisited my patch).
15652         * class.c (mono_class_create_from_typedef): On failure, remove the
15653         class from the MonoImage->class_cache as the class is not
15654         initialized;   Fixes the leak pointed out by Paolo.
15656 2006-05-25  Dick Porter  <dick@ximian.com>
15658         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
15659         DeleteCriticalSections until I figure out which one may still be
15660         sometimes locked when mono_thread_cleanup is called.
15662 2006-05-24  Dick Porter  <dick@ximian.com>
15664         * threads.c (mono_thread_cleanup): Move the threading cleanup out
15665         of mono_thread_manage and back into its own function, so it can be
15666         called after the finalizer thread has finished.
15668         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
15670 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
15672         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
15673         Fixes #78495.
15675         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
15676         with non-blittable elements.
15677         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
15679 2006-05-24  Martin Baulig  <martin@ximian.com>
15681         * mono-debug-debugger.h (MonoDebuggerEvent): Added
15682         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
15684         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
15685         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
15686         `mono_debugger_event_handler' to NULL.
15688 2006-05-24  Martin Baulig  <martin@ximian.com>
15690         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
15692 2006-05-24  Martin Baulig  <martin@ximian.com>
15694         * mono-debug-debugger.h
15695         (mono_debugger_create_notification_function): Added
15696         `MonoCodeManager *' argument.
15698 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
15700         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
15702 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
15704         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
15705         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
15706         implementation.
15708 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
15710         * icall.c: precise GC support: objects can't be stored in unmanaged
15711         memory anymore, even if they are kept alive by other references: since
15712         they can move the GC needs to be able to always find them.
15714 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15716         * object.c: precise GC support for static fields. Support
15717         for moving GCs: write barriers and pinned allocation for interned
15718         strings.
15720 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15722         * domain.c, domain-internals.h: precise GC support for the MonoDomain
15723         structure.
15725 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15727         * class.c, gc.c: sgen and precise GC updates.
15729 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
15731         * marshal.h, marshal.c: added write barrier wrapper and precise type
15732         fixes.
15734 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
15736         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
15737         support.
15739 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
15741         * reflection.c: precise and sgen GC updates.
15743 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
15745         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
15747 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
15749         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
15751 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
15753         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
15754         MONO_TYPE_OBJECT. Fixes #78462.
15756 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
15758         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
15759         and blittable types.
15761 2006-05-17  Miguel de Icaza  <miguel@novell.com>
15763         * class.c (mono_class_get_exception_for_failure): Implement parts
15764         of a TODO: if the loader error is set (instead of the class
15765         error), we return a Loader exception that can be properly thrown
15766         elsewhere.
15768         This was exposed by some Winforms 2.0 code that I tried to run
15769         (Atsushi pointed me to it).
15771 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
15773         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
15774         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
15775         
15776         * marshal.c (emit_marshal_vtype): Add limited support for 
15777         UnmanagedType.LPStruct. Fixes #78427.
15779         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
15780         Applied a patch from kangaroo to fix #77523.
15782 2006-05-17  Martin Baulig  <martin@ximian.com>
15784         * threads.c
15785         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
15786         (debugger_thread_created): Removed.
15787         (debugger_thread_exited): Removed.
15789 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
15791         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15793         * object-internals.h (MonoReflectionResource): Sync with managed version.
15795 2006-05-12  Wade Berrier <wberrier@novell.com>
15797         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
15799 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
15801         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
15802         functions try to allocate from the image mempool.
15804 2006-05-12  Dick Porter  <dick@ximian.com>
15806         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
15808 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
15810         * object.c: The FieldGetter and FieldSetter methods require the full
15811         name of the class, not only the name. Fixes bug #78277.
15813 2006-05-11  Miguel de Icaza  <miguel@novell.com>
15815         * loader.c (method_from_memberref): Do not pass the NULL klass to
15816         mono_loader_set_error_() methods.  Pass the non-NULL value
15817         (class). 
15819 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
15821         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
15822         (mono_assembly_close): Null out assembly->image->references after freeing it.
15824         * image.c (mono_image_close): Free image->references.
15825         
15826         * reflection.c (mono_image_basic_init): Fix a small memory leak.
15828 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
15830         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
15831         before checking if it's NULL (g_assert).
15833 2006-05-10  Martin Baulig  <martin@ximian.com>
15835         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
15836         I thought I already killed that two months ago, but now it somehow reappeared.
15838 2006-05-10  Martin Baulig  <martin@ximian.com>
15840         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
15842 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
15844         * reflection.c: Allocate memory for dynamically created methods in the image
15845         mempools.
15847 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
15849         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
15850         don't use the ad pointer before checking if it's NULL (g_assert).
15852 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
15854         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
15855         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
15857         * marshal.c: Allocate all signatures from mempools.
15859         * marshal.c: Allocate some more signatures from mempools.
15861 2006-05-09  Miguel de Icaza  <miguel@novell.com>
15863         * object.c (mono_load_remote_field): The code used to provide a
15864         temporary variable for returning results if the user did not
15865         provide a result pointer.  But our temporary variable was allocted
15866         on the satck.
15868         Fix calling code to always pass a result area.   Coverity ID 103.
15870 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
15872         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
15873         value, not the old. Fixes #78312.
15874         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
15876         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
15877         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
15878         per-image cache.
15880         * assembly.c (mono_assembly_close): Free image->references.
15882         * assembly.c (mono_assembly_names_equal): Fix a warning.
15883         (mono_assemblies_cleanup): Cleanup more global data.
15885         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
15887         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
15888         ptr_cache and image->modules.
15890         * image.c (mono_image_init): Allocate array_cache lazily.
15891         
15892 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15894         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
15895         behavior was changed recently and has bad side effects.
15897 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
15899         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
15900         
15901         * assembly.c (mono_assembly_close): Remove a debug printf.
15903         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
15905         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
15906         to also allow for temporary references between mono_image_open ()/close ().
15908         * domain.c (get_runtimes_from_exe): Add a FIXME.        
15910 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
15912         * marshal.c: Fix support for dynamic methods.
15914         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
15916         * marshal.c (mono_marshal_cleanup): New cleanup function.
15918         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
15919         image mempools.
15921         * class.c (mono_class_init): Fix leaking class->nested_classes.
15923         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
15925         * image.c (mono_image_init): Initialize the new cashes.
15927         * image.c (mono_image_close): Destroy the new cashes.
15929         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
15931         * mempool.c (mono_mempool_strdup): New helper function.
15933         * class-internals.h: Add prototype for mono_loader_unlock ().
15935         * domain.c (mono_jit_info_table_find): Fix a warning.
15936         (mono_debugger_check_runtime_version): Ditto.
15938         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
15939         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
15940         functions to these modules.
15942         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
15943         metadata modules.
15944         
15945         * marshal.c (mono_free_bstr): Fix a warning.
15947         * assembly.c (mono_assembly_open_full): Fix another small leak.
15949         * object.c: Fix some unload leaks in the remoting code.
15951         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
15952         function.
15954         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
15956         * reflection.c: Fix some unload leaks in dynamic assemblies.
15958 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
15960         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
15961         * marshal.h: Add BSTR support on Win32
15962         * icall.c: Add BSTR icalls
15963         * metadata.h: Add BSTR enums
15965 2006-04-28  Miguel de Icaza  <miguel@novell.com>
15967         Work to catch the crash from #76795 and turn it into an
15968         exception.   As I stubbed out pieces of the VisualBasic support,
15969         I found a number of places where the code was failing and I added
15970         checks to those places. 
15971         
15972         * metadata.c (do_mono_metadata_parse_generic_class): Make this
15973         function return a status code.  If we fail to parse the signature
15974         from mono_metadata_parse_generic_inst, return FALSE.
15976         * loader.c (mono_get_method_from_token): If we fail to load the
15977         method (mono_class_get) return NULL.   
15979         * (method_from_memberref): Return NULL if we are unable to parse
15980         the method signature
15982         (mono_loader_error_prepare_exception): Since we now use the
15983         loader_error flag internally to stop processing, and obtaining
15984         exceptions that might be thrown will walk this code path the
15985         proper way of going from a MonoLoaderError into a
15986         MonoException was convoluted.   This new routine encapsulates the
15987         process of turning the error into an exception and *clearing* the
15988         error afterwards.
15989         
15990 2006-04-27  Miguel de Icaza  <miguel@novell.com>
15992         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
15993         with missing assemblies), and to cope with:
15995                 * Missing fieldref from a non-existing assembly.
15996                 * Missing methodref from a non-existing assembly.
15998         The first batch of work to address *some* of the issues from 76661.
15999         
16000         * object.c (mono_class_create_runtime_vtable): If we fail to
16001         initialize the class raise the exception here. 
16003         * metadata.c (mono_class_get_overrides_full): If any methods fail
16004         to load return the failure to the caller.
16006         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16007         flagging assemblies that failed to load.   
16009         Do not crash if we are unable to load the assembly.
16011         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16012         assemblies. 
16014         * loader.c (mono_loader_set_error_type_load): Change the
16015         convention to always pass unallocated strings, so we make our own
16016         copies (I know our own code had duplicated strings before, but
16017         this keeps the normal conventions).
16018         (method_from_memberref): Call mono_loader_set_error_method_load
16019         for all possible failures of loading the class. 
16020         Remove assert, turn into a loader error.
16022         (mono_loader_error_to_exception): Move this routine from mini
16023         (mini_loader_error_to_exception) there was no need to have that in
16024         mini. 
16026         * class.c (mono_class_from_typeref): If we were not able to load
16027         the assembly with mono_assembly_load_reference, call the
16028         mono_loader_set_error_type_load to register the problem.
16030         (mono_class_setup_fields): If we fail to load the type from
16031         mono_metadata_parse_type_full, call mono_class_set_failure and
16032         break from the loop.
16034         If class->exception_type is set, we do not layout the fields as
16035         that might crash the runtime, and instead return (from breaking
16036         from the previous loop).
16038         (mono_class_setup_vtable): This now returns a boolean indicating
16039         whether the table was properly setup.   The decision is driven by
16040         mono_class_get_overrides_full which might run into non-existing
16041         methods. 
16042         
16043         (mono_class_init): Returns TRUE on success or FALSE if there was a
16044         problem in loading the type (incorrect assemblies, missing
16045         assemblies, methods, etc).
16047         When we call mono_class_setup_fields we also check for a potential
16048         error inside this call (either a class exception or a general
16049         loader exception).
16051         (mono_class_create_from_typedef): If the parent fails to load
16052         (calling mono_class_get_full) return NULL.
16053         
16054         ** Important **
16056         calls to mono_metadata_parse_type_full should be checked
16057         everywhere and set the mono_class_set_failure
16058         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16060         The current patch checks the places where my manually constructed
16061         tests show the errors are showing up, but we should do it
16062         everywhere. 
16064         ** Important2 **
16066         mono_class_init return values should be tested everywhere, like
16067         the previous case this is something that we should audit
16068         everywhere and not only on the cases exposed by the tests I
16069         created. 
16071 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16073         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16074         boolean parameter and instead pass the information on `options'
16075         parameter (FileOptions).
16077         * icall.c: Register the new signature for MonoIO.Open.
16079         * debug-helpers.c (dis_one): Trying to understand how coverity
16080         works.  Fix Run 5, item 78.
16082 2006-04-26  Dick Porter  <dick@ximian.com>
16084         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16085         dereference.
16087 2006-04-25  Martin Baulig  <martin@ximian.com>
16089         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16091         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16092         debugger_thread_created().
16093         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16094         special way.
16095         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16096         (mono_debugger_finalize_threads): New function; undo the effects
16097         of mono_debugger_init_threads().
16098         (mono_debugger_create_all_threads): Removed.
16100 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16102         * image.c (mono_image_close): Tidy up trace messages.
16104         * assembly.c (mono_assembly_close): Ditto.
16106         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16107         no longer references an already freed assembly. Fixes #78168.
16109 2006-04-21  Dick Porter  <dick@ximian.com>
16111         * threads.c (mono_thread_detach): Fix reference counting when
16112         detaching threads.
16114 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
16116         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
16117         #78155.
16119 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16121         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
16122         (mono_type_to_stind): Ditto.
16124         * marshal.c: Use the new helper functions to simplify code.
16126         * image.c (mono_image_close): Add some code for help debug assembly unloading
16127         problems.
16129         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
16130         image mempool.
16132         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
16133         assembly was already loaded in another appdomain. Fixes #78083.
16135 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
16137         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
16138         referenced assemblies.
16139         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
16141         * domain.c (mono_domain_free): Add a trace message.
16143         * appdomain.c (add_assemblies_to_domain): Ditto.        
16145         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
16146         field.  
16148 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16150         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
16152 2006-04-12  Martin Baulig  <martin@ximian.com>
16154         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
16155         `USE_INCLUDED_LIBGC'.   
16157 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16159         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
16160         the patch contains ../ and a small directory name later. Hopefully fixes
16161         #78035.
16163 2006-04-10  Martin Baulig  <martin@ximian.com>
16165         Clean up the debugger's thread-handling code.
16167         The debugger's thread-handling code has been moved from
16168         ../mini/debug-debugger.c to threads.c.  We now iterate directly
16169         over the `threads' hash, keep track of exiting threads and also
16170         use proper locking.
16172         We can now debug XSP and XSP based applications with the debugger.
16174         * object-internals.h (MonoThread): Added `gpointer end_stack'.
16176         * threads.h
16177         (MonoThreadCallbacks): Removed; this was only used by the debugger.
16178         (mono_install_thread_callbacks): Likewise.      
16180         * threads.c (mono_thread_callbacks): Removed.
16181         (debugger_thread_created, debugger_thread_exited): New static functions.
16182         (start_wrapper): Call debugger_thread_created().
16183         (thread_cleanup): Call debugger_thread_exited().
16184         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
16185         (mono_debugger_init_threads): New public function.
16186         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
16187         iterate directly over the `threads' hash and also use proper locking.
16189         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
16191         * mono-debug-debugger.h
16192         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
16194 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
16196         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
16197         argument type=array. Fixes #78057.
16199 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
16201         * culture-info-table.h : regenerated. Fixed bug #69652.
16203 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
16205         * loader.c metadata.c: Reapply a variant r59116.
16206         
16207         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
16209         * class.c (mono_class_setup_interface_offsets): New internal function.
16211         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
16212         interfaces too. Fixes #77398.
16214         * reflection.c (encode_cattr_value): Add support for 
16215         parameter type=object, argument type=array.
16216         (load_cattr_value): Ditto. Fixes #77916.
16218         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
16219         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
16221         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
16222         a byval char array and CharSet is Ansi.
16224         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
16226 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
16228         * metadata.c: Add some locking comments.
16229         
16230         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
16231         mempool.
16232         (mono_metadata_free_method_signature): Don't free the signature itself.
16234         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
16236         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
16237         reference the same MonoImage.
16238         (mono_assembly_load_from_full): Add an assert.
16240 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
16242         * image.c (mono_image_close): Don't put the image we are about to free into the
16243         loaded_images_guid_hash.
16245         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
16246         to reduce code duplication.
16248         * marshal.c: Register the native functions called by this module as icalls, to
16249         somewhat centralize the creation of MonoMethodSignature's.
16251         * loader.c (mono_method_signature): Add a cache for method signatures.
16253         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
16254         the parameter attributes of a method.
16255         (mono_metadata_parse_method_signature_full): Refactored the computation of
16256         parameter attributes into a separate function. Also avoid one allocation in
16257         most cases.
16259         * assembly.c (mono_assembly_close): Ditto.
16261         * image.c (mono_image_close): Log trace messages with INFO level.
16263         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
16265         * image.c reflection.c: Correct reference counting of image modules.
16266         
16267         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
16268         of this function from the image mempool.
16269         
16270         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
16271         to allow more cached types to be used.
16273         * mono-debug.c (mono_debug_add_method): Appled patch from
16274         David S. Miller  <davem@sunset.davemloft.net>: Access 
16275         minfo->lexical_blocks[] entry elements using read32().
16277 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
16279         * loader.c (mono_free_method): No longer free the method header for non-dynamic
16280         methods as it is allocated from the mempool.
16282         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
16283         image mempool.
16285         * metadata-internals.h: Add comments describing the reference counting scheme
16286         used for MonoImage and MonoAssembly.
16288         * image.c assembly.c reflection.c: Rework reference counting of images and 
16289         assemblies so they are freed when the runtime is shut down. Free some 
16290         additional memory structures when an image is unloaded.
16291         
16292 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
16294         * class.c loader.c reflection.c: Allocate more data structures in
16295         the image mempool.
16297 2006-03-31  Miguel de Icaza  <miguel@novell.com>
16299         * icall.c
16300         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
16301         build on pre glib 2.4 systems.
16303 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
16305         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
16307         * icall.c: Fix some warnings.
16309 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
16311         * culture-info-table.h : regenerated.
16313 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
16315         * threads.c, object-internals.h, verify.c: changed the culture caching
16316         code to use a normal MonoArray for storage so the GC can keep track of
16317         them easily. Fixed bits of the cache logic, too and simplified the
16318         code.
16320 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
16322         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
16323         thread for non-Boehm GCs.
16325 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16327         * domain.c, object.c, domain-internals.h: reduce the amount of memory
16328         needed to keep track of the data for static fields.
16330 2006-03-29  Raja R Harinath  <rharinath@novell.com>
16332         Fix #75172
16333         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
16334         for interface classes.  Use 'num_methods' instead.
16335         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
16336         before using '->vtable_size' field.
16338 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16340         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
16341         doesn't contain managed pointers, so use a normal hashtable.
16343 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
16345         * reflection.c, class-internals.h, domain.c: fixed handling of types
16346         used as values for objects in custom attributes (bug #77915):
16348 2006-03-24  Martin Baulig  <martin@ximian.com>
16350         * class.c (mono_class_setup_fields): Added support for generic
16351         instances; fixes #77580.
16353 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16355         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
16357 2006-03-24  Dick Porter  <dick@ximian.com>
16359         * file-io.c (get_file_attributes): More stat macro breakage.
16360         Fixes bug 77759.
16362 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
16364         * profiler.c: added the file=filename option in the default profiler
16365         to output the profile data to filename.
16367 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16369         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
16370         bug #77877.
16372 2006-03-22  Martin Baulig  <martin@ximian.com>
16374         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
16375         allocated `MonoClassField *' in `fb->handle'.
16377 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16379         * class.c, image.c, metadata-internals.h: implemented new mechanism to
16380         allocate interface ID to save memory and allow better ID reuse on
16381         appdomain unload. setup_generic_vtable () removal from Martin.
16383 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16385         * object.h, appdomain.c, domain.c, exception.c, icall.c,
16386         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
16387         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
16388         write barriers for reference stores with managed objects accessed with
16389         C structures in the runtime and in embedding programs.
16391 2006-03-20  Raja R Harinath  <rharinath@novell.com>
16393         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
16394         'interface_id' and 'max_interface_id' fields of MonoClasses
16395         representing open generic types.
16397 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
16399         * object.h, object.c, icall.c: added functions to deal with
16400         storing valuetypes that contain references in managed objects.
16401         * reflection.c, string-icalls.c, threads.c, marshal.c: small
16402         fixes and comments around uses of mono_array_addr ().
16404 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
16406         * object.h, icall.c, monitor.c: object.GetHashCode ()
16407         implementation that supports the moving garbage collector.
16409 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16411         * icall.c, threads-types.h, threads.c: implemented finalizer for
16412         LocalDataStoreSlot.
16414 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
16416         * metadata.c (mono_type_size): Add a fixme.
16417         (mono_type_stack_size): Ditto.
16419         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
16420         'type_forwarders' field.
16422         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
16423         attribute from net 2.0.
16425         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
16426         from class.c.
16428         * class.c (mono_class_setup_fields): Fix a warning.
16429         
16430         * class.c (mono_class_from_name): Add support for assemblyref entries
16431         in the EXPORTEDTYPE table.
16433         * reflection.c: Add support for handling type forwarders under net 2.0.
16435         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
16436         
16437 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
16439         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
16440         overwriting entries in ModuleBuild->types, also clean up the code
16441         a little. Fixes #77774.
16443 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16445         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
16446         load friend assembly info when present.
16448 2006-03-14  Raja R Harinath  <rharinath@novell.com>
16450         Fix crasher on gtest-158.cs.
16451         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
16452         the return value if the MonoClass we want is yet in an
16453         inconsistent state.
16454         * class.c (mono_class_create_from_typedef): Add an comment
16455         explaining an order dependency between mono_class_setup_parent and
16456         mono_class_setup_mono_type.
16458 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
16460         * class.c: documentation updates and events bug fix.
16462 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16464         * class.c: some cleanup, locking fixes.
16466 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16468         * class.c: fix the generics code to setup nested
16469         type info to the instantiated type (bug #77770).
16471 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16473         * marshal.c: fixed a few type correctness issues.
16475 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16477         * loader.c: the Set/Get/Addrtess array methods should be public.
16479 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
16481         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
16482         
16483         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
16484         info->wrapper.
16486 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
16488         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
16490         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
16492         * mempool.c (mono_mempool_alloc): Speed this up a bit.
16493         (mono_mempool_alloc0): Ditto.
16495 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16497         * socket-io.c:
16498         (create_object_from_sockaddr): it was allocating 4 extra bytes
16499         for the AF_UNIX data. Fixes bug #77747.
16501 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
16503         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
16505 2006-03-09  Dick Porter  <dick@ximian.com>
16507         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
16508         Fixes bug 76966 again.
16510 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
16512         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
16513         names from r57532
16514         * appdomain.c: Bumped corlib version to 48 (due to r57532)
16516 2006-03-07  Martin Baulig  <martin@ximian.com>
16518         * object.c
16519         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
16521 2006-03-07  Martin Baulig  <martin@ximian.com>
16523         * class.c
16524         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
16525         regression introduced in r56970; see gtest-252.cs.
16527         * loader.c (mono_get_method_constrained): Correctly handle generic
16528         methods; see gtest-253.cs.
16530 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
16532         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
16534 2006-03-04  Martin Baulig  <martin@ximian.com>
16536         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
16537         compute the parent type at runtime, just like we're already doing
16538         it for interfaces.
16540         * reflection.c
16541         (mono_reflection_bind_generic_parameters): Don't compute the
16542         parent type anymore.
16544         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
16546 2006-03-04  Martin Baulig  <martin@ximian.com>
16548         * mono-debug-debugger.h
16549         (mono_debugger_create_notification_function): Allocate memory at
16550         runtime and return a pointer to it.
16552 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
16554         * assembly.c: Fix windows build.
16555         
16556         * assembly.c: Fix build.
16558         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
16560         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
16561         
16562 2006-03-03  Dick Porter  <dick@ximian.com>
16564         * process.c
16565         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
16566         Check parameters before dereferencing them.  Fixes Aaron's part of
16567         bug 77393.
16569 2006-03-03  Raja R Harinath  <rharinath@novell.com>
16571         Fix performance regression.
16572         * loader.c (find_method_in_class): Add 'from_class' argument.
16573         Rename 'klass' argument to 'in_class'.  The signature is compared
16574         against the method in 'in_class', and the corresponding method is
16575         returned from 'from_class'.
16576         (find_method): Walk both 'in_class' and 'from_class' in parallel.
16577         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
16578         type definition and generic instantiation in parallel.
16579         (mono_get_method_constrained): Update to changes.
16581 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
16583         * threads.c: make sure the domain is correct, too when doing
16584         mono_thread_attach ().
16586 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
16588         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
16589         windows. Fixes #77683.
16591 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
16593         * object.h, *: introduced specific way to set elements of an array
16594         of references to be used as write barrier. Still need to audit the
16595         uses of mono_array_addr.
16597 2006-03-01  Miguel de Icaza  <miguel@novell.com>
16599         * object-internals.h: New field to cache the assmebly name, patch
16600         from Tambet Ingo (tambet@ximian.com)
16602 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16604         * decimal.h, class-internals.h, metadata-internals.h,
16605         file-io.h: mark a few function declarations as internal, to
16606         reduce the number of PLT entries.
16608 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16610         * file-io.c: fix typo in warning message.
16612 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
16614         * loader.c: on unix, lookup the "*A" version of a function
16615         if charset is auto as a second option before failing.
16617 2006-02-28  Raja R Harinath  <rharinath@novell.com>
16619         * class.h (mono_class_inflate_generic_method): Revert to two
16620         argument version.
16621         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
16622         (mono_class_inflate_generic_method_full): Add.
16623         * class.c (mono_class_inflate_generic_method_full): Rename from
16624         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
16625         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
16626         * loader.c, reflection.c: Update to changes.
16628 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
16630         * icall.c: const fixes and small improvements.
16632 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16634         * threadpool.c: for asynchronous connect(), enable the same workaround
16635         for BSD 6 as for the Mac. Fixes bug #77637.
16637 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
16639         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
16640         formatted classes. Fixes #77524.
16642 2006-02-24  Raja R Harinath  <rharinath@novell.com>
16644         * class.c (inflate_generic_type): Add a couple more
16645         micro-optimizations.
16646         (inflate_generic_context): Don't use the 'gmethod' from
16647         'inflate_with'.
16648         (mono_class_inflate_generic_method): If the method has generic
16649         parameters, but the passed-in context doesn't have a 'gmethod',
16650         create one.  Use the possibly simplified generic instantiation
16651         from the declaring class instead of the one passed in.
16653 2006-02-24  Raja R Harinath  <harinath@gmail.com>
16655         Make generic method signature and method header handling lazy.
16656         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
16657         (inflate_generic_header): Likewise.
16658         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
16659         parameter to avoid inflating types.
16660         (mono_get_inflated_method): Empty out.
16661         * class.h (mono_class_inflate_generic_method): Update to changes.
16662         * loader.c (mono_get_method_from_token): Don't parse signature for
16663         generic methods, nor methods of generic classes.
16664         (mono_method_signature): Rename from 'mono_method_signature'.
16665         Inflate signature on demand.
16666         (mono_method_get_header): Inflate method header on demand.
16667         * reflection.c: Update to changes.
16669 2006-02-23  Raja R Harinath  <rharinath@novell.com>
16671         * metadata.c (mono_metadata_inflate_generic_inst): If the
16672         instantiation is closed, don't bother expanding it in the new
16673         context.
16674         * class.c (inflate_generic_class): If the generic instantiation
16675         doesn't change after inflation, return the argument itself.
16676         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
16677         Add bounds checks.
16678         (inflate_generic_context): If neither the generic class nor the
16679         generic method instantiations change, return the original context.
16680         * reflection.c (mono_method_get_object): Do
16681         'mono_get_inflated_method' before accessing the ->klass field.
16682         (inflate_mono_method): Don't create a MonoGenericMethod unless
16683         necessary.
16684         (inflate_method): Don't pass a constructed type as the declaring
16685         type of a methodbuilder.
16687 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
16689         * object.c: fix memory overwrite.
16691 2006-02-22  Dick Porter  <dick@ximian.com>
16693         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
16694         it doesn't work any more.
16695         (mono_threads_request_thread_dump): Fix unused variable warnings.
16697 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16699         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
16700         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
16701         the public header file.
16703 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
16705         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
16707 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16709         * class-internals.h, object.c: reduce the size of MonoVTable
16710         and store the interface_offsets array at negative offsets.
16712 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
16714         * metadata.c: tweak table descriptors data structures to reduce
16715         size and runtime relocations.
16717 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16719         * marshal.c: fix some types and opcodes to be type-safe
16720         in marshaling wrappers.
16722 2006-02-21  Ankit Jain  <jankit@novell.com>
16724         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
16726 2006-02-21  Raja R Harinath  <rharinath@novell.com>
16728         * metadata.c (get_constraints): Relax debugging checks for monodis.
16730 2006-02-21  Ankit Jain  <jankit@novell.com>
16732         * metadata.c (mono_metadata_load_generic_params): Move the code
16733         checking for ambiguous generic params from here to mono/dis/get.c
16734         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
16736 2006-02-21  Raja R Harinath  <harinath@gmail.com>
16738         Fix assertion triggered when compiling nemerle.
16739         * class.c (mono_get_shared_generic_inst): Rename from
16740         get_shared_inst and make non-static.
16741         * loader.c (mono_get_shared_generic_method): New.  Used to create
16742         the MonoGenericContext-equivalent of a MonoGenericContainer.
16743         (mono_get_method_from_token): Initialize the 'context' field of
16744         the created MonoGenericContainer.
16745         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
16746         * metadata.c (get_constraints): Add sanity check.
16747         * class-internals.h: Add new internal methods.
16749         * reflection.c (verify_safe_for_managed_space): New sanity check.
16750         Currently checks that owner-less generic parameters aren't allowed
16751         in managed space.
16752         (mono_type_get_object): Use it.
16753         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
16754         that are now in mono_type_get_object.
16755         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
16757 2006-02-19  Raja R Harinath  <harinath@gmail.com>
16759         * metadata.c (mono_type_create_from_typespec): Rename from
16760         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
16761         argument and caching of types in the generic container.
16762         (unwrap_arrays, find_generic_param): Remove.
16763         * metadata-internals.h: Update.
16764         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
16766 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
16768         * class.c (mono_class_get_exception_for_failure): Fix a warning.
16770         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
16771         return values. Fixes #77581.
16773         * class.c (mono_fnptr_class_get): Switch name and name_space.
16775         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
16776         classes and add support for [In, Out] attributes.
16777         (mono_marshal_free_asany): Ditto. Fixes #77524.
16779 2006-02-18  Raja R Harinath  <harinath@gmail.com>
16781         * class.c (mono_class_from_generic_parameter): Make more robust to
16782         incomplete MonoGenericContainers from monodis.
16784 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16786         * class-internals.h: added some more exception types.
16787         * class.c, metadata.c: added a few checks to handle missing
16788         types.
16790 2006-02-17  Raja R Harinath  <rharinath@novell.com>
16792         Use owner-less generic-params some more.
16793         * class.c (my_mono_class_from_generic_parameter): Remove.
16794         (mono_class_from_generic_parameter): Handle null image,
16795         param->name and param->owner.
16796         (mono_class_from_mono_type): Update.
16797         (mono_class_create_from_typespec): Remove 'container' parameter.
16798         If that parameter is non-null, the result is always inflated by
16799         'mono_class_get_full' anyway.
16800         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
16801         parameter.
16802         (mono_class_get_full): Update.
16804         * class.c (inflate_generic_type) [GENERICINST]: If the generic
16805         instance is not open, don't bother inflating.
16806         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
16807         parse metadata for inflated classes.
16808         (_mono_class_get): Change GenericContext* parameter to
16809         GenericContainer*.
16810         (mono_class_create_from_typespec): Likewise.  Simplify, and
16811         implement trivially.  All the cases are handled in
16812         mono_class_from_mono_type.  Don't inflate returned class.
16813         (mono_class_get_full): Delegate GENERICINST optimization to
16814         inflate_generic_type.
16815         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
16817 2006-02-16  Dick Porter  <dick@ximian.com>
16819         * socket-io.c (create_object_from_sockaddr): Fix typo.
16820         (create_sockaddr_from_object): Check array lengths before
16821         potentially accessing items off the end.
16822         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
16823         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
16824         (ves_icall_System_Net_Sockets_Socket_Send_internal)
16825         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
16826         length checks to avoid wraparound overflows.
16827         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
16828         contents of the array of sockets
16829         (hostent_to_IPHostEntry2)
16830         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
16831         Check return value of inet_ntop ().
16832         (addrinfo_to_IPHostEntry): Fix typo
16834 2006-02-16  Raja R Harinath  <rharinath@novell.com>
16836         Type metadata parsing doesn't use generic-instantiation information.
16837         * metadata.c (mono_metadata_parse_array_full): Change
16838         MonoGenericContext* parameter to MonoGenericContainer*.
16839         (mono_metadata_parse_type_full): Likewise.
16840         (mono_type_create_from_typespec_full): Likewise.
16841         (mono_metadata_parse_mh_full): Likewise.
16842         (mono_metadata_parse_generic_inst): Likewise.
16843         (do_mono_metadata_parse_generic_class): Likewise.
16844         (do_mono_metadata_parse_type): Likewise.
16845         * metadata-internals.h: Update to changes.
16846         * class.c (mono_class_find_enum_basetype): Likewise.
16847         (mono_class_setup_fields): Likewise.
16848         (mono_class_create_from_typespec): Likewise.
16849         * loader.c (method_from_methodspec): Likewise.
16850         (mono_get_method_from_token): Likewise.
16851         (mono_method_get_header): Likewise.
16853 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16855         * marshal.c: handle additional GENERICINST case (patch from
16856         Thong Nguyen <tum@veridicus.com>).
16857         Fix a few cases where LDIND_I/STIND_I was used for references.
16859 2006-02-16  Raja R Harinath  <rharinath@novell.com>
16861         * reflection.c (mono_reflection_get_token): Remove unused variable.
16863 2006-02-16  Martin Baulig  <martin@ximian.com>
16865         * reflection.c (mono_reflection_get_token): Add support for fields
16866         in instantiated generic types.
16868         * icall.c
16869         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
16871 2006-02-15  Martin Baulig  <martin@ximian.com>
16873         * icall.c
16874         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
16875         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
16876         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
16877         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
16879 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
16881         * class.c, metadata.c, metadata.h, object.c, icall.c,
16882         marshal.c: changed mono_type_get_underlying_type () to do
16883         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
16884         Fixed handling of instantiated generic valuetypes (bug #75479).
16886 2006-02-15  Raja R Harinath  <rharinath@novell.com>
16888         * metadata.c (mono_metadata_decode_signed_value): Simplify.
16889         Delegate to mono_metadata_decode_value, and work on the returned value.
16891         * icall.c (ves_icall_MonoType_GetGenericArguments):
16892         Add consistency check here too.
16893         
16894 2006-02-15  Ankit Jain  <jankit@novell.com>
16896         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
16897         char/short etc.
16899 2006-02-15  Ankit Jain  <jankit@novell.com>
16901         * metadata.c (mono_metadata_decode_signed_value): New function to decode
16902         signed values, used only for representing lower bounds of arrays.
16903         (mono_metadata_parse_array_full): Use new
16904         mono_metadata_decode_signed_value to decode lower bounds.
16906 2006-02-14  Martin Baulig  <martin@ximian.com>
16908         * reflection.c
16909         (mono_reflection_get_token): Support "MonoGenericMethod" and
16910         "MonoGenericCMethod" and allow generic instances / methods.
16912 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
16914         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
16915         to obtain the terminal size using an ioctl.
16917         * object.c (mono_nullable_init): Revert this as nullable reference
16918         types are not valid.
16919         (mono_nullable_box): Ditto.
16921 2006-02-09  Dick Porter  <dick@ximian.com>
16923         * threads.c (mono_thread_detach): Drop a reference to the thread
16924         we're detaching.
16926 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
16928         * object.c (mono_nullable_init): Handle nullable reference types.
16929         (mono_nullable_box): Ditto. Fixes #77446.
16931 2006-02-07  Martin Baulig  <martin@ximian.com>
16933         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
16935 2006-02-07  Ankit Jain  <jankit@novell.com>
16937         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
16938         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
16939         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
16940         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
16941         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
16942         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
16944 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
16946         * class.c (mono_class_create_generic): Set type_token as well.
16948         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
16949         compatible with MS.
16951 2006-02-02  Martin Baulig  <martin@ximian.com>
16953         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
16954         has never been used so far.
16956 2006-02-02  Martin Baulig  <martin@ximian.com>
16958         * mono-debug-debugger.h: Changed comment at the top of this file;
16959         the header is not installed, but it's safe to #include it from
16960         within the JIT.
16962         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
16963         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
16965 2006-02-02  Martin Baulig  <martin@ximian.com>
16967         * mono-debug.h
16968         (MonoSymbolTable): Removed the `metadata_info' field.
16970         * mono-debug.c
16971         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
16973         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
16974         (mono_debugger_add_builtin_types): Removed.
16975         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
16976         (mono_debugger_create_notification_function): We now operate on a
16977         pre-allocated area; take a `gpointer' and return `void'.
16979         * mono-debug-debugger.c
16980         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
16981         (mono_debugger_add_builtin_types): Removed.
16983 2006-02-02  Martin Baulig  <martin@ximian.com>
16985         * threads.c (mono_debugger_create_all_threads): New public method.
16987 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16989         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
16990         breaks on several platforms.
16992 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
16994         * assembly.c: the VS.NET build doesn't supply default values for
16995         MONO_ASSEMBLIES and MONO_CFG_DIR.
16997 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
16999         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17000         helper function.
17002         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17004         * loader.c (method_from_memberref): Fix a warning.
17006         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17008         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17009         with explicit layout. Fixes #77433.
17011 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17013         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17014         max_interface_id is initialized before using it. Fixes #77398.
17015         (ves_icall_Type_GetInterfaces): Ditto.
17017 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17019         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17020         allocate memory for parameter attributes when parsing memberref
17021         signatures.
17022         * loader.c (mono_loader_set_error_method_load): Don't warn.
17023         (method_from_memberref): Ensure MissingMethodException gets thrown
17024         if method is not found.  Make warning more informative.
17026 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17028         Fix #77397
17029         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17030         return true if is byref.
17031         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17032         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17033         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17035 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17037         Fix tests/find-method.2.il
17038         * loader.c (find_method, find_method_in_class): Remove is_inflated
17039         argument.  Revert 2006-01-18 change.
17040         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17041         is generic, search for method in its generic definition.
17042         * class.c (mono_class_setup_vtable_general): Print generic
17043         arguments of generic types in debugging printf.
17045 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17047         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17049         * threads.c (mono_threads_request_thread_dump): New helper function.
17051 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17053         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17055 2006-01-25  Ankit Jain  <jankit@novell.com>
17057         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17058         move definition to ..
17059         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17060         
17061 2006-01-25  Ankit Jain  <jankit@novell.com>
17062             Raja R Harinath  <rharinath@novell.com>
17064         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17065         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17066         as necessary.
17068 2006-01-25  Martin Baulig  <martin@ximian.com>
17070         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17071         `MonoDebuggerThread' into debug-debugger.c.
17073 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17075         * profiler.c: fix printing of data.
17077 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17079         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17080           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17082 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17084         * object.c: fix deadlock related to string interning.
17086 2006-01-23  Martin Baulig  <martin@ximian.com>
17088         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17090         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17092 2006-01-23  Martin Baulig  <martin@ximian.com>
17094         * mono-debug.h: Moved the prototypes of some functions which are
17095         used by the JIT here from mono-debug-debugger.h.
17097 2006-01-21  Martin Baulig  <martin@ximian.com>
17099         * Makefile.am: Don't install mono-debug-debugger.h.
17101 2006-01-21  Martin Baulig  <martin@ximian.com>
17103         * mono-debug-debugger.h: Enforce the private status of this header
17104         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17105         Moved some stuff from mono-debugger-jit-wrapper.h here.
17107 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17109         * class.c (mono_class_from_typeref): Add a sanity test to help
17110         catch lack of assembly load/search hooks.
17112 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17114         * marshal.c (emit_struct_conv): Relax the fields with same offset
17115         check even more. Fixes #77230.
17117 2006-01-18  Martin Baulig  <martin@ximian.com>
17119         * loader.c (find_method_in_class): Added `gboolean is_inflated'
17120         argument; if false, we compare the uninstantiated signatures.
17121         (method_from_memberref): Compare the uninstantiated signatures;
17122         fixes #76417.
17124 2006-01-18  Robert Jordan  <robertj@gmx.net>
17126         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
17127         Clear the weak link. Fixes bug #77170.
17129         * gc.c (mono_gchandle_free):
17130         Reflect *-gc.c changes (tiny optimization).
17132 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
17134         * metadata.c (mono_metadata_signature_dup): Applied patch from
17135         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
17136         Fixes #77288.
17138 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17140         * marshal.c (emit_struct_conv): Allow fields with the same offset when
17141         marshalling from native to managed code. Fixes #77230.
17143 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17145         * threadpool.c: fix problem (Mac only) when more than one asynchronous
17146         connect. Fixes bug #77020.
17148 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17150         * class.c: fixed id assignement for nested interfaces (bug #77275).
17151         Added also better info for --print-vtable debugging.
17153 2006-01-12  Martin Baulig  <martin@ximian.com>
17155         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
17156         interfaces on-the-fly; fixes #76625.
17158         * class-internals.h
17159         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
17160         don't need that anymore.
17162 2006-01-12  Miguel de Icaza  <miguel@novell.com>
17164         * socket-io.c
17165         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17166         To avoid initing the nested_classes when not needed I turned the
17167         PeerCredData as a toplevel internal class, as it has to be shared
17168         anyways. 
17170         Fixes the CASA issue.
17172 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
17174         * domain.c: Accessors for MonoJitInfo
17176         * profiler-private.h: Add jitinfo to the end jit hook
17178         * profiler.[ch]: Define new hooks, called after jitting which give
17179         the MonoJitInfo that was compiled
17181 2006-01-10  Martin Baulig  <martin@ximian.com>
17183         * class.c (mono_class_setup_events): Add support for generic
17184         classes; fixes #76440.
17186 2006-01-06  Raja R Harinath  <rharinath@novell.com>
17188         Fix #77160.
17189         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
17190         on passed-in method.
17192 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17194         * object.c (mono_runtime_invoke_array): Add Nullable support.
17196         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
17198 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
17200         * file-io.c: Don't consider sockets as directory and avoid an endless
17201         loop. Fix bug #76966.
17203 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17205         * object.c (mono_nullable_init): New helper function.
17206         (mono_nullable_box): Ditto.
17208         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
17210         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
17212         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
17213         
17214 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
17216         * class.c (mono_class_is_assignable_from): Make T assignable to 
17217         Nullable<T>.
17219 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
17221         * appdomain.c: Bump corlib version to 46.
17222         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
17223         serialization purpose) and changed ves_icall_System_Reflection_
17224         Assembly_get_code_base signature to accept a boolean (to escape, or 
17225         not, the assembly code base).
17227 2005-12-23  Dick Porter  <dick@ximian.com>
17229         * icall.c: 
17230         * threads-types.h: 
17231         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
17232         CreateEvent icall now returns "created" boolean parameter.
17234 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
17236         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
17237         #76967.
17239         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
17240         when attr_klass is an interface. Fixes #77045.
17242 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
17244         * marshal.c (emit_struct_conv): Fix previous patch.
17245         
17246         * marshal.c (emit_struct_conv): Add a check for fields with the same
17247         offset.
17249 2005-12-20  Raja R Harinath  <rharinath@novell.com>
17251         Fix regression in Mono.C5.
17252         * class.c (mono_class_create_generic): If 'klass' is an interface
17253         set up the interface offsets.
17254         (mono_class_is_assignable_from): Don't throw away generic arguments.
17256 2005-12-19  Raja R Harinath  <rharinath@novell.com>
17258         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
17259         type parameters.
17261 2005-12-15  Raja R Harinath  <rharinath@novell.com>
17263         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
17264         dead store.
17265         (do_mono_metadata_parse_generic_class): Don't pass the current
17266         generic context when parsing the type being instantiated: it
17267         cannot use it, anyway.
17269         * loader.c (method_from_memberref): Don't inflate a signature if
17270         it doesn't contain any type parameters.
17272 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
17274         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
17276 2005-12-14  Martin Baulig  <martin@ximian.com>
17278         * class.c
17279         (mono_type_get_name_recurse): Don't return null for type
17280         parameters and open generic classes.
17281         (mono_class_setup_methods): Don't exclude generic instances.
17282         (mono_get_unique_iid): Use different IDs for different
17283         instantiations of the same generic type.
17284         (mono_class_setup_vtable): Only use setup_generic_vtable() for
17285         open generic instances; create a normal vtable for closed generic
17286         instances.
17287         (mono_class_setup_vtable_general): We're now also called for
17288         closed generic instances.
17290         * reflection.c
17291         (mono_reflection_bind_generic_parameters): Correctly use
17292         mono_metadata_lookup_generic_inst() everywhere.
17294 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
17296         * object.c (mono_class_create_runtime_vtable): Call 
17297         mono_class_setup_vtable ().
17299         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
17300         function.
17301         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
17302         #76959.
17304         * loader.c (mono_loader_set_error_type_load): Print the type load
17305         warnings to the console so they are more visible to the user.
17306         (mono_loader_set_error_method_load): Ditto.
17308         * reflection.c (ensure_runtime_vtable): Revert the last change as it
17309         is still broken.
17310         
17311         * reflection.c (ensure_runtime_vtable): Fix build.
17313         * reflection.c (ensure_runtime_vtable): Disable an optimization which
17314         doesn't work in all cases.
17316 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
17318         * object.c (mono_array_new_full): Treat a single dimensional array
17319         with 0 lower bounds as an szarray. Fixes #76973.
17321         * reflection.c (custom_attr_visible): Really fix this.
17323 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
17325         * reflection.c (custom_attr_visible): Allow nested public attributes
17326         as well.
17328         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
17329         interface check.
17331 2005-12-12  Raja R Harinath  <harinath@gmail.com>
17333         * class.c (set_generic_param_owner): Delete.
17334         (mono_class_create_from_typedef): Don't set ->owner field of
17335         generic parameters to "param containers" of enclosing classes.
17336         * reflection.c (mono_reflection_initialize_generic_parameter):
17337         Likewise.
17339 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
17341         * reflection.c (custom_attr_visible): Fix build.
17343 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
17345         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
17346         private attributes.
17347         
17348         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
17349         handling of null parameter defaults.
17351 2005-12-09  Raja R Harinath  <rharinath@novell.com>
17353         * class.c (mono_class_from_generic_parameter): Don't set
17354         klass->generic_container.
17355         (my_mono_class_from_generic_parameter): Likewise.
17357 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
17359         * reflection.c (load_public_key): Fix a warning.
17360         (method_encode_code): Fix unaligned accesses.
17362 2005-12-07  Martin Baulig  <martin@ximian.com>
17364         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
17366         * reflection.c
17367         (write_generic_param_entry): Encode our custom attrs.
17369         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
17371 2005-12-07  Martin Baulig  <martin@ximian.com>
17373         * reflection.c (encode_new_constraint): Removed; we don't use the
17374         `NewConstraintAttribute' anymore.
17376 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
17378         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
17379         not fire a TypeResolve event when Assembly.GetType () is called.
17381 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
17383         Beginning of support for nullable types in the runtime. Parts of
17384         this patch are from Martin.
17386         * appdomain.c (MONO_CORLIB_VERSION): Bump
17388         * domain.c (mono_init_internal): get the nullable type
17390         * class.c (mono_class_is_nullable): New method
17391         (mono_class_get_nullable_param): New mehod
17392         (mono_class_create_generic): In types T? set cast_class to T
17394         * class-internals.h (MonoDefaults): new nullable default class
17395         (mono_class_get_nullable_param, mono_class_get_nullable_param):
17396         new methods.
17398 2005-12-05  Raja R Harinath  <rharinath@novell.com>
17400         * metadata.c (select_container): New.  Refactor code to select the
17401         appropriate GenericContainer given the type of generic parameter
17402         we are looking for.
17403         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
17404         not a MonoGenericContext.  Use select_container.  Update parameters.
17405         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
17406         and MONO_TYPE_MVAR.
17407         (unwrap_arrays): Remove duplicate tests.
17408         (find_generic_param): Rename from 'has_same_context'.  Now walks a
17409         generic instantiated class to find any arguments that are generic
17410         parameters.
17411         (mono_type_create_from_typespec_full): Use find_generic_param to
17412         avoid evicting some generic instantiations from the typespec
17413         cache.
17415 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
17417         * reflection.c: fixed writing of doubles on ARM FPA.
17419 2005-12-02  Robert Jordan  <robertj@gmx.net>
17421         * icall.c: Fixed EventInfo.ReflectedType (#76829).
17423 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17425         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
17426         least on SUSE 10 they are not the same (on debian, they are just the
17427         same thing).
17429 2005-12-01  Raja R Harinath  <rharinath@novell.com>
17431         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
17432         DeclaringType for VARs and MVARs.
17433         * class.c (set_generic_param_owner): Fix initialization of owner
17434         fields.
17436 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
17438         * icall.c: fixed Enum.ToObject() to correctly convert the values.
17440 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17442         * threadpool.c: workaround for a bug that shows up on the Mac:
17443         select()+connect() on a blocking socket is not like it should
17444         be, so we proceed to connect() in that case, wasting the I/O
17445         threadpool thread until connect succeedes. Fixes bug #75436.
17447 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17449         * threadpool.c: fix typo when setting file descriptor states.
17451 2005-11-28  Raja R Harinath  <rharinath@novell.com>
17453         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
17454         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17455         create a temporary signature container.
17456         (mono_metadata_parse_generic_param): Update to changes.
17457         (mono_type_create_from_typespec_full): Update to changes.
17458         * loader.c (method_from_memberref): Don't use a
17459         MonoGenericContainer while parsing a memberref signature.
17460         (method_from_methodspec): Remove dead-store of the 'container'
17461         variable.  It's overwritten before use.
17463         * metadata.c (mono_type_create_from_typespec_full): Make debugging
17464         checks tighter.
17465         (mono_metadata_parse_generic_param): Likewise.
17466         * loader.c (find_method_in_class): Does not need a
17467         MonoGenericContainer.  Use 'mono_method_signature' rather than
17468         'mono_method_signature_full'.
17469         (find_method, mono_get_method_constrained, method_from_memberref):
17470         Update to changes.
17472         * metadata.c (mono_type_create_from_typespec_full): Ensure that
17473         owner-less generic-parameters are never evicted from the typespec
17474         cache.
17476         * loader.c (method_from_memberref): Don't use the current context
17477         when parsing signatures.
17478         (method_from_methodspec, mono_get_method_from_token): Update to changes.
17480         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
17481         side-effects in g_assert.
17482         * loader.c (mono_get_method_from_token): Resolve klass earlier so
17483         that we don't potentially lose information.
17485 2005-11-26  Dick Porter  <dick@ximian.com>
17487         * icall.c:
17488         * threads.c: icalls to implement basic (ie, not named)
17489         System.Threading.Semaphore.
17491 2005-11-24  Dick Porter  <dick@ximian.com>
17493         * process.c
17494         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17495         Use GetProcessId() if it's available.
17497 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
17499         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
17501 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17502             Ankit Jain  <jankit@novell.com>
17504         * loader.c (mono_get_method_from_token): Initialize 'method' field
17505         of all generic parameters before parsing the signature.  Remove
17506         code that "fixed"-up MVAR references.
17508 2005-11-23  Ankit Jain  <jankit@novell.com>
17510         * metadata.c (mono_metadata_has_generic_params):
17511         (mono_metadata_load_generic_param_constraints):
17512         (mono_metadata_load_generic_params): Move duplicate code ...
17513         (mono_metadata_get_generic_param_row): ... here. Returns the
17514         first row-id in GenericParam table for a given owner (token).
17515         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
17516         prototype.
17518 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17519             Ankit Jain  <jankit@novell.com>
17521         * metadata.c (mono_metadata_class_equal): Pass signature_only when
17522         comparing VARs too.
17523         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
17524         type->data.generic_param only if the type is an MVAR.
17525         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
17526         leak owner-less VARs and MVARs into managed space.
17528 2005-11-21  Martin Baulig  <martin@ximian.com>
17530         * class-internals.h
17531         (MonoMethod): Moved the `generic_container' here from
17532         `MonoMethodNormal' since we now also need it for
17533         `MonoMethodPInvoke';
17534         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
17535         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
17536         an union containing both `MonoMethodNormal' and
17537         `MonoMethodPInvoke'.
17539         * loader.c
17540         (mono_get_method_from_token): Allow implementing generic methods
17541         as interncalls.
17543         * threads.c
17544         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
17545         icall.
17547 2005-11-17  Dick Porter  <dick@ximian.com>
17549         * icall.c: 
17550         * process.h: 
17551         * process.c: Split the Process Start_internal icall into
17552         ShellExecuteEx_internal and CreateProcess_internal, which are
17553         called depending on whether UseShellExecute is true.  Fixes bug
17554         76670.
17556         * appdomain.c (MONO_CORLIB_VERSION): Incremented
17558 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
17560         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
17561         'msize' parameters, use the information in 'mspec' instead.
17562         (emit_object_to_ptr_conv): Ditto.
17564         * marshal.c (emit_struct_conv): Handle explicit layout structs with
17565         fields out of order. Fixes #76733.
17567 2005-11-17  Ankit Jain  <jankit@novell.com>
17569         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
17571 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
17573         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
17574           bug #76575.
17576 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17578         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
17579         for types with non-auto layout. Fixes #76717.
17581 2005-11-16  Ankit Jain  <jankit@novell.com>
17583         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
17584         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
17585         if generic_context is null.
17586           (mono_metadata_generic_param_equal): param->owner can be null.
17587           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
17588         null.
17590 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17592         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
17593         the correct value.
17595 2005-11-15  Martin Baulig  <martin@ximian.com>
17597         * object.c (set_value): Use mono_class_from_mono_type() instead of
17598         the hack for generic instances; fixes #76136.
17600 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
17602         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
17603         fields.
17605         * image.c (load_metadata_ptrs): Initialize the new fields.
17607         * reflection.c (create_dynamic_mono_image): Ditto.
17609         * reflection.c (build_compressed_metadata): Use the new fields.
17611         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
17612         icall.
17614         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
17615         icall.
17616         
17617 2005-11-15  Ankit Jain  <jankit@novell.com>
17618             Raja R Harinath  <harinath@gmail.com>
17620         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
17621         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
17622         new per-generic_container cache if the cached MonoType's context matches
17623         the current context.
17624           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
17625         to the expected context.
17626           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
17628 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17630         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
17631         we changed the signature of an icall.
17632         * icall.c: Modify to mono_double_ParseImpl return true/false 
17633         depending on the success, instead of throwing the exception. This will
17634         help us in Double.TryParse methods.
17635         
17636 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
17638         * marshal.c (emit_marshal_object): Throw an exception when
17639         marshalling 'object' instead of crashing. Fixes #76696.
17641 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17643         * class-internals.h: Add prototype for mono_type_get_full_name ().
17645 2005-11-11  Dick Porter  <dick@ximian.com>
17647         * threads.c (mono_thread_manage): Make sure the main thread has
17648         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
17650 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17652         * loader.c (mono_loader_set_error_type_load): Log a warning to the
17653         console about the missing type.
17654         (mono_loader_set_error_method_load): Ditto.
17656 2005-11-09  Miguel de Icaza  <miguel@novell.com>
17658         * mono-config.c (mono_get_config_dir): Set the system defaults if
17659         none is specified.
17661         * assembly.c (mono_set_dirs): New API entry point to set the
17662         assembly and the config directory in one call
17664 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
17666         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
17667         the ftnptr was created from a delegate in a domain other than the
17668         current domain. Fixes #75377.
17670         * exception.h exception.c: Add mono_get_exception_not_supported ().
17672 2005-11-08  Martin Baulig  <martin@ximian.com>
17674         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
17676 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
17678         * security-manager.h: Added definitions to deal with strongname key 
17679         pairs bigger (and smaller) than 1024 bits.
17680         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
17681         adjust wrt the public key length being used.
17683 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
17685         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
17686           Windows build (r51396-51397).
17688 2005-11-03  Martin Baulig  <martin@ximian.com>
17690         * class.c (mono_class_setup_vtable_general): Also add generic
17691         methods to the vtable; fixes #76581.
17693 2005-11-01  Miguel de Icaza  <miguel@novell.com>
17695         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
17696         sure that we lookup GetString method from the System.Text.Encoding
17697         class, not the derived class or we get an empty method.
17699         Fixed class #76612.
17701 2005-10-25  Miguel de Icaza  <miguel@novell.com>
17703         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
17704         if it has been previously set (embedders). 
17706         Make mono_set_rootdir available also on Unix.
17708 005-10-24  Robert Jordan  <robertj@gmx.net>
17710         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
17712 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
17714         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
17715         only calls which are made to native code use this flag.
17717         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
17719 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
17721         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
17722         Add support for FieldBuilders.
17724 2005-10-29  Martin Baulig  <martin@ximian.com>
17726         * mono-debug.c
17727         (mono_debug_using_mono_debugger): New public method; returns
17728         whether we're running inside the debugger.
17730 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
17732         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
17733         for Method/Constructor/FieldBuilders.
17735 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
17737         * reflection.c (module_add_cattrs): Save custom attributes for global methods
17738         and fields as well.
17740 2005-10-26  Martin Baulig  <martin@ximian.com>
17742         * mono-debug-debugger.c
17743         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
17745 2005-10-24  Raja R Harinath  <harinath@gmail.com>
17747         * icall.c (base64_to_byte_array): Don't pass an out-of-range
17748         integer to isspace.
17750 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
17752         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
17753         when passing valuetypes byref. Fixes #76502.
17755 2005-10-19  Jackson Harper  <jackson@ximian.com>
17757         * profiler.c: Don't put a . in front of types that are not in a
17758         namespace.
17760 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
17762         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
17764 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
17766         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
17767         #76436.
17768         (mono_marshal_get_ldflda_wrapper): Fix a warning.
17770 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17772         * assembly.c metadata-internals.h icall.c: Define an additional
17773         parameter for mono_assembly_name_parse_full, so we can avoid creating
17774         S.R.AssemblyName.Version when no version info wasn't passed.
17775         
17776 2005-10-09  Miguel de Icaza  <miguel@novell.com>
17778         * class.c (mono_type_get_full_name): Reimplement method that was
17779         removed. 
17781         * image.c: Some docs
17783 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
17785         * profiler.c (output_newobj_profile): Fix printing of Total memory
17786         on x86.
17788 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
17790         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
17792 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
17794         * threads.c: remove debug output.
17796 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
17798         * threads.c (mono_thread_manage): Fix crashes if more than 64
17799         threads need to be aborted. Hopefully fixes #75899.
17801         * assembly.c (mono_stringify_assembly_name): New helper function.
17803         * class.c: Use mono_stringify_assembly_name instead of the similar
17804         static function.
17806         * assembly.h assembly.c: Add support for calling a postload search 
17807         hook if an assembly cannot be loaded.
17809         * appdomain.c: Register new search hooks which call the AssemblyResolve
17810         events in AppDomain. Fixes #75231
17812 2005-10-07  Martin Baulig  <martin@ximian.com>
17814         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
17815         methods without debug info.
17817 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
17819         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
17820         wrappers.
17822 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17824         * file-io.c: now that we return symlinks, use lstat and, when the file
17825         is a symbolic link, stat, to get the file attributes. Also avoid the
17826         conversion to/from utf16/external.
17828 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
17830         * class.c (mono_class_layout_fields): Compute klass->has_references
17831         correctly if an embedded valuetype is not yet initialized. Fixes
17832         #76331.
17834 2005-10-04  Martin Baulig  <martin@ximian.com>
17836         * metadata.c
17837         (mono_metadata_load_generic_param_constraints): New public
17838         function; splitted the constraints loading out from
17839         mono_metadata_load_generic_params().
17841         * class.c (mono_class_create_from_typedef): Call
17842         mono_metadata_load_generic_param_constraints() after setting up
17843         the type and creating our parent; fixes #75329.
17845 2005-10-04  Martin Baulig  <martin@ximian.com>
17847         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
17848         non-dynamic parent classes.
17850 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
17852         * file-io.c : win32 build fix (ETXTBSY seems not found).
17854 2005-10-04  Martin Baulig  <martin@ximian.com>
17856         * reflection.c
17857         (mono_image_get_methodspec_token): Make the cache actually work;
17858         fixes #75974.
17860 2005-10-04  Martin Baulig  <martin@ximian.com>
17862         * class.c (mono_class_name_from_token): Removed the unneccessary
17863         `MonoGenericContext *' argument.
17865 2005-10-04  Martin Baulig  <martin@ximian.com>
17867         * loader.c
17868         (method_from_methodspec): Make the caching work again; fixes the
17869         performance regression from #76262.
17871 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17873         * file-io.c:
17874         * file-io.h:
17875         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
17876         GetFileSystemEntries that performs the same work but without going
17877         into io-layer, locking, etc.
17879 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
17881         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
17882         ThreadState_Stopped as well. Fixes #76047.
17884 2005-09-29  Martin Baulig  <martin@ximian.com>
17886         * class.c
17887         (inflate_generic_context): If the new context has a `gmethod', set
17888         its `container' that that gmethod's `container'.
17890         * metadata.c
17891         (mono_metadata_parse_generic_param): Simplify things;
17892         `generic_container = generic_context->container;' is just fine.
17894         * loader.c (method_from_methodspec): Code cleanups.
17896 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
17898         * decimal.c: fix warning (and let gcc generate correct
17899         code on ARM with optimizations).
17901 2005-09-28  Martin Baulig  <martin@ximian.com>
17903         * loader.c
17904         (method_from_memberref): Added `MonoGenericContext *class_context'
17905         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
17906         (method_from_methodspec): If we're a memberref, use the enclosing
17907         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
17909 2005-09-28  Martin Baulig  <martin@ximian.com>
17911         * object.c (mono_runtime_invoke_array): Added support for
17912         MONO_TYPE_GENERICINST; fixes #75917.
17914 2005-09-27  Martin Baulig  <martin@ximian.com>
17916         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
17917         `k->byval_arg.type' to determine the actual type.
17919         * loader.c (method_from_methodspec): Removed some hacks.
17921 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
17923         * class-internals.h (mono_field_is_deleted): Do the test for
17924         rtspecialname before we check the actual name of the field. This
17925         prevents us from dereferencing a pointer into the string table,
17926         saving us from accessing a few pages
17928         * *.c: Replace the use of {Enter,Leave}CriticalSection with
17929         macros. This will allow a deadlock debugger to easily be plugged
17930         in.
17932 2005-09-27  Martin Baulig  <martin@ximian.com>
17934         * loader.c (method_from_methodspec): Create a "signature"
17935         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
17937 2005-09-27  Martin Baulig  <martin@ximian.com>
17939         * class.c
17940         (inflate_generic_class): Correctly set the new context's
17941         container.
17943         * loader.c
17944         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
17945         instead of a `MonoGenericContext *'.
17946         (mono_method_signature_full): Take a `MonoGenericContainer *'
17947         instead of a `MonoGenericContext *'.
17949         * metadata.c
17950         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
17951         instead of a `MonoGenericContext *'.
17952         (mono_metadata_parse_method_signature_full): Likewise.
17954 2005-09-26  Martin Baulig  <martin@ximian.com>
17956         * class.c
17957         (mono_class_from_generic_parameter): Set `klass->generic_container'
17958         (mono_class_from_generic_parameter): Likewise.
17959         (mono_bounded_array_class_get): We inherit the generic container
17960         from the element class.
17962         * loader.c
17963         (find_method, find_method_in_class): Take a `MonoGenericContext *'
17964         argument rather than computing it here.
17965         (method_from_memberref): Correctly set the generic context before
17966         parsing the signature.  Fixes #75681.
17968 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
17970         * object.c (mono_class_has_special_static_fields): Fix warnings.
17972 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17974         * assembly.c: Add parse_public_key function, to
17975         par the public keys. Also added mono_assembly_name_parse_full,
17976         to define it the parsed key should be freed or not.
17977         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
17978         to parse a long format assembly name.
17979         * metadata-internals.h: Keep mono_assembly_name_parse_full as
17980         private, since calling it to preserve the key requires
17981         freeing it manually.
17982         
17983 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
17985         * locales.c : removed HAVE_ICU part.
17987 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
17989         * object.c (mono_class_create_runtime_vtable): Avoid calling 
17990         field_is_special_static if the klass has no special static fields.
17992         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
17993         (MonoCachedClassInfo): Likewise.
17995         * object.c (mono_class_has_special_static_fields): New helper function.
17997 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
17999         * class.c (mono_class_create_from_typedef): Don't call 
18000         interfaces_from_typedef_full for enums.
18001         (mono_class_create_from_typedef): Compute the base types of enums directly
18002         without calling mono_class_setup_fields ().
18003         (mono_class_find_enum_basetype): New helper function.
18005         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18006         one place inside the string heap.
18007         
18008 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18010         * class.c: locking fixes, code cleanups, some docs added.
18011         Allocate some data structures in the image mempool.
18013 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18015         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18016         the example code.
18017         
18018 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18020         * class-internals.h, class.c, reflection.c: reduce memory taken by
18021         MonoClass.
18023 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18025         * metadata.c, metadata.h, loader.h: documentation updates, code and
18026         API cleanups.
18028 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18030         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18031         the example code.
18033         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18034         page faults caused by the runtime while reading metadata.
18036 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18038         * socket-io.c: the field names were changed 3 months ago and no one
18039         realized until bug #76077 got filed!
18041 2005-09-20  Martin Baulig  <martin@ximian.com>
18043         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18045 2005-09-20  Martin Baulig  <martin@ximian.com>
18047         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18048         write the rank into the class entry.
18050 2005-09-20  Martin Baulig  <martin@ximian.com>
18052         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18054 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18056         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18058         * icall.c (custom_attrs_defined_internal): New icall.
18060         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18061         function.
18062         (mono_custom_attrs_construct_by_type): New helper function.
18064 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18066         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18067         terminate the resulting string. Fixes #76123.
18069 2005-09-16  Martin Baulig  <martin@ximian.com>
18071         * mono-debug.c
18072         (mono_debug_add_method): Ignore inflated methods for the moment.
18074 2005-09-14  Martin Baulig  <martin@ximian.com>
18076         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18078 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18080         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18081         return a success/failure indication.
18082         (mono_metadata_interfaces_from_typedef_full): Ditto.
18083         (get_constraints): Ditto.
18085 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18087         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18088         
18089         * marshal.c (emit_marshal_array): Add support for returning string
18090         arrays from delegates. Fixes #76063.
18092         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18094 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18096         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18097         icall.
18099 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18101         * reflection.c icall.c: Fix after mono_get_exception_type_load
18102         signature change.
18104         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18105         (mono_assembly_load_reference): Use the new helper.
18107         * class-internals.h (MonoLoaderError): New structure containing 
18108         information about type loading errors.
18110         * class-internals.h loader.c: Add APIs to store per-thread loader
18111         error information.
18113         * loader.c class.c: Set the loader error if needed.
18115         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
18117 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
18119         * decimal.c: fixed to handle the broken ARM fp format.
18121 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
18123         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
18124         broken.
18126 2005-09-06  Martin Baulig  <martin@ximian.com>
18128         * domain.c (supported_runtimes): Added v2.0.50727.
18130 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
18132         * culture-info.h: reduce the size of some structures.
18134 2005-09-05  Martin Baulig  <martin@ximian.com>
18136         Reflect latest API changes in the August CTP.
18138         * icall.c
18139         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
18140         ("MonoType.HasGenericArguments"): Removed.
18141         ("MonoMethod.BindGenericParameters"): Renamed to
18142         "MakeGenericMethod".
18143         ("MethodBuilder.BindGenericParameters"): Renamed to
18144         "MakeGenericMethod".    
18146 2005-09-05  Martin Baulig  <martin@ximian.com>
18148         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
18150 2005-09-05  Martin Baulig  <martin@ximian.com>
18152         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18154         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
18155         generic_container is non-NULL.
18157 2005-09-05  Martin Baulig  <martin@ximian.com>
18159         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18161         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
18163 2005-08-29  Michal Moskal  <malekith@nemerle.org>
18165         * reflection.c (encode_locals,
18166         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
18167         for large generic types.
18169 2005-09-05  Martin Baulig  <martin@ximian.com>
18171         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18173         * class.c (mono_dup_array_type): New public method.
18174         (mono_metadata_signature_deep_dup): New public method.
18175         (dup_type): Correctly duplicate array and function types.
18177 2005-09-05  Martin Baulig  <martin@ximian.com>
18179         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18181         * reflection.c (get_default_param_value_blobs): Handle generic types
18182         and generic methods.
18184 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
18186         * class.c: Fixed error reporting (method/class were inversed) for 
18187         inheritance demands.
18188         * security-manager.c|h: Added the AppDomain when calling the managed
18189         System.Security.SecurityManager.InheritanceDemand method.
18191 2005-09-01  Raja R Harinath  <rharinath@novell.com>
18193         * reflection.c (encode_marshal_blob): 'marshaltype' and
18194         'marshaltyperef' are alternate sources for the custom marshaler
18195         name.
18197 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
18199         * class.c: fix creation of array classes with rank == 1
18200         (patch by Ankit Jain <jankit@novell.com>).
18202 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
18204         * object.c: fix check for creating the bound data for arrays vs
18205         szarrays.
18207 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18209         * object.c: configuration file name is now based on the executable name,
18210         not the image name. Fixes bug #75931.
18212 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
18214         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
18215         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
18217 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
18219         * rand.c: Use wincrypt.h instead of WinCrypt.h.
18221 2005-08-24  Ankit Jain  <jankit@novell.com>
18222             Raja R Harinath  <rharinath@novell.com>
18224         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
18225           called by it recursively.
18226           (mono_class_init): Remove special case in pending_init handling, since it's
18227           superseded by the fix to mono_class_from_typeref.
18229 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18231         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
18232         BROKEN_THREAD_START stuff.
18234 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
18236         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
18237         trampoline.
18239         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
18240         
18241         * object.c (mono_delegate_ctor): Replace the original function address with
18242         a delegate trampoline.
18244 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
18246         * icall.c: add boolean argument to base64_to_byte_array and 
18247         InternalFromBase64String to control whether a whitespace-only string
18248         is allowed (or should casue a FormatException to be thrown). We need
18249         this as the behavior has changed between MS.NET 1.x and 2.0, and we
18250         to match the MS behaviour in both profiles.
18251         * appdomain.c: Bump corlib version.
18253 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18255         This patch implements a big portion of publisher policy
18256         support, used to bind assembly versions and redirect
18257         one assembly from version A to version B.
18259         * assembly.c:
18260         New GSList loaded_assembly_bindings, for storing the cached
18261         assembly bindings.
18262         (assembly_binding_maps_name): New static function for checking if a 
18263         assembly binding information maps an assembly name.
18264         (mono_assembly_binding_info_free): New function for freeing
18265         assembly binding information resources.
18266         (get_publisher_policy_info): New static function for retrieving 
18267         assembly binding information from a MonoImage.
18268         (compare_versions): New static function for comparing an assembly
18269         binding information data and the version of an assembly name.
18270         (check_policy_versions): New static function for checking if an
18271         assembly binding info mapping an assembly name is valid for it.
18272         (mono_assembly_load_publisher_policy): New static function for
18273         loading the 'policy.major.minor.MyAssembly' image for an assembly
18274         with an assembly name 'aname'.
18275         (mono_assembly_bind_version): New static function for updating
18276         assembly redirection.
18277         (mono_assembly_apply_binding): New static function for applying
18278         assembly binding.
18279         (search_binding_loaded): New static function for searching 
18280         loaded assembly binding infos in the cache domain.
18281         (mono_assembly_load_full): Don't apply assembly binding for
18282         reflection only assemblies.
18284         * metadata-internals.h: Add MonoAssemblyBindingInfo,
18285         which contains information about assembly binding. Also
18286         declare signature for mono_config_parse_publisher_policy ()
18287         function, used to retrieve pub policy info.
18288         
18289         * mono-config.c:
18290         (publisher_policy_start): New static function used to parse publisher 
18291         policy config files.
18292         (publisher_policy_parser): New static MonoParseHandler containing 
18293         the functions used when parsing config files.
18294         (mono_config_parse_publisher_policy): New function for parsing
18295         publisher policy files.
18296         
18297 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
18299         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
18301         * marshal.c (mono_delegate_free_ftnptr): Ditto.
18303         * object.c (mono_get_addr_from_ftnptr): New helper function.
18305         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
18307         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18309 2005-08-19  Dick Porter  <dick@ximian.com>
18311         * threads.c, threads.h, appdomain.c, appdomain.h,
18312         profiler-private.h, monitor.c, object.c, object-internals.h,
18313         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
18314         store the thread ID, so it can hold a 64 bit value if needed.
18316 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
18318         * reflection.c (mono_reflection_create_dynamic_method): Store the
18319         handle class into the method references as well so ldtoken works in
18320         dynamic methods.
18322         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
18323         types.
18325 2005-08-19  Ankit Jain <jankit@novell.com>
18327         Fix #75847.
18328         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
18329           here rather than using the method signature of a arbitrary function
18330           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
18331           two arguments.
18332           Hack done with Harinath.
18334 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18336         * threadpool.c: disable printing stack traces when we get a exception
18337         in a threadpool thread. I need to do more testing to figure out which
18338         cases actually print this. Fixes bug #75828.
18340 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18342         * icall.c: there might be ignored whitespace after the last '='. This
18343         fixes length computation and bug #75840.
18345 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
18347         * assembly.c (mono_assembly_load_full): Consider .exe extension as
18348         well. Fixes #75809.
18350         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
18351         #75784.
18352         
18353         * reflection.c (create_custom_attr_data): Ditto.
18355 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
18357         * locales.c, culture-info.h : removed RegionLCIDMap.
18358         * culture-info-tables.h : regenerated.
18360 2005-08-16  Martin Baulig  <martin@ximian.com>
18362         * class.c (mono_type_get_name_recurse): Small fix.
18364 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
18366         * locales.c : indentation fixie.
18368 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
18370         * object-internals.h,
18371           locales.h,
18372           locales.c,
18373           culture-info.h,
18374           icall.c : added RegionInfo table support.
18375         * culture-info-table.h : regenerated for region support.
18377 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
18379         * reflection.c (resolve_object): handle all kinds of MonoMethod
18380         including generic ones
18382 2005-08-12  Ankit Jain <jankit@novell.com>
18384         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
18385           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
18387 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
18389         * process.c: Don't close a thread handle when it's NULL. This is a
18390         workaround for bug #75733.
18392 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
18394         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
18396 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
18398         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
18400 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18402         * threadpool.c: if a work item in the thread pool has a callback that
18403         catches a exception, don't propagate it after invoking the callback.
18404         Fixes bug #75336.
18406 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
18408         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
18410         * class-internals.h (MonoCachedClassInfo): Add some new fields.
18412         * class.c (mono_class_init): Load field info lazily in the AOT case.    
18414         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
18416 2005-08-03  Ankit Jain  <jankit@novell.com>
18418         Fix #75683.
18419         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
18420           PInvoke calling convention is 0.
18422 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
18424         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
18425         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
18427 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
18429         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
18430         to handle threads not started by the GC (patch by Michael Meeks
18431         <michael.meeks@novell.com>).
18433 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
18435         * reflection.c: Make buffer used in emitting types larger for some
18436         big generic types (patch by Michal Moskal).
18438 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
18440         * mono-debug.c: Fix some (not all) alignment problems.
18442 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18444         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
18445         Invoke mono_image_load_from_data_full passing the refonly
18446         parameter.
18448         * assembly.c
18449         (mono_assembly_open_from_bundle): Add the refonly argument, 
18450         in order to pass it to other methods it calls to.
18451         (do_mono_assembly_open): Add the refonly argument, in order 
18452         to pass it to other methods it calls to.
18453         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
18454         the refonly parameter to it.
18456         * image.c: Add loaded_images_refonly_hash and
18457         loaded_images_refonly_guid_hash to cache the reflection
18458         only loaded images.
18459         (mono_images_init): Initialize the hash tables used for
18460         caching the reflection only images.
18461         (load_modules): Invoke mono_image_open_full passing the refonly
18462         parameter to load the modules the correct way.
18463         (build_guid_table): Add the refonly argument, to re-build the 
18464         correct hash table.
18465         (do_mono_image_open): Added the refonly argument, in order to
18466         define it for the loaded image.
18467         (mono_image_loaded_full): New function, which receives an
18468         additional parameter to look for the image in the refonly or
18469         non-refonly section.
18470         (mono_image_loaded): Updated, using mono_image_loaded_full.
18471         (mono_image_loaded_by_guid_full): The same case that happens
18472         with mono_image_loaded_full.
18473         (mono_image_loaded_by_guid): Likewise.
18474         (register_image): Use the ref_only variable inside MonoImage
18475         to decide in which hash table store the current image.
18476         (mono_image_open_from_data_full): Rename
18477         mono_image_open_from_data to mono_image_open_from_data_full,
18478         adding the refonly argument, to define the ref_only variable 
18479         inside MonoImage.
18480         (mono_image_open_from_data): Return 
18481         mono_image_open_from_data_full.
18482         (mono_image_open_full): Rename mono_image_open to
18483         mono_image_open_full, receiving the new refonly argument,
18484         to pass it to inner methods.
18485         (mono_pe_file_open): Update this function, to open
18486         a MonoImage as a non-refonly image.
18487         (mono_image_close): Use the refonly variable inside
18488         MonoImage to remove the image from the correct caches.
18490         * image.h: Add the signatures of mono_image_open_full,
18491         mono_image_open_from_data_full, mono_image_loaded_full,
18492         mono_image_loaded_by_guid_full.
18494         * metadata-internals.h: Add the ref_only field to 
18495         MonoImage.
18496         
18497 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18499         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
18500         Fix the last behavior, which used to load the assemblies and
18501         extract MonoReflectionAssemblyName information, instead of
18502         extract it from the metadata tables. Needed for Reflection
18503         Only assemblies.
18504         
18505 2005-07-29  Martin Baulig  <martin@ximian.com>
18507         * mono-debug-debugger.c
18508         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
18509         not initialized.
18511         * mono-debug.c
18512         (mono_debug_address_from_il_offset): Check whether we have
18513         debugging support before attempting to take the lock.
18514         (mono_debug_source_location_from_address): Likewise.
18515         (mono_debug_source_location_from_il_offset): Likewise.
18516         (mono_debug_il_offset_from_address): Likewise.
18517         (mono_debug_address_from_il_offset): Likewise.
18519 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
18521         * class.c (mono_class_from_name_case): Add support for dynamic images.
18522         Fixes #75650.
18524         * object.c (mono_class_compute_gc_descriptor): Add a workaround
18525         for #75479.
18527 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18528         
18529         * reflection.c (mono_method_get_object): Fix warning.
18531 2005-07-28  Martin Baulig  <martin@ximian.com>
18533         * mono-debug.c
18534         (mono_debug_add_wrapper): Also write the wrapper type.
18536 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18538         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
18539         
18540         * class.c (mono_class_init): Avoid reading nested classes if the AOT
18541         data indicates the class has none.
18543 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
18545         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
18546         loader lock with the debugger lock. Prevents deadlocks for beagle.
18548         Beagle can now run on an smp box for a weekend without any
18549         issues. Woohoo!
18551 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
18553         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
18554         in a module. Fixes #75629.
18556 2005-07-26  Martin Baulig  <martin@ximian.com>
18558         * mono-debug.c (mono_debug_add_wrapper): New static method.
18559         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
18560         interncall or a wrapper.
18562         * mono-debug.h (MonoDebugWrapperData): New public typedef.
18563         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
18564         (MONO_DEBUGGER_VERSION): Bump to 51.
18566         * mono-debug-debugger.c
18567         (mono_debugger_add_type): Removed this empty function.
18568         (mono_debugger_add_method): Likewise.
18570 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
18572         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
18573         before accessing method->slot.
18575 2005-07-21  Jb Evain  <jbevain@gmail.com>
18577         * reflection.c (method_encode_clauses/class): Handle filters clauses.
18578         Fixes #75010.
18580 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
18582         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
18583         #75587.
18585 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
18587         * image.h image.c: Add mono_image_get_guid () API function.
18589 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
18591         There were issues when multiple threads tried to load
18592         assemblies. A deadlock was created between assemblies_mutex and
18593         mono_domain_assemblies_lock. This fixes the issue by making the
18594         assembly ref counting be lock free. See bug 75586.
18595         
18596         * image.c (mono_image_close): The add ref function here was using
18597         Interlocked operations while the unref was using a mutex and a
18598         --. I don't think this was ever a bug that would be exposed in a
18599         non-pendantic way (ie, by an embedder doing a ref on one thread
18600         and an unref on another), but for the sake of correctness, this is
18601         now Interlocked.
18603         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
18604         (mono_assembly_load_reference): Call mono_assembly_addref rather
18605         than touching the refcount ourselves.
18606         (mono_assembly_close): Use InterlockedDecrement to unref the
18607         assembly. Don't acquire the lock unless it is actually needed.
18609 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18611         * class.c (mono_class_layout_fields): Fix calculation of has_references
18612         for generic types.
18614 2005-07-12  Martin Baulig  <martin@ximian.com>
18616         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18618         * metadata.c
18619         (mono_type_hash): Provide better hashing for generic instances.
18620         (mono_generic_inst_hash): Improve hashing.
18621         (mono_generic_class_hash): Likewise.
18623         * reflection.c (mymono_metadata_type_hash): Improve hashing for
18624         generic instances.
18626 2005-07-12  Martin Baulig  <martin@ximian.com>
18628         * reflection.c (mono_reflection_create_runtime_class): Remove the
18629         hack for generic type definitions and non-`Run' assemblies.
18630         (mono_reflection_bind_generic_parameters): Also use
18631         `klass->wastypebuilder' to check for TypeBuilders.
18633 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18635         * class.c (mono_class_layout_fields): Fix calculation of has_references
18636         for generic types.
18638         * class.c (inflate_generic_class): Fix a leak.
18639         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
18640         for generic types.
18642 2005-07-11  Martin Baulig  <martin@ximian.com>
18644         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
18645         on error.
18647 2005-07-11  Martin Baulig  <martin@ximian.com>
18649         * loader.c (find_method): Also lookup in
18650         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
18652 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18654         * appdomain.c (mono_domain_unload): Don't free the error message
18655         before passing it to mono_get_exception_...
18657         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
18658         
18659 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
18661         * threads.c: try to better guess an available RT signal (bug #75387).
18663 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18665         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
18666         and CACHE_OBJECT.
18668 2005-07-07  Martin Baulig  <martin@ximian.com>
18670         * class.c (mono_type_get_name_full): Return NULL for
18671         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
18672         fixes #75408.
18674 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18676         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
18677         exit the appdomain as well being aborted.
18679         * threadpool.c: Create all threadpool threads inside the root appdomain, and
18680         change back to the root domain after calling managed code. This enables
18681         appdomains using threadpools to be unloaded.
18683 2005-07-07  Martin Baulig  <martin@ximian.com>
18685         * class-internals.h
18686         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
18687         into `MonoDynamicGenericClass' since we only need it for dynamic
18688         types.
18690         * reflection.c (mono_class_bind_generic_parameters): We don't need
18691         to compute the `parent' here.
18693 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
18695         * culture-info-table.h : regenerated.
18697 2005-07-06  Martin Baulig  <martin@ximian.com>
18699         * icall.c
18700         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
18702         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
18704 2005-07-06  Martin Baulig  <martin@ximian.com>
18706         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
18707         we're doing a signature-only comparision; fixes #74945.
18709 2005-07-06  Martin Baulig  <martin@ximian.com>
18711         * class-internals.h (MonoGenericClass): Moved some things out into
18712         a new `MonoInflatedGenericClass' type.  
18713         (MonoInflatedGenericClass): New type; the `klass' of a
18714         `MonoGenericClass' is now computed lazyly in
18715         mono_get_inflated_generic_class().      
18717         * class.c (mono_get_inflated_generic_class): New public function.
18718         (mono_class_inflate_generic_method): Removed the unused
18719         `MonoClass *' argument.
18720         (setup_generic_vtable): Don't call mono_get_inflated_method() on
18721         all the methods.
18722         (mono_class_create_generic): Make this static and merge it with
18723         mono_class_create_generic_2(); we're now called automatically from
18724         mono_get_inflated_generic_class().
18726         * loader.c (mono_method_signature): Call
18727         mono_get_inflated_method() here.
18729 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
18731         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
18732         type of fields with RVA.
18734         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
18735         for this pseudo class.
18736         (my_mono_class_from_generic_parameter): Likewise.
18737         (mono_class_init): Allow interfaces to have cctors.
18739 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18741         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
18742         lazily for AOT methods.
18744 2005-07-05  Martin Baulig  <martin@ximian.com>
18746         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
18747         returns FALSE for a successful match, not TRUE.
18749 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18751         * loader.c (mono_method_get_index): Optimize this a bit.
18753 2005-07-04  Martin Baulig  <martin@ximian.com>
18755         * class.c
18756         (class_compute_field_layout): Move the check for generic type
18757         definitions into mono_class_layout_fields().  Fixes #74684.
18758         (mono_class_from_generic_parameter): Correctly compute
18759         `klass->parent'; fixes #75457.
18761         * reflection.c (register_assembly, register_module): Make sure
18762         `domain->rejobject_hash' is already created.
18764 2005-07-02  Martin Baulig  <martin@ximian.com>
18766         * class-internals.h
18767         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
18768         `MonoDynamicGenericClass'.      
18770 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
18772         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
18773         returned by a field getter is null, since null is a valid value.
18775 2005-07-01  Martin Baulig  <martin@ximian.com>
18777         * reflection.c (mono_reflection_generic_class_initialize): Update
18778         the `dgclass->fields [i].parent' to the correct class.
18779         (mono_image_get_fieldref_token): Use the declaring type, not the
18780         reflected type.
18782 2005-07-01  Martin Baulig  <martin@ximian.com>
18784         * loader.c (find_method): Also look in the interfaces; fixes #75429.
18786 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
18788         * threads.c (thread_cleanup): assert that thread != NULL
18789         (wait_for_tids_or_state_change): We were using the wrong variable
18790         when accessing wait->threads. `i' was always out of the bounds of
18791         the array.
18793 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18795         * loader.c: map user32 and kernel32 to libMonoSupportW
18797 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
18799         * appdomain.c (unload_thread_main): Mark this as WINAPI.
18801 2005-06-28  Martin Baulig  <martin@ximian.com>
18803         * loader.c (method_from_methodspec): Fix #75334.
18805 2005-06-28  Martin Baulig  <martin@ximian.com>
18807         Fix #74953 - Arrays now implement the generic IList<T> interface
18808         on the 2.0 platform.
18810         * class-internals.h (MonoDefaults): Added `generic_array_class'.
18812         * reflection.c (mono_class_bind_generic_parameters): New public
18813         function; similar to mono_reflection_bind_generic_parameters(),
18814         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
18816         * domain.c (mono_init_internal): Try to initialize.
18817         `mono_defaults.generic_array_class' here; this'll only succeed if
18818         we're using the 2.0 corlib.
18820         * icall.c
18821         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
18822         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
18823         (mono_lookup_internal_call): Added support for nested classes.
18825         * loader.c
18826         (mono_get_method_from_token): Set `result->signature->pinvoke' if
18827         we're an interncall and have generic arguments.
18829         * class.c
18830         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
18831         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
18832         instance of System.Array.InternalArray<T> for arrays, so they
18833         implement the generic IList<T> interface.
18835 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
18837         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
18838         (chastamar@yahoo.com). Fixes #75374.    
18840 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
18842         * culture-info-table.h: regenerated.
18844 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18846         * icall.c: handle spaces correctly for base64 strings.
18848 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
18850         * *.c: Kill some warnings.
18852 2005-06-23  Duncan Mak  <duncan@novell.com>
18854         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
18855         that this builds on Solaris 10 (x86).
18857 2005-06-23  Martin Baulig  <martin@ximian.com>
18859         * class.c
18860         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
18861         generic type definitions.
18863 2005-06-23  Martin Baulig  <martin@ximian.com>
18865         Fix #75331.
18867         * metadata.c (mono_class_get_overrides): Renamed to
18868         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
18869         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
18870         pass it to mono_get_method_full().
18872 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
18874         * reflection.c (mono_reflection_create_runtime_class): take the
18875         mono_domain_lock in this method. Prevents deadlocks
18877 2005-06-22  Martin Baulig  <martin@ximian.com>
18879         * loader.c (method_from_methodspec): Fix #75330.
18881 2005-06-22  Martin Baulig  <martin@ximian.com>
18883         * reflection.c (type_get_qualified_name): Use
18884         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
18885         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
18886         argument; use it if we don't have an assembly name.
18888 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
18890         * object.c: In mono_message_init, set "copy out" flag for in
18891         parameters with the [Out] flag.
18893 2005-06-21  Martin Baulig  <martin@ximian.com>
18895         * class.c
18896         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
18897         and MONO_TYPE_PTR.
18899 2005-06-21  Martin Baulig  <martin@ximian.com>
18901         * class.c (mono_class_init): Don't initialize `class->fields' for
18902         generic instances since they're initialized again in
18903         compute_field_layout(). 
18904         (compute_field_layout): Set the field's `generic_info' here; fix
18905         #75320. 
18907 2005-06-21  Martin Baulig  <martin@ximian.com>
18909         * class-internals.h
18910         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
18912         * metadata.c (mono_metadata_generic_method_equal): Also
18913         distinguish the `generic_class'; fixes #75334.
18915 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18917         * domain.c:
18918         * appdomain.c:
18919         * domain-internals.h:
18920         * reflection.c: 'domain_assemblies' field is now protected by its own
18921         lock. Don't call into managed code to run the AssemblyLoad event if we
18922         now there are no registered delegates for it.
18924 2005-06-20  Martin Baulig  <martin@ximian.com>
18926         * class.c (mono_class_is_assignable_from): Use a custom version of
18927         mono_class_has_parent() to make things work for generic instances;
18928         fix #75300.
18930 2005-06-20  Martin Baulig  <martin@ximian.com>
18932         * loader.c (method_from_methodspec): Apply a patch from
18933         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
18935 2005-06-20  Martin Baulig  <martin@ximian.com>
18937         * class.c (mono_class_init): Reverted Zoltan's last change; it
18938         breaks generics.
18940 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
18942         * threads.c (wait_for_tids_or_state_change): Add missing locking.
18944 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18946         * socket-io.c: fix the index in the socket array for writable/error
18947         sockets. Fixes bug #75306.
18949 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
18951         * class.c (mono_class_init): Allow interfaces to have static ctors.
18953 2005-06-17  Martin Baulig  <martin@ximian.com>
18955         * loader.c (method_from_methodspec): Use `context->container' when
18956         parsing the `gmethod->inst'.
18958 2005-06-17  Martin Baulig  <martin@ximian.com>
18960         * class.c (mono_type_get_name_recurse): Don't add the assembly
18961         name for type arguments.
18963 2005-06-15  Martin Baulig  <martin@ximian.com>
18965         * reflection.c (mono_image_get_inflated_method_token): Encode
18966         correct klass; fixes #75260.
18968 2005-06-13 Michal Moskal <malekith@nemerle.org>
18970         * icall.c: Make GetCorrespondingMethod/Constructor take
18971         MonoReflectionMethod method not MonoMethod. Removed
18972         MonoType.GetCorrespondingField, and make
18973         MonoGenericType.GetCorrespondingField take name not
18974         MonoClassField.
18976 2005-06-13  Michal Moskal <malekith@nemerle.org>
18978         * reflection.c (field_encode_signature, encode_locals):
18979          Make sizes of buffers for types larger (for big generic types).
18980          (create_generic_typespec,
18981          mono_reflection_sighelper_get_signature_local,
18982          mono_reflection_sighelper_get_signature_field):
18983          Add asserts for too small buffers.
18985 2005-06-15  Martin Baulig  <martin@ximian.com>
18987         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
18988         if our parent is not a dynamic type.
18990 2005-06-15  Martin Baulig  <martin@ximian.com>
18992         * class-internals.h (MonoTypeNameFormat): New enum.
18994         * class.c
18995         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
18996         (mono_type_get_full_name): Removed.
18997         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
18998         argument instead of the boolean's.
19000         * icall.c (ves_icall_System_MonoType_getFullName):
19001         Added `gboolean assembly_qualified'.    
19003         * reflection.h
19004         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19006         * reflection.c (mono_reflection_parse_type): Parse the new type
19007         name format.
19009 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19011         * icall.c: no need to convert from utf16 to utf8 and then back again
19012         after the call to GetLogicalDrives.
19014 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19016         * icall.c: frombase64. Fix problems exposed by new tests.
19018 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19020         * icall.c: added internal calls for converting char [] and strings in
19021         base64 into byte [].
19023 2005-06-10  Martin Baulig  <martin@ximian.com>
19025         * class.c (mono_class_create_generic_2): Read the nested classes
19026         from the metadata rather than from `gklass->nested_classes' since
19027         `gklass' might not be initialized yet.
19029 2005-06-09  Duncan Mak  <duncan@novell.com>
19031         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19032         all public headers. Fixes #74919.
19034 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19036         * domain.c: The key for proxy_vtable_hash is now a pointer
19037         array. Added new GHashFunc and GCompareFunc functions for this.
19039         * class.h: The list of interfaces in MonoRemoteClass is known in
19040         advance and can't grow (we create a new MonoRemoteClass if needed),
19041         so now the interface array can be allocated together with
19042         MonoRemoteClass.
19043         
19044         * object.c: Added a new method create_remote_class_key.
19045         Fixed mono_remote_class so it does not depend on
19046         mono_upgrade_remote_class.
19047         Removed extend_interface_array.
19048         Added new method clone_remote_class(), which makes a copy of a remote
19049         class and adds a new interface or class to it.
19050         mono_upgrade_remote_class() now creates a new remote class (or gets
19051         it from the cache) if an vtable upgrade is needed. In this way
19052         we make sure that other objects sharing the same remote class
19053         don't get the new vtable with unwanted interfaces.
19054         
19055         * object-internals.h:
19056         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19057         
19058         * marshal.c: Track changes in mono_upgrade_remote_class().
19060 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19061         * icall.c: Add runtime methods for obtaining members of inflated
19062         class, which were created from supplied non-inflated members. It
19063         is used in internal Get{Method,Constructor,Field} methods in
19064         System.Type
19066 2005-06-09  Martin Baulig  <martin@ximian.com>
19068         * reflection.c
19069         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19071 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19072         * reflection.c (mono_image_basic_init): Define
19073         Version in MonoDynamicAssembly. 
19074         
19075 2005-06-08  Martin Baulig  <martin@ximian.com>
19077         Fix #75136.
19079         * loader.c
19080         (mono_method_signature_full): New public method; takes a
19081         `MonoGenericContext *'.
19082         (find_method): Use mono_method_signature_full() and pass the
19083         klass'es context to it.
19085         * class.c (mono_class_is_inflated_method): Use
19086         mono_method_signature_full() and pass the context to it.
19088 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19090         * object.c: add proper locking in mono_remote_class_vtable(),
19091         fixes possible memory corruption.
19093 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19095         * marshal.c (mono_remoting_marshal_init): set
19096         initialized after initialization.
19098 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19100         * locales.c : hush.
19102 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19104         * object.c (extend_interface_array): fix really silly
19105         memory corrupting / comparison bug.
19107 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19109         * reflection.c: Functions added to support the creation
19110         of CustomAttributeData, which includes Attribute data
19111         used by ReflectionOnly methods.
19113         * reflection.h:  mono_reflection_get_custom_attrs_data and
19114          mono_custom_attrs_data_construct added (functions exposed).
19116          * icall.c: Added mono_reflection_get_custom_attrs_data
19117          as icall.
19118         
19119 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19121         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
19122         lupus's request.
19124 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
19126         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
19128         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
19129         dynamic DllImportAttribute.
19131         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
19132         dynamic DllImportAttribute.
19134         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
19135         Fixes #75162.
19137 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19139         * threads.c: avoid segfault when an unstarted thread is aborted.
19141 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
19143         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
19144         Returns the name and version of the runtime for reporting.
19146 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19148         * appdomain.c: bump corlib version.
19149         * object-internals.h: new field in MonoReflectionAssembly.
19151 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19153         * object-internals.h: Carlos forgot to add this field.
19155 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19157         * icall.c: Added create_version to create instances
19158         of Version of MonoReflectionAssemblyName. This change helps
19159         the AssemblyName tests to keep running fine.
19160         
19161 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
19162   
19163         * object.c (mono_method_return_message_restore): A somehow less
19164         intrusive fix for #75138.
19166 2005-06-03  Raja R Harinath  <rharinath@novell.com>
19168         * object.c (mono_method_return_message_restore): Fix computation
19169         of expected number of out args.
19171 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19173         * reflection.c (mono_image_get_method_info): Fix the case when the
19174         charset is empty.
19176 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
19178         * object.c: Added missing null check in
19179           mono_method_return_message_restore.
19181 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19183         * reflection.c (mono_image_get_method_info): Handle the case when
19184         dllentry is empty.
19186 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
19188         * object.c: When creating the vtable for a proxy, take into account
19189         all inherited interfaces, not only the ones registered in
19190         iclass->interfaces. This fixs bug #74996.
19191         Also, in mono_method_return_message_restore, verify that the array
19192         of out args has the expected lengh.
19194 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19196         * socket-io.c: update the timeout in Poll when the call is interrupte.
19198 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19200         * socket-io.c: support abort/suspend in Select_internal after last
19201         change.
19203 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19205         * threadpool.c: remove warning.
19207 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19209         * icall.c:
19210         * socket-io.[ch]: Select_internal uses poll() now when available, thus
19211         removing the 1024 limit from select(). Runtime part of the fix for
19212         bug #71203.
19214 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19216         * socket-io.c: when resolving the addresses for the same
19217         host returned by gethostname(), get the local IPs from the interface
19218         list. Loopback addresses are discarded if the are interfaces up with
19219         non-loopback ones. Fixes bug #63265.
19221 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
19223         * appdomain.c, verify.c, object-internals.h, reflection.c:
19224         bumped corlib number to 36, and added new extra_flags field
19225         to ReflectionMethodBuilder and friends.  Fixes #75060.
19227 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
19229         * gc.c: register a new weak link only if the object is non-null
19230         (fixes bug#75047).
19232 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19234         * culture-info.h : short time pattern too.
19236 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19238         * culture-info.h : expand long time pattern string length.
19240 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19242         * culture-info-table.h : update (more French date format; #72788).
19244 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
19246         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
19247         the method is static. Fixes #75029.
19249 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
19251         * reflection.c: Update the table_idx field of method builders after
19252         saving the module, since it can change. This is a workaround for
19253         bug #74914. 
19255 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19257         * culture-info-table.h : update (additional French date format).
19259 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
19261         * icall.c (ves_icall_type_Equals): Revert last change.
19262         
19263         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
19265         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
19267 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
19269         * class-internals.h: Added executioncontext_class field to 
19270         MonoDefaults structure.
19271         * domain.c: Cache System.Threading.ExecutionContext class in 
19272         mono_defaults.
19273         * object.c: Capture the ExecutionContext for asynchroneous calls in
19274          mono_async_result_new.
19275         * object-internals.h: Added execution_context and original_context 
19276         fields to MonoAsyncResult. Added execution_context to MonoThread.
19277         * security-manager.c|.h: Added mono_get_context_capture_method to 
19278         return the capture method (if required by the security manager or by
19279         the framework version used).
19280         * threadpool.c: Apply capture (if present) ExecutionContext in 
19281         mono_async_invoke and revert to original context after it completes.
19283 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
19285         * culture-info-table.h : updated (real hacky solution for zh-CHT).
19287 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
19289         * culture-info-table.h : zh-CHT related workaround.
19291 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19293         * marshal.c (emit_marshal_custom): Add some error checking and call the
19294         methods in the ICustomMarshaler interface. Fixes #74875.
19295         
19296         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
19297         native->managed wrappers.
19299 2005-05-12  Martin Baulig  <martin@ximian.com>
19301         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
19302         here and use the loader lock.
19304         * mono-debug.c: Properly lock when the debugger is not attached.
19305         (mono_debug_init): Release the initial lock if we're not running
19306         in the debugger.
19308 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19310         * marshal.c (emit_marshal_custom): Pass through NULL values without
19311         calling the custom marshalling routines.
19313         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
19314         conversion in structures. Fixes #74882.
19316 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
19318         * culture-info-table.h : zh-* cultures were missing.
19320 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
19322         * threads.c: Added a new event background_change_event which is signaled
19323         when a thread changes its background mode.
19324         Moved here several checks previously done in managed code. The checks
19325         require the thread lock, and using the thread lock in managed code
19326         can result in deadlocks.
19327         Merged Start_internal and Thread_internal into a single method. Now 
19328         Thread_internal does all work of creating and starting a thread.
19329         Added icalls for setting and getting the state of the object. Moved from
19330         managed code to avoid locking there.
19331         Added wait_for_tids_or_state_change() which is called instad of
19332         wait_for_tids when waiting for non-backround threads to end. This method
19333         will return if one of the threads ends or the background_change_event
19334         is signaled.
19335         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
19336         the background mode. This method signals the background_change_event
19337         event.
19338         * icall.c:
19339         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
19340         removed Start_internal.
19341         
19342 2005-05-11  Martin Baulig  <martin@ximian.com>
19344         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
19345         to order of some fields to get proper alignment on 64-bit machines.
19347 2005-05-11  Martin Baulig  <martin@ximian.com>
19349         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
19350         changes as they're broken and completely fuck up the debugger.
19352         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
19354 2005-05-10  Martin Baulig  <martin@ximian.com>
19356         * reflection.c (mono_reflection_generic_class_initialize): Don't
19357         call mono_class_setup_parent() here.
19359 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19361         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
19362         send/receive timeout use an integer in milliseconds. We were using a
19363         struct timeval.
19365 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19367         * locales.c:
19368         (internal_get_cultures): reserve the first slot of the array for the
19369         InvariantCulture, which will be filled in managed code.
19371 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
19373         * reflection.c (mono_image_fill_module_table): Initialize the
19374         GENERATION field as well.
19376 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19378         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
19379         Monitor.Enter on the object.
19381 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
19383         * threads.c: Enable the wait for running threads when exiting.
19384         * icall.c: Suspend all threads before exiting.
19386 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
19388         * assembly.c (mono_assembly_load_reference): Fix warning.
19390 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19392         * threadpool.c: changed the default number of threads per cpu. From now
19393         on, the default will be 20 + (5 * number of cpus) instead of 50.
19395 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
19397         * loader.c (mono_method_get_signature_full): Add locking here.
19399 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
19401         * appdomain.c: Moved methods for parsing and freeing assembly
19402         names to assembly.c.
19403         * assembly.c, domain-internals.h: Created public methods for parsing
19404         assembly names. Fixed mono_assembly_load_with_partial_name:
19405         it now finds the best match, taking into account the version,
19406         token and culture specified in the partial name. Also return
19407         the latest version if no version information is specified.
19409 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
19411         * threadpool.c: replace check for SocketAsyncCall class.
19413 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19415         * threadpool-internals.h:
19416         * Makefile.am: added threadpool-internals.h
19418         * threadpool.c: call mono_unhandled_exception on exceptions not handled
19419         that happen in threadpool threads (tested on MS).
19420         (mono_thread_pool_remove_socket): new function that dispatch any pending
19421         AIO call on a socket that is closing. By now only epoll really needs it,
19422         as select/poll wake up when the socket closes.
19425         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
19427 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
19429         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
19431 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
19433         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
19435 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
19437         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
19438         has an abort request, convert it into a suspend request.
19440 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
19442         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
19443         warning for the usage of `UnmanagedFunctionPointerAttribute' which
19444         is not supported yet.
19446 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19448         * image.c: register assemblies loaded from data (bundles) in the loaded
19449         assemblies hash. Fixes bug #74772.
19451 2005-04-29  Martin Baulig  <martin@ximian.com>
19453         * class.c (mono_type_get_name_recurse): Update to the new naming
19454         schema from the latest .NET 2.x beta2.
19455         (mono_class_setup_vtable_general): If we're a generic instance,
19456         copy the vtable from our generic type definition and inflate all
19457         the methods in it.
19459         * loader.c (find_method): Update to the new naming schema from the
19460         latest .NET 2.x beta2.
19462 2005-04-29  Raja R Harinath  <harinath@gmail.com>
19464         * class.c (mono_class_init): Add a mono_loader_unlock to the
19465         #74734 fix.
19467 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
19469         * icall.c (ves_icall_System_Environment_Exit): Remove the 
19470         suspend_all_other_threads () call for the time being, since it can hang.
19472         * threads.c (mono_thread_manage): Similarly, disable the waiting for
19473         the background threads to exit, since it can also hang.
19475         * class.c (mono_class_init): Applied patch from Ankit Jain 
19476         (radical@gmail.com). Avoid pending init errors when a field refers
19477         to a nested class using a typeref. Fixes #74734.
19479         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
19480         this for dynamic modules.
19482 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19484         * threads.c: don't wait for threads that are in the process of aborting
19485         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
19486         and waiting for background threads to finish. This makes xsp and
19487         mod-mono-server exit without random length delays and/or hangs.
19489 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19491         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
19493 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
19495         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
19496         dynamic types to prevent infinite loops. Fixes #74727.
19498         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
19499         ..._is_assignable_to.
19501 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
19503         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
19505 2005-04-25  Martin Baulig  <martin@ximian.com>
19507         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
19509         * domain.c
19510         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
19512         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
19514         * reflection.c (build_compressed_metadata): Set metadata header
19515         version to 2.0.
19517 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
19519         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
19520         number into an integral and a decimal part. Fixes #70473.
19522         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
19524 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
19526         * culture-info-table.h : reflected the latest locale-builder output.
19528 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19530         * threadpool.c: check for SuspendRequested too when deciding if
19531         mono_thread_interruption_checkpoint should be called.
19533 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19535         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
19536         * threads.c: remove interruption_mutex and use Interlocked instead. When
19537         suspending all the threads, wait for all the suspended events at once.
19538         If we're shutting down and get an APC that is going to be queued,
19539         call mono_thread_execute_interruption immediately, as the thread might
19540         be sleeping on a pthread condition or mutex.
19542         * icall.c: call mono_runtime_set_shutting_down before suspending the
19543         threads.
19545         Fixes bug #74693. And now xsp is happier when exiting.
19547 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
19549         * loader.c (mono_stack_walk): Fix #74690.
19551 2005-04-22  Martin Baulig  <martin@ximian.com>
19553         * mono-debug.h (MonoDebugMethodJitInfo): Added
19554         `MonoDebugMethodJitInfo *jit'.
19556         * mono-debug.c (mono_debug_read_method): Cache the
19557         MonoDebugMethodJitInfo in `address->jit'.
19558         (mono_debug_free_method_jit_info): New public method.
19560 2005-04-22  Martin Baulig  <martin@ximian.com>
19562         * class.c (mono_class_is_assignable_from): Disallow
19563         type parameter -> interface.
19565 2005-04-21  Dick Porter  <dick@ximian.com>
19567         * threads.c (mono_thread_create): Turn an assertion into an error.
19569 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
19571         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
19572         
19573         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
19574         Fix some gcc 4.0 warnings.
19576 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
19578         * file-io.c: fix alt dir separator char on unix systems
19579         and cleanup (fixes bug #71214).
19581 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
19583         * marshal.c: Use CALLVIRT instead of CALL when dispatching
19584         a call to a remote domain, since the method may be an
19585         interface method in the client domain. This fixes bug #74192.
19587 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19589         * threadpool.c: recv/send are now performed before going back to managed
19590         code to save one transition.
19592 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19594         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
19596         * metadata/threadpool.c: removed hack to workaround the bug above.
19598         Fixes bug #74618.
19600 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
19602         * reflection.c reflection.h: Fix handling of parameter defaults in
19603         dynamic methods. Also fixes handling of parameter attributes.
19604         Fixes #74609.
19606         * mono-debug.c (mono_debug_close_image): Fix warning.
19608 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19610         * socket-io.h: replaced old unused field with new 'blocking'.
19611         * threadpool.c: restore socket blocking state on windows(tm).
19613 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
19615         * icall.c: don't return the codebase in the AssemblyName[] returned by
19616         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
19617         * object-internals.h: Removed FIXME (fields were presents) and fixed
19618         versioncompat declaration.
19620 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19622         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
19623         not closed, so don't cleanup when it happens.
19625 2005-04-13  Chris Toshok  <toshok@ximian.com>
19627         * mono-debug-debugger.h: change prototype for
19628         mono_debugger_lookup_type.
19630         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
19631         this function, although it should probably be named
19632         mono_debugger_init_type.
19634 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19636         * threadpool.c: fix non-AIO case.
19638 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
19640         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
19641         the built-in profiler to measure just JIT compilation times.
19643 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19645         * threadpool.c: the epollfd might be closed by another thread at
19646         any time, so ignore EBADF at treat it as a "we're closing" sign.
19648 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19650         * threadpool.c: release the semaphores with a count equals to the number
19651         of working threads in both IO and regular pools. Fixed typo that messed
19652         up the count of IO pool threads. Don't initialize the pipe handles if
19653         we're using epoll.
19655 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19657         * threadpool.c: some systems don't like a NULL when deleting the socket
19658         from epoll.
19660 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19662         * threadpool.c: fix semaphore allocation.
19664 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19666         * threadpool.c: added epoll() based implementation for asynchronous IO
19667         that is used instead of the default poll() when available.
19668         It can be disabled by setting MONO_DISABLE_AIO.
19670 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19672         * threadpool.c: windows needs 'closesocket' and instead of returning
19673         0 when the stream is closed while in select, it returns -1. Fixes bug
19674         #74573.
19676 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
19678         * class.c (class_compute_field_layout): Fix the regression caused by
19679         the previous try.
19681 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19683         * threadpool.c: separate pool for socket async. IO.
19684         * threadpool.h: mono_max_worker_threads is not a global any more.
19686 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
19688         * class.c (class_compute_field_layout): Fix #74549.
19690 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19692         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
19693         use 2 connected sockets instead.
19695 2005-04-08  Miguel de Icaza  <miguel@novell.com>
19697         * mono-config.c: Add new entry point for mkbundle
19698         mono_config_parse_memory. 
19700 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19702         * threadpool.c: removed another unused function.
19704 2005-04-08  Ankit Jain  <radical@corewars.org>
19706         * reflection.c (get_default_param_value_blobs): Add 'types'
19707         parameter to get the types encoded in the constant table.
19708         (mono_param_get_objects): Use the type from the constant table,
19709         not the type of the parameter, when creating default values.
19710         Handle null default values correctly.
19712 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19714         * file-io.c:
19715         * file-io.h:
19716         * threadpool.c:
19717         * threadpool.h:
19718         * icall.c:
19719         * socket-io.c: removed dead code for async IO.
19721 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19723         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
19725         * threadpool.c: intercept socket async. calls and pass them to a thread
19726         that is polling and dispatching the job items to the threadpool as
19727         socket become ready. Fixes bugs #71217, #71933.
19729         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
19730         between char and short/ushort arrays.
19732         * socket-io.c: remove dead code.
19734 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19736         * locales.c,
19737           icall.c : removed InternalToUpper_Comp() and
19738           InternalToLower_Comp().
19740 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19742         * char-conversions.h : The tables were incorrectly generated. Should
19743           be generated against invariant culture.
19745 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
19747         * object.c (mono_runtime_invoke_array): Fix return value when 
19748         passing pre-created valuetype objects to ctors.
19750         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
19751         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
19752         Fixes #74338.
19754 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
19756         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
19757         only used with --security and hides the wrong corlib version error.
19759 2005-03-30  Joshua Tauberer  <tauberer@for.net>
19761         * class.c: Changed mono_class_name_from_token so that types
19762         outside of a namespace don't have an initial period.  Improved
19763         the g_warning message used in _mono_class_get when loading
19764         fails.
19765         * assembly.c: In mono_assembly_load_reference, when an assembly
19766         can't be found, "No such file or directory" is misleading and
19767         unhelpful because a few paths were checked for the presence of
19768         the assembly.  When that happens (ENOENT), display a nicer
19769         message indicating the directories that were searched.  In all
19770         cases, the warning is made easier to read for non-hackers.
19772 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
19774         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
19775         project/solution.
19776         * appdomain.h|domain.c: Removed inline from functions.
19777         * appdomain.c: Reduced warnings when compiling on windows.
19778         * icall.c: Fixed output_debug declaration to gunichar2*.
19779         * mono-config.c: Reduced warnings when compiling on windows.
19780         * rand.c: Added missing "windows.h". Added missing return value.
19781         * rawbuffer.c: Added missing winsock2.h for windows.
19782         * sysmath.h: Added mono-compiler.h header to allow/ease 
19783         compilation with non-GCC compilers.
19784         * threads.c: Fixed declarations to compile with VS.NET C compiler.
19785         Removed cast warnings.
19787         Adapted from the work of J Lothian (for VC6).
19789 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
19791         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
19792         from default_path.
19794 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
19796         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
19797         the 2.0 profile.
19799 2005-03-27  Raja R Harinath  <harinath@gmail.com>
19801         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
19802         has to be in $(exec_prefix).  $(prefix) is for arch-independent
19803         stuff, and it would probably use $(prefix)/share rather than
19804         $(prefix)/lib.
19806 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19808         * console-io.c: added 2 includes that might be missing.
19810 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
19812         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
19813         profile.
19815         * reflection.c (create_custom_attr): Allocate the params array using
19816         alloca so it gets GC tracking.
19818 2005-03-23  Chris Toshok  <toshok@ximian.com>
19820         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
19821         out some spew.
19823 2005-03-24  Raja R Harinath  <rharinath@novell.com>
19825         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
19826         changes to pick up any changes in prefix, etc.
19828 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
19830         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
19831         
19832         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
19833         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
19835 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
19837         * class-internals.h object-internals.h class.c reflection.c: Extend the
19838         mono_lookup_dynamic_token () function to return the class of the
19839         token as well. 
19841         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
19842         well. Fixes #73848.
19844 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
19846         * security-manager.c: Skip inheritance checks for intra-corlib
19847         class inheritance and method overrides. This skips a lot of checks
19848         and (anyway) permissions cannot work until corlib is loaded.
19850 2005-03-23  Martin Baulig  <martin@ximian.com>
19852         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
19853         MONO_TYPE_GENERICINST.  
19855 2005-03-23  Martin Baulig  <martin@ximian.com>
19857         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
19859 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
19861         * class.c: added locking comments to some functions.
19862         Cache the interface offsets arrays (saves about 20 KB
19863         of runtime memory in a typical app).
19864         Reduce the time overhead in mono_class_setup_supertypes ().
19866 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
19868         * icall.c: speedup and fix leaks in GetMethodsByName and
19869         GetPropertiesByName.
19871 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
19873         * reflection.c: some locking fixes.
19875 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
19877         * metadata.c: added missing break in case statement.
19879 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
19881         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
19882         typedbyref return values. Fixes #73941.
19884 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
19886         * security-manager.c|h: Added demandunmanaged method and 
19887         suppressunmanagedcodesecurity class to MonoSecurityManager.
19888         Renamed aptc class to allowpartiallytrustedcallers.
19890 2005-03-17  Martin Baulig  <martin@ximian.com>
19892         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
19894 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19896         * file-io.c: disabled file async. IO using aio_*. It uses the
19897         threadpool now. Workaround for bug #73718.
19899 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
19901         * assembly.h, mono-config.c: added code to deal with bundled configs
19902         for bundled assemblies.
19904 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
19906         * *.c, private.h: cleanup, removing old private.h header file.
19908 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
19910         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
19911         and throw_on_unmappable_char attributes.
19913 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
19915         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
19916         _ProcessName_internal.
19918 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
19920         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
19921         #73631.
19923         * icall.c threads.c threads-types.h: Remove slothash icalls as they
19924         are no longer used.
19926 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
19928         * object.c (compute_class_bitmap): Add support for generics. Fixes
19929         #73527.
19931 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
19933         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
19935 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19937         * filewatcher.c: commented out the code for windows watcher, as we don't
19938         use it (we use the managed implementation instead).
19940 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
19942         * object-internals.h (MonoThread): Remove 'unused1' field.
19944         * appdomain.c: Bump corlib version.
19946         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
19948         * reflection.c (mono_reflection_create_runtime_class): Remove the
19949         AssemblyBuilder.Save optimization since it causes too many problems.
19951 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
19953         * exception.c|h: Added mono_get_exception_reflection_type_load to
19954         create a ReflectionTypeLoadException object.
19955         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
19956         to return NULL is a InheritanceDemand fails during reflection. Updated
19957         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
19958         ReflectionTypeLoadException if an InheritanceDemand fails during 
19959         reflection. Added icall mapping for GetLinkDemandSecurity.
19960         * security-manager.c|h: Added ves_icall_System_Security_
19961         SecurityManager_GetLinkDemandSecurity internal call to return the
19962         class and methods permissions set for a LinkDemand. Removed unused
19963         fields in MonoSecurityManager.
19965 2005-03-10  Martin Baulig  <martin@ximian.com>
19967         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
19968         it's a generic instance.
19970 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
19972         * reflection.c (mono_get_object_from_blob): Applied patch from
19973         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
19975         * class.c (mono_class_is_assignable_from): Another try at fixing 
19976         #73469 without breaking anything.
19978 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
19980         * class.c: (mono_class_is_assignable_from): Revert the last changes
19981         since they don't work with generics.
19982         
19983         * class.c (mono_class_is_assignable_from): Fix build bustage.
19985         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
19986         the managed IsAssignableFrom method. Fixes #73469.
19988         * reflection.c (mono_reflection_call_is_assignable_from): New helper
19989         function.
19991 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
19993         * object.c (mono_load_remote_field_new): Fix returning uninitialized
19994         memory when the remoting callback does not sets the out arguments.
19995         Fixes #73007.
19997         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
19998         by mistake.
20000         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20002         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20004         * appdomain.c: Bump corlib version.
20006 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20008         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20009         function.
20011         * threads.c (mono_thread_attach): Detect threads which are not started
20012         by the GC pthread wrappers.
20014 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20016         * icall.c: Added new icall for RNG.
20017         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20018         single handle on Linux to access /dev/urandom and fix #73183.
20020 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20022         * object.c: setting the new vtable in a transparent proxy object must
20023         not change the GC descriptor.
20025 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20027         * object.c: fixed compilation without GCJ support.
20028         * reflection.c: for runtime-created types ensure klass->has_references
20029         is correct (bug #73215).
20031 2005-03-02  Martin Baulig  <martin@ximian.com>
20033         * class.c (mono_class_is_assignable_from): Make this work if
20034         `oklass' is a generic instance; fixes #72831.
20036 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20038         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20039         with hasthis set.
20040         
20041         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20043         * marshal.c: Reorganize native->managed marshalling code to also use
20044         the emit_marshal_... functions.
20046 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20048         * object.c: typed allocs have issues with bitmap sizes > 30,
20049         so check for max_set >= 30.
20051 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20053         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20054         managed code. Fixes #73012.
20056         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20058         * metadata.c reflection.c: Load/Emit elem_mult as well.
20059         
20060         * metadata.h (MonoMarshalSpec): Add comment.
20062         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20064         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20065         num_elem to -1 if not given.
20067         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20069         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20070         given values.
20072 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20074         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20076 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20078         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20080         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20082 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20084         * object.c: generalized the reference bitmap creation
20085         and added hooks for the new GC.
20086         * class-internals.c: removed the gc_bitmap field from MonoClass.
20088 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20090         * domain.c: help the compiler to produce better code
20091         in mono_jit_info_table_find ().
20093 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20095         * object.c: make all allocations look typed.
20097 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20099         * socket-io.c: load Mono.Posix if it's not loaded already
20100         (fixes bug#73033).
20102 2005-02-24  Martin Baulig  <martin@ximian.com>
20104         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20105         * reflection.c (dup_type): Likewise.
20107 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20109         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20110         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20112 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20114         * domain.c, threads.c, object-internals.h: make the critical thread
20115         local vars use the fast access mode (even when we're compiled in
20116         a lib). Provide accessors to be used by the jit during codegen.
20118 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20120         * appdomain.c: Changed hook functios behavior to include
20121         support for the reflection only assemblies. Some icalls were changed
20122         to support the mentioned assemblies too. Signatures of static methods
20123         try_assembly_resolve and real_load now have an additional parameter:
20124         refonly.
20126         * assembly.c: General changes to mono_assembly_ methods to support
20127         reflection only api. Functions mono_assembly_open, mono_assembly_load,
20128         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
20129         suffix, to support an additional gbool parameter to specify whether
20130         the assembli is reflection only or not. Created some new hook functions 
20131         to add support for reflection only assemblies. Signatures of static 
20132         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
20133         have now an additional parameter: refonly.
20135         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
20136         indicating whether the assembly is reflection only or not.
20138         * exception.c: Add mono_get_exception_invalid_operation.
20140         * icall.c: Throw an InvalidOperationException when trying to invoke
20141         a property/method/event, or trying to set/get the value of a field.
20142         Also add an icall to retrieve the ref_only flag to the
20143         MonoReflectionAssembly.
20145 2005-02-23  Chris Toshok  <toshok@ximian.com>
20147         Part of fix for #72827.
20148         * mono-debug.c (mono_debug_add_method): add lexical block data to
20149         the info we write.  Kind of a hack at the moment - we copy the
20150         lexical block info from the MonoDebugMethodInfo to the
20151         MonoDebugMethodJitInfo here, before writing it.
20152         (mono_debug_read_method): read the lexical block info.
20154         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
20156         * debug-mono-symfile.h: add lexical block support.
20158         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
20159         support.
20161 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20163         * loader.c (mono_lookup_pinvoke_call): Fix warning.
20165         * object.c (mono_runtime_free_method): Call mono_free_method () and
20166         put the TODOs there.
20168         * loader.c (mono_free_method): Free up most memory allocated for 
20169         dynamic methods.
20171 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20173         * reflection.c: properly flag a Type argument to a
20174         named custom attr value (bug #72248).
20176 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20178         * reflection.c: reduce code duplication in named custom
20179         attribute encoding.
20181 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
20183         * reflection.c: properly encode custom attrs of type object
20184         (bug #72649).
20186 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20188         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
20190 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
20192         * socket-io.c: load System.dll if it's not loaded already
20193         (bug #72850 and #70477).
20195 2005-02-21  Martin Baulig  <martin@ximian.com>
20197         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20198         generic instances.
20200 2005-02-21  Martin Baulig  <martin@ximian.com>
20202         * reflection.c (mono_image_build_metadata): We also need to
20203         "fixup" the MethodImpl table after we computed the final method
20204         indices.  Call fixup_methodimpl() to do that.
20205         (fixup_methodimpl): New private method.
20207 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20209         * assembly.c: special case mscorlib.dll (bug#72536),
20210         patch from Carlos Alberto Cortez.
20212 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
20214         * threads-types.h threads.c: Fix build bustage.
20216         * threads.c: Use a union for long<->double conversions.
20218         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
20219         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
20221         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
20222         containing the checkpoint call with NOT_TAKEN.
20223         
20224         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
20225         checkpoint before pushing the arguments, so they won't have to be
20226         spilled to stack.
20228 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20230         * domain.c, assembly.c, domain-internals.h: make some data
20231         const and relocation-free.
20233 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
20235         * object.c, appdomain.c, class-internals.h: introduce the
20236         MonoClassRuntimeInfo structure to hold the info needed to
20237         use a class at runtime. Made mono_class_vtable() lock-free
20238         for all the appdomains.
20240 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
20242         * metadata-internals.h, image.c: introduce a per-image mempool to
20243         be used for memory that has the same lifetime as the image.
20245 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
20247         * domain.c: In mono_init_internal(), instead of selecting the first
20248         runtime version supported by an executable, get a list of all
20249         supported versions and select the one for which an mscorlib exists
20250         (since even if the runtime supports a given version, it doesn't mean
20251         that the framework for that version is installed).
20252         Modified get_runtimes_from_exe to support this behavior.
20253         In supported_runtimes, added information about additional system
20254         assembly versions.
20255         
20256         * assembly.c: Added support for more than one system assembly version
20257         per runtime version. Updated the assembly list.
20258         In mono_assembly_remap_version, removed the initial version check,
20259         since we don't know to which version we need to compare until we
20260         get the version set on which the assembly is based.
20261         Moved the code for loading corlib into the new method
20262         mono_assembly_load_corlib(), so it can be used by the initialization
20263         code.
20264         
20265         * domain-internals.h: Updated data structures and added declaration
20266         for mono_assembly_load_corlib.
20268 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20270         * reflection.c (resolve_object): Fix the creation of the signature in 
20271         the SignatureHelper case.
20273         * assembly.c (mono_assembly_remap_version): Fix binary search.
20274         
20275 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
20277         * class.c: Added inheritance check when a method is overloaded (from a
20278         virtual method or when implementing an interface) and when a class is
20279         inherited. Added functions to set a failure for a class and to 
20280         retreive the exception from a failure.
20281         * class-internals.h: Added fields to MonoClass to keep the exception
20282         information status for inheritance (or other exceptions) to be thrown
20283         later (i.e. not at load time).
20284         * object.c: Throw the inheritance SecurityException when a type is to 
20285         be created with either class or method inheritance violations.
20286         * reflection.c|h: Fix when getting declsec from a class. Removed 
20287         unrequired code for class. Improved sanity in parameter naming.
20288         * security-manager.c|h: Added functions to check for class and method
20289         inheritance.
20291 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20293         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
20294         and has_finalize in dynamic types as well.
20296 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
20298         * culture-info-table.h : fixed currency format for en-GB (and so on).
20300 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
20302         * gc.c: ensure the GC handles never have 0 as a value.
20304 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20306         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
20307         a pointer to a struct to unmanaged code. Fixes #72625.
20309 2005-02-16  Martin Baulig  <martin@ximian.com>
20311         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
20313 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20315         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
20317 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20319         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
20321         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
20322         UnmanagedFunctionPointerAttribute, use it for determining calling convention
20323         etc. Fixes #71471.
20325         * reflection.c (mono_custom_attrs_get_attr): New helper function.
20327         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
20329 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
20331         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
20332         changes to make the current context a field in MonoThread.
20334 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20336         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
20337         the last change.
20338         
20339         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
20340         extracted from mono_marshal_get_native_wrapper.
20342         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
20343         to create wrappers around native functions.
20345         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
20346         delegates for arbitrary function pointers. Fixes #71472.
20348 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
20350         * threads.c: cleaned up the code a little.
20352 2005-02-15  Martin Baulig  <martin@ximian.com>
20354         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
20355         the data table.
20357         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
20358         allocate larger chunks if needed.
20360 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20362         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
20363         in by mistake.
20365 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
20367         * domain.c: keep the domains in an array and ensure the domain ids
20368         are kept small, so they can be used as indexes to domain-specific data
20369         with a small memory overhead.
20371 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20373         * icall.c: Handle byref types in Type icalls. Fixes #72544.
20375 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
20377         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
20379 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
20381         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
20383         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
20384         values.
20386         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
20387         
20388 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
20390         * domain-internals.h: add the hashtable here.
20392         * class-internals.h: Remove `info' from MonoMethod
20394         * domain.c: Add a new hashtable, jit_trampoline_hash
20396 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
20398         * object.c: don't set the value of static fields
20399         (fixes bug#72494).
20401 2005-02-11  Martin Baulig  <martin@ximian.com>
20403         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
20404         (mono_debug_add_method): Silently ignore the method if it's too big.
20405         (mono_debug_add_type): Likewise.
20407 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
20409         * threads.c, appdomain.c: remove #ifdefs from the code.
20411 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
20413         * metadata-internals.h: Added flags to MonoAssembly to cache the most
20414         common security informations. This allows us to stay in unmanaged code
20415         when doing LinkDemand and it's special cases (except for the first 
20416         time for initialization). The flags a very much used with --security.
20417         * reflection.c|h: Added code to get declarative security attributes 
20418         for LinkDemand and InheritanceDemand. This required to refactor the
20419         existing code for Demand.
20420         * security-manager.c|h: Added new method fields for the special cases
20421         of LinkDemand.
20423 2005-02-10  Martin Baulig  <martin@ximian.com>
20425         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
20426         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
20428 2005-02-10  Martin Baulig  <martin@ximian.com>
20430         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
20431         debugging code; this is almost a complete rewrite.
20433         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
20435 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20437         * domain.c, object.h: expose mono_string_equal () and 
20438         mono_string_hash ().
20439         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
20440         it's implemented in managed code.
20442 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20444         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
20445         lo leak objects between appdomains.
20447 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20449         * assembly.c: old compilers compilation fix from 
20450         robertj@gmx.net (Robert Jordan).
20452 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
20454         * class-internals.h: Little reminder for the future.
20456         * debug-helpers.c: Fix up wrapper_type_names
20458 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20460         * image.c, metadata-internals.h: when loading an image from a file,
20461         mmap all of it and use the same codepaths as when using a
20462         in-memory image: the code is simpler and we use less memory
20463         (both writable and readonly).
20465 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20467         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
20468         API to alloc runtime data structures that need to be tracked by the
20469         GC and contain pointers.
20470         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
20471         make the code more readable and eventually use a different GC.
20473 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
20475         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
20476         for out arguments.
20477         
20478 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
20480         * object.c: In release_type_locks(), don't release the cctor lock
20481         if it has already been released. This fixes a crash in the
20482         thread5 test.
20484 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20486         * gc.c, marshal.c, icall.c: register a delegate for finalization
20487         only when the native function pointer has been allocated for it.
20489 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20491         * object.c: cleaned up some code, allocate objects that are
20492         pointer free with the atomic malloc variant. Allocate memory
20493         for static data from the mempool if it's pointer-free.
20494         Allocate the bounds array at the end of the array data, when needed.
20495         * object-internals.h, object.h: move a private function in a private
20496         header.
20497         * class.c: handle missing case in tracking references in fields.
20499 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20501         * class.c, class-internals.h: keep track if a type has
20502         reference fields in either the instance or static fields.
20504 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
20506         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
20507         and renamed to MonoRuntimeInfo. Added fields to store the expected
20508         framework assembly version. Changed mono_get_framework_version and
20509         mono_get_runtime_version for a single mono_get_runtime_info method.
20510         
20511         * assembly.c: Added method to remap system assembly versions to the
20512         current executing runtime version. Removed old mapping code.
20513         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
20514         
20515         * icall.c, reflection.c: Track api changes.
20517 2005-02-06  Miguel de Icaza  <miguel@novell.com>
20519         * loader.c (method_from_memberref): Improve error reporting,
20520         produce the class name instead of the typeref/typedef index. 
20522 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
20524         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
20526 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20528         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
20529         stdcall and charset name mangling.  Reorganize the code and add
20530         some tracing stuff.
20532 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20534         * monodiet.c: More iters!
20536         * marshal.c: Iter usage.
20538         * icall.c: Iter usage.
20540         * object.c: Use iters.
20542         * debug-helpers.c: More iters
20544 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20546         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
20547         under win32.
20549 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20551         * mono-debug-debugger.c: use iters
20553         * class.c, class-internals.h: mono_class_setup_events is static
20554         now
20556         * All callers: use iters
20558 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20560         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
20561         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
20563 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20565         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
20567         * marshal.h: Add prototypes for ldfld/stfld_remote.
20569         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
20570         this is called during startup.
20571         
20572 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
20574         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
20575         MonoThreadsSync struct private in monitor.c. Changed the way
20576         MonoThreadsSync is allocated so it's faster and there is no
20577         need to keep track of it with a finalizer and it uses less memory.
20578         This also finally allows us to allocate mono objects as ptrfree when
20579         there are no reference fields.
20581 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
20583         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
20584         disappearing link to the GC interface and use them to simplify
20585         the gchandles code.
20587 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20589         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
20590         stfld_remote which call mono_load/store_field_new. This allows methods
20591         calling ldfld/stfld wrappers to be AOTed.
20593         * console-io.c: Include sys/filio.h under solaris.
20594         
20595         * console-io.c: Include curses.h if needed correctly.
20597 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20598         
20599         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
20600         method->klass as well.
20602         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
20604         * class.c (mono_class_init): Switch on lazy initialization of 
20605         methods.
20607         * class.c (mono_class_get_finalizer): Handle the case when the 
20608         finalizer is inherited.
20610 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20612         * console-io.c: <curses.h> is needed by term.h on solaris.
20614 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
20616         * icall.c, class-internals.h, monodiet.c, class.c: Remove
20617         mono_class_setup_properties where possible. Remove this ftn from
20618         the header file, and make it static.
20620 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20622         * loader.c: Add missing setup_... call.
20624         * class.c: Add missing setup_... calls.
20626         * class.c (mono_class_init): Switch on lazy initialization of 
20627         the generic vtable.
20628         
20629         * class.c (mono_class_init): Fix generics broken by the recent changes.
20631         * monodiet.c (handle_type): Add missing setup_... calls.
20633         * class.c: Back out garbage in previous patch.
20634         
20635         * class.c: Add missing setup_... calls.
20637         * class.c (mono_class_get_method_from_name_flags): Avoid calling
20638         mono_class_setup_methods () if possible.
20640         * class-internals.h (MonoClass): Add 'has_cctor' flag.
20642         * class-internals.h (MonoCachedClassInfo): New structure.
20644         * class.c: Initialize properties and events fields of MonoClass lazily.
20646         * class.c: Add infrastructure for lazily initializing the methods and
20647         vtable fields of MonoClass. Not yet used.
20649         * class.c (mono_class_get_finalizer): New helper function.
20651         * class.c: Add infrastructure for loading some class related data from
20652         an AOT file.
20654         * object.c: Add infrastructure for initializing the vtable from data
20655         in the AOT file.
20657         * gc.c (run_finalize): Use mono_class_get_finalizer ().
20659         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
20660         appropriate initialization function before accessing parts of the
20661         MonoClass structure.
20663         * marshal.c: Fix warnings.
20664         
20665         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
20667         * mono-debug-debugger.c (get_exception_message): Use 
20668         mono_class_get_method_from_name_flags ().
20670 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
20672         * reflection.c, appdomain.c: Replace a few manual searches that
20673         Zoltan missed. (Paolo approved this part of my initial patch).
20675 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
20677         * profiler.c: disable recording statistical events at report time.
20679 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20681         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
20682         to byteswap arrays of enum values, too (bug #72080).
20684 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
20686         * appdomain.c (set_domain_search_path): Allow this to be called if
20687         domain->setup is not yet set.
20689         * loader.c (mono_method_get_index): New helper function.
20691         * loader.c reflection.c: Use mono_method_get_index ().
20693         * class.c (mono_class_get_method_from_name_flags): New helper method.
20695         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
20696         this.
20698         * class.c (mono_class_get_cctor): New helper method.
20700         * string-icalls.c object.c class.c marshal.c reflection.c: Use
20701         mono_class_get_method () to look up methods.
20703 2005-02-01  Miguel de Icaza  <miguel@novell.com>
20705         * console-io.c: Fix the build, this should work on Windows.
20707 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
20709         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
20710         be set to null to keep things valid
20712 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20714         * icall.c: added Console 2.0 icalls.
20715         * Makefile.am: added console-io.[ch]
20716         * console-io.[ch]: internal calls for Console 2.0 API.
20718 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20720         * class.c: make sure we consider all the interfaces
20721         when calculating max_interface_id (bug found by
20722         Jeroen Frijters running ikvm).
20724 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
20726         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
20727         valuetype fields to null.
20729         * object.c (set_value): Ditto. Fixes #71669.    
20731 2005-01-31  Martin Baulig  <martin@ximian.com>
20733         * metadata.c (mono_metadata_has_generic_params): New public
20734         function; checks whether something is a generic method.
20736 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20738         * appdomain.c: fix infinite recursion when adding assemblies.
20740 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
20742         * object.c: Fix small typo to return all items for Environment.
20743         GetCommandLineArgs.
20745 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20747         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
20748         reflection.c: more domain and assembly-unload related fixes
20749         and memory leaks plugs.
20751 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
20753         * 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.
20755 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
20757         * loader.c (mono_method_signature): Make this method lazy
20758         (mono_get_method_from_token): Don't computate the signature here.
20760         Doing this saves quite a bit of memory. I got 90 kb on starting up
20761         monodoc. It should also save some disk reads on startup.
20763         * *: MonoMethod->signature might be NULL now. You *MUST* use
20764         mono_method_signature.
20766 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
20768         * object.c (mono_runtime_get_main_args): Return an array from the
20769         current domain here. Fixes #71938.
20771 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
20773         * monitor.c: formatting changes to comply with the
20774         mono coding style and remove #ifdefs from the code.
20776 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20778         * metadata.c, private.h: remove some unneeded data
20779         and use a more compact representation for table schemas.
20781 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
20783         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
20784         to get a better distribution in hash tables.
20785         * *.c: use mono_aligned_addr_hash() where appropriate.
20786         * assembly.c: make var static.
20788 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
20790         * domain-internals.h: Put MonoJitInfo on a diet.
20792         * domain.c: Fix a warning.
20794 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20796         * gc.c: rework the gc handles code to reuse handles
20797         when freed.
20799 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
20801         * domain.c: fixed long standing bug in mono_string_equal() which
20802         was brought to light with the ldstr changes.
20804 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
20806         * reflection.c: Remove warning by adding missing include for marshal.h
20808 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20810         * domain.c, object.c: change the ldstr_table to hold
20811         MonoString* as keys: makes the runtime isinterned lookup
20812         faster and simplifies memory management.
20814 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
20816         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
20817         possible to add imperative security checks before calling the icall.
20818         * reflection.c: Return security attributes on the original MonoMethod
20819         (and not the wrapped one). This fix permissions on icalls.
20821 2005-01-25  Dick Porter  <dick@ximian.com>
20823         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
20824         the check for mktime() support actually test the mktime() return
20825         value.  "Fixes" bug 71682, though the output is still different to
20826         MS.
20828 2005-01-25  Martin Baulig  <martin@ximian.com>
20830         * class.c (mono_class_is_assignable_from): Make this work for
20831         generic instances.
20833 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
20835         * marshal.c (mono_string_utf8_to_builder)
20836         (mono_string_builder_to_utf16): We might not have ownership of the
20837         string. In thise case, we need to create a new buffer.
20839         * object-internals.h (mono_stringbuilder_capacity): sb->str might
20840         be null, in which case, use the default capacity.
20842 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20844         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
20845         GC events to the profiler.
20847 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20849         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
20850         if you don't want the GC to run.
20852 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
20854         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
20855         start providing a GC API and keeping different implementations in
20856         their own file.
20857         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
20859 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
20861         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
20862         mmap rather than allocating a huge buffer.
20863         (mono_debug_close_mono_symbol_file): Free the buffer allocated
20864         above.
20866 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
20868         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
20869         and CheckExecutionRights.
20870         * reflection.c|h: Keep the index of the declarative security to be 
20871         used, instead of the pointer, when AOT compiler is used. Also add 
20872         class initialization when requesting demands.
20873         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
20874         CheckExecutionRights. Both properties are now FALSE by default, and
20875         unmodifiable, unless the --security option is used.
20877 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20879         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
20880         reflection.c: properly refcount images and assemblies, many leaks fixed.
20882 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20884         * threadpool.c: increase the timeout for threads in the thread pool to
20885         10s.  Fixes bug #67159.
20887 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
20889         * class-internals.h: Sun's compiler insists on explicit
20890         signed on bit fields to handle then correctly.
20892 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
20894         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
20895         Make the size of the array fit only the number of invalid path
20896         chars that we have.
20898         * class.c (_mono_class_get): Improve the error reporting when a
20899         class referenced is not found, to assist debugging. 
20901 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
20903         * threads.c: fix off-by-one error.
20904         * domain.c: free data allocated in the domain.
20906 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
20908         * reflection.c (mono_method_body_get_object): Fill out exception info
20909         as well.
20911         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
20912         structure.
20913         
20914 2005-01-19  Martin Baulig  <martin@ximian.com>
20916         * loader.c (mono_get_method_constrained): Make this work again.
20918 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
20920         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
20921         guint16 to match the managed side.
20923         * reflection.c (mono_reflection_body_get_object): Fill out local
20924         variables array.
20926         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
20927         as well.
20929         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
20930         'local_var_sig_token'.
20932 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
20934         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
20935         System.Drawing.
20937         * reflection.c (mono_method_body_get_object): Handle abstract and
20938         runtime methods.
20940 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
20942         * marshal.c, loader.c, class-internals.h, reflection.c:
20943         store the emthod data for a wrapper in an array instead of a list.
20945 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
20947         * marshal.c: change the code to allocate memory more
20948         conservatively for method wrappers.
20950 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
20952         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
20953         fields from MonoClass to the marshal info structure where they belong.
20955 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20957         * class.c, object.c, class-internals.h, marshal.c: rearrange
20958         some fields and tweak some types to lower memory usage.
20960 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
20962         * threads.c (signal_thread_state_change): Handle the case when the
20963         target thread is the current thread.
20965         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
20967         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
20968         emit_ptr_to_object_conv. 
20970         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
20971         marshalling. Fixes #71352.
20973 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
20975         * metadata.h, blob.h: move table enum to blob.h so it can be included
20976         in any header.
20977         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
20978         cut the size of MonoImage/MonoDynamicImage.
20980 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
20982         * profiler.c (mono_profiler_install_simple): Fix default arguments.
20984 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20986         * reflection.c, reflection.h, icall.c: add a function to check
20987         if an attribute type is defined for a metadata object.
20989 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
20991         * object-internals.h: Added some needed fields from StringBuilder class.
20992         * marshal.c: Set the maxCapacity when creating a StringBuilder.
20994 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
20996         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
20997         threads before shutting down the runtime.
20999         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21001 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21003         * object-internal.h, threads.c: implement stacksize and 
21004         parameterized thread start functionality (requires
21005         matching corlib). Marked broken code for later removal.
21007 2005-01-12  Martin Baulig  <martin@ximian.com>
21009         * class-internals.h (MonoGenericClass): Moved the `initialized'
21010         flag to MonoDynamicGenericClass, removed `init_pending'.
21011         (MonoGenericInst): Added `is_reference' flag.
21013 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21015         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21016         inside the MSDOS header. Fixes #71201.
21018         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21019         gc thread.
21020         (mono_domain_finalize): Ditto.
21022 2005-01-12  Martin Baulig  <martin@ximian.com>
21024         * class.c (mono_get_shared_generic_class): Use the cache for
21025         non-dynamic generic classes.
21027         * class-internals.h (mono_class_create_generic_2): Removed
21028         function prototype, this function is now static inside class.c.
21030         * class.c (mono_class_create_generic_2): Made this static, only
21031         call it from mono_class_init() and mono_class_setup_parent().
21032         (collect_implemented_interfaces_aux): Call mono_class_init() on
21033         the interfaces we collect.
21034         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21036 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21038         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21039         it a real thread handle.
21041         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21042         MonoJitExceptionInfo, since each catch clause needs its own variable.
21043         
21044 2005-01-11  Dick Porter  <dick@ximian.com>
21046         * image.c (mono_pe_file_open): New variant on mono_image_open()
21047         that does not set up the CLI metadata; used for FileVersionInfo so
21048         it can get the data for windows binaries too.
21049         
21050         * process.c (process_read_string_block): Don't read off the end of
21051         the StringTable block.
21053         These both fix bug 70766.
21055 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21057         * gc.c: set some fields to NULL at GC cleanup time.
21058         * threads.c: if we quit the main thread, call exit ().
21060 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21062         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21064 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21066         * threads.h, threads.c, object.c: added accessor and settor for
21067         main_thread. Handle it specially when exiting from it: wait
21068         for other foreground threads to exit.
21070 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21072         * process.c, verify.c: remove some bloat.
21074 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21076         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21077         the calling convention to cdecl under win32.
21079 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21081         * object.c (mono_object_get_size): New function to get the size of
21082         an object instance.
21084         * profiler.c (simple_allocation): Use above.
21086 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21088         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21089         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21090         get an appdomain by it's id and we can't assume the root's id is 0).
21091         * domain-internals.h: Change the function prototype to match.
21092         * icall.c: Change the icall table for AppDomain.
21094 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21096         * locales.c (string_invariant_compare_char): Only compute
21097         GUnicodeTypes in the case where we need them.  Test for ordinality
21098         first and return if so.
21100         From the commit:
21102                 /*
21103                  * FIXME: here we must use the information from c1type and c2type
21104                  * to find out the proper collation, even on the InvariantCulture, the
21105                  * sorting is not done by computing the unicode values, but their
21106                  * actual sort order.
21107                  */
21109 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21111         * loader.c: for P/Invoke methods, allow the "Internal" shared
21112         library name to refer to the calling process symbol namespace.
21114 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21116         * Makefile.am: Add the security manager to the build.
21117         * security-manager.c|h: New. Initialization of the security manager.
21119 2005-01-07  Dick Porter  <dick@ximian.com>
21121         * threads.c: 
21122         * monitor.c: Update thread state during Monitor and WaitHandle
21123         waits.  Fixes bug 71031.
21125 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21127         * reflection.c (property_encode_signature): Correctly handle when the
21128         property has no methods.
21130 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21132         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
21133         
21134         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
21135         fields from mb, not rmb. Fixes #71017.
21137         * marshal.c (emit_ptr_to_str_conv): Add support for 
21138         ByValTStr -> string conversion. Fixes #71015.
21140         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
21142         * mempool.c (mono_mempool_contains_addr): New helper function.
21144 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21146         * metadata.c (mono_metadata_compute_size): Fix size calculation of
21147         HasSematics encoded fields.
21148         
21149         * metadata.c (mono_type_to_unmanaged): Improve error message for 
21150         invalid string marshalling.
21152         * metadata.c: Fix warnings.
21153         
21154 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21156         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
21157         profiler support.
21159 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21161         * domain.c object.c domain-internals.h: Revert part of r38077 since the
21162         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
21163         tests.
21165 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
21167         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
21168         so methods containing these can be AOTed.
21170 2005-01-03  Martin Baulig  <martin@ximian.com>
21172         * loader.c (find_method): Removed the hack for generic instances.
21173         (method_from_memberref): If our parent is a generic instance, pass
21174         its generic type definition to find_method() and then inflate the
21175         method.
21176         (mono_get_method_constrained): Pass the generic type definition to
21177         find_method() and inflate the method later.
21179         * class-internals.h (MonoStats): Added `generic_class_count'.
21181         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
21182         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
21184         * reflection.c (mono_custom_attrs_from_params): Don't ignore
21185         generic type definitions.
21187 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
21189         * loader.c icall.c: Fix warnings.
21191 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
21193         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
21194         blittable types. Fixes #70864.
21196 2004-12-29  Martin Baulig  <martin@ximian.com>
21198         * icall.c
21199         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
21201         * reflection.c (mono_method_get_object): Create a
21202         "System.Reflection.MonoGenericMethod" for inflated methods; don't
21203         call mono_get_inflated_method().
21205         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
21207 2004-12-27  Martin Baulig  <martin@ximian.com>
21209         * class-internals.h (MonoMethod): Added `is_inflated' flag.
21210         (MonoMethodInflated): Added `inflated' field.
21212         * class.c (mono_class_inflate_generic_method): Don't really
21213         inflate the method here; just set the `is_inflated' flag in the
21214         MonoMethod.
21215         (mono_class_get_inflated_method): Actually inflate the method here
21216         if it's not already inflated; we use the MonoMethodInflated's new
21217         `inflated' field as a cache.
21219 2004-12-26  Martin Baulig  <martin@ximian.com>
21221         * class.c
21222         (inflate_generic_class): Moved some code out of inflate_generic_type().
21223         (mono_class_inflate_generic_method): If we're already inflated,
21224         inflate the context and use the declaring method; ie. make sure
21225         the declaring method of an inflated method is always the generic
21226         method definition.
21227         (mono_class_create_from_typedef): Create
21228         `class->generic_container->context->gclass'.
21230 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
21232         * metadata-internals.h, marshal.c, reflection.c: More
21233         MonoGHashTable->GHashTable.
21235         * domain-internals.h, class.c: Change MonoGHashTable's into
21236         GHashTables for some cases where no gc stuff is used
21238         All users: update apis
21240 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
21242         * metadata.c (builtin_types): Make this `const'. Makes this get
21243         put into the shareable section.
21244         (mono_metadata_init): Casts to make gcc happy.
21246 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
21248         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
21250 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
21252         * icall.c: Added an internal call to retrieve the position and length
21253         of assembly-level declarative security attributes (RequestMinimum, 
21254         RequestOptional and RequestRefuse). This is used by the Assembly class
21255         to re-create the corresponding permission sets.
21257 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
21259         * marshal.c: fix the stelemref wrapper to be type correct
21260         (and faster).
21262 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
21264         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
21265         to do key & 0x7fffffff. Hashtable already does this. It just
21266         results in longer code.
21268 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
21270         * appdomain.c: Bump corlib version.
21271         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
21272         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
21273         * reflection.c|h: Add functions to get declarative security infos
21274         (blob position and length) for assemblies, classes and methods.
21276 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
21278         * reflection.c: sort the constant table (bug #70693).
21280 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
21282         * object-internals.h, threads.c, domain.c: add accessors for
21283         the MonoThread and MonoDomain tls keys.
21285 2004-12-18  Martin Baulig  <martin@ximian.com>
21287         * class.c (inflate_generic_type): If we're inflating a generic
21288         instance, set `ngclass->context->container = context->container';
21289         ie. the container we inflated into.
21291         * metadata.c (mono_metadata_parse_generic_param): Reflect above
21292         inflate_generic_type() changes.
21294 2004-12-17  Martin Baulig  <martin@ximian.com>
21296         * class-internals.h
21297         (MonoGenericClass): Replaced `MonoType *generic_type' with
21298         `MonoClass *generic_class'.  Removed `dynamic_info'; if
21299         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
21300         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
21302 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
21304         * exception.c (mono_exception_from_token): New helper function.
21306 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
21308         * assembly.c (mono_assembly_load_with_partial_name): Call 
21309         mono_assembly_loaded before invoking the preload hooks. Fixes
21310         #70564.
21312         * object-internals.h (MonoThread): Change culture_info and 
21313         ui_culture_info into an array.
21315         * threads.c: Cache culture info objects from more than one appdomain.
21317         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
21318         current UI culture.
21320 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
21322         * threads.h threads.c appdomain.c: Clear the culture_info field of
21323         all threads during unloading if they point to an object in the dying
21324         appdomain.
21326 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
21328         * culture-info.h (TextInfoEntry): New struct
21329         * object-internals.h: sync with managed
21330         * locales.c: fill the `text_info_data' field
21331         * culture-info-tables.h: update
21333 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
21335         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
21336         collector.
21338 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
21340         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
21341         (ves_icall_ModuleBuilder_getMethodToken): Ditto
21343 2004-12-12  Martin Baulig  <martin@ximian.com>
21345         * mono-debug-debugger.c (write_type): If we're an enum and the
21346         builtin types have already been initialized, call mono_class_init().
21348 2004-12-11  Martin Baulig  <martin@ximian.com>
21350         * metadata.c (mono_metadata_load_generic_params): Added
21351         `MonoGenericContainer *parent_container' argument; automatically
21352         compute `container->is_method'; pass the correct owner to
21353         get_constraints().      
21355         * reflection.c (compare_genericparam): Sort the GenericParam table
21356         according to increasing owners. 
21358 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
21360         * profiler.c: allow disabling the default profiler.
21362 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
21364         * decimal.c, icall.c: allow disabling System.Decimal support.
21366 2004-12-09  Marek Safar <marek.safar@seznam.cz>
21368         * reflection.c: Add support for null attribute arguments.
21370 2004-12-09  Martin Baulig  <martin@ximian.com>
21372         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
21373         names to get rid of compiler warnings.
21375 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21377         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
21378         mono_marshal_load_type_info (). Fixes #69625.
21379         (mono_marshal_get_ptr_to_struct): Likewise.
21381 2004-12-08  Martin Baulig  <martin@ximian.com>
21383         * mono-debug.h: Bumped version number to 47.
21385         * mono-debug-debugger.c
21386         (mono_debugger_event_handler, mono_debugger_event): Take two
21387         guint64 arguments insteed of a gpointer and a guint32.  
21389 2004-12-08  Martin Baulig  <martin@ximian.com>
21391         * debug-mono-symfile.h
21392         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
21393         `address' to `native_offset'.
21395 2004-12-08  Martin Baulig  <martin@ximian.com>
21397         * class.c (mono_class_create_from_typespec): Only inflate if we
21398         either have `context->gclass' or `context->gmethod'.
21400 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21402         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
21404         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
21406         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
21408         * reflection.c (mono_assembly_get_object): Remove the workaround put
21409         in for the release.
21410         
21411         * appdomain.c: Use the corlib_internal field from MonoAssembly.
21413         * appdomain.c: Bump corlib version.
21415         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
21416         be visible in other appdomains.
21418 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
21420         * threads.c: Interlocked inc and dec for longs were messed up,
21421         use a KISS based impl for this. Fixes 70234
21423 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
21425         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
21427 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
21429         * icall.c: fix to follow policy not to allow struct
21430         arguments in icalls.
21432 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21434         * process.c: make the patch that handles spaces in file paths work
21435         on mono/windows too.
21437 2004-12-06  Martin Baulig  <martin@ximian.com>
21439         * class.c (mono_class_create_generic): Call
21440         mono_class_setup_supertypes() if we're dynamic.
21441         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
21443 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
21445         * object-internals.h: Add new fields to MonoThread.
21447         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21449         * icall.c threads-types.h threads.c: Add new icalls.
21451         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
21453         * object-internals.h (MonoReflectionAssembly): Sync object layout with
21454         managed side.
21456         * appdomain.c: Bump corlib version.
21458         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
21459         internal assemblies. Fixes #69181.
21461 2004-12-05  Martin Baulig  <martin@ximian.com>
21463         * class.c (mono_class_inflate_generic_signature): Make this a
21464         no-op if `context' is NULL or we don't have any type parameters;
21465         also copy `sentinelpos'.        
21467 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
21469         * image.c: Add unbox_wrapper_cache.
21471         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
21473         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
21474         function generator.
21475         
21476         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
21477         Fixes #70173.
21479         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
21480         
21481 2004-12-04  Martin Baulig  <martin@ximian.com>
21483         * loader.c (mono_method_get_signature_full): New public function;
21484         like mono_method_get_signature(), but with an additional
21485         `MonoGenericContext *' argument.
21487         * class.c (mono_class_inflate_generic_signature): Formerly known
21488         as inflate_generic_signature(); make this public.
21490 2004-12-04  Martin Baulig  <martin@ximian.com>
21492         * metadata.c
21493         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
21494         instead of a `MonoGenericContainer *'.  
21495         (mono_metadata_parse_array_full): Likewise.
21496         (mono_metadata_parse_signature_full): Likewise.
21497         (mono_metadata_parse_method_signature_full): Likewise.
21498         (mono_metadata_parse_generic_inst): Likewise.
21499         (mono_metadata_parse_generic_param): Likewise.
21500         (mono_metadata_parse_mh_full): Likewise.
21501         (mono_type_create_from_typespec_full): Likewise.
21503 2004-12-03  Martin Baulig  <martin@ximian.com>
21505         * class-internals.h (MonoGenericContainer): Replaced the
21506         `MonoGenericContext * pointer with a `MonoGenericContext'
21507         structure and made it the first element.
21509 2004-12-03  Martin Baulig  <martin@ximian.com>
21511         * class.c
21512         (inflate_generic_type): Set the `context->container' when creating
21513         a new MonoGenericContext.
21514         (mono_class_inflate_generic_method): Likewise.
21515         (mono_class_create_from_typespec): Just use `context->container'
21516         to get the container.
21518         * loader.c (method_from_methodspec): Set `context->parent' from
21519         `context->container' - and if that's a method container, use its
21520         parent.  Also set the `context->container' when creating a new
21521         MonoGenericContext.
21522         (mono_get_method_from_token): Use just `context->container' to get
21523         the container.
21525         * metadata.c (do_mono_metadata_parse_generic_class): Also set
21526         `gclass->context->container'.
21528         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
21529         the `context->container' when creating a new MonoGenericContext.
21531 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
21533         * reflection.c (compare_genericparam): Sort params with identical
21534         owner by their number. Fixes gen-111 on sparc.
21536 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21538         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
21539         around the domain changes.
21541         * appdomain.c (mono_domain_unload): Handle the case when the thread
21542         calling Unload is itself being aborted during unloading. Fixes #70022.
21544         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
21546         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
21547         checkpoint_func as an icall so it gets a wrapper.
21548         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
21549         in the cross-appdomain wrappers too.
21551         * threads.c (mono_thread_has_appdomain_ref): Make this public.
21553         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
21555         * reflection.c: Fix some memory leaks.
21556         
21557 2004-12-02  Martin Baulig  <martin@ximian.com>
21559         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
21561         * metadata.c (generic_class_cache): New static hashtable.
21562         (mono_metadata_lookup_generic_class): New public method.
21564 2004-12-02  Martin Baulig  <martin@ximian.com>
21566         * class.c (mono_class_create_from_typedef): Call
21567         mono_class_setup_parent() and mono_class_create_mono_type() before
21568         parsing the interfaces.
21570 2004-12-02  Martin Baulig  <martin@ximian.com>
21572         * metadata.c (generic_inst_cache): New static hashtable.
21573         (mono_metadata_lookup_generic_inst): New public function.
21574         (mono_metadata_inflate_generic_inst): New public function.
21575         (mono_metadata_parse_generic_inst): New public function.
21576         (do_mono_metadata_parse_generic_class): Use the new
21577         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
21578         since this'll also use the cache.
21580         * reflection.c (mono_reflection_bind_generic_method_parameters):
21581         Use mono_metadata_lookup_generic_inst() to use the new cache.
21583         * class.c (inflate_mono_type): Use
21584         mono_metadata_inflate_generic_inst() to inflate a generic
21585         instance; this'll also use the new cache.
21587         * loader.c (method_from_methodspec): Use
21588         mono_metadata_parse_generic_inst() and
21589         mono_metadata_inflate_generic_inst() rather than parsing it
21590         manually, so we can use the new cache.
21592 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21594         * threads.c (wait_for_tids): Do not incorrectly free threads when 
21595         the wait times out.
21597 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21599         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
21600         iter->args based on whether parameters are passed in registers (i.e.
21601         MONO_ARCH_REGPARMS is defined)
21603 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
21605         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
21606         the exception message. Fixes #70070.
21607         (method_from_methodspec): Fix warnings.
21609 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21611         * process.c: (complete_path) return the path quoted
21613 2004-12-01  Martin Baulig  <martin@ximian.com>
21615         * class-internals.h (MonoGenericInst): New structure.
21616         (MonoGenericClass): Replaced `type_argc', `type_argv' and
21617         `is_open' with `MonoGenericInst *inst'.
21618         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
21619         `is_open' with `MonoGenericInst *inst'.
21621 2004-11-30  Martin Baulig  <martin@ximian.com>
21623         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
21625         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
21626         to `generic_class_cache'.
21628         * metadata.c
21629         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
21630         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
21631         (mono_generic_inst_is_valuetype): Renamed to
21632         mono_generic_class_is_valuetype().
21634         * class-internals.h
21635         (MonoGenericInst): Renamed to MonoGenericClass.
21636         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
21637         (MonoClass): Renamed `generic_inst' to `generic_class'.
21638         (MonoGenericContext): Renamed `ginst' to `gclass'.
21640         * object-internals.h
21641         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
21643         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
21644         mono_reflection_generic_class_initialize().
21646         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
21647         now known as "System.Reflection.MonoGenericClass".
21648         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
21650 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
21652         * class-internals.h: Added a flag field to MonoClass to cache the
21653         declarative security attributes actions associated with the class.
21654         * domain-internals.h: Added booleans to MonoJitInfo to cache the
21655         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
21656         applicable to the JITted method.
21657         * reflection.c|h: Added functions to extract (as flags) which security
21658         actions are available (declaratively) for a method, class or assembly.
21659         * metadata.c|h: Added functions to search the declarative security
21660         table in the metadata.
21661         
21662 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
21664         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
21665         EXPORTEDTYPES are already in the class name cache, so there is no
21666         need to add extra code here to look at them. Just removes a bit of
21667         cruft.
21669         (ves_icall_System_Environment_get_TickCount): No need for #if
21670         WINDOWS. We already have the code in io-layer.
21672 2004-11-28  Martin Baulig  <martin@ximian.com>
21674         * loader.c
21675         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
21676         Fixes gen-112.cs.
21678 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
21680         * assembly.c (do_mono_assembly_open): Instead of having a
21681         conditional WITH_BUNDLE, incorporate support for bundles here, by
21682         having a global `bundles' variable holding a pointer to the actual
21683         bundles. 
21685         (mono_register_bundled_assemblies): New API call used by the
21686         bundle code. 
21688         See mkbundle.1 for details.
21689         
21690 2004-11-27  Martin Baulig  <martin@ximian.com>
21692         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
21693         the vtable for generic methods.
21695 2004-11-26  Martin Baulig  <martin@ximian.com>
21697         * metadata.c
21698         (mono_metadata_generic_method_hash): New public function.
21699         (mono_metadata_generic_method_equal): Likewise.
21701         * class-internals.h
21702         (MonoGenericContainer): Added `GHashTable *method_hash'.
21704         * reflection.c (ReflectionMethodBuilder): Added
21705         `MonoGenericContainer *generic_container'.
21706         (reflection_methodbuilder_to_mono_method): Don't create a new
21707         MonoGenericContainer each time we're called.
21708         (mono_reflection_bind_generic_method_parameters): Use
21709         `container->method_hash' to cache the results so we don't create a
21710         different method if we're called several times with the same
21711         arguments.
21713         * loader.c (method_from_methodspec): Use the new
21714         `container->method_hash' here, too.
21716 2004-11-26  Martin Baulig  <martin@ximian.com>
21718         * class.c (inflate_generic_signature): Correctly compute
21719         `res->has_type_parameters'.
21720         (mono_class_vtable): Use the `has_type_parameters' flag to
21721         determine whether we're a generic method.
21723         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
21725 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
21727         * object.c (mono_runtime_run_main): Fix a small memory leak.
21729 2004-11-25  Martin Baulig  <martin@ximian.com>
21731         * class.c (set_generic_param_owner): Fixed the loop.
21733 2004-11-25  Martin Baulig  <martin@ximian.com>
21735         * object.c (mono_class_vtable): Don't create any JIT wrappers for
21736         generic methods.
21738 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
21740         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
21741         names. Fixes #69787.
21743 2004-11-24  Martin Baulig  <martin@ximian.com>
21745         * class.c (mono_class_create_generic_2): If we don't have a
21746         `ginst->parent', inflate `gklass->parent' to get our parent.
21748 2004-11-24  Martin Baulig  <martin@ximian.com>
21750         * reflection.c (compare_genericparam): Correctly sort the
21751         GenericParam table; fixes #69779.
21753 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
21755         * reflection.c: When writing a PE file, don't create a huge
21756         buffer in memory. Just write the arrays we have to the file.
21757         This reduces memory usage.
21759         * metadata-internals.h: MonoDynamicStream pefile is no longer used
21760         globally.
21762 2004-11-17  Martin Baulig  <martin@ximian.com>
21764         * class.c (mono_class_init): Don't setup `class->parent' for
21765         dynamic instances; moved this to mono_class_generic_2().
21766         (mono_class_create_generic): Also set `klass->inited' for dynamic
21767         generic instances.
21768         (mono_class_create_generic_2): Don't do anything for dynamic
21769         generic instances.  Set `klass->parent' here and also call
21770         mono_class_setup_parent() here. 
21772         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
21773         `MonoType *parent' argument; set `ginst->parent' before calling
21774         mono_class_create_generic_2(), so we set the correct parent.
21776 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
21778         * reflection.c: allow getting attributes from ModuleBuilder
21779         (used by ikvm).
21781 2004-11-17  Martin Baulig  <martin@ximian.com>
21783         * class.c (mono_class_create_from_typedef): If a type parameter is
21784         inherited from an outer class, set its owner to that class.
21786 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
21788         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
21789           for (int*) written size. This fixes bug #69592.
21791 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
21793         * icall.c: Added IsAuthenticodePresnet internal call.
21794         * image.c|h: New function that check a MonoImage for an Authenticode
21795         signature in the certificate PE data directory.
21796         * security.c|h: New internal call to ask the runtime if an 
21797         Authenticode signature seems referenced in the PE header.
21799 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
21801         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
21803         * reflection.c (mono_image_create_pefile): Free the assembly streams
21804         after writing out the assembly file.
21806         * object.c (mono_runtime_run_main): Fix small memory leak.
21808         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
21809         property access modifiers. Fixes #69389.
21811 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
21813         * domain.c, object.c, object-internals.h, domain-internals.h,
21814         object.h, marshal.c: keep dynamic code info per domain.
21816 2004-11-15  Martin Baulig  <martin@ximian.com>
21818         * class.c (mono_type_get_name_recurse): Put type arguments in
21819         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
21820         see bug #68387.
21822 2004-11-15  Martin Baulig  <martin@ximian.com>
21824         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
21825         (mono_class_setup_vtable): When computing `the_cname' for a
21826         generic instance, don't include the namespace since we'd otherwise
21827         add it twice.
21829 2004-11-15  Martin Baulig  <martin@ximian.com>
21831         * class.c (mono_class_create_generic): Changed return type to void.
21832         (mono_class_create_generic_2): New public function; setup
21833         `class->method', `class->field' and `class->interfaces' here
21834         instead of in mono_class_init().
21836         * class.h (mono_class_create_generic): Moved to class-internals.h.
21838 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
21840         * reflection.c (mono_image_create_pefile): take a file HANDLE.
21841         rather than writing to memory, write to this file. Right now,
21842         we are just writting into a buffer, and copying that. However
21843         we can avoid the buffer later.
21845         (mono_dynamic_stream_reset): new function
21847         * icall.c, object-internals.h: update for the above.
21849 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
21851         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
21852         have been using gc'd memory. First it is slower, unlikely
21853         the comment in the source code said, secondly, it increases
21854         our footprint to do it in the gc.
21856         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
21857         the method so that it does not have to copy to managed code.
21859 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
21861         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
21863 2004-11-12  Martin Baulig  <martin@localhost>
21865         * reflection.c (mono_image_create_token): Allow generic method
21866         definitions here, since they may appear in an `.override'; see
21867         gen-98/gen-99 for an example.
21869 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
21871         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
21872         #69365.
21874         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
21875         descriptive.
21877 2004-11-11  Martin Baulig  <martin@ximian.com>
21879         * class.c (mono_class_setup_vtable): In an explicit interface
21880         implementation, the method name now includes the arity.
21882 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
21884         * object.c (mono_array_full_copy): Fix warning.
21886 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
21888         * appdomain.c: Removed look_for_method_by_name(). Use the new method
21889         mono_class_get_method_from_name() instead.
21890         
21891         * class-internals.h: Added two new types of wrappers. 
21892         Added MonoRemotingTarget enum. Added new trampoline function type, which
21893         takes an additional MonoRemotingTarget value as parameter, so it is
21894         possible to request a trampoline for a specific target.
21895         
21896         * class.c: Added new mono_class_get_method_from_name() method.
21897         
21898         * class.h: In MonoRemoteClass, we can have now to vtables, one for
21899         general remoting sinks and one specific for cross domain calls.
21900         
21901         * debug-helpers.c: Added new wrapper names.
21902         
21903         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
21904         of a remote class.
21905         
21906         * image.c: Porperly delete value objects form the remoting invoke hashtable.
21907         
21908         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
21909         with several other methods (mono_marshal_get_xappdomain_dispatch,
21910         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
21911         and others) can generate a fast remoting wrapper for cross domain calls.
21912         More information can be found in docs/remoting.
21913         Other changes: Removed mono_find_method_by_name, and used
21914         mono_class_get_method_from_name instead.
21915         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
21916         is stored in the remoting invoke hashtable.
21917         
21918         * marshal.h: published the new method for getting the xdomain wrapper,
21919         and also added a method for getting the adequate wrapper for a given
21920         method and target.
21921         
21922         * object-internals.h, object.c: Added a couple of methods for capying and
21923         cloning arrays.
21924         Modified mono_install_remoting_trampoline, which takes the new remoting
21925         trampoline that has a remoting target as parameter.
21926         mono_class_proxy_vtable now also takes a remoting target as parameter, and
21927         will return the most suitable vtable for the target.
21928         Added mono_remote_class_vtable, which returns the vtable of a remote class
21929         (which can be the normal remoting vtable or the xdomain vtable).
21930         
21931         * threads.c: the xdomain invoke and dispatch wrappers must also be
21932         protected against interruptions.
21934 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21936         * icall.c: use memmove in BlockCopyInternal when the source and
21937         destination arrays are the same.
21939 2004-11-09  Martin Baulig  <martin@ximian.com>
21941         * class-internals.h (MonoGenericContainer): Removed `method' and
21942         `signature', replaced them with `is_method' and `is_signature'
21943         flags.  Added `context'.
21945         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
21946         instead of a `MonoGenericContainer *'.
21948         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
21949         for dynamic type parameters.
21950         (mono_metadata_load_generic_params): Setup `container->context'.
21952         * reflection.c (mono_reflection_setup_generic_class): Setup
21953         `tb->generic_container->context'.
21954         (do_mono_reflection_bind_generic_parameters): Use
21955         mono_class_inflate_generic_type() to correctly inflate types,
21956         rather than using our own hack just for MONO_TYPE_VAR.
21958 2004-11-09  Martin Baulig  <martin@ximian.com>
21960         * class.c (mono_class_inflate_generic_method): Small fix; don't
21961         crash here.
21963         * icall.c
21964         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
21965         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
21966         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
21967         (ves_icall_Type_BindGenericParameters): Likewise.
21968         (ves_icall_Type_get_IsGenericInstance): Likewise.
21969         (ves_icall_Type_GetGenericParameterPosition): Likewise.
21970         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
21971         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
21972         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
21974 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
21976         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
21977         assembly versions and public key tokens. Fixes #69113.
21979 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
21981         * metadata.c: fix bug introduced with the type cache changes
21982         on 2004-11-06.
21984 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
21986         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
21987         the MonoClass pointer instead of the token in exception clauses.
21988         * reflection.c: updates for the above and make the code not depend
21989         on the structure of MonoExceptionClause.
21991 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
21993         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
21994         Add support for dynamic assemblies. Fixes #69114.
21996         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
21998 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22000         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22001         since most only those methods use it. the code member of
22002         MonoMethodPInvoke was dead, so that can be removed too. Also,
22003         remove inline_count (again, not used), and move slot so that it
22004         can share bits with some other flags. This saves 8 bytes in the
22005         structure and gives us about 50 kb back for mcs helloworld.cs
22007         * *.[ch]: Do naming changes for the above.
22009         * loader.c (mono_method_get_header): Lazily init the header
22010         on first access.
22011         (mono_get_method_from_token): don't init the header here
22012         (mono_free_method): the header may never be allocated
22014         Overall, this saves 150 kb of unmanaged allocations
22015         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22016         memory at runtime.
22017         
22018         * loader.c, loader.h (mono_method_get_header): new accessor.
22020         * *.[ch]: use the above method. Prepares us to lazily load
22021         the header.
22023         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22024         three warnings, which are actual bugs (see 69206).
22026         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22027         unused. Saves a cool 4 bytes / method.
22029 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22031         * metadata.c (builtin_types): Add types for System.Object here.
22032         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22033         for a class or valuetype from klass->this_arg or klass->byval_arg.
22035         On mcs for a hello world, this gets us down from 21836 MonoType's
22036         to 14560.
22038         (mono_metadata_free_type): Account for the above change.
22040 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22042         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22043         exception instead of asserting if name is null.
22044         (ves_icall_System_AppDomain_GetData): Ditto.
22046 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22048         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22049         EnumBuilder.
22051         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22052         Return NULL when the domain does not have entry_assembly set.
22054         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22055         Add a 'resource_modules' argument.
22056         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22058         * reflection.c (mono_reflection_create_runtime_class): Move setting
22059         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22060         for enums too.
22062         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22063         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22064         Throw an ArgumentNullException if 'ptr' is null.
22066         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22067         assemblies here. Fixes #69020.
22069 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22071         * reflection.c (build_compressed_metadata): Fix the previous patch for
22072         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22073         the stack.
22075 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22077         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22078         the cultures is false. Fixes #69090.
22080         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22081         detected by valgrind.
22082         
22083         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22084         TypeResolve multiple times for the same type. Fixes #65577.
22086 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22088         * marshal.c: Avoid using ldftn to call managed functions. It is
22089         much slower than just a call.
22091         * reflection.c (mono_module_get_object): free the basename we
22092         allocate here from glib.
22093         
22094         * reflection.c (ensure_runtime_vtable): make sure to free
22095         overrides.  Also, we were allocating an array of MonoMethod not an
22096         array of MonoMethod*.
22098         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22100         * image.c (mono_image_close): free image->guid here.
22102 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22104         * reflection.c: Fix some spec conformance issues with the PE file
22105         structures so mcs compiled apps run on the Net 2.0 beta.
22107 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22109         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22110         Implement this. Fixes #67264.
22112         * debug-helpers.h debug-helpers.c marshal.c: Move 
22113         mono_find_method_by_name to debug-helpers.c.
22115 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22117         * object.c (mono_release_type_locks): type_initialization_hash is
22118         a GHashTable.
22120         * reflection.c object.c object-internals.h: Fix warnings.
22122         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
22123         without accessors. Fixes #61561.
22125         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
22126         application base from the root domain if not set. Fixes #65641.
22127         (mono_runtime_init): Fix warning.
22129 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22131         * appdomain.c: call mono_thread_pool_init.
22132         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
22133         of worker threads based on the number of CPUs and the environment
22134         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
22135         for non-windows (windows) systems.
22137 2004-10-27  Chris Toshok  <toshok@ximian.com>
22139         * mono-debug-debugger.c (write_class): don't call mono_class_init
22140         here, as even with the check for (!klass->init_pending), we get
22141         into a situation where we're hitting cycles in class
22142         initialization.  Fixes #68816.
22144 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
22146         * image.c: Avoid overwriting values in the loaded_images_hash when an
22147         assembly is loaded multiple times. Fixes #61152.
22149         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
22150         so multiple satellite assemblies for the same name can be loaded.
22151         Fixes #68259.
22153         * mono_domain_assembly_preload: Actually return the loaded assembly, 
22154         not NULL.
22156         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
22157         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
22159         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
22160         pending finalizers are not invoked after the appdomain has been 
22161         unloaded. Fixes #67862.
22163 2004-10-22  Martin Baulig  <martin@ximian.com>
22165         * mono-debug-debugger.c
22166         (mono_debugger_runtime_invoke): Don't box valuetypes.
22168 2004-10-22  Chris Toshok  <toshok@ximian.com>
22170         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
22171         don't hide private methods.
22173 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
22175         * icall.c: Allows the runtime to "share" (when known) the public key
22176         token of an assembly. This avoid the need to recalculate the token 
22177         (from the public key) in managed code.
22179 2004-10-21  Chris Toshok  <toshok@ximian.com>
22181         * debug-helpers.c (append_class_name): argh, revert last patch.
22182         
22183 2004-10-21  Chris Toshok  <toshok@ximian.com>
22185         * debug-helpers.c (append_class_name): use '+' as the delimiter,
22186         not '/', so that it matches what the debugger uses to look up
22187         methods.
22189 2004-10-21  Martin Baulig  <martin@ximian.com>
22191         * mono-debug-debugger.c (mono_debugger_throw_exception): New
22192         public method; this is called each time an exception is thrown and
22193         allows the debugger to use exception catch points.
22195 2004-10-21  Martin Baulig  <martin@ximian.com>
22197         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
22198         the stack pointer and the exception object in some struct and pass
22199         that to the debugger.
22201 2004-10-21  Chris Toshok  <toshok@ximian.com>
22203         * mono-debug-debugger.c (do_write_class): add instance/static
22204         event support.  We don't expose "raise" or "other" yet.
22205         (event_is_static): new method.
22207 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
22209         * mono-debug-debugger.c
22210         (mono_debugger_handle_exception): Remove
22211         bogus return value for fussy compilers.
22213 2004-10-20  Martin Baulig  <martin@ximian.com>
22215         * mono-debug-debugger.c
22216         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
22217         (mono_debugger_handled_exception): Likewise.
22219 2004-10-20  Martin Baulig  <martin@ximian.com>
22221         * mono-debug-debugger.h (MonoDebuggerEvent): Added
22222         MONO_DEBUGGER_EVENT_EXCEPTION.
22224         * mono-debug-debugger.c (mono_debugger_handle_exception): New
22225         public function to send the debugger a notification for an
22226         exception and inform it about a catch/finally clause.
22228 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
22230         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
22231         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
22232         fix 2.95 build. 
22234         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
22236 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
22238         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
22239         marshalled as [In,Out]. Fixes #58325.
22241 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
22243         * reflection.c (mono_method_body_get_object): Implement some fields.
22245 2004-10-12  Martin Baulig  <martin@ximian.com>
22247         * reflection.c (mono_reflection_bind_generic_parameters): Small
22248         fix, correctly retrieve our parent from a generic instance.
22250 2004-10-12  Martin Baulig  <martin@ximian.com>
22252         * metadata.c (mono_metadata_generic_param_equal): We always have
22253         an owner.
22255         * class.c
22256         (mono_class_from_generic_parameter): We need to have an owner.
22257         (my_mono_class_from_generic_parameter): Likewise.
22259         * reflection.c (mono_reflection_setup_generic_class): Renamed to
22260         mono_reflection_create_generic_class() and added a new
22261         mono_reflection_setup_generic_class().  
22262         (mono_reflection_initialize_generic_param): If we're a nested
22263         generic type and inherited from the containing class, set our
22264         owner to the outer class.
22266 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
22268         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
22270         * reflection.c (mono_method_body_get_object): New function to create
22271         a MethodBody object.
22273         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
22275 2004-10-11  Martin Baulig  <martin@ximian.com>
22277         * metadata.c (_mono_metadata_type_equal): Renamed to
22278         do_mono_metadata_type_equal() and made static.
22280 2004-10-11  Martin Baulig  <martin@ximian.com>
22282         * appdomain.c: Bump corlib version number to 28.
22284 2004-10-10  Martin Baulig  <martin@ximian.com>
22286         * class-internals.h
22287         (MonoGenericInst): Added `MonoGenericContainer *container'.
22288         (MonoGenericMethod): Likewise.
22289         (MonoGenericContext): Likewise.
22290         (MonoGenericParam): Added `MonoGenericContainer *owner'.
22292         * metadata.c
22293         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
22294         (do_mono_metadata_parse_generic_inst): Likewise.
22295         (mono_metadata_parse_type_full): New public method.  This is the actual
22296         mono_metadata_parse_type() implementation - with an additional
22297         `MonoGenericContainer *' argument.
22298         (mono_metadata_parse_array_full): Likewise.
22299         (mono_metadata_parse_signature_full): Likewise.
22300         (mono_metadata_parse_method_signature_full): Likewise.
22301         (mono_metadata_parse_mh_full): Likewise.
22302         (mono_type_create_from_typespec): Likewise.
22303         (mono_metadata_interfaces_from_typedef_full): New public method;
22304         this is similar to the other _full() methods, but we take a
22305         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
22306         (mono_metadata_parse_generic_param): Take an additional
22307         `MonoGenericContainer *' argument and lookup the MonoGenericParam
22308         from that container.
22309         (mono_metadata_generic_param_equal): New static method to compare
22310         two type parameters.
22311         (_mono_metadata_type_equal): New static method; takes an
22312         additional `gboolean signature_only' argument - if true, we don't
22313         compare the owners of generic parameters.
22314         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
22315         with a TRUE argument - do a signature-only comparision.
22317         * loader.c: Use the new _full() methods and pass the
22318         MonoGenericContainer to them.
22320         * object-internals.h (MonoReflectionTypeBuilder): Added
22321         `MonoGenericContainer *generic_container' field.
22322         (MonoReflectionMethodBuilder): Likewise.
22324 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
22326         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
22327         case initial images of dynamic assemblies.
22329         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
22331         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
22333         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
22334         length of event->other array.
22335         (typebuilder_setup_events): Ditto.
22337         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
22338         'assembly_by_name' and add an 'assemblies' list.
22340         * assembly.h assembly.c: Add a new search hook for determining whenever
22341         an assembly is already loaded. Use this instead of searching in the
22342         loaded_assemblies list.
22344         * domain.c appdomain.c: Implement the new search hook so loaded 
22345         assemblies are now scoped by appdomain. Fixes #67727.
22347 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
22349         * threads.c (mono_thread_attach): Initialize synch_lock field so
22350         mono_thread_detach works again.
22352         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
22353         'lib' too. Fixes #63130.
22355 2004-10-06  Jackson Harper  <jackson@ximian.com>
22357         * culture-info-tables.h: regenerated.
22359 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
22361         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
22362         implemented by other interfaces in the result. Fixes #65764.
22363         
22364         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22365         Handle unloadable modules without crashing.
22367         * image.c (load_modules): Revert the previous patch since modules must
22368         have a fixed index inside the array.
22369         
22370         * image.c (load_modules): Don't include native modules in the modules
22371         array.
22373 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
22375         * reflection.h: Add param_defaults field.
22377         * reflection.c: Add support for parameter defaults in dynamic methods.
22378         Fixes #64595.
22380         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
22381         an empty string when a type has no namespace. Fixes #64230.
22383 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
22385         * tabledefs.h: Added "internal" security actions to support non-CAS
22386         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
22387         Note: they do not seems to be used anymore in 2.0 (new metadata format)
22389 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
22391         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
22392         constructor of abstract class. Fixes #61689.
22394 2004-10-04  Martin Baulig  <martin@ximian.com>
22396         * class-internals.h (MonoGenericContainer): New type.
22397         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
22398         `MonoGenericContainer *generic_container'.
22399         (MonoClass): Replaced `gen_params' and `num_gen_params' with
22400         `MonoGenericContainer *generic_container'.
22402         * metadata.c (mono_metadata_load_generic_params): Return a
22403         `MonoGenericContainer *' instead of a `MonoGenericParam *';
22404         removed the `num' argument.
22406 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
22408         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
22409         for dynamic images.
22411         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
22412         machine fields.
22414         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
22416         * reflection.c: Save pe_kind and machine values into the generated
22417         image file.
22419         * appdomain.c: Bump corlib version number.
22421         * object-internals.h: Reorganize layout of LocalBuilder.
22423         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
22424         New helper function.
22426         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
22427         created MonoType for dynamic types. Fixes #66180.
22429 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
22431         * threadpool.c: the ares hashtable needs a critical section around it.
22432         this prevents some nasty segfaults
22434 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
22436         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
22437         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
22438         bug 67324).
22439         
22440 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22442         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
22443         
22444 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
22446         * image.c: Always canonicalize image file names, to avoid loading
22447         the same assembly twice when referenced using a relative path.
22449 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22451         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
22453         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
22455         * marshal.c: Fix warnings.
22457 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
22459         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
22460         attempting to marshal the delegate_trampoline as the method_addr.
22461         This patch has a static hashtable of marshalled delegates so that 
22462         we can map delegate_trampoline addresses back to delegates.  This
22463         allows a delegate passed to managed code to be passed back into native
22464         code.  Fixes #67039
22466 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22468         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
22470         * reflection.c (method_encode_code): Align method headers properly.
22471         Fixes #66025.
22473 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22475         * marshal.c: In the runtime invoke wrapper, reset the abort
22476         exception if it is cached. This avoids the automatic rethrowal of 
22477         the exception after the catch of the wrapper. Also check for pending
22478         interruptions before calling the managed method. This is done using
22479         the new method emit_thread_force_interrupt_checkpoint, since the
22480         normal checkpoint method is ignored when running the invoke wrapper.
22481         * object.c: If the abort exception is rethrown, set the abort_exc
22482         field of the thread, so it will be rethrown aftere every catch.
22483         * threadpool.c: Only run an interruption checkpoint if what has been
22484         requested is a stop of the thread (aborts will be ignored).
22485         * threads.c: By default, a thread will now never be interrumped while
22486         running the runtime invoke wrapper (this ensures that runtime_invoke
22487         will always return to the caller if an exception pointer is provided).
22488         There is a new special method mono_thread_force_interruption_checkpoint()
22489         to force an interruption checkpoint even if running a protected
22490         wrapper, which is used by the same runtime invoke wrapper to do a check
22491         at a safe point.
22493 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22495         * object.c, object-internals.h: Implemented mono_release_type_locks,
22496         which releases the cctor locks held by a thread.
22497         * threads.c, threads.h: In thread_cleanup, release cctor locks held
22498         by a thread. Added mono_thread_exit() method to be used to safely stop
22499         a thread.
22501 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22503         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22504         Move null check before dereference.  Avoid indexing beyond the end
22505         of the 'modules' array.
22507 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22509         * metadata-internals.h (MonoImage): Add module_count field.
22510         * image.c (load_modules): Set image->module_count.
22511         (mono_image_load_file_for_image): Use image->module_count.
22512         * reflection.c (mono_image_load_module): Append to image->modules array 
22513         of dynamic assembly.
22514         (mono_module_get_object): Fix loop to actually increment index.
22515         Use image->module_count.
22516         * assembly.c (mono_assembly_load_references): Use image->module_count.
22517         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
22518         Likewise.
22520 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22522         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
22523         Avoid assert on generic types.
22525 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
22527         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
22529         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
22531         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
22532         function to convert a MarshalSpec structure to its managed counterpart.
22534         * reflection.c: Fix warnings.
22535         
22536         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
22537         field.
22539         * icall.c (mono_create_icall_signature): Fix build.
22541 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
22543         * icall.c: Add MakePointType icall.
22545         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
22546         warnings.
22548 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22550         * threadpool.c: reuse allocated slots in the queue.
22552 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
22554         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
22556         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
22558         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
22559         previous change.
22561         * tabledefs.h: Add constants for pinvoke attributes BestFit and
22562         ThrowOnUnmappableChar.
22564         * icall.c (ves_icall_Type_GetPacking): New icall.
22566 2004-09-24  Martin Baulig  <martin@ximian.com>
22568         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
22570 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22572         * appdomain.c:
22573         (mono_domain_set): allow setting a domain that is being unloaded.
22574         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
22575         being unloaded.
22577 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22579         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
22580         the GetCustomAttributes icall.
22582 2004-09-23  Martin Baulig  <martin@ximian.com>
22584         * object-internals.h (MonoReflectionGenericParam): Replaced
22585         'has_ctor_constraint', `has_reference_type' and `has_value_type'
22586         with `guint32 attrs'.
22588 2004-09-23  Martin Baulig  <martin@ximian.com>
22590         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
22592 2004-09-23  Martin Baulig  <martin@ximian.com>
22594         * object-internals.h (GenericParameterAttributes): New enum.
22596 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22598         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
22599         
22600         * class.c (init_events): Fill out event->other field.
22602         * class.c: Fix warnings.
22604         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
22606 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
22608         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
22609         walk which doesn't supply the IL offset.
22611 2004-09-22  Martin Baulig  <martin@ximian.com>
22613         * reflection.c (mono_reflection_setup_internal_class): If we're
22614         System.ValueType, System.Object or System.Enum, set
22615         `klass->instance_size' and create the vtable.
22616         (mono_reflection_create_internal_class): If we're an enum type,
22617         get the base class from our current corlib.
22619 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
22621         * reflection.h (MonoResolveTokenError): New type.
22623         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
22624         icall.
22626         * icall.c: Add an 'error' argument to the ResolveToken icalls.
22628 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
22630         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
22631         Support also calling constructors, but only for already allocated objects.
22633 2004-09-17  Geoff Norton <gnorton@customerdna.com>
22635         * reflection.c (type_get_qualified_name): If the klass is null
22636         return the typename to avoid a NullRefEx.
22637         (encode_cattr_value): Get the qualified name of the boxed type,
22638         not the underlying enumtype.  Fixes #62984.
22640 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
22642         * marshal.c: Fix problems with previous checkin.
22644 2004-09-21    <vargaz@freemail.hu>
22646         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
22647         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
22649         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
22651 2004-09-21  Geoff Norton <gnorton@customerdna.com>
22653         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
22654         should only return a type for pointers, arrays, and passbyref types.
22655         Fixes bug #63841.
22657 2004-09-21  Martin Baulig  <martin@ximian.com>
22659         * domain.c (mono_debugger_check_runtime_version): New public
22660         function.
22662         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
22664 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
22666         * reflection.c: Added missing sort to the declarative security 
22667         attributes table. MS implementation stops seeing the attributes if the
22668         token number regress in the table (as shown by ildasm and permview).
22670 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
22672         * object-internals.h (MonoReflectionModule): Add 'token' field.
22673         
22674         * reflection.c (mono_reflection_get_token): Add support for Module
22675         and Assembly.
22676         (mono_module_get_object): Set 'token' field.
22677         (mono_module_file_get_object): Set 'token' field.
22679         * icall.c: Add new Assembly and Module icalls.
22681         * appdomain.c: Bump corlib version.
22683 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
22685         * loader.h loader.c class.h class.c: Add helper functions for obtaining
22686         tokens of metadata objects.
22688         * reflection.h reflection.c (mono_reflection_get_token): New function
22689         to obtain the token of a metadata object.
22691         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
22693 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
22695         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
22696         
22697         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
22699 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
22701         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
22702         * object-internals.h: Added 3 MonoArray* members to MonoReflection
22703         AssemblyBuilder to access the permissions set in the class lib.
22704         * reflection.c: Added security attributes encoding step in 
22705         mono_image_build_metadata.
22706         * tabledefs.h: Added new security actions defined in 2.0:
22707         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
22709 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22711         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
22712         macro parameter.
22714 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22716         * locales.c: nullify the ICU_collator member of CompareInfo when it is
22717           finalized. There where random SIGSEVs at program termination, when
22718           an object being finalized was trying to do a string comparison and
22719           the current culture was already finalized.
22721 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22723         * threads.c: call thread_cleanup before finishing the thread if we get
22724         there.
22726 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
22728         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
22729         assemblies from the parent. Fixes #65665.
22731 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
22733         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
22734         modifiers.
22736 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
22738         * reflection.h: add prototype for mono_get_dbnull_object
22739         * reflection.c: add prototypes for get_default_param_value_blobs 
22740         and mono_get_object_from_blob for fussier compilers
22742 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
22744         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
22745         false deadlock checks in class initialization.
22747 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
22749         * image.c (mono_image_addref): Fix comment.
22751         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
22752         possible.
22754 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
22756         * reflection.c (mono_param_get_objects): Modified to return
22757         ParameterInfo.DefaultValue object.
22759         (get_default_param_value_blobs):
22760         (mono_get_object_from_blob):
22761         (mono_get_dbnull_object): New helper routines. 
22763         * object.c (mono_get_constant_value_from_blob): New helper routine
22764         carved out from get_default_field_value ()
22766         * object-internals.h (mono_get_constant_value_from_blob): Added
22767         function declaration.
22769 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
22771         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
22772         referenced assemblies. Fixes #62135.
22774         * exception.h exception.c (mono_get_exception_file_not_found2): New
22775         helper function.
22777 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
22779         * class.h class.c: Add mono_type_get_underlying_type ().
22781 2004-09-09  Geoff Norton <gnorton@customerndna.com>
22783         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
22784         Fix GetTypes() to support dynamically created assemblies.
22786 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
22788         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
22789         
22790         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
22791         previous patch.
22793         * reflection.h reflection.c loader.c: Allow dynamic construction of
22794         pinvoke methods. Fixes #65571.
22795         
22796         * reflection.c (mono_reflection_get_type): Revert previous change since
22797         it causes regressions.
22799 2004-09-08  Martin Baulig  <martin@ximian.com>
22801         * class.c (class_compute_field_layout): Don't call
22802         mono_class_layout_fields() for open generic instances.
22804 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
22805         * threads.c appdomain.c: fix typo in GC macro
22807 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22809         * threads.c: don't call mono_thread_detach() in start_wrapper(),
22810         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
22812 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
22814         * image.c (mono_image_close): Applied patch from 
22815         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
22816         assembly is loaded multiple times from data.
22817         
22818         * image.c (mono_image_open): Fix warning.
22820 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
22822         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
22823         once. Fixes #58334.
22824         
22825         * reflection.c (mono_reflection_create_runtime_class): Initialize
22826         klass->nested_classes. Fixes #61224.
22828 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
22830         * threads.c: sched_yield() on exit, to allow threads to quit.
22832 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
22834         * object.c (mono_unhandled_exception): Remove leftover debug code.
22836 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
22838         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
22840 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
22842         * marshal.c (emit_marshal_array): Really null terminate string arrays.
22843         
22844         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
22846 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22848         * marshal.c (emit_marshal_array): Null terminate string arrays.
22849         
22850         * marshal.c (raise_auto_layout_exception): Fix warning.
22852         * reflection.c (mono_param_get_objects): Initialize the default value
22853         with DBNull.Value, not null. Fixes #62123.
22855 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
22857         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
22858         throw an exception with a cute explanation.
22860 2004-09-06  Dick Porter  <dick@ximian.com>
22862         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
22863         Close the new process's thread handle, as we don't use it.  The
22864         handle stays around forever otherwise.
22866 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22868         * object.c (arith_overflow): Fix warning.
22870         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
22871         calling conventions in method refs. Fixes #65352.
22873         * reflection.c: Fix warnings.
22875 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
22877         * icall.c: Add a new icall for Array.Clear
22879 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
22881         * object.c: When allocating an array, we have to throw
22882         an overflow exception if any of the lengths are < 0.
22884 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22886         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
22887         properly. Also move implementation of string array marshalling to 
22888         managed code. Fixes #42316.
22890 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22892         * assembly.c: provide more information when loading an assembly fails.
22894 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22896         * filewatcher.c: don't expect the development fam package to be
22897         installed.
22899 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
22901         * marshal.c: Make a copy of the signature cookie since it will be
22902         freed by the caller.
22903         
22904         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
22906         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
22908         * metadata.c (mono_metadata_free_marshal_spec): New function to free
22909         marshal specs.
22911         * marshal.c: More refactoring.
22912         
22913         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
22914         smaller functions.
22916 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
22918         * object.c: In mono_message_invoke, fill the output parameter array after
22919           calling the managed method (it was done before the call). This fixes
22920           bug #59299.
22922 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
22924         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
22925         as well.
22927 2004-09-02  Martin Baulig  <martin@ximian.com>
22929         * class.c (mono_class_instance_size): Don't allow generic type
22930         definitions or open generic instances.
22931         (mono_class_array_element_size): If we're a value type, call
22932         mono_class_instance_size() on the original class.
22934         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
22935         handle generic instances.
22937         * mono-debug-debugger.c (write_type): Handle generic instances
22938         like classes.
22940 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
22942         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
22943         the allocation request fails. Fixes #65089.
22945         * object.c (mono_runtime_free_method): Do not call mono_free_method.
22946         
22947         * object.c (mono_runtime_free_method): New function to free a dynamic
22948         method.
22950         * marshal.c (mono_delegate_free_ftnptr): New function to free the
22951         delegate trampoline.
22953         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
22954         with hasthis as dynamic,
22956         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
22958         * domain.c (mono_jit_info_table_remove): New function to remove an
22959         entry from the jit info table.
22961         * class-internals.h (MonoMethod): Add 'dynamic' field.
22963         * loader.c: Fix warnings.
22965 2004-09-01  Martin Baulig  <martin@ximian.com>
22967         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
22968         instead of mono_debugger_lock() because the latter one is a no-op
22969         unless running in the debugger.
22971 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
22973         * class.c (class_compute_field_layout): Classes with auto-layout or
22974         reference fields are not blittable.
22975         
22976 2004-09-01  Dick Porter  <dick@ximian.com>
22978         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
22979         mono_image_get_filename() to get the assembly location.
22981         * icall.c:
22982         * metadata.h: Fix compile warnings
22984 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
22986         * class.c (class_compute_field_layout): System.Object is blittable.
22988         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
22989         as in/out. Fixes #59909.
22991 2004-09-01  Martin Baulig  <martin@ximian.com>
22993         * metadata.h (MONO_TYPE_ISREFERENCE): Call
22994         mono_metadata_generic_inst_is_valuetype() if we're a generic
22995         instance to check whether our underlying type is a reference type.
22997 2004-09-01  Martin Baulig  <martin@ximian.com>
22999         * metadata.c (mono_type_size): If we're a generic instance, call
23000         mono_class_value_size() for value types.
23002 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23004         * marshal.c: Implement more custom marshalling functionality. Fixes
23005         #64915.
23007 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23009         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23011 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23013         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23015         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23017         * icall.c: Fix some warnings.
23019         * threads.c (abort_appdomain_thread): Fix unref errors.
23020         (mono_thread_current): Fix THREAD_DEBUG define.
23022 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23024         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23026         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23028 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23030         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23031         string arrays.
23033 2004-08-28  Martin Baulig  <martin@ximian.com>
23035         * metadata.c
23036         (mono_metadata_generic_inst_is_valuetype): New public function.
23038         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23039         mono_metadata_generic_inst_is_valuetype() if we're a generic
23040         instance to check whether our underlying type is a valuetype.
23042 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23044         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23045         #63768.
23047 2004-08-25  Martin Baulig  <martin@ximian.com>
23049         * loader.c (mono_get_method_from_token): Abstract methods can also
23050         be generic and thus have type parameters.
23052         * metadata-internals.h
23053         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23055         * reflection.c (mono_image_get_generic_param_info): Don't create a
23056         metadata row, just add an entry to the `gen_params' array.
23057         (build_compressed_metadata): Sort the `gen_params' array and then
23058         actually create the metadata.
23060 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23062         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23064 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23066         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23068 2004-08-24  Martin Baulig  <martin@ximian.com>
23070         * class.cs (mono_class_is_subclass_of): Like an interface, a
23071         generic instance also derives from System.Object.
23073 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23075         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23076         custom modifiers to be in any order. Fixes #61990.
23078 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23080         * object.c: Register mono_object_new_fast icall.
23081         
23082         * object.c (mono_class_get_allocation_ftn): Return to calling
23083         mono_object_new_fast, since it seems faster to compute the object 
23084         size in unmanaged code than passing it as a parameter.
23086         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23088         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23089         this function with Boehm as the oom handler, so we don't have to check
23090         the result of GC_malloc.
23092         * object.c: Remove checks for oom.
23094         * object.h object.c (mono_class_get_allocation_ftn): New function to
23095         return the icall which can be used to allocate an instance of a given
23096         class. 
23098         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23100         * class-internals.h: Add 'enabled' field.
23102 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23104         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23106 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23107         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23108         value 0x0010.
23110 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23112         * appdomain.c: use the Tls function for appdomain too,
23113         at Zoltan's request. Actually return in mono_context_get
23115         * appdomain.c, profiler.c, threads.c: use __thread
23117 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
23119         * appdomain.c threads.c: Call GC_CreateThread on windows.
23121         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
23122         multiple libraries since this don't work on windows.
23124 2004-08-18  Martin Baulig  <martin@ximian.com>
23126         * class-internals.h
23127         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
23128         MonoMethodHeader.
23130         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
23131         MonoMethodNormal since we also need it for abstract and interface
23132         methods.
23134         * reflection.c
23135         (build_compressed_metadata): Sort the GenericParam table.
23136         (mono_image_create_token): Added `gboolean create_methodspec'
23137         argument; this is false when generating a MethodImpl token.
23138         (reflection_methodbuilder_to_mono_method): Abstract and interface
23139         methods may also have generic parameters.
23141 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23143         * appdomain.c: thread local alloc
23145 2004-08-17  Martin Baulig  <martin@ximian.com>
23147         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
23149         * icall.c
23150         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
23151         argument.
23153         * class.c (mono_type_get_full_name): New public function.
23154         (mono_type_get_name): Don't include the type arguments.
23156 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
23158         * Makefile.am: Build static versions of libmetadata and libmonoruntime
23159         for inclusion into the mono executable.
23161 2004-08-16  Martin Baulig  <martin@ximian.com>
23163         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
23164         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
23166 2004-08-14  Martin Baulig  <martin@ximian.com>
23168         * class.c (dup_type): Also copy the `byref' field.
23170 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
23172         * reflection.c (create_dynamic_mono_image): Revert the last change 
23173         since it breaks bootstrap.
23175 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
23177         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
23179         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
23180         not free them with g_free.
23182 2004-08-11  Martin Baulig  <martin@ximian.com>
23184         * reflection.c (mono_reflection_setup_internal_class): Also call
23185         mono_class_setup_mono_type() if we already have a `tb->type.type'.
23187 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
23189         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
23190         called during default (first) AppDomain creation. Keep track of
23191         Evidence when loading assemblies.
23193 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23195         * opcodes.c, opcodes.h: reduce runtime relocations.
23197 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
23199         * culture-info.h, locales.c: fixes and chages to sue the new
23200         optimized format of the locale data.
23201         * culture-info-tables.h: regenerated.
23203 2004-08-06  Geoff Norton <gnorton@customerdna.com>
23204         
23205         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
23207 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
23209         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
23210         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
23211         * domain-internals.h: icall declaration.
23212         * icall.c: icall registration.
23213         * object-internals.h: New fields in MonoAssembly for CAS.
23215 2004-08-05  Duncan Mak  <duncan@ximian.com>
23217         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
23218         CEE_LDELEM_ANY.
23220 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23222         * reflection.c: fix to deal with object[] arrays in custom ctors
23223         (bug #62550).
23225 2004-08-05  Martin Baulig  <martin@ximian.com>
23227         * class.c (mono_class_array_element_size): Added support for
23228         generic instances and correctly handle "recursive" types.
23230 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
23232         * assembly.c: Fix warnings.
23234 2004-08-04  Martin Baulig  <martin@ximian.com>
23236         * class.c
23237         (mono_type_get_name_recurse): Added `gboolean include_arity'
23238         argument specifying whether or not we should include the generic
23239         arity in the type name.
23240         (_mono_type_get_name): New static function.
23241         (mono_class_setup_vtable): If we're a generic instance, don't
23242         include the generic arity in the names of explicit method
23243         implementations.        
23245 2004-08-03  Martin Baulig  <martin@ximian.com>
23247         * class.c (mono_type_get_name_recurse): Enclose the generic type
23248         arguments in `<', '>'.
23250 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23252         * gc.c: make GC warning messages use the trace API, they are just
23253         noise to most of the users.
23255 2004-08-03  Martin Baulig  <martin@ximian.com>
23257         * debug-mono-symfile.c (read_string): Correctly read the string.
23259 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
23261         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
23262         
23263         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
23264         icalls.
23265         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
23267 2004-07-30  Martin Baulig  <martin@ximian.com>
23269         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
23270         Reflect latest symbol writer changes.   
23272 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23274         * object.c: always create an object if null is passed
23275         to Invoke() where a valuetype is expected.
23277 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
23279         * marshal.c (mono_marshal_init): make managed
23280         signatures match native ones better for 64bits.
23282 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23284         * appdomain.c: hack to build correctly the private bin path on windows.
23285         Fixes bug #61991.
23287 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
23289         * assembly.c: Load mscorlib from the correct framework directory
23290           (mono/<version>/mscorlib.dll).
23291         * appdomain.h: Added prototypes for new functions.
23292         * internals.h: Added some prototypes.
23293         * domain.c: When initializing the runtime, get from the executable and
23294           the configuration files the runtime version that the app supports.
23295           Added support methods for reading app.exe.config. Added list of versions
23296           supported by the JIT. Added two new methods: mono_init_from_assembly,
23297           which initializes the runtime and determines the required version from
23298           the provided exe file, and mono_init_version, which initializes
23299           the runtime using the provided version.
23300         * icall.c: Get machine.config from version-specific directory.
23301         * reflection.c: When generating an image, embed the version number
23302           of the current runtime.
23304 2004-07-28  Dick Porter  <dick@ximian.com>
23306         * socket-io.c
23307         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
23308         returned sockaddr size before creating the remote address object.
23309         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
23310         61608.
23312 2004-07-28  Dick Porter  <dick@ximian.com>
23314         * locales.c (string_invariant_compare_char): Fix invariant char
23315         compares between upper and lower cases.  Fixes bug 61458.
23317 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
23318         
23319         * marshal.c: actually cache stelem.ref wrappers.
23320         
23321 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
23323         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
23324         sections and remove the mono_cli_rva_map () function.
23326 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
23328         * debug-mono-symfile.c: fix one more endianess issue, from a patch
23329         by Geoff Norton (<gnorton@customerdna.com>).
23331 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23333         * class.c: fix class loads for pointer types (typeof(int) !=
23334         typeof(int*)).
23336 2004-07-27  Martin Baulig  <martin@ximian.com>
23338         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
23339         reading the debugging information from an external ".mdb" file.
23341 2004-07-24  Martin Baulig  <martin@ximian.com>
23343         * reflection.c (mono_image_get_type_info): Only write a class
23344         layout entry if we actually have a size or a packing size.
23346 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23348         * reflection.c (type_get_fully_qualified_name): 
23349         insert cast to get type checking of ?: with non-gcc compilers
23351 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23353         * rand.c: use g_getenv for both lookups of
23354         MONO_EGD_SOCKET
23356 2004-07-17  Martin Baulig  <martin@ximian.com>
23358         * reflection.c (mono_reflection_bind_generic_method_parameters):
23359         Set `gmethod->reflection_info'.
23361 2004-07-17  Martin Baulig  <martin@ximian.com>
23363         * class.c (mono_class_create_from_typedef): Insert the newly
23364         created class into the hash table before computing the interfaces
23365         since we could be called recursively.
23367 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
23369         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
23370         function to implement stelem.ref in managed code
23371         * class-internals.h, debug-helpers.c: a new wrapper type
23372         for the above.
23374 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23376         * gc.c: allow GC handles to work even when no GC is compiled in.
23377         Fix part of bug #61134 (GetAddrOfPinnedObject).
23379 2004-07-13  Peter Williams  <peter@newton.cx>
23381         * process.c (complete_path): Make sure we don't attempt to execute
23382         directories.
23384 2004-07-12  Geoff Norton <gnorton@customerdna.com>
23386         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
23387           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
23388           and will add/subtract the hour if needed
23390 2004-07-12  Martin Baulig  <martin@ximian.com>
23392         * reflection.c (mono_field_get_object): If we have
23393         `field->generic_info', take the attributes from
23394         `field->generic_info->generic_type'.    
23396 2004-07-12  Martin Baulig  <martin@ximian.com>
23398         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
23399         This function must be called before initializing the runtime.
23400         (mono_debug_init_1): New function; call this after initializing
23401         the runtime, but before loading the assembly.  It tells the
23402         debugger to load corlib and the builtin types.
23404         * mono-debug-debugger.c: Did some larger changes in the debugging
23405         code; support recursive class declarations, make sure we actually
23406         add all classes.
23408 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23410         * debug-helpers.c: undo my previous patch and fixed the real issue in
23411         ../mini/exceptions-x86.c
23413 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23415         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
23416         when no HOME env. variable was set and a NullRef was thrown in a .cctor
23417         called from other .cctors.
23419 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
23421         * loader.c: Removed the mono_loader_wine_init hack now that we are
23422         doing a managed version of Windows.Forms.
23424 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
23426         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
23427         threadpool.c, threads.c: remove static data from rootset.
23429 2004-07-09  Dick Porter  <dick@ximian.com>
23431         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
23432         Don't do any more processing if the matched length was 0.  It was
23433         increasing the size of the string before.  Fixes bug 61167.
23435 2004-07-09  Dick Porter  <dick@ximian.com>
23437         * socket-io.h:
23438         * socket-io.c
23439         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
23440         Add support for SO_PEERCRED if its available.
23442 2004-07-09  Peter Bartok <pbartok@novell.com>
23443         * loader.c: winelib.exe.so error message is now only displayed if
23444         MONO_DEBUG is set. To help us avoid questions when people are trying
23445         out the new Managed.Windows.Forms.
23447 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
23449         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
23450         for isinst and castclass wrappers.
23452         * class-internals.h icall.c: Move registration and lookup of JIT icalls
23453         to libmetadata from the JIT, so they could be used by the marshalling
23454         code and the interpreter.
23456         * marshal.c: Register marshalling related JIT icalls here instead of
23457         in mini.c. Use CEE_MONO_ICALL instead of the family of 
23458         CEE_MONO_PROC<x> opcodes to call marshalling functions.
23460         * metadata.h: Remove unneeded marshalling conversions.
23462         * opcodes.c: Update for new opcodes.
23463         
23464 2004-07-08  Martin Baulig  <martin@ximian.com>
23466         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
23467         (mono_debug_get_domain_data): Make this function static.
23469 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23471         * gc.c, object.h: add nice GC handle API for embedders.
23473 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
23475         * reflection.c: more changes for the new api
23477         * object.c: When we reflect on a field w/ a constant value, it
23478         will not have a memory location, so we must access metadata. Also,
23479         allow easier reading of strings so that we can read them from
23480         the constant data.
23482         * class.c (mono_class_layout_fields): no need for literal fields here.
23484         * class-internals.h: api changes for const fields
23486         * icall.c (ves_icall_get_enum_info): use new apis for const fields
23488 2004-07-06  Martin Baulig  <martin@ximian.com>
23490         * mono-debug.h: Increment version number to 44.
23492         * mono-debug.c (mono_debug_add_wrapper): The second argument is
23493         now a gpointer, rewrote this whole method.
23495         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
23496         function.  Add information about the wrapper in a new "misc table".
23498         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
23499         for the new misc table.
23501 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
23503         * metadata-internals.h image.c: Add a cache for helper signatures.
23505         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
23507 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
23509         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
23510         delegates from a delegate. Fixes #61033.
23511         
23512         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
23513         marshalling of stringbuilder arrays. Fixes #59900.
23515 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
23517         * icall.c: Add EnumBuilder:setup_enum_type icall.
23519 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
23521         * icall.c: Added a new icall for the property version of
23522         OffsetOfStringData.
23524 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
23526         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
23527         it has a constant size across platforms.
23529         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
23530         stack trace.
23532 2004-06-29  Martin Baulig  <martin@ximian.com>
23534         * mono-debug.c (mono_debug_add_method): Protect the whole function
23535         in mono_debugger_lock(), not just parts of it.
23537 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23539         * reflection.c: make sure padding bytes in heaps are zeroed.
23541 2004-06-24  David Waite  <mass@akuma.org>
23543         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
23544         image.c, loader.c, locales.c, marshal.c, metadata.c,
23545         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
23546         string-icalls.c, threads.c: change to C90-style comments from C99 /
23547         C++ -style
23549 2004-06-24  Dick Porter  <dick@ximian.com>
23551         * threads.c
23552         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
23553         return createdNew.  Fixes bug 60412.
23555         * threads-types.h: 
23556         * icall.c: Add createdNew parameter to CreateMutex icall
23558 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23560         * reflection.c, object-internals.h: save default value in params.
23562 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23564         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
23565         no need to build a new path combining that with the application base.
23566         Fixes bug #60442.
23568 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
23570         * reflection.c: fixed minor standard compliance issues.
23572 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23574         * reflection.c: fixed issue with encoding some custom attributes
23575         (arrays in properties and fields, bug #60411).
23577 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23579         * reflection.c: fix start address when copying the public key token.
23581 2004-06-23  Martin Baulig  <martin@ximian.com>
23583         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
23584         the `exc' object in a static object to put it into the GC's root set.
23586 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
23588         * reflection.c: make mono_reflection_setup_internal_class ()
23589         callable a second time to setup a new parent class.
23591 2004-06-23  Dick Porter  <dick@ximian.com>
23593         * threads.c: Check for WAIT_IO_COMPLETION return values.
23595 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
23597         * appdomain.c: Removed the g_free on the public key token. Now copy 
23598         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
23599         * assembly.c: Added public key token string value when loading 
23600         assemblies. Fix bug #60439.
23601         * icall.c: Added missing informations (like public key) in 
23602         GetReferencedAssemblies. Fix #60519.
23603         * image.h: Changed definition for public key token from const char*
23604         public_tok_value to guchar public_key_token [17];
23605         * reflection.c: Updated for changes to public key token.
23607 2004-06-22  Lluis Sanchez Gual
23609         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
23610         for the field in base classes.
23612 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
23614         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
23615         mark headers as not supported, they are installed only for use by the
23616         debugger.
23618 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
23620         * *.c, *.h: avoid namespace pollution in public headers.
23622 2004-06-21  Martin Baulig  <martin@ximian.com>
23624         * exception.c (mono_get_exception_security): It's in
23625         "System.Security", not in "System".
23627         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
23628         the exception classes.
23630 2004-06-21  Martin Baulig  <martin@ximian.com>
23632         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
23633         Protect the exception object from being finalized.
23635 2004-06-21  Martin Baulig  <martin@ximian.com>
23637         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
23638         public function.
23640 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
23642         * reflection.c: Load the assembly in mono_reflection_type_from_name,
23643         if it was not loaded before. Fix parts of #60439.
23645 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
23647         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
23648         code that was broken since Ben's change: wrappers are now
23649         dependent on the method signature only again.
23651 2004-06-21  Martin Baulig  <martin@ximian.com>
23653         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
23654         added interface support.
23656 2004-06-21  Martin Baulig  <martin@ximian.com>
23658         * class.c (mono_vtable_get_static_field_data): New public method.
23660 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
23662         * filewatcher.c : Windows build fix to be compliant with API changes.
23664 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23666         * class.h, class.c: more accessors.
23667         * metadata.h, metadata.c: prepare for hiding MonoType and
23668         MonoMethodSignature: people should use the accessors from now on
23669         outside of the tree.
23671 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23673         * *.c, *.h: more API cleanups.
23675 2004-06-18  Jackson Harper  <jackson@ximian.com>
23677         * assembly.c: Trace loading assemblies.
23678         * loader.c: Trace loading native libraries.
23679         * mono-config.c: Trace loading config files.
23680         
23681 2004-06-18  Dick Porter  <dick@ximian.com>
23683         * locales.c: Tell ICU the lengths of strings, it can cope with
23684         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
23686 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
23688         * image.c: swapped name/filename;
23690 2004-06-18  Martin Baulig  <martin@ximian.com>
23692         * mono-debug-debugger.c (write_class): Write the parent class at
23693         the end of the header.
23695 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23697         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
23699 2004-06-17  Raja R Harinath  <rharinath@novell.com>
23701         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
23702         (bundle_obj): New conditional define.
23703         (BUILT_SOURCES): Remove.
23704         ($(bundle_srcs)): Make parallel-make safe.
23705         (libmonoruntime_la_LIBADD): Make unconditional.
23706         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
23707         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
23709 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
23711         * culture-info-tables.h: It was inconsistent with the latest
23712           supp info files.
23714 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
23716         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
23717         be loaded.
23719         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
23720         with gcc 2.95.
23722 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23724         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
23725         cleaned up public header threads.h.
23727 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23729         * Makefile.am, *.c, *.h: more API cleanups.
23731 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23733         * Makefile.am: removed monosn from compilation.
23734         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
23735         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
23736         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
23737         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
23738         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
23739         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
23741 2004-06-15  Jackson Harper  <jackson@ximian.com>
23743         * assembly.c: Make locales lower case when searching the GAC for
23744         assemblies. gacutil will always make locales lowercase when
23745         installing so this effectively makes them case insensitive.
23746         
23747 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
23749         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
23750         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
23751           parameter which allows to choose whether the wait can be interrupted or 
23752           not. Also added the method mono_monitor_enter(), which locks the monitor
23753           using an infinite wait and without allowing interruption.
23754           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
23755           interrupted.
23756         * object.h: Added new fields in MonoThread. suspend_event holds the event
23757           used to susped/resume the thread. synch_lock is the lock object to use for
23758           modifying the thread state.
23759         * threads.c: Use the new synch_lock object for locking, instead of "this",
23760           which can generate deadlocks.
23761           Moved thread state change in Thread.Sleep and Thread.Join from managed
23762           to unmanaged code. This avoids a deadlock when the thread was suspended
23763           just after acquiring the thread lock.
23764           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
23765           Implemented Thread.Suspend using an event instead of ThreadSuspend,
23766           which is not fully implemented in the io-layer.
23767         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
23769 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
23771         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
23772         threads-types.h: more API cleanups.
23774 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
23776         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
23777         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
23778         threadpool.c, threads.c: first pass at the exported API cleanup.
23780 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
23782         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
23784 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23786         * icall.c: added internalGetHome.
23788 2004-06-14  Dick Porter  <dick@ximian.com>
23790         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
23791         possible to return successfully when '.' or '..' were the only
23792         entries in a directory, but were skipped.  The MonoIOStat was not
23793         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
23794         Fixes bug 59574.
23796 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23798         * reflection.c: make binaries run on .Net 1.1 by default.
23800 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
23802         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
23804 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
23806         * marshal.c: keep track of struct size with explicit layout
23807         (bug #59979).
23809 2004-06-12  Martin Baulig  <martin@ximian.com>
23811         * mono-debug-debugger.c: Comment out a debugging g_message().
23813 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
23815         * reflection.c, reflection.h: do not free custom attrs that are cached.
23816         * icall.c: use braces to make code clearer.
23818 2004-06-11  Martin Baulig  <martin@ximian.com>
23820         * class.h (MonoInflatedField): New type.
23821         (MonoClassField): Replaced `MonoType *generic_type' with
23822         `MonoInflatedField *generic_info'.
23824         * icall.c
23825         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
23827 2004-06-11  Martin Baulig  <martin@ximian.com>
23829         * reflection.c (mono_image_create_method_token): Correctly encode
23830         varargs methods.
23832 2004-06-11  Martin Baulig  <martin@ximian.com>
23834         * metadata.c (mono_metadata_parse_method_signature): When parsing
23835         a MethodDef which has VarArgs, also set sentinelpos if we don't
23836         have any parameters.
23838 2004-06-11  Martin Baulig  <martin@ximian.com>
23840         * verify.c (mono_method_verify): In CEE_CALL, use
23841         mono_method_get_signature() to get the method's signature, unless
23842         we're a PInvoke method.
23844 2004-06-10  Jackson Harper  <jackson@ximian.com>
23846         * assembly.c: Use <path>/lib/mono/gac for the extra paths
23847         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
23848         logical name as the supplied path is just a prefix to the gac not
23849         the direct path to it.
23850         
23851 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
23853         * reflection.c: make the token for a created method match
23854         the token of the MethodBuilder it was created from
23855         (IKVM requires this behaviour now).
23857 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
23859         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
23860         reflection.c, socket-io.c: leak fixes.
23862 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
23864         * icall.c: handle sentinel pos in vararg methods in position different
23865         from 0.
23867 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23869         * culture-info-tables.h: freshly generated.
23871 2004-06-09  Martin Baulig  <martin@ximian.com>
23873         * loader.c (mono_get_method_constrained): Call `mono_class_init
23874         (constrained_class)'.   
23876 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
23878         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
23879         any methods. Fixes #59629.
23881 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
23883         * culture-info-tables.h: reflecting locale-builder updates.
23885 2004-06-08  Dick Porter  <dick@ximian.com>
23887         * object.h:
23888         * locales.c: Fixed compile warnings, including a real bug in
23889         CompareInfo_internal_compare.
23890         
23891 2004-06-08  Dick Porter  <dick@ximian.com>
23893         * locales.c
23894         (ves_icall_System_Globalization_CompareInfo_internal_index):
23895         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
23896         Double-check the resuls of usearches, because ICU currently
23897         ignores most of the collator settings here.  Fixes bug 59720.
23898         
23899 2004-06-08  Dick Porter  <dick@ximian.com>
23901         * locales.c
23902         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
23903         Fix memory leak and segfault-causing typo.  No idea how this one
23904         lasted so long without being noticed.
23906 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
23908         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
23909         any methods. Fixes #59629.
23911 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23913         * assembly.c:
23914         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
23915         own the critical section before). Removed dead code (that's done
23916         in the preload hook).
23918         (mono_assembly_load_with_partial_name): call the preload hook.
23920 2004-06-08  Martin Baulig  <martin@ximian.com>
23922         * metadata.c (mono_metadata_signature_alloc): Default
23923         `sentinelpos' to -1.
23925         * reflection.c (mono_image_get_array_token): Likewise.
23927 2004-06-08  Martin Baulig  <martin@ximian.com>
23929         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
23931         * metadata.c (mono_metadata_parse_method_signature): When parsing
23932         a MethodDef which has VarArgs, set sentinelpos.
23934         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
23935         `gint16' since we're using -1 for non-varargs methods.
23937         * reflection.c
23938         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
23939         (method_encode_signature): Added varargs support.
23940         (method_builder_encode_signature): Likewise.
23941         (mono_image_get_varargs_method_token): New static method.
23942         (mono_image_create_method_token): New public method; this is
23943         called via an icall instead of mono_image_create_token() when
23944         calling a varargs method.       
23946 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
23948         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
23950 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
23952         * culture-info-tables.h : Reflecting the latest locale-builder that
23953           fixed empty array representation ({} to {0}).
23955 2004-06-07  Jackson Harper  <jackson@ximian.com>
23957         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
23958         looking up extra gac paths. This allows MONO_GAC_PATH to act
23959         exactly like a prefix.
23960         
23961 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
23963         * reflection.c (mono_reflection_type_from_name): Make a copy of the
23964         type name before modifying it. Fixes #59405.
23966 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
23968         * culture-info.h: added fields for "all datetime patterns".
23969         * locales.c: (  ves_icall_System_Globalization_CultureInfo
23970           _construct_datetime_format ()): fill xxx_patterns fields.
23971         * object.h: added fields for "all datetime patterns" to
23972           MonoDateTimeFormatInfo.
23973         * culture-info-tables.h: reflecting locale-builder updates.
23975 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
23977         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
23978         the event has no add and remove methods. Fixes #59629.
23980 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
23982         * object.c: Fixed possible integer overflow when allocating large
23983         strings.
23985 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
23987         * culture-info-tables.h: reflecting locale-builder updates.
23989 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
23991         * culture-info-tables.h: reflecting locale-builder updates.
23993 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
23995         * culture-info-tables.h: reflecting locale-builder updates.
23997 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
23999         * threads.c: Made Thread.Sleep abortable.
24001 2004-06-02  Martin Baulig  <martin@ximian.com>
24003         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24005         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24007 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24009         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24011 2004-05-30  Jackson Harper  <jackson@ximian.com>
24013         * reflection.c: Do not hardcode assembly versions or public key
24014         tokens anymore. All of this except the corlib section was dead
24015         code anyways.
24016         
24017 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24019         * object.c (mono_runtime_invoke_array): Automatically create boxed
24020         objects for byref valuetypes if needed. Fixes #59300.
24021         
24022         * object.c (mono_method_return_message_restore): Handle 
24023         MONO_TYPE_OBJECT as well.
24025 2004-05-28  Jackson Harper  <jackson@ximian.com>
24027         * reflection.c: The modified type encoding was causing build
24028         problems. Reverted for now.
24029         
24030 2004-05-28  Jackson Harper  <jackson@ximian.com>
24032         * reflection.c/h: Take an assembly ref so that we dont create
24033         fully qualified names when encoding types in the same assembly as
24034         the custom attribute being emitted.
24035         * appdomain.c: Increment version number.
24036         
24037 2004-05-26  Duncan Mak  <duncan@ximian.com>
24039         * icall.c
24040         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24041         Set the full version number (major, minor, build, revision).
24043 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24045         * marshal.c (emit_struct_conv): increment src/dst after blit
24046         (mono_marshal_get_managed_wrapper,
24047         mono_marshal_get_native_wrapper): make sure we have marshalling
24048         info before marshalling params (info computation affects
24049         blittable)
24051         * class.c (class_compute_field_layout): correctly deal with
24052         blittable
24053         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24054         value types (as per what windows dows by default)
24055         (mono_class_setup_mono_type): System.ValueType is blittable
24056         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24057         blittable
24059         * marshal.c (mono_marshal_load_type_info): flag types  as
24060         non-blittable if the native layout doesn't match the managed
24061         layout
24063 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24065         * appdomain.c: don't add stuff in the private search path that is
24066         above the application base. If application base is not set, there's
24067         no private search path.
24069 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24071         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24072         byref struct arguments in native->managed marshalling.
24074 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24076         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24077         cache methods using signature (special case for methods
24078         that are value type or string class)
24079         
24080         * image.c (mono_image_close): clean up allocated GSList's
24081         in runtime_invoke_cache.
24083 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24085         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24086         there's no MONO_CFG_DIR environment variable defined.
24088 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24090         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24092 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24094         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24095           is interrumped.
24096         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24097           before waiting for it, and call CloseHandle after the wait to unref it.
24098           This will make sure that handles are not disposed too early.
24100 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24102         * appdomain.c:
24103         * appdomain.h:
24104         * icall.c: removed
24105         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24106         needed now.
24108         * object.c: se the application_base only for the domain that runs
24109         Main. Fixes bug #59216,
24111 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24113         * appdomain.c:
24114         * object.c: only the domain in which Main is run have
24115         SetupInformation.ConfigurationFile set, so moved a few lines from
24116         appdomain.c to object.c.
24118 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24120         * appdomain.c: we tried to load [name].(dll|exe), but according
24121         to bug #57710, we must also try [culture]/[name].(dll|exe) and
24122         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
24123         There's a test case attached to bug #58922.
24125 2004-05-27  Dick Porter  <dick@ximian.com>
24127         * icall.c:
24128         * file-io.c: Implemented icalls for locking and unlocking regions
24129         in a file.
24130         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
24131         FALSE on error (fixes both compiler warning and real bug.)
24133 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
24135         * culture-info-tables.h: reflecting locale-builder updates.
24137           (Added missing ChangeLog entry for 05/26)
24139 2004-05-27  Jackson Harper  <jackson@ximian.com>
24141         * locales.c: Fix some cut and paste errors.
24142         
24143 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24145         * mono-config.c: set the correct path for config. directory on windows.
24147 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24149         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
24150           on win32.
24152 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24154         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
24155         from pinvoke functions.
24156         
24157         * marshal.c (mono_ftnptr_to_delegate): Implement this.
24159 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24161         * culture-info-tables.h: reflecting locale-builder updates.
24163 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24165         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
24166         #59086.
24168 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
24170         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
24171         * icall.c: Modified icalls for RNG.
24172         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
24173         Windows (CryptoAPI).
24175 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24177         * locales.c: Fix build.
24179 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
24181         * culture-info-tables.h: reflecting locale-builder updates.
24183 2004-05-25  Jackson Harper  <jackson@ximian.com>
24185         * locales.c: When creating the current culture use the $LANGs
24186         specific culture. So DateTimeFormat and NumberFormat entries are created.
24187         
24188 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24190         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
24191         a char array as parameter.
24193 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
24195         * image.c: In mono_image_open(), always use an absolute path name to
24196           look for already loaded images.
24198 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
24200         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
24201         missing in the windows build (like older cygwin include files).
24203 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
24205         * icall.c: Fixed check for possible integer overflow in Buffer_
24206         BlockCopy icall. Replaced comments style // by /* */.
24208 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
24210         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
24211         
24212         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
24213         check after MONO_VTADDR. Fixes pinvoke2.exe.
24215         * marshal.h marshal.c metadata.h: Add beginnings of support for
24216         ftnptr -> delegate marshalling.
24218 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
24220         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
24221         * threads.c: Fix warnings.
24223 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
24225         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
24226         * icall.c: Registered icalls for Suspend and Resume.
24227         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
24228           Thread.Abort.
24229         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
24230         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
24231         * process.c: Use WaitForSingleObjectEx.
24232         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
24233           checkpoints.
24234         * threads.c, threads.h: Make use of new Ex wait methods. Improved
24235           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
24236           for Suspend and Resume. Added new mono_thread_stop, used for stoping
24237           background threads. Added basic support for Abort in Windows.
24238           Start new threads using a managed delegate invoke wrapper. This wrapper
24239           has an interruption checkpoint that is needed since an interruption
24240           can be requested before the thread leaves the unmanaged code that starts 
24241           the thread.
24242         * marshal.c: Added interruption checkpoint after every native call, and
24243           also before managed calls for wrappers called from unmanaged code to
24244           go into managed code.
24245         * object.h: Added new field in MonoThread to keep track of interruption
24246           requests.
24248 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
24250         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
24251         calls.
24253 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24255         * appdomain.c:
24256         * assembly.c:
24257         * gc.c:
24258         * locales.c:
24259         * mono-config.c:
24260         * rand.c: getenv -> g_getenv (windows!)
24262         * process.c: complete_path is also used on non-windows platforms.
24264 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24266         * icall.c: new signature for Process_Start.
24268         * process.[ch]: new signature for Process_Start. If we're on windows
24269         and UseShellExecute is false, we have to search for the program by
24270         ourselves if we don't get a full path.
24272 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
24274         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
24275         marshalling and call CleanUpNativeData if needed. Fixes #58646.
24277 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24279         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
24280         Fixes bug #58373.
24282 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24284         * process.c: use double quotes to quote program name and arguments on
24285         windows. Fixes bug #58575.
24287 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24289         * file-io.c: don't return "." and ".." when using windows Find*File.
24291 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
24293         * marshal.c: Don't pass wrappers to message init because method 
24294         addressed used to lookup metadata. part of remoting[2|3] fix.
24296 2004-05-15  Jackson Harper  <jackson@ximian.com>
24298         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
24299         path is essentially the same as MONO_PATH except that it points to
24300         GACs instead of lib directories.
24301         * loader.h: The user gac is gone so we dont need function to
24302         enable/disable it.
24303         * mono-config.c: user gac option is now gone.
24304         
24305 2004-05-15  Jackson Harper  <jackson@ximian.com>
24307         * culture-info.h: Make defines more consistent, add calendar data
24308         to the culture info table.
24309         * culture-info-tables.h: Add basic calendar data. Basically
24310         everyone gets default gregorian until all the data is
24311         updated.
24312         * locales.c: Use the new consistent defines. Set calendar data for
24313         culture info objects.
24314         * object.h: add a field for calendar data to CultureInfo
24315         
24316 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
24318         * image.c: image->runtime_invoke_cache is keyed on signatures now.
24319         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
24320         a signature.
24321         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
24322         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
24323         an extra param that is the pointer of the method to invoke. The IL for
24324         the invoke method is no longer specific to the method, but to the
24325         signature of the method. Thus, we can share the same code for multiple
24326         methods. This reduces the number of methods that have to be compiled.
24328 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
24330         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
24332         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24334         * icall.c: Optimize Buffer.BlockCopy.
24336 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24338         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
24339         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
24340         quote). Changed them to "MMMM yyyy".
24342 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
24344         * rand.c
24345         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
24347 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
24349         * reflection.h: Updated after changes to managed structures.
24351         * appdomain.c: Bump corlib version.
24353 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24355         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
24356         windows.
24358 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24360         * Makefile.am: link to ../os/libmonoos.la on windows.
24362         * assembly.c:
24363                 -If MONO_DEBUG, warn about non-existing directories in
24364                 MONO_PATH.
24365                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
24366                 compile time variable.
24367                 -Removed init_default_path and call mono_set_rootdir from
24368                 libmonoos.a instead (windows only).
24370         * assembly.h: declare mono_assembly_getrootdir().
24372         * domain.c:
24373         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
24375         * loader.c: s/getenv/g_getenv/
24377 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
24379         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
24381         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
24383         * metadata.h: Add new marshalling conversions.
24385         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
24386         function.
24388         * reflection.c (mono_reflection_get_type): Lookup the type in all
24389         modules of a multi-module assembly. Fixes #58291.
24391 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
24393         * threads.c: Before aborting a background, set the StopRequested
24394         state.  This avoids throwing the Abort exception.
24395         In mono_thread_manage, don't continue with the shutdown until all
24396         aborted threads have actually stopped.
24398 2004-05-10  Jackson Harper  <jackson@ximian.com>
24400         * locales.c: Remove the modifier from culture names.
24401         
24402 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24404         * Makefile.am: monosn is not installed any more. It has been deprecated
24405         in favor of sn.
24407 2004-05-07  Jackson Harper  <jackson@ximian.com>
24409         * locales.c
24410         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
24411         Fix array construction, add bailout if the length is 0.
24413 2004-05-07  Dick Porter  <dick@ximian.com>
24415         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
24416         machine doesn't have a DNS entry.  Patch by Urs Muff
24417         (umuff@quark.com), fixes bug 57928.
24419 2004-05-06  Jackson Harper  <jackson@ximian.com>
24421         * reflection.c: Handle null PublicTokens properly. alloc mem for
24422         assembly names culture so we dont crash when freeing it.
24423         
24424 2004-05-06  Jackson Harper  <jackson@ximian.com>
24426         * assembly.c: Check the usergac when loading with partial names.
24427         
24428 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24430         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
24431         does nothing for now (not required for Linux/Windows) but the class
24432         library can call it (and a newer or modified runtime could need it).
24433         * icall.c: Registred icall.
24435 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24437         * loader.c: prints a message on module loading error we set MONO_DEBUG
24438         environment variable.
24440 2004-05-05  Jackson Harper  <jackson@ximian.com>
24442         * appdomain.c: Handle PublicKeyToken=null properly.
24443         
24444 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24446         * environment.c|h: Added icall ves_icall_System_Environment_
24447         GetOSVersionString to get the current OS version as a string.
24448         * icall.c: Registred icall.
24450 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
24452         * object.c: in mono_object_get_virtual_method(), take into account that
24453         non-virtual methods don't have a slot in the vtable. Check needed when
24454         the object is a proxy.
24456 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
24458         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
24459         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
24461         * object.c (mono_class_compute_gc_descriptor): Fix warning.
24463         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
24464         passed when a valuetype is expected.
24466         * object.c (mono_unhandled_exception): Only set the exit code if the
24467         exception happens in the main thread. Fixes thread5.exe.
24469         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
24470         invalid names. Fixes #58047.
24472 2004-05-03  Jackson Harper  <jackson@ximian.com>
24474         * assembly.c: This line was committed accidently and is unneeded.
24475         
24476 2004-05-03  Jackson Harper  <jackson@ximian.com>
24478         * icall.c: Add new icall for Assembly::LoadWithPartialName
24479         * assembly.c/.h: new function that probes the GAC to load partial
24480         assembly names by Paolo Molaro.
24481         
24482 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24484         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
24485         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
24486         (type_get_fully_qualified_name): Added PublicKeyToken when building a
24487         full type name.
24489 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24491         * appdomain.c: fixed check for 'neutral' culture and removed warning.
24492         * reflection.c: fix bug when parsing a full type name and Version is not
24493         the last thing in the string.
24495 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
24497         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
24498         crashes when it is freed.
24500 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24502         * assembly.c: print the compat warning to stderr.
24504 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
24506         * assembly.c (mono_assembly_load_references): Add a compatibility
24507         hack to run old applications that might be still referencing the
24508         3300-based assemblies, only do this for System.xxx.
24510 2004-05-01  Jackson Harper  <jackson@ximian.com>
24512         * appdomain.c: If the culture is neutral we set it to "".
24513         
24514 2004-04-29  Jackson Harper  <jackson@ximian.com>
24516         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
24518 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
24520         * string-icalls.c: added low overhead function for copying chars
24521         * icall.c: added needed icall for the above function
24523 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24525         * icall.c: fix return value of get_global_assembly_cache.  Implemented
24526         Environment.GetLogicalDrives.
24528 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
24530         * rand.c: try and talk to egd or prngd
24531         for random bytes if opening devices fail.
24533 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
24535         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
24536         alignment for the type using the native alignment of its members 
24537         instead of using klass->min_align.
24539         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
24541 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24543         * file-io.c:
24544         * socket-io.c: added check for sys/aio.h.
24546 2004-04-28  Dick Porter  <dick@ximian.com>
24548         * threads.c: Don't abort a thread thats already aborting, when
24549         terminating everything.
24551 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24553         * icall.c: added 2 new async calls for Socket.
24555         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
24556         IO on *nix systems.
24558         * threadpool.c: removed unused variable.
24560 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
24562         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
24564 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24566         * locales.c: put back string_invariant_tolower () and
24567         string_invariant_toupper ().
24569 2004-04-26 David Waite <mass@akuma.org>
24571         * file-io.h:
24572         * socket-io.h:
24573         * threads.h:
24574         * unicode.h: remove comma from end of enumeration declarations
24576 2004-04-26 David Waite <mass@akuma.org>
24578         * debug-mono-symfile.h:
24579         * decimal.c:
24580         * mono_debug.h:
24581         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
24584 2004-04-26  Jackson Harper  <jackson@ximian.com>
24586         * appdomain.c: Increment version number.
24587         
24588 2004-04-26  Jackson Harper  <jackson@ximian.com>
24590         * appdomain.c: Set assembly references public token value when
24591         PublicKeyToken is specified, not the hash_value. Free public token
24592         values when free assembly name data. Previously the public key
24593         token was hex decoded, however we are using hex encoded public key
24594         tokens, so this is not neccasary.
24595         * assembly.c: Lookup assemblies in the gac if their public token
24596         value is set. Add function to allow enabling user gac
24597         lookups. Specify whether or not the assembly was loaded from the
24598         GAC. Compare full assembly names when checking the cache for
24599         assemblies (Temporarily disabled see comment in code). Remove
24600         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
24601         specifies trace-loader they get extra info to stdout on the
24602         loading of assemblies.
24603         * image.h: Add a field for an assembly references public token
24604         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
24605         whether an assembly has been loaded from the GAC.
24606         * image.c: Remove a corlib -> mscorlib name mapping.
24607         * loader.h: Add function to enable/disable the user gac.
24608         * mono-config.c: Check if the usergac is enabled in the config
24609         file.
24610         * icall.c: New icall to determine whether or not an assembly has
24611         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
24612         * tabldefs.h: Add constant for assemblyref flag that specifies a
24613         full public key is used instead of a public token.
24614         * reflection.c: Remove mscorlib -> corlib mappings. Set
24615         PublicTokenValue instead of hash value. This value is a hex
24616         string so it does not need to be expanded.
24618 2004-04-26  Martin Baulig  <martin@ximian.com>
24620         * mono-debug-debugger.c (mono_debugger_initialize): Set
24621         `mono_debugger_initialized' before calling mono_debug_lock().
24623 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
24625         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
24626           InternalToUpper/InternalToLower.
24627         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
24628           removed invariant culture shortcut.  This is now done in managed code.
24629         * locales.c: (string_invariant_toupper/tolower) removed.
24631 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24633         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
24634         Added Poll internal call.
24636         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
24637         call for Poll. Select was too heavy for polling a single socket.
24639         * threadpool.[ch]: added mono_threadpool_cleanup.
24640         * threads.c: use it. Don't use Thread_Abort on windows.
24642 2004-04-23  Martin Baulig  <martin@ximian.com>
24644         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
24646 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
24648         * icall.c: Registred new icalls for key pair protection and added an
24649         icall for Environment.GetFolderPath on Windows.
24650         * security.c|h: Added new icalls for key pair protection.
24652 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24654         * socket-io.c: don't display the non-supported family warning for known
24655         families. Now this is not displayed on windows when checking support
24656         for IPv4/IPv6.
24658 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24660         * class.c: don't display the layout warning for static fields.
24662 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
24664         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
24665         * locales.c, locales.h: Added new icalls for culture-specific
24666         Char.ToLower and Char.ToUpper.
24668 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24670         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
24671         by David Waite.
24673 2004-04-20  Martin Baulig  <martin@ximian.com>
24675         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
24676         of the type name before passing it to mono_reflection_type_from_name().
24678 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
24680         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
24681         encodings here. Fixes #56965.
24683 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
24685         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
24686         fix test on strstr result not that I can see anything that
24687         relies on the result.
24689 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
24691         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
24692         Fixes #57081.
24694         * marshal.c (mono_marshal_get_string_encoding): New helper function.
24696         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
24697         function to determine which marshalling to use for strings. Fixes
24698         #56965.
24700         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
24702         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
24704 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
24706         * icall.c: #include mono-config.h
24708 2004-04-15  Jackson Harper  <jackson@ximian.com>
24710         * culture-info-tables.h: Fix date formats for en-US culture.
24711         
24712 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
24714         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
24715         ThreadPool.SetMinThreads.
24716         * threadpool.c: Implemented ThreadPool.GetMinThreads and
24717         ThreadPool.SetMinThreads.
24719 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24721         * mono-config.c: also load the .config file in the directory
24722         where the assembly was found.
24724 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
24726         * assembly.c: load per-assembly config files.
24727         * icall.c: decrapified code to get the config dir and moved to
24728         mono-config.c.
24729         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
24730         per-assembly config files. When doing a dll map lookup give precedence
24731         to the per-assembly data.
24733 2004-04-14  Martin Baulig  <martin@ximian.com>
24735         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
24736         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
24737         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
24739         * mono-debugger-debugger.c: While the debugger is locked, remember
24740         whether the symbol tables have changes and send one single
24741         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
24743 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
24745         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
24747         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
24748         function.
24750         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
24751         account when marshalling string arrays. Fixes #56965.
24753 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
24755         * icall.c: Add new icalls mapping for security.
24756         * security.c|h: Add internal calls for WindowsIdentity,
24757         WindowsImpersonationContext and WindowsPrincipal.
24759 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
24761         * class.c: Added comment to ensure the System.MonoDummy class
24762         is removed when no longer necessary
24764 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
24766         * appdomain.c: Pass arguments to the bootstraping exceptions to
24767         minimize JITed methods at boot
24769         * metadata.c (mono_exception_from_name_two_strings): Allow for the
24770         second string to be null.
24772         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
24773         Change the protocol to minimize the JIT methods at startup.  Now
24774         it Returns the internal codepage, if the value of "int_code_page"
24775         is 1 at entry, and we can not compute a suitable code page
24776         number, returns the code page as a string.
24778 2004-04-13  Jackson Harper  <jackson@ximian.com>
24780         * culture-info-tables.h: Fix number of decimal digits for all
24781         english locales.
24783 2004-04-13  Jackson Harper  <jackson@ximian.com>
24785         * icall.c: Clairfy out of sync error message. It is not always
24786         your corlib that is out of sync.
24788 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
24790         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
24791         properties when only the set accessor is overriden. Fixes #55874.
24793 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
24795         * assembly.c (mono_assembly_load_references): Make this thread safe.
24796         Fixes #56327.
24798 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
24800         * monosn.c: Add missing initialization calls.
24802 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
24804         * locales.c:
24805         ves_icall_System_Globalization_CultureInfo_construct_number_format
24806         Fix g_assert so it compiles on fussier compilers re int/ptr
24807         mismatch
24809 2004-04-08  Dick Porter  <dick@ximian.com>
24811         * socket-io.h:
24812         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
24813         53992.  Also rearrange the code so that the internal calls return
24814         an error value and exceptions are thrown from managed code.
24816         * icall.c: Add type info to the socket icalls.
24818 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24820         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
24821         owes me a beer.
24823 2004-04-07  Martin Baulig  <martin@ximian.com>
24825         * class.c (mono_class_from_generic_parameter): Don't default
24826         `klass->parent' to `mono_defaults.object_type'.
24828 2004-04-07  Martin Baulig  <martin@ximian.com>
24830         * reflection.c (mono_reflection_initialize_generic_parameter): Set
24831         `param->pklass->reflection_info'.       
24833 2004-04-07  Jackson Harper  <jackson@ximian.com>
24835         * culture-info-tables.h: Fix date separator symbol.
24836         
24837 2004-04-07  Martin Baulig  <martin@ximian.com>
24839         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
24840         from System.Type to System.MonoType.
24842 2004-04-07  Martin Baulig  <martin@ximian.com>
24844         * reflection.h
24845         (MonoReflectionGenericParam): Added `has_reference_type' and
24846         `has_value_type' fields.
24848         * reflection.c (mono_image_get_generic_param_info): Encode the
24849         correct flags if we have the `class' or `struct' constraint.
24851 2004-04-07  Martin Baulig  <martin@ximian.com>
24853         * reflection.h
24854         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
24856 2004-04-07  Jackson Harper  <jackson@ximian.com>
24858         * appdomain.c: Revert extra patches, just wanted to bump the
24859         version number.
24860         
24861 2004-04-07  Jackson Harper  <jackson@ximian.com>
24863         * Makefile.am: Add culture-info private headers.
24864         * icall.c: Add new icalls for contructing locales.
24865         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
24866         * locales.h: Declare new culture info construction methods.
24867         * object.h: Add new fields used to avoid the CultureMap to
24868         MonoCultureInfo.
24869         * culture-info.h: Definition of structs used in the culture info
24870         tables.
24871         * culture-info-tables.h: Autogenerated tables that contain culture
24872         info data. This file was generated with the locale-builder tool.
24873         * appdomain.c: Incement corlib version number.
24874         
24875 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
24877         * appdomain.c: (mono_runtime_init) move mono_thread_init
24878         to before mono_object_new calls so critical sections
24879         are initialized before use.
24881 2004-04-07  Martin Baulig  <martin@ximian.com>
24883         * icall.c
24884         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
24885         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
24886         (ves_icall_MonoGenericParam_initialize): Removed.
24887         (monogenericparam_icalls): Removed.
24888         (generictypeparambuilder_icalls): Added new table for
24889         System.Reflection.Emit.GenericTypeParameterBuilder.
24891         * reflection.c
24892         (mono_reflection_define_generic_parameter): Removed.
24893         (mono_reflection_initialize_generic_parameter): This is now called
24894         from GenericTypeParameterBuilder's .ctor.
24896 2004-04-06  Martin Baulig  <martin@ximian.com>
24898         * class.c (mono_class_init): Don't inflate nested classes in a
24899         generic instance.
24900         (mono_type_get_name_recurse): Include the generic arguments for
24901         generic instances and generic type declarations.
24902         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
24903         (_mono_class_get_instantiation_name): Removed.
24904         (mono_class_create_generic): Always use `gklass->name' as our name.
24906         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
24908         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
24909         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
24910         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
24911         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
24912         closed generic methods here.
24914         * reflection.c
24915         (mono_reflection_generic_inst_get_nested_types): Removed.
24916         (inflate_mono_method): Copy the generic parameters from the
24917         MonoMethodHeader into out MonoGenericMethod.
24919 2004-04-06  Martin Baulig  <martin@ximian.com>
24921         * row-indexes.h
24922         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
24924         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
24926         * reflection.c (build_compressed_metadata): If we have any entries
24927         in the GenericParam, MethodSpec or GenericParamConstraint tables,
24928         set the header version to 1.1.
24930 2004-04-06  Martin Baulig  <martin@ximian.com>
24932         * class.c (mono_class_init): If we're a generic instance,
24933         initialize our nested classes, too.
24934         (_mono_class_get_instantiation_name): Deal with the new `!%d'
24935         suffix. 
24937 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24939         * process.c: quote the argument passed to the shell on windows.
24941 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
24943         * threads.c (mono_alloc_special_static_data): Allow this to be
24944         called during startup.
24946 2004-04-02  Martin Baulig  <martin@ximian.com>
24948         * icall.c
24949         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
24951 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
24953         * icall.c: Fix build.
24955 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
24957         * Makefile.am: Added security.c|h.
24958         * icall.c: Added icall for get_UserName;
24959         * security.c: New file for security related icalls. Added function
24960         get_UserName for System.Environment (fix #56144).
24961         * security.h: New. Header file for security.c
24963 2004-04-02  Dick Porter  <dick@ximian.com>
24965         * icall.c: Deleted the icalls that were obsoleted some time ago
24966         by the ICU string code, and which were mixed into the icall
24967         rearranging.  Fixes bug 55969.
24969         * string-icalls.h: 
24970         * string-icalls.c: Deleted the code that those icalls reference.
24972 2004-04-01  Martin Baulig  <martin@ximian.com>
24974         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
24976         * class.c (mono_class_from_generic_parameter): Don't set 
24977         TYPE_ATTRIBUTE_INTERFACE.
24978         (my_mono_class_from_generic_parameter): Likewise.
24980 2004-04-01  Martin Baulig  <martin@ximian.com>
24982         * loader.c (find_method): Added an optional `MonoClass *ic'
24983         argument to search in a specific interface.
24984         (mono_get_method_constrained): New public function.
24986 2004-04-01  Martin Baulig  <martin@ximian.com>
24988         * reflection.c (mono_image_get_generic_field_token): Use the
24989         `handleref' cache here.
24991 2004-04-01  Martin Baulig  <martin@ximian.com>
24993         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
24995         * reflection.c (create_generic_typespec): Use the `typespec' hash
24996         here, not the `typeref' one.    
24998 2004-04-01  Martin Baulig  <martin@ximian.com>
25000         * class.c (mono_class_inflate_generic_type): Moved the
25001         functionality into a new static inflate_generic_type() which
25002         returns NULL if it didn't do anything.  Only increment the
25003         `mono_stats.inflated_type_count' if we actually inflated
25004         something.
25005         (mono_class_get_full): Check the classes type to see whether we
25006         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25008 2004-04-01  Jackson Harper  <jackson@ximian.com>
25010         * reflection.c: Set culture for assembly references.
25011         
25012 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25014         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25016 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25018         * assembly.c:
25019         (do_mono_assembly_open): the critical section also covers
25020         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25022 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25024         * threads.c:
25025         (mono_manage_threads): abort the background threads when finishing.
25026         Fixes bug #47232.
25028 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25030         * gc.c: only close the done_event handle if there was no timeout.
25031         C-ified comments.
25033 2004-03-30  Martin Baulig  <martin@ximian.com>
25035         * icall.c (icall_entries): It's called "System.Activator", not
25036         "System.Activation".    
25038 2004-03-30  Martin Baulig  <martin@ximian.com>
25040         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25041         (mono_class_create_from_typespec): Likewise.
25043 2004-03-30  Martin Baulig  <martin@ximian.com>
25045         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25046         `has_ctor_constraint' and `initialized'.
25048 2004-03-30  Martin Baulig  <martin@ximian.com>
25050         * reflection.c (encode_new_constraint): New static function to add
25051         the constructor constraint attribute to a type parameter.
25052         (encode_constraints): Call encode_new_constraint() if necessary.
25054         * reflection.h
25055         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25057         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25058         
25059 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25061         * reflection.c, icall.c: add support for pinning variables. 
25063 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25065         * marshal.c (mono_marshal_get_managed_wrapper):
25066         init bool local with zero rather than null.
25068 2004-03-29  Martin Baulig  <martin@ximian.com>
25070         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25071         the "official" behavior here.
25072         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25074 2004-03-29  Martin Baulig  <martin@ximian.com>
25076         * icall.c: Reflect latest API changes.
25078 2004-03-29  Martin Baulig  <martin@ximian.com>
25080         * loader.c (mono_get_method_from_token): Also call
25081         mono_metadata_load_generic_params () for abstract and interface
25082         methods; replace the type arguments in the method signature with
25083         the ones which are loaded from the metadata.
25085 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25087         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25088         of the lock is not the current thread. MS.NET don't do it, in spite of
25089         what the documentation says. See bug #56157.
25091 2004-03-28  Martin Baulig  <martin@ximian.com>
25093         * class.c (mono_class_init): Don't call init_properties() and
25094         init_events() for generic instances; set `prop->parent' when
25095         inflating properties.
25097         * reflection.c (mono_generic_inst_get_object): Call
25098         `mono_class_init (ginst->klass)'.
25099         (mono_type_get_object): Only create a MonoGenericInst if your
25100         generic type is a TypeBuilder.
25101         (do_mono_reflection_bind_generic_parameters): Only set
25102         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25104 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25106         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25107         Fixes #56091.
25109 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25111         * icall.c: added Kill_internal icall.
25112         * process.[ch]: added Kill_internal icall.
25114 2004-03-25  Martin Baulig  <martin@ximian.com>
25116         * class.h (MonoStats): Added `generic_instance_count',
25117         `inflated_method_count', `inflated_type_count' and
25118         `generics_metadata_size'.       
25120 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25122         * reflection.c: no warnings now.
25124 2004-03-25  Martin Baulig  <martin@ximian.com>
25126         * class.c (mono_class_get_full): New public function; does a
25127         mono_class_get(), but also takes a `MonoGenericContext *'.
25129         * loader.c (mono_field_from_memberref): Renamed to
25130         `field_from_memberref', made static and added `MonoGenericContext *'
25131         argument.
25132         (mono_field_from_token): Added `MonoGenericInst *' argument.
25133         (method_from_memberef): Likewise.
25134         (mono_get_method_from_token): Likewise.
25135         (mono_get_method_full): New public function; does a
25136         mono_get_method(), but also takes a `MonoGenericContext *'.
25138         * verify.c (mono_method_verify): Get the method's generic context
25139         and pass it to mono_field_from_token(), mono_get_method_full() and
25140         mono_class_get_full().
25142 2004-03-25  Martin Baulig  <martin@ximian.com>
25144         * class.c (mono_class_inflate_generic_type): Take a
25145         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
25146         `MonoGenericMethod *'.
25148 2004-03-25  Martin Baulig  <martin@ximian.com>
25150         * loader.h (MonoMethodInflated): Store the MonoGenericContext
25151         instead of the MonoGenericMethod here.
25153 2004-03-25  Martin Baulig  <martin@ximian.com>
25155         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
25156         each time we create a new MonoGenericInst, we also create a new
25157         context which points back to us.
25159         * class.c (inflate_method): Use `ginst->context' instead of
25160         creating a new context.
25162         * loader.c (method_from_memberref): Use
25163         `klass->generic_inst->context' instead of creating a new context.
25165 2004-03-25  Martin Baulig  <martin@ximian.com>
25167         * class.h (MonoGenericContext): New struct.
25168         (MonoGenericMethod): Removed `generic_inst'.
25170         * class.c (mono_class_inflate_generic_method): Take a
25171         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
25173 2004-03-25  Martin Baulig  <martin@ximian.com>
25175         * loader.h (MonoMethodInflated): New typedef.
25177         * metadata.h (MonoMethodSignature): Removed `gen_method', make
25178         `generic_param_count' consume just 30 bits, added `is_inflated'
25179         and `has_type_parameters' flags (one bit each).
25181         * class.c (mono_class_inflate_generic_method): Create a
25182         MonoMethodInflated instead of a MonoMethodNormal and set
25183         `is_inflated' in the method signature.
25185         * class.h (MonoGenericMethod): Removed `generic_method'.
25187 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
25189         * image.c: Make sure the name of a MonoImage is always an absolute path.
25190           This fixes bug #54415.
25192 2004-03-24  Martin Baulig  <martin@ximian.com>
25194         * class.c (mono_class_setup_vtable): If we're a generic instance,
25195         use our generic type's vtable size.
25197 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
25199         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
25200         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
25201         problems.
25203 2004-03-23  Martin Baulig  <martin@ximian.com>
25205         * class.h (MonoDynamicGenericInst): Added `int count_events' and
25206         `MonoEvent *events'.
25208         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
25209         (typebuilder_icalls): Added "get_event_info"; calls
25210         mono_reflection_event_builder_get_event_info(). 
25212         * reflection.c (mono_reflection_generic_inst_initialize): Added
25213         `MonoArray *events'.
25214         (mono_reflection_event_builder_get_event_info): New function.
25216 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
25218         * object.h: add mono_type_initialization_init
25220         * object.c (mono_runtime_class_init): 
25221         implement class constructor synchronization rules
25222         to cope with threading issues.  
25223         add mono_type_initialization_init
25225         * appdomain.c (mono_runtime_init): call 
25226         mono_type_initialization_init
25228         * class.h: removing initializing field from MonoVTable
25230 2004-03-23  Martin Baulig  <martin@ximian.com>
25232         * class.c (my_mono_class_from_generic_parameter): Use
25233         `param->name' if it's not NULL. 
25235 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
25237         * class.c: do not insert non-virtual methods in the vtable.
25238         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
25239         that means the method is non-virtual. This never would have
25240         happened before.
25242 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
25244         * profiler.c: Added lock for accessing coverage_hash.
25246 2004-03-22  Martin Baulig  <martin@ximian.com>
25248         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
25249         `method->method->signature->generic_param_count != 0' to make it
25250         work for interface methods.
25252 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25254         * process.c: quote the string passed to the shell using g_shell_quote.
25256 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25258         * threads.c:
25259         (mono_threads_manage): don't remove the finalizer thread and self
25260         from the threads hash table so that mono_thread_manage can be called
25261         more than once.
25263 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25265         * process.c: quote the arguments when UseShellExecute is true. Fixes
25266         bug #55790.
25268 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25270         * threads.c: set mono_thread_detach as a cleanup routine for every
25271         thread. This way it's always executed upon thread termination, either
25272         aborted or finished normally. No more xsp hangs!
25274 2004-03-17  Martin Baulig  <martin@ximian.com>
25276         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
25277         `int count_nested' and a `MonoType **nested'.
25279         * reflection.c (mono_reflection_bind_generic_parameters): Moved
25280         most of the functionality into a new static
25281         do_mono_reflection_bind_generic_parameters() and don't take a
25282         `MonoType *nested_in' argument any more.  Don't compute nested
25283         types here.
25284         (mono_reflection_generic_inst_get_nested_types): New public method
25285         to get nested types.
25287         * class.c (mono_class_create_generic): Set `klass->nested_in' if
25288         we're a nested class.
25290         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
25291         mono_reflection_generic_inst_get_nested_types() to compute the
25292         nested types.
25294 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25296         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
25297         descriptive error message under windows.
25298         
25299 2004-03-17  Martin Baulig  <martin@ximian.com>
25301         * class.c (dup_type): Added `const MonoType *original' argument;
25302         copy the attrs from the original type.
25304 2004-03-17  Martin Baulig  <martin@ximian.com>
25306         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
25307         `m->generic_inst_cache' here.
25309 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25311         * exception.h exception.c: Add stack_overflow_exception.
25313 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25315         * threadpool.c:
25316         (overlapped_callback): call SetEvent *after* invoking the callback.
25317         No need to call CloseHandle.
25319 2004-03-16  Martin Baulig  <martin@ximian.com>
25321         * reflection.c (mono_image_get_fieldref_token): Take a
25322         `MonoReflectionField *' instead of a `MonoClassField *' and a
25323         `MonoClass *'; store the `MonoReflectionField *' in the hash.
25325 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25327         * appdomain.c: don't add the culture to the filename we're looking for
25328         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
25330 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25332         * locales.c: don't ignore symbols when doing case insensitive compares.
25333         Thanks Dick! Fixes bug #54046.
25335         * threads.c: surround 'threads' usage with enter/leave in
25336         mono_thread_manage.
25338 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
25340         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
25341         implicitly marshalled as [Out]. Fixes #55450.
25343         (mono_marshal_get_runtime_invoke): Zero out the result if there is
25344         an exception.
25346 2004-03-16  Martin Baulig  <martin@ximian.com>
25348         * class.c (mono_class_from_generic_parameter): Use the actual
25349         parameter name. 
25351 2004-03-16  Martin Baulig  <martin@ximian.com>
25353         * reflection.c (type_get_signature_size): New static function.
25354         Compues the size of the type in a method signature.
25355         (method_get_signature_size): New static function; calls
25356         type_get_signature_size() to compute the actual size of the
25357         method's signature.
25358         (method_encode_signature): Use method_get_signature_size() to get
25359         the signature's size rather than using `nparams * 10'.
25361 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25363         * file-io.h: define here WapiOverlapped on windows. I don't want the
25364         regular OVERLAPPED one.
25366         * file-io.c:
25367         * threadpool.c: somehow, BindIoCompletionCallback is not found.
25368         Disabling AIO on windows.
25370 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25372         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
25373         bug #55385.
25375 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25377         * appdomain.c: upgraded corlib version.
25379         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
25380         and BeginWrite. Allow opening files for asynchrnous operations.
25382         * file-io.h: new struct that maps FileStreamAsyncResult.
25383         * icall.c: added new icalls.
25384         * process.[ch]: support setting child process environment variables
25385         and use the SHELL or COMSPEC when UseShellExecute is true.
25387         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
25388         callback for async. IO is here and also BindHandle.
25390         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
25391         from here.
25393 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
25395         * reflection.c (create_custom_attr): Allow len == 0.
25397         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
25398         computation on big-endian machines.
25400 2004-03-13  Martin Baulig  <martin@ximian.com>
25402         * class.h (MonoGenericInst): Added `int count_ifaces'.
25404         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
25405         `ginst->count_ifaces' instead `klass->interface_count' since we
25406         may get called before the vtable is created.
25408         * loader.c (mono_method_get_param_names): If we're a generic
25409         instance, return and don't initialize the class.
25411         * reflection.c (mono_reflection_setup_generic_class): Don't call
25412         ensure_runtime_vtable().
25413         (mono_reflection_bind_generic_parameters): Set
25414         `ginst->count_ifaces'.
25416 2004-03-11  Jackson Harper <jackson@ximian.com>
25418         * icall.c:
25419         * unicode.c:
25420         * unicode.h: Remove unused System.Char icalls.
25421         
25422 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
25424         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
25425         code when we P/Invoke the first library in Windows.Forms, instead
25426         of when we first open the assembly.
25428         * assembly.c: Drop the lookup from here.
25430 2004-03-10  Martin Baulig  <martin@ximian.com>
25432         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
25433         class for properties, fields and events.  Finally fixes #54945.
25435 2004-03-10  Martin Baulig  <martin@ximian.com>
25437         * metadata.c (mono_metadata_class_equal): New static function;
25438         checks whether two generic instances or two generic parameters are
25439         equal.
25440         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
25441         compare classes.        
25443 2004-03-10  Martin Baulig  <martin@ximian.com>
25445         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
25447         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
25448         argument and write it into the `reflection_info' field.
25450         * icall.c
25451         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
25452         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
25454 2004-03-09  Jackson Harper  <jackson@ximian.com>
25456         * char-conversions.h: use 8 bits for numeric data its all we need
25457         * icall.c: numeric data is only 8 bits now.
25459 2004-03-09  Martin Baulig  <martin@ximian.com>
25461         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
25463         * class.c (init_properties, init_events): Initialize the new
25464         `parent' field.
25466         * reflection.c (typebuilder_setup_properties): Likewise.
25467         (typebuilder_setup_events): Likewise.
25469         * reflection.h (MonoEventInfo): Replaced `parent with
25470         `declaring_type' and `reflected_type'.
25472         * icall.c (ves_icall_get_property_info): Distinguish between
25473         declaring and reflected type.
25474         (ves_icall_get_event_info): Likewise.
25476 2004-03-09  Martin Baulig  <martin@ximian.com>
25478         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
25479         (ves_icall_Type_GetField): Correctly set field->klass.
25481 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
25483         * loader.h: Fix warning.
25485 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
25487         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
25488         library routine if present.  Notice that it will still continue
25489         executing even if its missing, for those working on the Gtk#
25490         edition of Windows.Forms.
25492         * assembly.c (do_mono_assembly_open): If loading the
25493         System.Windows.Forms call mono_loader_wini_init.
25495 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
25497         * class.h: Added MonoRemoteClass struct.
25498         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
25499         function for MonoStrings.
25500         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
25501         Added internal call for getting the proxy type.
25502         * marshal.c: Get the type of transparent proxies from its remote_class.
25503         Added methods that generate the IL for type checks and casts:
25504         mono_marshal_get_isinst, mono_marshal_get_castclass, 
25505         mono_marshal_get_proxy_cancast.
25506         * marshal.h: Declaration of the previous new methods.
25507         * object.c: Added new moethods for creating and updating MonoRemoteClass
25508         instances: mono_remote_class, mono_upgrade_remote_class, 
25509         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
25510         * verify.c: FIx transparent_proxy_fields layout.
25511         * appdomain.c: Bump corlib version.
25513 2004-03-04  Jackson Harper  <jackson@ximian.com>
25515         * icall.c: Add icall to access char conversion tables.
25516         * char-conversions.h: Character conversion tables.
25517         * Makefile.am: Add char-conversions.h private header file.
25518         
25519 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
25521         * appdomain.c (unload_thread_main): Increase unloading timeout to
25522         10 sec as a temporary workaround for Nant problems.
25524 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
25526         * gc.c: Add checks for GC_enable and GC_disable.
25528         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
25529         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
25530         (bug #54988).
25531         
25532 2004-02-27  Martin Baulig  <martin@ximian.com>
25534         * reflection.c (mono_reflection_bind_generic_parameters): Take a
25535         `MonoReflectionType *' instead of a `MonoType *'.
25537 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
25539         * gc.c (run_finalize): Avoid finalizing the object representing the
25540         finalizer thread.
25541         (finalizer_thread): Fix warning.
25543 2004-02-25  Martin Baulig  <martin@ximian.com>
25545         * class.c (_mono_class_get_instantiation_name): Added `int offset'
25546         argument for nested types.
25547         (mono_class_create_generic): Added support for nested generictypes.
25549         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
25550         `GList *nested'.
25552         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
25554         * reflection.c (method_encode_signature): Increase the minimum
25555         value of `size' from 10 to 11.
25556         (mono_reflection_bind_generic_parameters): Take `int type_argc'
25557         and `MonoType **types' arguments instead of the `MonoArray
25558         *types'; added `MonoType *nested_in'.  Recursively instantiate
25559         nested classes. 
25561 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
25563         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
25564         stack_overflow_ex members which are used by exception handling.
25566         * appdomain.c (mono_runtime_init): Initialize the new members.
25568         * gc.c (mono_gc_enable): New helper function.
25569         * gc.c (mono_gc_disable): New helper function.
25571 2004-02-23  Martin Baulig  <martin@ximian.com>
25573         * icall.c: I must have been really stupid - make it actually work
25574         this time ;-)
25576 2004-02-23  Martin Baulig  <martin@ximian.com>
25578         * loader.c (method_from_memberref): Only inflate the method if
25579         it's in another klass.
25581 2004-02-23  Martin Baulig  <martin@ximian.com>
25583         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
25584         (mono_class_init): If we're a generic instance and an interface,
25585         compute `class->interface_id'; also create `class->interfaces'
25586         here and inflate them.
25588         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
25589         `ginst->is_open'.
25590         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
25592         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
25594 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
25596         * reflection.c (method_encode_code): Improved the error message
25597         generated by the exception.
25599 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25601         * icall.c: Martin did not do what he said in the ChangeLog for
25602         2004-02-18, but put back the changes for properties and events.
25603         Commenting those changes out again and adding comment to bug #54518.
25604         
25605         * process.c: removed warning.
25607 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
25609         * marshal.c (emit_struct_conv): Print an error message instead of
25610         asserting when a type does not have the StructLayout attribute.
25612 2004-02-20  Martin Baulig  <martin@ximian.com>
25614         * reflection.c (mono_type_get_object): Also use the cache for
25615         generic instances.
25616         (mono_reflection_bind_generic_parameters): Always compute
25617         `ginst->ifaces'.        
25619 2004-02-20  Martin Baulig  <martin@ximian.com>
25621         * class.h (MonoGenericMethod): Removed `klass'.
25623         * class.c (mono_class_inflate_generic_method): Added `MonoClass
25624         *klass' argument.
25626 2004-02-20  Martin Baulig  <martin@ximian.com>
25628         * reflection.c (method_encode_methodspec): Actually use the
25629         uninflated signature for the memberref.
25631 2004-02-20  Martin Baulig  <martin@ximian.com>
25633         * class.h (MonoGenericMethod): Removed `declaring'.
25635         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
25636         is NULL, compute it here.
25638 2004-02-20  Martin Baulig  <martin@ximian.com>
25640         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
25642         * metadata.c (mono_metadata_generic_inst_hash): New method.
25643         (mono_metadata_generic_inst_equal): New method.
25645         * reflection.c (mono_reflection_bind_generic_parameters): Use the
25646         `klass->image->generic_inst_cache' cache to avoid creating
25647         duplicate MonoGenericInst's.
25649         * class.c (mono_class_inflate_generic_type): Use the cache.
25651 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25653         * object.c: fixed gc descriptor calculation for embedded valuetypes.
25655 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25657         * icall.c: added Socket.WSAIoctl icall.
25659         * socket-io.[ch]: implemented
25660         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
25662 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
25664         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
25666 2004-02-18  Urs C Muff  <umuff@quark.com>
25668         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
25669         this work on PPC and other big-endian architectures.
25671         * debug-mono-symfile.h: Prepended the names of all the `guint32'
25672         fields with an underscore to make sure they're only accessed by
25673         the read32() macro.
25675 2004-02-18  Martin Baulig  <martin@ximian.com>
25677         * icall.c: Put the klass->refclass changes back for methods and
25678         fields, but not for properties and events.  We're currently not
25679         distinguishing between DeclaringType and ReflectedType for
25680         properties and events, that's what caused the regressions.
25682 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25684         * object.c:
25685         (mono_async_result_new): the handle can be NULL.
25687         * threadpool.c: Use an event instead of a semaphore, don't initialize
25688         it until needed. This saves quite a few semaphores from being created
25689         when using the threadpool.
25691 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
25693         * object.c (mono_string_is_interned_lookup): Fix interning of long
25694         strings. Fixes #54473.
25696         * domain.c (ldstr_equal): Optimize if the two strings are equal.
25698         * icall.c: Revert the klass->refclass changes since they introduce
25699         regressions (bug #54518).
25701 2004-02-18  Martin Baulig  <martin@ximian.com>
25703         * class.c (mono_class_init): If we're a generic instance and don't
25704         come from a TypeBuilder, inflate our members here.
25705         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
25706         (mono_class_create_generic): New public method.
25707         (mono_class_initialize_generic): Removed.
25708         (get_instantiation_name): Renamed to
25709         _mono_class_get_instantiation_name() and made it public.
25711 2004-02-18  Martin Baulig  <martin@ximian.com>
25713         * class.c (mono_class_inflate_generic_type): Clear the new
25714         instance's `nginst->klass' when inflating a generic instance.
25715         (mono_class_is_subclass_of): Added (basic) support for generic
25716         instances.
25718 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
25720         * appdomain.h, domain.c: use a MonoCodeManager instead of a
25721         MonoMempool to hold compiled native code.
25723 2004-02-17  Martin Baulig  <martin@ximian.com>
25725         * class.h (MonoDynamicGenericInst): Added `count_properties' and
25726         `properties'.
25728         * reflection.c (mono_reflection_generic_inst_initialize): Added
25729         `MonoArray *properties' argument.
25731         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
25733 2004-02-17  Martin Baulig  <martin@ximian.com>
25735         * icall.c (ves_icall_Type_GetFields): Renamed to
25736         ves_icall_Type_GetFields_internal() and added a
25737         `MonoReflectionType *rtype' argument; pass it to
25738         mono_field_get_object() to set the field's "reflected" type.
25739         (ves_icall_Type_GetConstructors): Likewise.
25740         (ves_icall_Type_GetEvents): Likewise.
25741         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
25742         argument; pass it to mono_method_get_object() to set the method's
25743         "reflected" type.       
25745 2004-02-17  Martin Baulig  <martin@ximian.com>
25747         * class.h (MonoDynamicGenericInst): New type.
25748         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
25750         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
25751         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
25752         (ves_icall_MonoGenericInst_GetFields): New interncall.
25754         * class.c (mono_class_from_generic): Don't call
25755         mono_class_initialize_generic() if this is a dynamic instance;
25756         ie. it's being created from a TypeBuilder.
25757         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
25758         `class->byval_arg.type'.
25760         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
25761         to `inflate_method' and made static.
25762         (mono_reflection_inflate_field): Removed.
25763         (mono_reflection_generic_inst_initialize): New public method.
25765         * reflection.h (MonoReflectionGenericInst): Removed `methods',
25766         `ctors' and `fields'; added `initialized'.
25768 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
25770         * debug-helpers.c (mono_method_full_name): Fix output for empty
25771         namespaces.
25773 2004-02-12  Martin Baulig  <martin@ximian.com>
25775         * class.h (MonoClassField): Added `MonoType *generic_type'.
25777         * reflection.c (mono_image_get_fieldref_token): Added support for
25778         instantiated generic types.
25779         (field_encode_inflated_field): Removed.
25780         (mono_image_get_inflated_field_token): Removed.
25781         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
25783         * reflection.h (MonoReflectionInflatedField): Removed.
25785 2004-02-12  Martin Baulig  <martin@ximian.com>
25787         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
25788         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
25790         * reflection.c (mono_image_get_methodspec_token): Take a
25791         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
25792         (mono_image_create_token): Check whether we have a
25793         `method->signature->gen_method' and call
25794         mono_image_get_methodspec_token() if appropriate.
25795         (inflated_method_get_object): Removed.
25796         (mono_reflection_bind_generic_method_parameters): Return a
25797         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
25798         (mono_reflection_inflate_method_or_ctor): Likewise.
25800         * reflection.h (MonoReflectionInflatedMethod): Removed.
25802 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
25804         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
25805         for custom valuetype marshalling.
25807         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
25809 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25811         * icall.c: fixed WSAGetLastError_internal name.
25813 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
25815         * threads.c (mono_thread_attach): Allow this to be called multiple
25816         times for a thread.
25817         
25818         * threads.c (build_wait_tids): Do not wait for ourselves.
25820         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
25821         appdomain list is empty.
25823         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
25824         memory returned by mono_string_builder_to_utf16, since it points into
25825         managed memory. Thanks to Bernie Solomon for noticing this.
25827         * icall.c: Add AppDomainSetup icalls.
25829         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
25831         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
25832         types.
25834         * reflection.c (reflection_methodbuilder_to_mono_method): Save
25835         custom attributes to the method_aux struct. Also fix array indexes etc.
25837         * loader.c (mono_method_get_param_names): Make dynamic case work again.
25838         
25839 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
25841         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
25842         (both static and runtime) and reduce startup time.
25844 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
25846         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
25847         AsAny marshalling conversion instead of crashing.
25849         * marshal.c: Fix warnings.
25851 2004-02-09  Martin Baulig  <martin@ximian.com>
25853         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
25855         * reflection.h (MonoReflectionInflatedMethod): Removed the
25856         `declaring' field, it's now in the unmanaged MonoGenericMethod.
25858         * reflection.c (method_encode_methodspec): Removed the `method'
25859         argument; we get it from `gmethod->declaring'.
25860         (inflated_method_get_object): Removed the `declaring' argument.
25862 2004-02-09  Martin Baulig  <martin@ximian.com>
25864         * class.h (MonoGenericMethod): New type.
25865         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
25866         `generic_method'.
25868         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
25869         a `MonoGenericMethod *gen_method' one.
25871         * class.c (mono_class_inflate_generic_type): Take an additional
25872         `MonoGenericMethod * argument.  This is only non-NULL if we're
25873         inflating types for a generic method.   
25874         (mono_class_inflate_generic_signature): Renamed to
25875         inflate_generic_signature() and made static; take a
25876         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
25877         (inflate_generic_header): Take a `MonoGenericMethod *' argument
25878         instead of a `MonoGenericInst *' one.
25879         (mono_class_inflate_generic_method): Likewise.
25881         * reflection.c (encode_generic_method_sig): Take a
25882         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
25883         (method_encode_methodspec): Likewise.
25884         (inflated_method_get_object): Likewise. 
25886         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
25887         field with a `MonoGenericMethod *gmethod' one.  
25889 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
25891         * class.h (mono_class_has_parent): add parens to expansion
25892         so you can ! this.
25894 2004-02-08  Martin Baulig  <martin@ximian.com>
25896         * image.h (MonoImage): Removed `generics_cache'.
25898         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
25899         instead of a `MonoType *' argument; removed the `inflate_methods'
25900         argument.  Don't inflate methods here.
25902         * loader.c (find_method): If it's a generic instance, call
25903         mono_class_init() on the `sclass->generic_inst->generic_type'.
25905         * metadata.c (mono_type_size): Make this work on uninitialized
25906         generic instances; call it on the `ginst->generic_type's class.
25908         * reflection.c (mono_reflection_bind_generic_parameters): Call
25909         mono_class_from_generic() to create the `ginst->klass'.
25911 2004-02-08  Martin Baulig  <martin@ximian.com>
25913         * class.h (MonoClass): Changed type of `generic_inst' from
25914         `MonoType *' to `MonoGenericInst *'.
25916 2004-02-08  Martin Baulig  <martin@ximian.com>
25918         * icall.c (ves_icall_Type_BindGenericParameters): Just call
25919         mono_type_get_object(), this is now creating a `MonoGenericInst'
25920         for MONO_TYPE_GENERICINST.
25921         (ves_icall_MonoGenericInst_GetParentType): Likewise.
25922         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
25924         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
25925         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
25926         (inflated_method_get_object): Added `MonoClass *refclass' argument.
25927         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
25928         and reflected type.
25930         * reflection.h (MonoReflectionInflatedMethod): Removed
25931         `declaring_type' and `reflected_type'.
25933 2004-02-08  Martin Baulig  <martin@ximian.com>
25935         * class.h (MonoGenericInst): Added `MonoType *parent' and
25936         `MonoType **ifaces'.
25938         * reflection.h (MonoReflectionGenericInst): Removed `klass',
25939         `parent' and `interfaces'.
25941         * reflection.c (mono_reflection_bind_generic_parameters): Take a
25942         `MonoType *' argument and return a `MonoType *'.
25944         * icall.c
25945         (ves_icall_MonoGenericInst_GetParentType): New interncall.
25946         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
25948 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
25950         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
25951         valuetype marshalling.
25953 2004-02-06  Martin Baulig  <martin@ximian.com>
25955         * class.c
25956         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
25957         (my_mono_class_from_generic_parameter): Likewise.
25959 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
25961         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
25962         contents of the symbol files lazily.
25964         * object.h (MonoThread): Add 'name' and 'name_len' fields.
25966         * threads.h threads.c icall.c: New icalls for getting and setting the
25967         threads name.
25969 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
25971         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
25972         Raise an exception when the domain is not found.
25974 2004-02-03  Martin Baulig  <martin@ximian.com>
25976         * reflection.c (mono_image_get_methodspec_token): Use the
25977         uninflated signature; fixes gen-33.
25979 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
25981         * gc.c threads.c: Make the finalizer thread a normal managed thread so
25982         the finalizer code can use thread functionality.
25984         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
25985         the finalizer thread.
25987         * threads.c: Make some functions more robust.
25989         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
25991         * metadata.h: Add new marshalling conventions.
25993         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
25994         stringbuilder marshalling. Fixes #53700.
25996         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
25998         * reflection.c (mono_image_get_type_info): Save declarative security
25999         info.
26001         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26002         unmanaged fields as well.
26004         * appdomain.c: Bump corlib version.
26006 2004-02-01  Martin Baulig  <martin@ximian.com>
26008         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26009         method type arguments.  
26011 2004-01-30  Duncan Mak  <duncan@ximian.com>
26013         * marshal.h: Add prototype for
26014         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26015         and
26016         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26017         fix the build.
26019 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26021         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26022         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26024 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26026         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26027         custom marshalling of valuetypes.
26029         * marshal.c: Fix some warnings.
26031 2004-01-29  Martin Baulig  <martin@ximian.com>
26033         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26034         for generic method parameters.
26036         * reflection.c (method_encode_methodspec): Write the uninflated
26037         signature into the methodspec table.
26038         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26039         is always the uninflated method.
26040         (reflection_methodbuilder_to_mono_method): Copy the generic
26041         parameters from the MethodBuilder into `header->gen_params'.
26043 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26045         * class.c (mono_class_from_generic_parameter): Fix warning.
26047 2004-01-27  Martin Baulig  <martin@ximian.com>
26049         * class.c (mono_class_from_generic_parameter): Don't create
26050         `klass->methods' here.  
26052 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26054         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26055         extension since it does not work with libraries named lib<FOO>.dll.so.
26057 2004-01-25  Martin Baulig  <martin@ximian.com>
26059         * class.c (mono_class_inflate_generic_type): Added support for
26060         MONO_TYPE_GENERICINST.
26062         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26063         inflate methods on open constructed types.      
26065 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26067         * object.c: fire ProcessExit event in the root AppDomain after running
26068         Main. Fixes bug #53299.
26070 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26072         * socket-io.c: include the new socket-wrappers.h header.
26073         Use the wrappers instead of the unix socket functions to make the code
26074         more clear.
26076 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26078         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26080         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26081         Fixes #22532.
26083 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26085         * reflection.c (mono_image_create_pefile): Handle the case when the
26086         entry point is not a MethodBuilder.
26088         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26089         field to ReflectionMethod since it is not allways a builder.
26091         * reflection.c (type_get_fully_qualified_name): New helper function to
26092         return the fully qualified name of a type.
26094         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26095         type name for custom marshallers.
26097         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26099         * class.c (mono_class_setup_vtable): If a parent class already 
26100         implements an interface, use the implementing methods from that class.
26101         Fixes #53148.
26103 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26105         * threadpool.c: just return instead of ExitThread to allow for thread
26106         clean up earlier.
26108 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26110         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26111         when closing resource modules.
26113         * reflection.c (mono_image_create_pefile): Handle the case when the
26114         entry point is not a MethodBuilder.
26116         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26117         field to ReflectionMethod since it is not allways a builder.
26119 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
26121         * marshal.c (mono_marshal_get_managed_wrapper): 
26122         mono_marshal_alloc takes native int so CONV_I
26123         the arg for 64bits.
26125 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
26127         * reflection.c (fixup_cattrs): New function to fixup the methoddef
26128         tokens in the cattr table. Fixes #53108.
26130 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26132         * loader.c: don't trim ".dll" before looking up in the config file.
26133         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
26135 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
26137         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
26138         Return the module which contains the resource as well.
26139         (ves_icall_System_Reflection_Module_Close): New icall.
26141         * appdomain.c: Bump corlib version number.
26143         * image.c (mono_image_addref): New public function.
26145         * assembly.c: Call mono_image_addref.
26147         * reflection.c (mono_module_get_object): Increase reference count of 
26148         the image.
26150         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26151         Fixes #22532.
26153         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
26154         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
26155         proper exceptions on DllImport problems.
26157 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
26159         * class.c, metadata.c: eliminate CSIZE macro.
26161 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
26163         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
26164         * object.h: Added async_callback field in MonoAsyncResult.
26165         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
26166         * verify.c: Added async_callback in MonoAsyncResult layout.
26168 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
26170         * reflection.c (mono_reflection_get_custom_attrs): Add support
26171         for Modules.
26173 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26175         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
26176         marshalling.
26177         (mono_marshal_method_from_wrapper): Add null pointer check.
26179 2004-01-16  Martin Baulig  <martin@ximian.com>
26181         * debug-mono-symfile.h: Set version number to 36 and reflect
26182         latest symbol writer changes.
26184 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26186         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
26187         multi-dimensional arrays.
26188         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
26189         (mono_class_from_mono_type): Use bounded_array_class_get.
26190         
26191         * class.c (mono_bounded_array_class_get): New function which takes
26192         a 'bounded' bool argument to distinguish vectors from one dimensional
26193         arrays.
26195         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
26196         bounded_array_class_get if the array has bounds.
26198         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26199         Search modules loaded using AssemblyBuilder:AddModule as well.
26201 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26203         * appdomain.c: increased corlib version.
26204         * filewatcher.c: removed g_print.
26205         * icall.c:
26206         (get_property_info): only allocate what is actually requested.
26207         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
26209 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26211         * Makefile.am: added filewatcher.[ch]
26212         * filewatcher.[ch]: FileSystemWatcher runtime support.
26213         * icall.c: added new FSW icalls.
26215 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
26217         * string-icalls.c: fix stringbuilder regression as suggested by
26218         Iain McCoy <iain@mccoy.id.au>.
26220 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
26222         * process.c (process_read_stringtable_block): Recognize '007f' as
26223         a language neutral stringtable block.
26225 2004-01-12  Patrik Torstensson
26227         * object.h (MonoStringBuilder) : Changed layout to support our
26228         new stringbuilder class.
26229         * marshal.c: Change marshalling to support the new layout of 
26230         string builder.
26231         * appdomain.c: increased version number because new layout of
26232         string builder.
26234 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
26236         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
26237         assembly name as an string instead of an AssemblyName, since it is
26238         easier to extract info from it.
26240         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
26241         the culture subdirectories too. Fixes #52231.
26243 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26245         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
26246         It takes 2 new parameters with an optional name for the method to look
26247         for and case ignoring info.
26249         * threadpool.c: removed unused variable.
26251 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26253         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
26254         It takes 2 new parameters with an optional name for the property to look
26255         for and case ignoring info.
26256         Fixes bug #52753.
26258 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
26260         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
26261         Fix #52451.
26263 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26265         * appdomain.c:
26266         * assembly.c: escape the uri before passing it to g_filename_from_uri.
26267         Fixes bug #52630.
26269 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
26271         * reflection.c: Add support for more than one unmanaged resource.
26273         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
26274         in field->def_value, as done in all other cases.
26276         * reflection.c (mono_reflection_get_custom_attrs): Add support for
26277         TypeBuilders.
26279         * reflection.c (mono_reflection_create_runtime_class): Remove 
26280         errorneous assignment to klass->element_class, since it is already
26281         done in mono_reflection_setup_internal_class.
26283 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26285         * gc.c: added missing LeaveCriticalSection.
26286         * icall.c: indented a couple of lines.
26287         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
26288         if we call EndInvoke inside a callback. Fixes bug #52601.
26290 2004-01-07  Martin Baulig  <martin@ximian.com>
26292         * mono-debug-debugger.h
26293         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
26295 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
26297         * appdomain.c: Use messages in NotImplementedException.
26299         * exception.c (mono_get_exception_not_implemented): Now this takes
26300         a message argument.
26302         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
26303         exception instead of g_asserting an aborting when something is not
26304         implemented.
26306         Add some inline docs.
26308 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
26310         * reflection.h: Update after changes to object layout.
26312         * reflection.c: Implement saving of unmanaged aka win32 resources.
26314         * appdomain.c: Bump version number.
26316         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
26317         Handle missing domains gracefully.
26319 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
26321         * file-io.c : On Windows, there are much more invalid_path_chars.
26323 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
26325         * class.h, object.c: prepare for GetType () speedup.
26327 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
26329         * profiler.c: workaround for --profile null reference exception on
26330           cygwin. Patch by Patrik Torstensson.
26332 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
26334         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
26335         make work for unaligned access.
26337 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
26339         * class.c: small cleanup (class->fields [i] -> field).
26340         * image.c: check address of metadata is valid.
26342 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
26344         * assembly.h assembly.c (mono_assembly_loaded): New public function to
26345         search the list of loaded assemblies.
26347         * reflection.c (mono_reflection_type_from_name): Use 
26348         mono_assembly_loaded instead of mono_image_loaded.
26350         * reflection.c: Fix warnings.
26352 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
26354         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
26355         is dynamic. This is needed since an assembly can contain both dynamic and
26356         non-dynamic images.
26358         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
26359         assembly->dynamic.
26361         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
26363         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
26364         to store modules loaded using AddModule.
26366         * reflection.c (mono_image_fill_file_table): Generalize this so it works
26367         on Modules.
26369         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
26371         * reflection.c (mono_image_fill_export_table_from_module): New function to
26372         fill out the EXPORTEDTYPES table from a module.
26374         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
26375         into a separate function. Also handle loaded non-dynamic modules.
26377         * reflection.c (mono_image_basic_init): Fix memory allocation.
26379         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26381         * assembly.c (mono_assembly_load_references): Make this public.
26383 2003-12-19  Martin Baulig  <martin@ximian.com>
26385         * class.c (mono_class_initialize_generic): Made this static, take
26386         a `MonoGenericInst *' instead of a `MonoClass *'.
26387         (mono_class_from_generic): Call mono_class_initialize_generic()
26388         unless we're already initialized or being called from
26389         do_mono_metadata_parse_generic_inst().
26391         * class.h (MonoGenericInst): Added `initialized' and
26392         `init_pending' flags.
26394         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
26395         `mono_class_init (gklass)' or mono_class_initialize_generic()
26396         here; set `generic_inst->init_pending' while parsing the
26397         `type_argv'.
26399 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
26401         * locales.c: include string.h for memxxx prototypes
26403 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
26405         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
26406         constructor when accessing literal fields.
26408 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
26410         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26412         * reflection.c (assembly_add_resource_manifest): New function to fill
26413         the MANIFESTRESOURCE table.
26415         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
26417         * reflection.h: Update to changes in class layout.
26419         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
26420         Reenable call to mono_runtime_is_shutting_down ().
26422         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
26423         determine if the runtime is shutting down.
26425 2003-12-16  Jackson Harper <jackson@ximian.com>
26427         * icall.c: comment out call to mono_runtime_is_shutting_down to
26428         fix build.
26429         
26430 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
26432         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
26433         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
26435 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
26437         * reflection.c: move definition of swap_with_size
26438         to before its first call
26440 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
26442         * appdomain.c (mono_runtime_is_shutting_down): New public function.
26444         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
26445         icall.
26447         * object.c: Fix warnings.
26449         * icall.c (ves_icall_Type_Get...): Only consider inherited static
26450         members if FlattenHierarchy is set.
26452         * reflection.c (mono_image_add_decl_security): New function to emit
26453         declarative security.
26455         * reflection.h reflection.c: Add support for declarative security.
26457         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26458         
26459 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
26461         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26462         
26463         * appdomain.c verify.c: Moved corlib version checking into its own
26464         function in appdomain.c since it needs to create vtables etc.
26466 2003-12-13  Patrik Torstensson <p@rxc.se>
26468         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
26469         instead of unwrapped server.
26471 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
26473         * verify.c (check_corlib): Fix field index.
26475 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
26477         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
26478         GetGacPath icall.
26480 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
26482         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
26483         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
26484         cope with sizeof(size_t) != sizeof(guint32).
26486 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26488         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
26489         in case of failure.
26491 2003-12-10  Mark Crichton <crichton@gimp.org>
26493         * icall.c: removed the GetNonZeroBytes.  We now handle this case
26494         in managed code.
26496         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
26498 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
26500         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
26501         marked as deleted.
26503 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
26505         * verify.c (check_corlib): Handle the case when the version field is 
26506         initialized by a static constructor.
26508 2003-12-08  Patrik Torstensson  <p@rxc.se>
26510     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
26512 2003-12-08  Martin Baulig  <martin@ximian.com>
26514         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
26515         a MonoReflectionGenericParameter, also take the parameter index
26516         and name as arguments.
26517         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
26518         (ves_icall_MonoGenericParam_initialize): New interncall.
26519         (ves_icall_Type_make_byref_type): New interncall.
26521         * reflection.h (MonoReflectionGenericParam): Derive from
26522         MonoReflectionType, not just from MonoObject.  Added `refobj' and
26523         `index' fields.
26525         * reflection.c (mono_reflection_define_generic_parameter): Create
26526         and return a new MonoReflectionGenericParam; don't initialize the
26527         constraints here.
26528         (mono_reflection_initialize_generic_parameter): New public method;
26529         initializes the constraints and creates the `param->pklass'.
26531 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
26533         * reflection.h reflection.c: Use the new fields 'num_types', 
26534         'num_fields' and 'num_methods' to track the number of types etc.
26536         * verify.c (check_corlib): Check corlib version number.
26538 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
26540         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
26541         function works on all methods.
26543 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
26545         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
26546         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
26547         the custom_type_info flag of the transparent proxy.
26548         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
26549         objects that supports IRemotingTypeInfo.
26550         * object.h: Added custom_type_info field in transparent proxy.
26552 2003-12-06  Martin Baulig  <martin@ximian.com>
26554         * class.c (mono_class_create_from_generic): Removed.
26555         (mono_class_from_generic): Check `ginst->klass' before doing
26556         anything else.  This is important to fully support "recursive"
26557         generic types.
26559         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
26560         empty `generic_inst->klass' before doing anything else.
26562 2003-12-06  Dick Porter  <dick@ximian.com>
26564         * verify.c: 
26565         * object.h:
26566         * icall.c:
26567         * locales.c: Use C structs to access class fields.  Don't do a
26568         conversion between MonoString and UChar because both are
26569         platform-endian UTF-16.  Compare now takes startindex and count
26570         parameters.  Add a char overload for IndexOf.  Speed up the
26571         invariant string IndexOf.
26573 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
26575         * Makefile.am (monosn_LDADD): Fix parallel build.
26577 2003-12-04  Martin Baulig  <martin@ximian.com>
26579         * icall.c
26580         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
26581         (ves_icall_Type_make_array_type): New interncall.       
26583 2003-12-04  Martin Baulig  <martin@ximian.com>
26585         * locales.c: also change it in the !HAVE_ICU case.
26587 2003-12-04  Dick Porter  <dick@ximian.com>
26589         * icall.c:
26590         * locales.c: construct_compareinfo is now in CompareInfo, not
26591         CultureInfo.
26593 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
26595         * image.c (mono_image_load_file_for_image): Cache loaded images in the
26596         image->files array.
26598         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
26599         table as well.
26601         * assembly.c (mono_assembly_load_references): Only load references
26602         once.
26604         * class.c (mono_class_from_name): Avoid linear search of the 
26605         EXPORTEDTYPE table.
26607         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
26609 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
26611         * image.h (MonoImage): Add 'field_cache' field.
26613         * loader.c (mono_field_from_token): Cache field lookups.
26614         
26615         * reflection.c (mono_module_get_object): Fix name property.
26617         * icall.c (ves_icall_get_enum_info): Update after changes to 
26618         mono_metadata_get_constant_index ().
26620         * icall.c: Get rid of get_type_info icall, use a separate icall for
26621         each type property to avoid needless memory allocations. Fixes #51514.
26623         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
26624         to avoid needless binary searches.
26626         * class.c (class_compute_field_layout): Move the initialization of
26627         field->def_value to mono_class_vtable ().
26629         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
26630         non-corlib types.
26632         * object.c (mono_object_allocate): Make it inline.
26634         * object.c (mono_object_allocate_spec): Make it inline.
26635         
26636 2003-12-02  Dick Porter  <dick@ximian.com>
26638         * locales.c (create_NumberFormat): NumberFormatInfo construction.
26639         Patch by Mohammad DAMT (mdamt@cdl2000.com).
26641 2003-12-01  Dick Porter  <dick@ximian.com>
26643         * threads.c: Fix signature and call in CreateMutex and
26644         CreateEvent.
26646 2003-12-01  Dick Porter  <dick@ximian.com>
26648         * icall.c: 
26649         * locales.c: Implement string compares and searching
26651         * object.h: Add extra Thread field
26653 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
26655         * reflection.c (fixup_method): Add support for MonoCMethod.
26657 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
26659         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
26661         * reflection.c (assembly_name_to_aname): Allow extra characters in
26662         assembly names. Fixes #51468.
26664 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
26666         * exception.c (mono_exception_from_name_domain): New helper function.
26668         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
26669         exception object in the correct domain.
26671         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
26672         formatting + make a copy a the input data.
26674         * loader.c (mono_get_method_from_token): Methods which contain
26675         native code do not have entries in the ImplMap.
26677         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
26678         Thanks to Gonzalo for spotting this.
26679         
26680         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
26681         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
26683         * assembly.h (mono_assembly_load_from): Split the second part of 
26684         assembly loading into a new public function.
26686         * exception.h (mono_get_exception_bad_image_format): New function.
26688 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
26690         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26691         Enumerate all modules inside a dynamic assembly. Fixes #51293.
26692         
26693         * icall.c: Add new icall for creating dynamic methods.
26695         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
26697         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
26699         * reflection.c (mono_reflection_create_dynamic_method): New icall to
26700         create a dynamic method.
26702         * reflection.c (resolve_object): New helper function.
26704         * reflection.c: Generalize ReflectionMethodBuilder and the functions
26705         which manipulate it so they can also work on dynamic methods.
26707         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
26708         creating the MonoReflectionMethodAux structure if it is not needed.
26709         
26710         * reflection.h verify.c: Update after changes to object layout.
26712         * reflection.c (method_builder_encode_signature): Fix compilation on
26713         gcc 2.95.x.
26715 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
26717         * appdomain.h: Added support for context static fields. Added static_data
26718           field to MonoAppContext and renamed thread_static_fields to a more
26719           generic special_static_fields in MonoAppDomain, since it can now contain
26720           context static fields.
26721         * domain.c: Updated hashtable name.
26722         * object.c: Replaced field_is_thread_static() for a more generic
26723           field_is_special_static() which also checks for context static attribute.
26724           In mono_class_vtable(), added support for static context fields.
26725         * threads.c: Changed methods that manage thread static fields to more
26726           generic methods so they can be reused both for thread and context static
26727           data.
26728         * threads.h: Declared some new methods.
26730 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
26732         * reflection.h: Update after changes to the managed types.
26734         * reflection.c (encode_custom_modifiers): New helper function.
26736         * reflection.c (method_encode_signature): Emit custom modifiers.
26738         * reflection.c (field_encode_signature): Emit custom modifiers.
26740 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
26742         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
26744         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
26745         implementation.
26747         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
26748         icall.
26750         * object.c (mono_field_get_value_object): New function.
26752         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
26753         specific.
26755 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
26757         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
26758         return a preallocated out-of-memory exception instance.
26760         * object.c (out_of_memory): Use the new function.
26762         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
26763         flag is before the custom modifiers. Fixes #49802.
26765 2003-11-16  Martin Baulig  <martin@ximian.com>
26767         * class.c (mono_class_is_open_constructed_type): Implemented the
26768         MONO_TYPE_GENERICINST case.
26770 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
26772         * assembly.c (mono_assembly_fill_assembly_name): New function to
26773         fill out the MonoAssemblyName structure.
26774         (mono_assembly_open): Use the new function.
26776         * icall.c (fill_reflection_assembly_name): New helper function.
26778         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
26779         new function.
26781         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
26783 2003-11-15  Martin Baulig  <martin@ximian.com>
26785         * class.c (mono_class_is_open_constructed_type): New public
26786         function; checks whether a type is an open constructed type,
26787         ie. whether it still contains type parameters.
26788         (mono_class_inflate_generic_type): If we're a type parameter and
26789         the inflated type is also a MONO_TYPE_(M)VAR, return the original
26790         type.
26792         * class.h (MonoGenericInst): Added `guint32 is_open'.
26794         * loader.c (method_from_methodspec): Check whether we're an open
26795         or closed constructed type and set `ginst->is_open'.
26797         * reflection.c (mono_reflection_bind_generic_parameters): Check
26798         whether we're an open or closed constructed type and set
26799         `ginst->is_open'.
26800         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
26801         from open constructed types.
26803 2003-11-15  Martin Baulig  <martin@ximian.com>
26805         * reflection.c (mono_reflection_bind_generic_parameters): If we're
26806         a generic instance (instead of a generic type declaration) with
26807         unbound generic parameters, bind them to our actual types.
26809 2003-11-14  Martin Baulig  <martin@ximian.com>
26811         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
26813         * reflection.c (mono_reflection_bind_generic_parameters): If we're
26814         an interface type, populate `res->interfaces' with instantiated
26815         versions of all the interfaces we inherit.
26817 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
26819         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
26820         when MONO_PATH is set but doesn't contain the install dir.
26822 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26824         * icall.c:
26825         (ves_icall_Type_GetInterfaces): don't return an interface twice when
26826         it's also implemented in base classes. Fixes bug #50927.
26828 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
26830         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
26831         if this method is called from a finalizer. Fixes #50913.
26833 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
26835         * threads.c: Implement VolatileRead/VolatileWrite
26837         * icall.c: Add new icalls for VolatileRead/VolatileWrite
26839 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
26841         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
26842         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
26843         2.95.3.
26845         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
26846         from Peter Ross (pro@missioncriticalit.com).
26847         
26848 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
26850         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
26852 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
26854         * assembly.c (mono_assembly_load_references): Disable check because it
26855         triggers on older corlibs which lots of people have.
26857 2003-11-12  Jackson Harper  <jackson@ximian.com>
26859         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
26860         load corlib.dll if mscorlib.dll is not found.
26861         * assembly.h: Remove corlib name define.
26862         * class.c:
26863         * domain.c:
26864         * image.c: Change corlib name to mscorlib.
26865         
26866 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
26868         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
26870 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
26872         * appdomain.h: Added loader_optimization here to sync with the C#
26873         code, and add disallow_binding_redirects field.
26875 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
26877         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
26879         * reflection.c (mono_image_build_metadata): Fix crash on modules
26880         with no types.
26882         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
26884         * icall.c (ves_icall_get_method_info): Return callingConvention as
26885         well.
26887         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
26888         namespaces from the EXPORTEDTYPE table as well.
26890         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
26891         from all modules inside the assembly.
26892         
26893 2003-11-11  Martin Baulig  <martin@ximian.com>
26895         * reflection.c (mono_reflection_bind_generic_parameters): Make
26896         this work for interfaces.
26898 2003-11-11  Martin Baulig  <martin@ximian.com>
26900         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
26902 2003-11-11  Martin Baulig  <martin@ximian.com>
26904         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
26905         "MonoInflatedMethod" and "MonoInflatedCtor".
26907 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
26909         * reflection.c (resolution_scope_from_image): Use the assembly table
26910         from the manifest module, since other modules don't have it.
26912         * debug-helpers.c (mono_type_full_name): New helper function.
26914         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
26916         * image.c (mono_image_load_file_for_image): New public function which
26917         is a replacement for the load_file_for_image in class.c.
26919         * assembly.c (mono_assembly_load_module): A wrapper for the function
26920         above which does assembly association and reference loading too.
26922         * class.c (mono_class_from_name): Call mono_assembly_load_module.
26924 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26926         * appdomain.c: not all of the attributes for the full assembly name
26927         are required and the order doesn't matter. Fixes bug #50787.
26929 2003-11-10  Dick Porter  <dick@ximian.com>
26931         * locales.c: Use platform-endian UTF16
26933 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
26935         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
26936         
26937 2003-11-10  Martin Baulig  <martin@ximian.com>
26939         * metadata.c
26940         (mono_metadata_load_generic_params): Make this actually work.
26942         * reflection.c (mono_reflection_bind_generic_parameters): If our
26943         parent is a generic instance, pass all the `types' to it, no
26944         matter whether it has the same number of type parameters or not.
26946 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
26948         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
26950         * assembly.c (mono_assembly_load_references): Move the image<->assembly
26951         assignment code to this function so it gets called recursively for all
26952         modules.
26954         * image.c (load_modules): Remove the assembly assignment since it is
26955         now done by mono_assembly_load_references.
26956         
26957         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26958         Add 'module' argument.
26959         (mono_module_get_types): New helper function.
26960         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
26962 2003-11-08  Martin Baulig  <martin@ximian.com>
26964         * class.c (mono_class_inflate_generic_method): Interface method
26965         don't have a header.
26967         * reflection.c (mono_image_get_methodspec_token): Take an
26968         additional `MonoGenericInst *' argument instead of reading it from
26969         the header; this is necessary to support interfaces.
26970         (mono_image_create_token): Pass the `MonoGenericInst *' from the
26971         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
26972         (inflated_method_get_object): Take an additional `MonoGenericInst *'
26973         argument.
26975         * reflection.h (MonoReflectionInflatedMethod): Added
26976         `MonoGenericInst *ginst'.
26978 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
26980         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
26982 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
26984         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
26986 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
26988         * reflection.c 
26989         (reflection_methodbuilder_from_method_builder):
26990         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
26991         initialize a ReflectionMethodBuilder structure.
26992         (mono_image_get_methodbuilder_token):
26993         (mono_image_get_ctorbuilder_token): New functions to emit memberref
26994         tokens which point to types in another module inside the same assembly.
26996         * reflection.c: Use the new helper functions.
26997         
26998         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27000         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27001         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27003         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27004         neccesary.
27006         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27007         current module. Emit the manifest only for the main module.
27009         * reflection.c (mono_image_create_token): Add assertion when a 
27010         memberref needs to be created.
27012         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27014         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27015         larger buffer for the custom attribute blob. Fixes #50637.
27016         
27017 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27019         * threadpool.c: notify listener on async processing handles after
27020         invoking the async callback. Thanks to Zoltan.
27022 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27024         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27025         avoid code duplication.
27027         * reflection.h (MonoDynamicImage): New type which is currently unused,
27028         but will be used through the ref.emit code in place of 
27029         MonoDynamicAssembly.
27031         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27032         object layout.
27034         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27035         a MonoDynamicImage instead of just a MonoImage.
27036         
27037         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27038         icalls to ModuleBuilder but keep their semantics, so they will work
27039         with moduleb->assemblyb. This will change later.
27040         
27041 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27043         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27044         object layout.
27046         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27047         main module, since it is now done by the managed code.
27049 2003-11-03  Martin Baulig  <martin@ximian.com>
27051         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27052         `ginst->klass' here.
27053         (method_encode_methodspec): Don't use the `ginst->generic_method's
27054         klass if it's a generic instance, use `ginst->klass' in this case.
27056 2003-11-03  Martin Baulig  <martin@ximian.com>
27058         * reflection.c (mono_image_get_generic_method_param_info):
27059         Removed, use mono_image_get_generic_param_info() instead.
27060         (mono_image_get_type_info): Write the GenericParam table before
27061         the Method table.  This is neccessary because in the GenericParam
27062         table, type parameters of the class (ie. '!0' etc.) must come
27063         before the ones from its generic methods (ie. '!!0' etc).
27065 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27067         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27069 2003-11-02  Martin Baulig  <martin@ximian.com>
27071         * reflection.c (create_generic_typespec): Take a
27072         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27073         the generic parameters from it.
27075 2003-11-02  Martin Baulig  <martin@ximian.com>
27077         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27078         instead of a `MonoClassField *' since we just need the type.
27079         (create_generic_typespec): New static function.  Creates a
27080         TypeSpec token for a generic type declaration.
27081         (mono_image_get_generic_field_token): New static function.
27082         (mono_image_create_token): If we're a FieldBuilder in a generic
27083         type declaration, call mono_image_get_generic_field_token() to get
27084         the token.
27086 2003-11-02  Martin Baulig  <martin@ximian.com>
27088         * reflection.h
27089         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27090         `MonoReflectionGenericInst *declaring_type' and
27091         `MonoReflectionGenericInst *reflected_type' fields.
27093         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27094         `MonoReflectionGenericInst *declaring_type' and a
27095         `MonoReflectionGenericInst *reflected_type' argument instead of a
27096         single `MonoReflectionGenericInst *type' one.  Set
27097         `res->declaring_type' and `res->reflected_type' from them.
27098         (mono_reflection_inflate_field): Likewise.      
27100 2003-11-02  Martin Baulig  <martin@ximian.com>
27102         * class.c (mono_class_setup_vtable): Don't store generic methods
27103         in the vtable.  
27105 2003-11-02  Martin Baulig  <martin@ximian.com>
27107         * reflection.h (MonoReflectionGenericInst): Added
27108         `MonoReflectionType *declaring_type'.
27110         * reflection.c (mono_reflection_bind_generic_parameters): Use
27111         `if (tb->parent)' instead of `klass->parent'.
27113 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
27115         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
27116         with an empty ASSEMBLY table.
27118         * reflection.c (mono_image_build_metadata): Avoid using the same loop
27119         variable in the inner and outer loops.
27121 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
27123         * metadata.h (mono_metadata_make_token): Put parentheses around macro
27124         argument.
27126         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
27127         
27128         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
27129         icalls. Instead, do everything in managed code. This is needed since
27130         it is hard to restore the original domain etc. in unmanaged code in the
27131         presence of undeniable exceptions.
27133         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
27134         New icalls to push and pop appdomain refs.
27136 2003-10-31  Martin Baulig  <martin@ximian.com>
27138         * class.c (inflate_generic_type): Renamed to
27139         mono_class_inflate_generic_type() and made it public.
27141         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
27142         New interncall.
27144         * loader.c (mono_field_from_memberref): Also set the retklass for
27145         typespecs.
27147         * fielder.c (mono_image_get_inflated_field_token): New static
27148         method; creates a metadata token for an inflated field.
27149         (mono_image_create_token, fixup_method): Added support for
27150         "MonoInflatedField".
27151         (fieldbuilder_to_mono_class_field): New static function.
27152         (mono_reflection_inflate_field): New public function.
27154         * reflection.h
27155         (MonoReflectionGenericInst): Added `MonoArray *fields'.
27156         (MonoReflectionInflatedField): New typedef.     
27158 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
27160         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
27161         for Solaris and other platforms without s6_addr16
27163 2003-10-30  Martin Baulig  <martin@ximian.com>
27165         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
27166         argument instead of two.
27167         (mono_class_inflate_generic_signature): Likewise.
27168         (inflate_generic_header): Likewise.
27169         (mono_class_inflate_generic_method): Likewise.  In addition, if
27170         `ginst->klass' is set, it becomes the new `method->klass'.
27172         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
27173         field.
27175         * reflection.c (encode_generic_method_sig): Write a 0xa as the
27176         first byte. [FIXME]
27177         (method_encode_methodspec): If we have generic parameters, create
27178         a MethodSpec instead of a MethodRef.
27179         (fixup_method): Added support for "MonoInflatedMethod" and
27180         "MonoInflatedCtor".
27181         (mono_image_create_token): Added support for "MonoInflatedMethod"
27182         and "MonoInflatedCtor".
27183         (inflated_method_get_object): New static function; returns a
27184         managed "System.Reflection.MonoInflatedMethod" object.
27185         (mono_reflection_bind_generic_method_parameters): Return a
27186         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
27187         (mono_reflection_inflate_method_or_ctor): Likewise.
27188         (mono_image_get_generic_method_param_info): Initialize unused
27189         fields to zero.
27190         (mono_image_get_generic_param_info): Likewise.
27192         * reflection.h (MonoReflectionInflatedMethod): New public
27193         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
27194         "S.R.MonoInflatedCtor" classes.
27196         * loader.c (method_from_memberref): If we're a TypeSpec and it
27197         resolves to a generic instance, inflate the method.
27199 2003-10-28  Dick Porter  <dick@ximian.com>
27201         * object.c (mono_runtime_run_main): Convert command-line arguments
27202         into utf8, falling back to the user's locale encoding to do so.
27204 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
27206         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
27207         at this time.
27209         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
27211         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
27212         up icalls at method definition time. Partially fixes #33569.
27214 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
27216         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
27217         marshalling of arrays. Fixes #50116.
27219         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
27221         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
27222         points to a vtable in the dying appdomain.
27224         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
27225         listeners into unmanaged code inside the lock.
27227         * object.c (mono_class_vtable): Turn off typed allocation in non-root
27228         domains and add some comments.
27230 2003-10-25  Martin Baulig  <martin@ximian.com>
27232         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
27234         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
27236         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
27237         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
27238         currently parsing.  Create the generic class and store it in
27239         `generic_inst->klass' before parsing the type arguments.  This is
27240         required to support "recursive" definitions; see mcs/tests/gen-23.cs
27241         for an example.
27242         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
27243         to support recursive typespec entries.
27245         * class.c (mono_class_setup_parent): If our parent is a generic
27246         instance, we may get called before it has its name set.
27247         (mono_class_from_generic): Splitted into
27248         mono_class_create_from_generic() and mono_class_initialize_generic().
27250 2003-10-25  Martin Baulig  <martin@ximian.com>
27252         * icall.c (ves_icall_Type_BindGenericParameters): Return a
27253         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
27254         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
27255         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
27257         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
27258         (create_typespec): Likewise.
27259         (mono_reflection_bind_generic_parameters): Return a
27260         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
27261         (mono_reflection_inflate_method_or_ctor): New public function.
27263         * reflection.h (MonoReflectionGenericInst): New typedef.        
27265 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
27267         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
27268         inside the domain lock. Fixes #49993.
27269         
27270         * object.c (mono_class_vtable): When typed allocation is used, 
27271         allocate vtables in the GC heap instead of in the mempool, since the
27272         vtables contain GC descriptors which are used by the collector even
27273         after the domain owning the mempool is unloaded.
27275         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
27277         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
27278         reflect what it does. Also invalidate mempools instead of freeing
27279         them if a define is set.
27281         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
27282         of the appdomain.
27283         
27284         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
27285         hold the finalizable objects in this domain.
27287         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
27288         appdomain.
27290         * appdomain.c (mono_domain_set): New function to set the current
27291         appdomain, but only if it is not being unloaded.
27293         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
27294         appdomain which is being unloaded.
27295         
27296         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
27297         unloading of the root appdomain.
27299         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
27300         icall to execute a method in another appdomain. Intended as a 
27301         replacement for InternalSetDomain, which can confuse the code 
27302         generation in the JIT.
27304         * appdomain.c (mono_domain_is_unloading): New function to determine
27305         whenever an appdomain is unloading.
27307         * appdomain.c (mono_domain_unload): New function to correctly unload
27308         an appdomain.
27310         * assembly.c (mono_assembly_load_references): Check that an assembly
27311         does not references itself.
27313         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
27314         domain manually, it asks the finalizer thread to do it, then waits for
27315         the result. Also added a timeout.
27317         * icall.c: Register the new icalls.
27319         * threads.h threads.c: Export the mono_gc_stop_world and 
27320         mono_gc_start_world functions.
27321         
27322         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
27323         function to fill out the mempool with 0x2a.
27325 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
27327         * reflection.h (MonoReflectionMethodAux): New structure to store
27328         information which is rarely used, thus is not in the MonoMethod
27329         structure.
27331         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
27332         store the aux info.
27334         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
27335         and marshalling info into the aux structure.
27337         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
27338         from the aux structure.
27340         * loader.c (mono_method_get_param_names): Retrieve the param names from
27341         the aux structure.
27342         
27343 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
27345         * exception.h exception.c: Add AppDomainUnloadedException && fix 
27346         warning.
27348 2003-10-21  Dick Porter  <dick@ximian.com>
27350         * socket-io.c
27351         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
27352         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
27354 2003-10-21  Martin Baulig  <martin@ximian.com>
27356         * reflection.c (mono_reflection_bind_generic_parameters):
27357         `klass->parent' is NULL for interfaces.
27359 2003-10-21  Martin Baulig  <martin@ximian.com>
27361         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27363 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
27365         * exception.c (mono_exception_from_name_msg): New helper function for
27366         creating exceptions and initializing their message field.
27368         * exception.c: Simplify functions using the new helper.
27370         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
27371         New function.
27373         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
27374         mono_raise_exception, since otherwise gcc doesn't generate the function
27375         epilog for raise_exception, confusing the stack unwinding in the JIT.
27376         Fixes #45043.
27378         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
27379         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
27380         Fixes #49499.
27382 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27384         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
27385         utf8.
27387 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
27389         * icall.c: Removed GetUninitializedObject method because
27390           AllocateUninitializedClassInstance does the same.
27392 2003-10-18  Martin Baulig  <martin@ximian.com>
27394         * class.c (inflate_generic_signature): Renamed to
27395         mono_class_inflate_generic_signature() and made it public.
27396         (my_mono_class_from_generic_parameter): New static function; if we
27397         don't already have the generic parameter's MonoClass, create a
27398         very simple one which is just used internally in the runtime and
27399         not passed back to managed code.
27401         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
27403         * metadata.h (MonoMethodSignature): Moved the
27404         `MonoGenericParam *gen_params' to the MonoMethodHeader.
27405         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
27407         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
27408         ves_icall_MonoMethod_GetGenericArguments(); this is now an
27409         interncall on the MonoMethod class, not on MethodInfo.
27410         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
27411         calling mono_reflection_bind_generic_method_parameters() directly.
27413         * loader.c (mono_method_get_signature): If this is a MethodSpec;
27414         return the already computed `method->signature'.
27415         (method_from_methodspec): New static function to load a method
27416         from a MethodSpec entry.
27417         (mono_get_method_from_token): Call the new method_from_methodspec()
27418         for MethodSpec tokens.  
27419         (mono_get_method_from_token): If we're a generic method, load the
27420         type parameters.
27422         * reflection.c (mono_image_get_memberref_token): Allow
27423         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
27424         table.
27425         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
27426         (mono_image_create_token): First check whether it's a generic
27427         method (so we'd need to create a MethodSpec), then do the other
27428         two alternatives.
27429         (mono_reflection_bind_generic_method_parameters): Return a
27430         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
27431         called directly from the interncall.
27433 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
27435         * reflection.c (load_public_key): Move loading of the public key
27436         into managed code.
27438         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
27440         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
27441         fields.
27443         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
27444         culture, hash_alg and public_key. Fixes #49555.
27446 2003-10-17  Martin Baulig  <martin@ximian.com>
27448         * class.h (MonoGenericInst): Moved this declaration here and added
27449         `MonoMethod *generic_method'.
27451         * icall.c
27452         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
27453         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
27455         * metadata.c (mono_metadata_type_equal): Two types of
27456         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
27457         index; ie. don't compare the address of the `MonoGenericParam'
27458         structure.
27459         (mono_metadata_load_generic_params): Removed the `MonoMethod
27460         *method' argument.
27462         * metadata.h (MonoGenericInst): Moved declaration to class.h.
27463         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
27465         * reflection.c (method_encode_signature): Encode the number of
27466         generic parameters.
27467         (encode_generic_method_sig): New static function.
27468         (method_encode_methodspec): New static function; creates an entry
27469         in the MethodSpec table for a generic method.
27470         (mono_image_get_methodspec_token): New static function.
27471         (mono_image_create_token): Call mono_image_get_methodspec_token()
27472         for generic methods.
27473         (mono_reflection_bind_generic_method_parameters): New public
27474         function.  Instantiates a generic method.
27476 2003-10-16  Martin Baulig  <martin@ximian.com>
27478         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
27479         *gen_params' here from MonoMethodHeader.
27481         * metadata.c (mono_metadata_parse_method_signature): If we have
27482         generic parameters, initialize `method->gen_params' and then set
27483         the correct `type->data.generic_param' in all the parameters.
27485 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
27487         * threads.c (mono_threads_get_default_stacksize): New function to 
27488         return the default stacksize.
27490         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
27491         termination of the finalizer thread, since the previous method had
27492         race conditions. Fixes #49628.
27494         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
27495         as for the other managed threads.
27497 2003-10-16  Martin Baulig  <martin@ximian.com>
27499         * class.c (inflate_generic_signature): Copy `generic_param_count'
27500         and `gen_params'.
27502         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
27503         New interncall.
27505         * metadata.c (mono_metadata_parse_method_signature): Actually set
27506         the `method->generic_param_count' here.
27507         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
27509 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
27511         * object.h: Add a new field to TypedRef to simplify the implementation
27512         of the REFANY opcodes in the JIT.
27514         * icall.c: Make use of the new field.
27516         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
27517         dynamically.
27519 2003-10-15  Martin Baulig  <martin@ximian.com>
27521         * class.c (mono_class_from_gen_param): Renamed to
27522         mono_class_from_generic_parameter() and moved most of the
27523         functionality from mono_reflection_define_generic_parameter()
27524         here; ie. we create a "real" class here.
27525         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
27526         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
27527         previously been called.
27529         * class.h (MonoGenericParam): Moved the declaration of this struct
27530         here from metadata.h and added `MonoMethod *method'.
27532         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
27533         interncall.
27535         * loader.c (mono_get_method_from_token): If we have any generic
27536         parameters, call mono_metadata_load_generic_params() to read them
27537         from the MONO_TABLE_GENERICPAR.
27539         * metadata.c (mono_metadata_load_generic_params): Added
27540         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
27542         * metadata.h (MonoMethodSignature): Replaced
27543         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
27544         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
27546         * reflection.c (mono_reflection_define_generic_parameter): Moved
27547         most of the functionality into the new
27548         mono_class_from_generic_parameter(); set the `method' field if
27549         we're a method parameter.       
27551 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
27553         * marshal.c (emit_struct_conv): if native size is 0
27554         emit no code.
27556 2003-10-14  Martin Baulig  <martin@ximian.com>
27558         * icall.c: The generics API has changed in the spec since it was
27559         added to System.Type; these modifications make it match the spec
27560         again.
27561         (ves_icall_Type_GetGenericParameters): Renamed to
27562         `ves_icall_Type_GetGenericArguments'.
27563         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
27564         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
27565         `ves_icall_MonoType_get_HasGenericArguments'.
27566         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
27567         `ves_icall_MonoType_get_IsGenericParameter'.
27568         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
27569         this is no interncall anymore.
27570         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
27571         `ves_icall_TypeBuilder_get_IsGenericParameter'.
27573 2003-10-14  Martin Baulig  <martin@ximian.com>
27575         * reflection.c (mono_reflection_bind_generic_parameters): Also
27576         inflate generic methods if we're reading the class from IL.
27578 2003-10-13  Martin Baulig  <martin@ximian.com>
27580         * reflection.c (mono_reflection_define_generic_parameter): This
27581         method isn't called directly from the icall anymore; take a
27582         `MonoReflectionAssemblyBuilder *' so we can use this for type and
27583         method generic parameters.
27584         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
27585         (method_builder_encode_signature): Encode generic parameters.
27586         (mono_image_get_method_info): Write generic params to the
27587         MONO_TABLE_GENERICPARAM table.
27589         * reflection.h (MonoReflectionMethodBuilder): Added
27590         `MonoArray *generic_params'.
27592         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
27594         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
27595         wrapper for mono_reflection_define_generic_parameter().
27596         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
27598 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
27600         * marshal.h: Add missing function to fix build.
27602         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
27603         the SetLastError pinvoke attribute.
27605         * marshal.c (mono_marshal_set_last_error): New helper function called
27606         by the generated code.
27607         
27608         * marshal.c (mono_mb_emit_branch): New helper function.
27610         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
27612         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
27613         classes as parameters and return values of delegates. Fixes #29256. 
27615 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
27617         * locales.c: use gint32 in non HAVE_ICU case
27619 2003-10-11  Martin Baulig  <martin@ximian.com>
27621         * mono-debug.c (mono_debug_add_method): Added a workaround for
27622         bug #48591.
27624 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
27626         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
27627         delegates passed to native code must use the STDCALL calling 
27628         convention. Fixes #35987.
27630 2003-10-10  Martin Baulig  <martin@ximian.com>
27632         * class.c (inflate_generic_type): If we're inflating for a generic
27633         type instance (and not for a generic method), return
27634         MONO_TYPE_MVAR unchanged.
27636 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27638         * string-icalls.c: Join ignores null strings in the source array.
27639         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
27640         * threads.c: GetAvailableTheads is slightly more accurate.
27642 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
27644         * threads.h threads.c : add mono_threads_set_default_stacksize
27645         and pass default to CreateThread calls.
27647 2003-10-09  Dick Porter  <dick@ximian.com>
27649         * icall.c:
27650         * locales.h:
27651         * locales.c: Internal calls for constructing CultureInfo and
27652         related objects from libicu (if its available.)
27654 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
27656         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
27658 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27660         * threadpool.c: added an argument to async_invoke_thread that is the
27661         item to process, pass the MonoAsyncResult to the thread start function
27662         when creating a new thread. This way we don't need to acquire any lock
27663         when we're creating a new thread. Readded a semaphore for faster
27664         response times (instead of that Sleep i added).
27666 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
27668         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27669         get daylight change dates better on Windows, fix handling
27670         of platforms without tm_gmtoff.
27672 2003-10-06  Martin Baulig  <martin@ximian.com>
27674         * class.c (inflate_generic_method): Renamed to
27675         mono_class_inflate_generic_method() and made public.
27676         (mono_class_init): Don't inflate the generic methods here.
27677         (mono_class_from_generic): Added `gboolean inflate_methods'
27678         argument.  Inflate the methods here.
27680         * loader.c (mono_method_get_param_names): Ignore instances of
27681         generic types for the moment.
27683         * reflection.c (fixup_method): Added support for inflated methods.
27684         (mono_image_create_token): Use mono_image_get_methodref_token()
27685         for inflated methods.
27686         (mono_custom_attrs_from_param): Ignore instances of generic types
27687         for the moment.
27688         (mono_reflection_bind_generic_parameters): New public function.
27689         Moved all the functionality from
27690         ves_icall_Type_BindGenericParameters() here and added support for
27691         dynamic types.
27692         (mono_reflection_define_generic_parameter): Initialize
27693         `klass->methods' here.
27695         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
27696         functionality into mono_reflection_define_generic_parameter().
27697         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
27698         TypeBuilder, return that TypeBuilder.
27700 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27702         * appdomain.c: removed mono_delegate_semaphore.
27704         * threadpool.c:
27705         (mono_thread_pool_add): moved hash table creation inside and the thread 
27706         creation outside of the critical region.
27707         (mono_thread_pool_finish): removed obsolete code.
27708         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
27709         continue or exit the thread depending on the queue.
27711 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
27713         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
27714         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
27715         handle more bool marshalling options
27717 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
27719         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
27720         arrays of structs. Also add a more descriptive error message when
27721         a structure member is marshalled as LPArray.
27723 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
27725         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27726         marshalling arrays of complex types. Fixes #29098. Also remove an
27727         usused and incomplete function.
27729 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
27731         * gc.c: report heap_size - free_bytes as total memory allocated
27732         (bug#49362).
27734 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
27736         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
27737         fix timezone handling problems on Windows.
27738         
27739         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
27740         asserts when the year is outside the range handled by ms the functions.
27742         * class.c (setup_interface_offsets): If the class is an interface,
27743         fill out its interface_offsets slot.
27745 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27747         * threadpool.c: mark threadpool threads as background.
27749 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
27751         * decimal.c - define DECINLINE to nothing if not using GCC
27753 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
27755         * assembly.c: More refcount fixes.
27757 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27759         * string-icalls.c: if we're not trimming, return the same string.
27760         When not splitting, don't create a new string.
27762 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27764         * image.c:
27765         (mono_image_open): increment the ref_count inside the critical section.
27767 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
27769         * image.c (mono_image_open): Fix reference counting bug.
27771 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
27773         * marshal.c (mono_marshal_type_size) struct alignment changed for 
27774         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
27775         64bits. Avoid leak in mono_marshal_get_native_wrapper when
27776         mono_lookup_pinvoke_call throws.        
27778 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
27780         * reflection.c (mono_reflection_parse_type): Fix #49114.
27782         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
27783         temporary workaround for cygwin header problem.
27785         * object.c (mono_object_isinst): Synchronize this with the code
27786         generated by the JIT for casts.
27788 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
27790         * reflection.c (encode_type): Fix #38332.
27792 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
27794         * marshal.c (mono_marshal_method_from_wrapper): New function to return
27795         the original method from the wrapper method.
27797 2003-09-25  Martin Baulig  <martin@ximian.com>
27799         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
27800         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
27801         (ves_icall_Type_get_IsGenericInstance): New interncall.
27803 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
27805         * object.c: fix cast warning in big endian code.
27807 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
27809         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
27810         
27811 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27813         * assembly.c: don't call check_env from mono_assembly_load. It's
27814         already done once in mono_assemblies_init and may cause headaches when
27815         multiple threads are loading assemblies.
27817 2003-09-19  Martin Baulig  <martin@ximian.com>
27819         * reflection.c (mono_reflection_define_generic_parameter): Don't
27820         allocate `klass->methods', set `klass->flags' to
27821         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
27823 2003-09-18  Martin Baulig  <martin@ximian.com>
27825         * class.c (mono_class_init): Don't create `class->methods' if it's
27826         already initialized.
27828         * metadata.c (mono_metadata_load_generic_params): Make this
27829         actually work.
27831         * reflection.c (mono_reflection_define_generic_parameter): Set
27832         parent class and interfaces from the constraints.
27834         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
27835         to keep this struct in sync with the declaration in TypeBuilder.cs.
27837 2003-09-17  Martin Baulig  <martin@ximian.com>
27839         * metadata.h (MonoType): Replaced the data's `int type_param'
27840         field with `MonoGenericParam *generic_param'.
27841         (MonoGenericParam): Added `MonoClass *klass'.
27843         * class.c (mono_class_from_gen_param): Removed the
27844         `MonoImage *image' and `int type_num' arguments.
27846         * metadata.c (mono_metadata_parse_generic_param): New static
27847         method; creates a MonoGenericParam which just contains the index.
27848         (do_mono_metadata_parse_type): Call
27849         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
27850         MONO_TYPE_MVAR.
27852         * reflection.c (mono_image_typedef_or_ref): Generic type
27853         parameters may be in the same assembly, but never use a typedef
27854         for them.
27855         (mono_reflection_define_generic_parameter): We're now creating a
27856         "real" class for the type parameter; it's now safe to call
27857         mono_class_from_mono_type() on the class'es type, it'll do the
27858         right thing.
27860 2003-09-16  Martin Baulig  <martin@ximian.com>
27862         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
27863         `symfile->range_entry_size' and `symfile->class_entry_size' here;
27864         the `symfile' data structure must be fully initialized before it
27865         gets added to the table.
27867 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
27869         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
27871         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
27872         class init trampolines.
27874 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
27876         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
27877         to the built-in profiler to turn off time and allocation profiling
27878         respectively.
27880 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
27882         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
27883         g_direct_equal.
27885         * debug-helpers.c (mono_method_full_name): Print the wrapper type
27886         in human readable form.
27888 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
27890         * reflection.c icall.c: Fixed warnings.
27892         * image.c (load_class_names): Use a temporary hash table to hold the
27893         namespaces in order to avoid doing many string comparisons.
27895         * image.h: Fix typo.
27897         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
27898         Pass NULL instead of g_direct_equal to the GHashTable constructor 
27899         since the NULL case is short-circuited inside g_hash_table_lookup, 
27900         leading to better performance.  
27902         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
27903         obtain the first custom attribute for a given index. Depends on the
27904         CustomAttribute table being sorted by the parent field.
27906         * reflection.c (mono_custom_attrs_from_index): Use the new function 
27907         for better performance.
27909 2003-09-07  Martin Baulig  <martin@ximian.com>
27911         * class.c (mono_class_init): If we're a generic instance, inflate
27912         all our methods instead of loading them from the image.
27913         (mono_class_from_generic): Set `class->methods = gklass->methods'.
27915 2003-09-07  Martin Baulig  <martin@ximian.com>
27917         * mono-debug-debugger.c: Added support for constructors.
27919 2003-09-06  Martin Baulig  <martin@ximian.com>
27921         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
27922         New interncall.
27924         * reflection.c (mono_reflection_setup_generic_class): Call
27925         ensure_runtime_vtable() to create the vtable.
27927 2003-09-05  Martin Baulig  <martin@ximian.com>
27929         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
27930         MONO_TYPE_MVAR.
27932 2003-09-04  Martin Baulig  <martin@ximian.com>
27934         * reflection.c (mono_reflection_define_generic_parameter): Generic
27935         parameters start with zero.
27937 2003-09-04  Martin Baulig  <martin@ximian.com>
27939         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27941         * reflection.h (MonoReflectionGenericParam): New typedef.
27942         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
27943         the generic parameters from the managed TypeBuilder.
27945         * reflection.c (mono_reflection_define_generic_parameter): New function.
27946         (mono_reflection_create_runtime_class): Encode generic parameters.
27947         (mono_reflection_setup_generic_class): New function; this is
27948         called after adding adding all generic params to the TypeBuilder.
27949         (encode_type): Added MONO_TYPE_VAR.
27951 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
27953         * class.h class.c (mono_class_needs_cctor_run): Moved this method
27954         here from the JIT.
27956         * assembly.h assembly.c: Moved the AOT loading code into an assembly
27957         load hook.
27959 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
27961         * reflection.h reflection.c class.h class.c: Delete duplicate 
27962         definition of mono_type_get_name () from reflection.c and export the
27963         one in class.c.
27965         * class.c: Class loading fixes from Bernie Solomon 
27966         (bernard@ugsolutions.com).
27968         * reflection.c: Endianness fixes from Bernie Solomon 
27969         (bernard@ugsolutions.com).
27970         
27971 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
27973         * assembly.h assembly.c: Define a file format version for AOT
27974         libraries.
27975         
27976         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
27978         * appdomain.h (MonoJitInfo): New field to determine whenever the
27979         code is domain neutral.
27980         
27981 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
27983         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
27985 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
27987         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
27988         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
27989         Avoid caching the result since strings must be domain specific. Fixes
27990         #48050.
27992 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
27994         * marshal.c (mono_marshal_init): Make this callable multiple times
27995         since it is hard to find a correct place to call it.
27997         * object.c (mono_runtime_class_init): Execute static constructors in
27998         the correct appdomain.
28000         * image.c (build_guid_table): Handle the case when multiple images have
28001         the same GUID.
28003 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28005         * icall.c: added a couple of icalls for System.Web.
28007 2003-08-28  Martin Baulig  <martin@ximian.com>
28009         * icall.c (ves_icall_Type_BindGenericParameters): Use
28010         `klass->generic_inst' instead of `&klass->byval_arg' in the
28011         mono_type_get_object() call.  The returned type must be
28012         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28014 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28016         * NOTES: New file.
28018         * object.c (mono_class_proxy_vtable): Make it thread safe.
28020         * pedump.c: Fix warning.
28022         * object.c appdomain.h: Get rid of metadata_section. 
28023         It is no longer needed and it was causing deadlocks with domain->lock.
28025         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28027 2003-08-26  Martin Baulig  <martin@ximian.com>
28029         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28031 2003-08-26  Martin Baulig  <martin@ximian.com>
28033         * pedump.c (main): Call mono_metadata_init(),
28034         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28035         and mono_loader_init().
28037 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28039         * loader.h: Add missing include to fix build.
28041         * image.h: mono_image_load_references is no more.
28043         * assembly.c: Reworked assembly loading to make it really thread safe.
28044         After these changes, the assembly returned by mono_assembly_open is
28045         fully initialized, i.e. all its references assemblies are loaded.
28047         * assembly.c (mono_image_load_references): Renamed to 
28048         mono_assembly_load_references, and made private, since clients no
28049         longer need to call it.
28051         * class.c: Removed calls to mono_assembly_load_references, since it was
28052         a source of deadlocks.
28054         * loader.h loader.c class.h class.c: Protect data structures using a 
28055         new lock, the loader lock.
28057         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28058         GPtrArrays only when needed.
28060         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28061         into empty structures by mcs. Fixes pinvoke7.cs.
28062         
28063         * domain.c (mono_init): Call a new initialization function.
28065         * appdomain.c (mono_runtime_init): Call the new initializer function
28066         of the marshal module.
28068         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28069         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28071         * marshal.h marshal.c: Added locks around the wrapper caches to make
28072         this module thread safe.
28074         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28075         this argument. Fixes pinvoke1.exe.
28077 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28079         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28080         enumeration of values. Removed fields to store remote call output values in
28081         MonoAsyncResult. Not needed any more.
28082         * object.c: Initialize call_type and async_result fields in mono_message_init.
28083         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28084         dispatching the message.
28085         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28086         async call to finish. To do it use a message with EndInvoke call type.
28088 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28090         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28091         determines whenever a method has marshalling info.
28093 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28095         * assembly.c: fix the build on windows.
28097 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28099         * object.cs: Fixed bug #47785.
28101 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28103         * string-icalls.c (StringReplace): If their are no occurances of
28104         the old string found return a reference to the supplied
28105         string. This saves some memory and matches MS behavoir.
28106         
28107 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28109         * socket-io.c: fixed compilation for systems that define AF_INET6
28110         and don't define SOL_IP/SOL_IPV6.
28112 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28114         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
28115         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
28117         * rawbuffer.c rawbuffer.h: Make this module thread safe.
28119         * domain.c: Make this module thread safe.
28121         * domain.c (mono_init): Call new initialization function.
28123         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
28124         reference types too. Fixes #38812.
28126         * image.c (mono_image_init): Fixed warnings.
28128         * class.c (mono_class_from_typeref): Handle assembly load failure
28129         correctly.
28131         * appdomain.c (add_assemblies_to_domain): Handle the case when
28132         the references of an assembly are not yet loaded.
28134         * metadata.c image.c assembly.c: Moved initialization of global
28135         variables to a separate function called at startup since lazy 
28136         initialization of these variables is not thread safe.
28137         
28138         * image.c assembly.c: Made this module thread safe by adding locks in 
28139         the appropriate places.
28141         * domain.c (mono_init): Call the new initialization functions of the
28142         three modules.
28144 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
28146         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
28147           make a direct call. It is proxy's work to make the call asynchronous.
28148           mono_delegate_end_invoke(): If the targe is a proxy, just collect
28149           the return values.
28150         * object.cs: mono_method_call_message_new(): read AsyncResult and
28151           state object from parameters list, if this info is requested.
28152         * object.h: Added fields to store remote call output values in
28153           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
28155 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28157         * object.h: add needed fields to MonoThread.
28158         * threads.c, threads.h: allow registering a function to cleanup data
28159         allocated per thread by the JIT.
28161 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28163         * loader.h: portability fix by Bernie Solomon
28164         * <bernard@ugsolutions.com>.
28166 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
28168         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
28169         return a MonoArray. This simplifies the code and also ensures that
28170         the cache allways contains an object reference as a value.
28172         * icall.c (ves_icall_get_parameter_info): Simplified using the new
28173         function.
28175 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28177         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
28178         fixes a problem with byte ordering when getting the address family for
28179         a socket.
28181 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
28183         * .cvsignore: Added monosn.
28185         * reflection.h reflection.c loader.c: Added support for parameter
28186         marshalling to dynamically created types. Fixes #47295.
28188 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
28190         * rand.c: remove useless warnings.
28192 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28194         * class.c: implemented ldtoken for methods and fieldrefs.
28196 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28198         * threadpool.c: when mono_async_invoke was called, no one took care of
28199         monitoring the queue. So if the method invoked took some time and we
28200         got new async invoke requests after 500 ms (the thread created waited
28201         that long in WaitForSingleObject), the new async invoke was not called
28202         until the previous one finished.
28204         This is fixed now. Thanks to Totte for helping with it.
28206 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28208         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
28210 2003-08-11  Martin Baulig  <martin@ximian.com>
28212         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
28214 2003-08-06  Martin Baulig  <martin@ximian.com>
28216         * mono-debug-debugger.c: Added support for static fields,
28217         properties and methods.
28219 2003-08-06  Martin Baulig  <martin@ximian.com>
28221         * mono-debug-debugger.c: Don't store the MonoString's vtable to
28222         make this work for applications with multiple application domains.
28224 2003-08-04  Martin Baulig  <martin@ximian.com>
28226         * mono-debug-debugger.c: Completely reworked the type support; the
28227         most important thing is that we're now just using one single
28228         `MonoType' instance per type.
28230 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
28232         * mono-endian.h, mono-endian.c, icall.c: Added icall
28233         ves_icall_System_Double_AssertEndianity to assert double word endianity
28234         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
28236 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28238         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
28239         support, icalls and fixes.
28241 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
28243         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
28244         classes that are a punctuation character in .NET is not the same a
28245         g_unichar_ispunct.
28247 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28249         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
28251 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
28253         * icall.c: Add new MemCopy internalcall.
28254         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
28255         Simplified code; It is not necessary to handle all the cases here,
28256         as the C# code takes care of it.  Only handle the case of the name
28257         resource embedded into the assembly.
28259         Changed signature to return the data pointer and the size of the
28260         data. 
28262 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
28264         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
28265         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
28267 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28269         * socket-io.c: ignore EINTR error in select.
28271 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
28273         * class.h, class.c: removed unused subclasses field in MonoClass.
28275 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28277         * icall.c: improve fix of get_base_definition(). If the parent class
28278           doesn't have the mehod, look at the parent of the parent.
28279         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
28280           to check if a parameter is an in or out parameter
28281           (PARAM_ATTRIBUTE_IN is not set by default).
28282           mono_method_return_message_restore(): Use mono_class_value_size to
28283           get the size of a value type. mono_type_stack_size (parameterType)
28284           does not return the correct value if parameterType is byRef.
28285           mono_load_remote_field(), mono_load_remote_field_new(),
28286           mono_store_remote_field(), mono_store_remote_field_new():
28287           raise exception if the remote call returns an exception.
28289 2003-07-28  Martin Baulig  <martin@ximian.com>
28291         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
28292         method.  This is a wrapper around mono_runtime_invoke() which
28293         boxes the instance object if neccessary.
28295 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28297         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
28298         metadata.h, row-indexes.h, verify.c: first cut of generics support.
28300 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28302         * icall.c: disable mcs bug workaround.
28304 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
28306         * object.c (mono_runtime_class_init): Take the metadata_section
28307         mutex before obtaining the domain mutex.
28309         * appdomain.h: Added definition of metadata_section mutex here. 
28311         * object.c: define metadata_mutex here.
28313 2003-07-24  Ravi Pratap  <ravi@ximian.com>
28315         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
28316         fixed.
28318 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
28320         * reflection.c: Fix bug #46669
28322 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28324         * exception.c:
28325         * exception.h:
28326         * icall.c:
28327         * object.h: fill in the type name for TypeLoadException.
28329 2003-07-23  Ravi Pratap  <ravi@ximian.com>
28331         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
28332         relationship between TypeBuilders while compiling corlib) and bug
28333         45993 (Array types returned from the runtime while compiling
28334         corlib were from the loaded corlib).
28336 2003-07-22  Martin Baulig  <martin@ximian.com>
28338         * mono-debug-debugger.c: Reworked the type support a bit more;
28339         distinguish between types and classes.
28341 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
28343         * icall.c: add IsArrayImpl icall.
28345 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
28347         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
28348         initializing real_size only once. Also fix bug #46602.
28350 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
28352         * object.c: Renamed mono_metadata_section to metadata_section.
28354 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
28356         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
28357           empty array if the type is an array. Fixed.
28358           ves_icall_MonoMethod_get_base_definition: if the base method
28359           is abstract, get the MethodInfo from the list of methods of
28360           the class.
28361         * reflection.c: ParameterInfo.PositionImpl should be zero-based
28362           and it was 1-based. Fixed in mono_param_get_objects.
28364 2003-07-20  Martin Baulig  <martin@ximian.com>
28366         * mono-debug.h: Set version number to 31.
28367         (mono_debug_init): Added `MonoDomain *' argument.
28369         * mono-debug-debugger.c: Reworked the type support; explicitly
28370         tell the debugger about builtin types; pass the `klass' address to
28371         the debugger.
28373 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
28375         * image.c: Allow new metadata tables to be loaded without a
28376         warning. Also update the warning message to give the new constant value.
28377                 
28378 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
28380         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
28381         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
28382         array type representation changes.
28384 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28386         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
28387         on Environment.Exit () call.
28389 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28391         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
28392         requires a matching corlib.
28394 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28396         * Changelog: My editor decided to add a CR to each line. Sorry about that.
28397           Committed again without the CRs.
28398         
28399 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28401         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
28402           getting it from the "this" socket instance. Did not work
28403           if the socket is a subclass of Socket.
28404           Also fixed bug #35371.
28406 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28408         * metadata.c: fixed size for TypedByRef.
28409         * loader.c: when searching for a method, consider the vararg amrker.
28410         * unicode.c, decimal.c: constify some arrays.
28412 2003-07-15  Dick Porter  <dick@ximian.com>
28414         * socket-io.c: Fixed compilation for gcc < 3.2.
28416         Fixed compilation for machines that don't have AF_INET6 (thanks to
28417         Bernie Solomon <bernard@ugsolutions.com> for that part.)
28419         Fixed compile warnings.
28420         
28421         Fixed formatting and line endings.
28423 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
28425         * socket-io.h:
28426         * socket-io.c: Added IPv6 support.
28428 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
28430         * class.c (mono_class_is_assignable_from): New function to implement
28431         the is_assignable_from logic. Used by mono_object_isinst, 
28432         Type::IsAssignableFrom () and the interpreter.
28434         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
28435         Object, even interfaces.
28436         
28437         * object.c (mono_object_isinst): Implement in terms of 
28438         is_assignable_from.
28440         * icall.c (ves_icall_type_is_assignable_from): New icall.
28442 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
28444         * domain.c (foreach_domain): fix compiler warning.
28446 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
28448         * image.c (load_metadata_ptrs): use g_strndup because strndup is
28449         not available on all plattforms
28451 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
28453         * image.h image.c: Store the metadata version string in MonoImage.
28454         * icall.c: New icall to retrieve the image version.
28455         * reflection.c (create_dynamic_image): Fill in the image version field
28456         * reflection.c (build_compressed_metadata): Use the image version
28457         from the image structure.
28459 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28461         * appdomain.c: modified comment.
28462         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
28463         That will be its last iteration when mono_gc_cleanup is called from
28464         mono_runtime_cleanup and before the domain is unloaded.
28466         Fixes bug #45962.
28468 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
28470         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
28471         attributes.
28473 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28475         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
28476         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
28477         Bernie Solomon <bernard@ugsolutions.com>.
28479 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28481         * object.c, object.h: provide mono_object_new_fast() for faster
28482         allocation in some special cases.
28484 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
28486         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
28487         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
28489 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
28491         * threadpool.c: fix leaks.
28493 2003-07-01  Dick Porter  <dick@ximian.com>
28495         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
28496         using MonoGHashTables.  Fixes threadpool bug posted to list.
28498 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28500         * image.h, image.c: added support to load an assembly from a byte array.
28501         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
28502         assembly bundle support.
28504 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
28506         * threadpool.c (mono_thread_pool_add): keep a reference to the
28507         AsyncResult to prevent GC
28509 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
28511         * class.c: leak fix.
28513 2003-06-25  Dick Porter  <dick@ximian.com>
28515         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
28516         for the async object, the WaitHandle object will close the handle.
28517         Fixes bug 45321.
28519 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28521         * class.c: in mono_array_class_get (), lookup from the hash with the
28522         same type we insert: this works around a bug in
28523         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
28524         lluis. The real fix will have to wait for after the release.
28526 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
28528         * icall.c: fix memory leak when getting type members.
28530 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28532         * reflection.c: added more pubtoken special cases.
28534 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
28536         * class.c: handle field offset correctly when class size
28537         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
28539 2003-06-20  Martin Baulig  <martin@ximian.com>
28541         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
28542         *image' field.
28544 2003-06-20  Martin Baulig  <martin@ximian.com>
28546         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
28548 2003-06-20  Martin Baulig  <martin@ximian.com>
28550         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
28551         just distinguish between variables in registers and variables at
28552         an offset relative to a register.
28554 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28556         * icall.c: #ifdef out latest changes until mcs is fixed.
28558 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28560         * icall.c: return members in metadata order.
28562 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28564         * icall.c: avoid infinite loop in GetTimeZoneData.
28566 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
28568         * icall.c: added Marshal.Prelink/All icalls.
28570 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28572         * object.c, object.h: fix warnings and do some overflow checking
28573         when creating arrays.
28575 2003-06-17  Dick Porter  <dick@ximian.com>
28577         * file-io.h:
28578         * file-io.c: File attributes need to be tweaked slightly when
28579         passed from the managed to the w32 world.
28581 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28582         * profiler.h profiler-private.h profiler.c: Rework last patch
28583         based on suggestion by Paolo.
28584         
28585 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28587         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
28588         instruction level coverage data collection.
28589         * profiler.h profiler.c (: Added new callback function which can be
28590         used by the profiler to limit which functions should have coverage
28591         instrumentation.
28592         * profiler.c (mono_profiler_load): Call g_module_build_path to
28593         generate the file name of the profiler library.
28595 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28597         * profiler.c, profiler.h, profiler-private.h: added basic block 
28598         coverage profiling API.
28600 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
28602         * reflection.c (mono_reflection_create_runtime_class): Add support
28603         for events in dynamically generated code.
28605         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
28606         not allocated.
28608 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28610         * icall.c: when getting timezone info, return reasonable values if we
28611         can't get the actual data.
28613 2003-06-14  Dick Porter  <dick@ximian.com>
28615         * threads.c (start_wrapper): Remove the reference to the thread
28616         object in the TLS data, so the thread object can be finalized.
28617         This won't be reached if the thread threw an uncaught exception,
28618         so those thread handles will stay referenced :-( (This is due to
28619         missing support for scanning thread-specific data in the Boehm GC
28620         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
28622 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
28624         * reflection.c: ensure streams and tables are first allocated with
28625         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
28627 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28629         * icall.c: fixed GetElementType for byrefs (bug# 44792).
28631 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
28633         * reflection.c (mono_reflection_create_runtime_class): Add support for
28634         properties to dynamically created classes.
28635         * reflection.c: Fix a few places where non-MonoObjects were inserted
28636         into the tokens hashtable.
28638 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28640         * object.c: some support to handle out of memory exceptions.
28642 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
28644         * marshal.c (mono_marshal_get_native_wrapper): support reference
28645         return types
28647 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28649         * object.h, object.c: more portability stuff from Bernie Solomon.
28650         Unexport mono_object_allocate(). Added mono_object_unbox ().
28651         Set exitcode when an unhandled exception is thrown.
28653 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
28655         * marshal.c (mono_marshal_get_native_wrapper): use custom
28656         marshaler for return types.
28658 2003-06-10  Dick Porter  <dick@ximian.com>
28660         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
28661         ip_mreq is available
28663 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
28665         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
28666         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
28667         by Bernie Solomon <bernard@ugsolutions.com>.
28669 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
28671         * gc.c (mono_gc_init): Avoid error message on shutdown when
28672         GC_DONT_GC=1 is used.
28674         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
28675         New icall to return the GUID of a module.
28677 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28679         * class.c: ensure instance size always includes the parent's size
28680         even whem class size is set explicitly (fixes bug#44294).
28682 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
28684         * profiler.h, profiler.c: made the simple profiler thread-safe,
28685         get more accurate timing info. Allow the loading of an
28686         externally-developed profiler module.
28688 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
28690         * marshal.c (mono_marshal_get_native_wrapper): improved
28691         class/byref arguments.
28692         (mono_marshal_get_native_wrapper): better string marshaling support.
28694 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
28696         * class.c: ensure .pack and .size are handled correctly and
28697         simplified layout of static fields.
28699 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
28701         * appdomain.c
28702         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
28704         * loader.c (mono_lookup_pinvoke_call): look for modules in the
28705         current directory (fix bug 44008)
28707 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
28709         * marshal.c (mono_marshal_get_native_wrapper): started support for
28710         custom marshalers.
28711         (mono_delegate_to_ftnptr): consider marshalling specifications
28713 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
28715         * reflection.c, reflection.h: emit custom marshal info.
28717 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28719         * object.c: free the GError.
28720         * icall.c: added CloseEvent_internal.
28721         * threads.[ch]:
28722         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
28723         call.
28725 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
28727         * loader.c (mono_method_get_signature): Add support for dynamic
28728         assemblies.
28730 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
28732         * reflection.c: fixed bug #43905.
28734 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28736         * class.c, domain.c, icall.c, metadata.h, object.h: support for
28737         handling TypedReference and ArgIterator.
28738         * loader.c, loader.h: added function to get signature at call site.
28740 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28742         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
28743         data readonly. Buglets and warning fixes. Some MethodSpec support.
28745 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28747         * class.h, class.c, object.c: remove relative numbering support.
28749 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
28751         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
28752         free the string, until we get a chance to fix Gtk#
28754 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28756         * marshal.c: revert last patch.
28758 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
28760         * icall.c: updates for new mono_class_vtable() not calling
28761         the type constructor anymore.
28763 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
28765         * object.h, object.c: separate vtable creation from type
28766         initialization. Make running the .cctor thread safe.
28768 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
28770         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
28772 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
28774         * loader.c (mono_get_method): consider calling convention
28776 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
28778         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
28779         to return the invisible global type for a module.
28781         * reflection.c (mono_image_build_metadata): Emit global fields too.
28783 2003-05-20  Peter Williams  <peterw@ximian.com>
28785         * loader.c (mono_lookup_internal_call): Add a few newlines.
28787 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
28789         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
28790         literal strings.
28792         * appdomain.c (set_domain_search_path): Recalculate search path when
28793         AppDomainSetup.PrivateBinPath changes.
28795         * object.c (mono_class_compute_gc_descriptor): It turns out some
28796         parts of the class libs (like System.Thread) holds pointers to
28797         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
28798         to treat native int a pointer type here.
28799         
28800 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
28802         * appdomain.h, domain.c: add hashtable for jump target resolution.
28804 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
28806         * reflection.h reflection.c icall.c: Added new icalls 
28807         GetManifestResourceInfoInternal, GetModulesInternal and support
28808         infrastructure.
28810 2003-05-16  Dick Porter  <dick@ximian.com>
28812         * icall.c:
28813         * file-io.h:
28814         * file-io.c: Implement System.IO.MonoIO::GetTempPath
28816 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
28818         * object.c: mono_store_remote_field: little fix to previous patch.
28820 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28822         * class.c: add constructors to array classes.
28823         * icall.c: special case array construction for InternalInvoke (),
28825 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
28827         * class.h class.c reflection.c object.c: Added support for field
28828         defaults in dynamically generated classes.
28830 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
28832         * reflection.c: properly encode charset for ddlimport.
28834 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
28836         * threads.c: allow compiling without GC.
28838 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
28840         * appdomain.h, object.c, object.h, threads.c, threads.h: added
28841         handling of thread static data.
28843 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28845         * reflection.h, reflection.c: added mono_custom_attrs_free ().
28847 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
28849         * class.c (mono_array_class_get): always set the serializable flags
28850         (mono_array_class_get): always set the SEALED attribute for array types
28852 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
28854         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
28855         attributes (fix for bug 42021).
28857 2003-05-12  Dick Porter  <dick@ximian.com>
28859         * gc.c: Don't run finalizers when the finalizer thread is
28860         finishing up, because the default domain has already been
28861         destroyed.
28863 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
28865         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
28866         value is null, we should throw an exception.   This is slightly
28867         different than the other conventions used for the constructor.
28869 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28871         * socket-io.c: fixed windows build.
28873 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28875         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
28877 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
28879         * object.c (mono_string_new_wrapper): Compatibility fix for MS
28880         compilers.
28882 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
28884         * class.c (mono_class_layout_fields): Add experimental GC aware
28885         auto layout facility. Requires class library changes to work correctly.
28887         (mono_class_setup_vtable): Avoid overriding explicit interface
28888         method implementations. Fixes iface3.exe test.
28890         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
28891         object reference.
28892         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
28893         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
28895         * metadata.h: Add new type classification macro which determines
28896         whenever the type holds an object reference.
28898 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
28900         * marshal.c (mono_marshal_get_native_wrapper): cleanups
28902 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
28904         * gc.c (finalizer_thread): Work around a GC bug.
28906 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
28908         * marshal.c (emit_struct_conv): allow unions
28910         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
28912 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
28914         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
28916 2003-05-06  Martin Baulig  <martin@ximian.com>
28918         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
28920 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28922         * socket-io.c:
28923         (Select_internal): allow NULLs, don't create arrays if not needed.
28924         Coupled with Socket.cs changes.
28926         * threadpool.c:
28927         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
28928         register a finalizer for it that will close the semaphore handle. This
28929         fixes the leak and make Lupus' test run with > 4080 loops.
28931 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
28933         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
28934         Jerome Laban (bug #42287)
28936 2003-05-02  Martin Baulig  <martin@ximian.com>
28938         * debug-mono-symfile.h
28939         (MonoSymbolFile): Moved declaration into mono-debug.h.
28940         (MonoDebugMethodJitInfo): Likewise.
28941         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
28942         argument.
28943         (_mono_debug_address_from_il_offset): Take a
28944         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
28946         * mono-debug.h
28947         (MonoDebugDomainData): New struct.
28948         (mono_debug_get_domain_data): New function.
28949         (mono_debug_add_method): Take an additional `MonoDomain *'
28950         argument.
28951         (mono_debug_source_location_from_address): Likewise.
28952         (mono_debug_il_offset_from_address): Likewise.
28953         (mono_debug_address_from_il_offset): Likewise.
28955 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
28957         * reflection.c: one more check for null type in custom attrs.
28959 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28961         * reflection.c: avoid warning (comparison is always false due to limited
28962         range of data type).
28964 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28966         * icall.c: throw an exception in Type.GetField if the argument 'name'
28967         is NULL.
28969 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
28971         * reflection.c: fixed handling of enums in named arguments to custom
28972         attributes (bug #42123).
28974 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
28976         * reflection.c: use the right array element type and handle
28977         a null for a Type argument, too.
28979 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
28981         * reflection.c: handle arrays as arguments to custom attributes.
28983 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
28985         * reflection.c: handle a string value in a custom attr
28986         ctor that takes an object.
28988 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
28990         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
28991         (fix bug #42063)
28993 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
28995         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
28997 2003-04-27  Martin Baulig  <martin@ximian.com>
28999         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29000         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29001         MONO_DEBUGGER_EVENT_BREAKPOINT.
29002         (mono_breakpoint_trampoline_code): Removed.
29003         (mono_debugger_event_handler): The last argument is now a
29004         `guint32'.
29005         (mono_debugger_insert_breakpoint_full): Removed the
29006         `use_trampoline' argument.
29007         (mono_debugger_method_has_breakpoint): Likewise.
29008         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29009         mono_debugger_breakpoint_callback(); take the method and
29010         breakpoint number as arguments.
29012 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29014         * metadata.c: fix off by one when loading parameters attributes.
29016 2003-04-24  Martin Baulig  <martin@ximian.com>
29018         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29020 2003-04-24  Martin Baulig  <martin@ximian.com>
29022         * mono-debug-debugger.c: Moved all code which interacts with the
29023         Mono Debugger here.
29025         * debug-mono-symfile.c: This code now just deals with the symbol
29026         file itself, the debugger code is now in mono-debug-debugger.c.
29028 2003-04-23  Martin Baulig  <martin@ximian.com>
29030         * mono-debug.c (mono_debug_source_location_from_il_offset):
29031         New method; like mono_debug_source_location_from_address(), but
29032         takes an IL offset instead of a machine address.
29034 2003-04-23  Martin Baulig  <martin@ximian.com>
29036         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29037         `line' field; this is now computed by the debugger.
29039 2003-04-23  Martin Baulig  <martin@ximian.com>
29041         * mono-debug.[ch]: New files.  This is the new debugging interface.
29043         * mono-debug-debugger.[ch]: New files.  Moved all code which
29044         interacts with the Mono Debugger here.
29046 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29048         * domain.c (mono_init): initialize mono_defaults.monitor_class
29050 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29052         * reflection.c (method_encode_code): Add a spicy exception to help
29053         future compiler authors.
29055 2003-04-21  Martin Baulig  <martin@ximian.com>
29057         * icall.c
29058         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29059         Make this work with relative pathnames; g_filename_to_uri() needs
29060         an absolute filename.
29062 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29064         * icall.c: Track name changes in Object and ValueType.
29066 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29068         * metadata.c (mono_type_stack_size): size should be a multiple of
29069         sizeof (gpointer)
29071 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29073         * gc.c:
29074         (internal_domain_finalize): moved into mono_domain_finalize. No need
29075         to create another thread because the finalizers will be run in the
29076         finalizer thread.
29077         
29078         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29079         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29080         to be run (MS does this too).
29082 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29084         * object.c (mono_class_compute_gc_descriptor): Update comment.
29086         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29088         * image.h: Add synchronized wrapper cache.
29090         * image.c (do_mono_image_open): Initialize cache.
29092         * reflection.c (create_dynamic_mono_image): Initialize cache.
29094 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29096         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29097         ves_icall_System_Buffer_ByteLengthInternal.
29099 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29101         * reflection.c: setup klass->nested_in earlier. Allow
29102         a dash in the assembly name.
29104 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29106         * metadata.c (mono_type_to_unmanaged): dont access
29107         type->data.klass for MONO_TYPE_OBJECT
29108         (mono_type_to_unmanaged): consider System.Delegate class
29110 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29112         * class.c: just setup supertypes in the proper place instead of
29113         initializing the full element class for arrays.
29115 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29117         * class.c: ensure the element class of arrays is initialized.
29118         Setup the supertype info for array classes, too.
29120 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
29122         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
29124 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29126         * Makefile.am: re-added -m option when running cygpath. This way,
29127         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
29128         separator.
29129         * mono-config.c: same codepath for locating mono config file for WIN32
29130         and the rest.
29131         * assembly.c: if mono_assembly_setrootdir is called, don't override
29132         the value set.
29134 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29136         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
29137         MONO_ASSEMBLIES variable.
29139 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
29141         * icall.c: added Assembly::GetNamespaces() icall.
29143 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29145         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
29147 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
29149         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
29150         * object.c: fixed bug in the construction of vtable for proxies
29152 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
29154         * object.c (mono_array_new): Mark mono_array_new as an icall.
29156 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29158         * class.c: fixed test for public method when overriding interfaces.
29159         Closes bug #40970.
29161 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29163         * appdomain.h, domain.c: added mono_domain_foreach() to
29164         be able to access the currently loaded appdomains.
29165         * object.c: make string interning work across sppdomains.
29166         Mark some functions for use as icalls.
29168 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
29170         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
29172         * reflection.h reflection.c: Allocate long living data using 
29173         GC_MALLOC_ATOMIC so the collector does not need to scan it.
29175         * reflection.c: Double the allocation size in streams instead of
29176         increasing it, to prevent unneccesary copying on large assemblies.
29177         
29178         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
29179         creation if the assembly does not have the Run flag set.
29181 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
29183         * class.h: avoid the C++ keywords in header files (Jerome Laban
29184         spotted and fixed this).
29186 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29188         * object.c:
29189         (mono_unhandled_exception): fill in the arguments for the
29190         UnhandledException event. Only trigger that event for the default
29191         domain (as MS does).
29193 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
29195         * object.c: Improve typed allocation stuff based on suggestions from
29196         Paolo. Also turn it on if the GC library supports it.
29198 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29200         * object.c object.h class.h: Added experimental typed allocation
29201         facility using the interfaces in gc_gcj.h.
29203         * os/gc_wrapper.h: Added new include files.
29204         
29205 2003-04-03  Martin Baulig  <martin@ximian.com>
29207         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
29208         which is not yet enabled by default.
29210         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
29211         functions.
29212         (mono_gc_lock, mono_gc_unlock): New static functions.
29214         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
29215         functions; stop/start the world for the garbage collector.  This
29216         is using the windows API; we need to complete the SuspendThread()/
29217         ResumeThread() implementation in the io-layer to make this work on Unix.
29218         (mono_gc_push_all_stacks): New public function; tells the garbage
29219         collector about the stack pointers from all managed threads.
29221 2003-04-03  Martin Baulig  <martin@ximian.com>
29223         * object.h (MonoThread): Added `gpointer stack_ptr'.
29225         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
29227 2003-04-03  Martin Baulig  <martin@ximian.com>
29229         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
29231 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29233         * reflection.c (typebuilder_setup_fields): Initialize field.first and
29234         field.last.
29236 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
29238         * loader.c (mono_lookup_internal_call): Report the corlib that is
29239         out of sync.
29241 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
29243         * icall.c (ves_icall_type_GetTypeCode): fixed check for
29244         System.DBNull (it's class not valuetype).
29246 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29248         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
29249         if the array method was already assigned a token (fixes bug#40646).
29251 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
29253         * reflection.c (mono_reflection_get_type): Attempt type resolve even
29254         if no assembly is given.
29256 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
29258         * metadata.h: Added the new tables.
29260         * row-indexes.h: Added definitions for new tables.
29262         * metadata.c: Add schemas for new tables, and add support for
29263         computing the sizes of them.
29265         * class.c: Update for handling the new type cases.
29267 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
29269         * metadata.h (MONO_TYPE_IS_VOID): new macro
29271 2003-03-31  Martin Baulig  <martin@ximian.com>
29273         * threads.h (MonoThreadCallbacks): Added `thread_created'.
29275         * threads.c (mono_thread_new_init): Call `thread_created' in the
29276         mono_thread_callbacks.
29278 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
29280         * loader.h: added marshalbyrefobject_class to mono_defaults
29281         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
29282         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
29283           generation of output parameters.
29284           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
29285         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
29286           contextbound and the target object belongs to the context of the caller.
29287         * object.h: added context and unwrapped_server variables in MonoRealProxy.
29288         * object.c: Implemented support for interfaces and abstract classes
29289           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
29290           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
29292 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
29294         * class.h class.c (mono_class_is_subclass_of): New function.
29295         
29296         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
29297         routines for most common case (calls from ArrayList::ToArray).
29299         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
29300         routine so programs which call Environment::Exit() can be profiled.
29302         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
29303         Added MONO_ARCH_SAVE_REGS.
29305         * icall.c (ves_icall_type_is_subtype_of): Use new function.
29307 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
29309         * blob.h: Add a couple of new MonoType types definitions.
29311         * tabledefs.h: Add a couple of new call convs.
29313 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
29315         * reflection.h (MonoReflectionDynamicAssembly): track changes in
29316         the layout of the class.
29318         * reflection.c (alloc_table): double the size on overflow to avoid
29319         unnecessary copying.
29321         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
29322         avoid filling out metadata tables and blobs. Also set mb->ilgen to
29323         null so it can be garbage collected.
29324         
29325 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
29327         * reflection.c (mono_reflection_get_type): Return the resolved type
29328         only if it is in the assembly we searched.
29330         * reflection.c (ensure_runtime_vtable): Initialize method slots.
29332         * class.c (mono_class_setup_vtable): Set the slot of the overriding
29333         method.
29335 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29337         * appdomain.c:
29338         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
29339         the right one is 'file:///blah', but MS allows it.
29340         * assembly.c:
29341         (mono_assembly_open): allow 'file://blah'
29343         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
29345 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
29347         * socket-io.c: fixes bug #40310.
29349 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
29351         * reflection.c (mono_reflection_parse_type): handle deeply nested
29352         types correctly.
29354         * reflection.c (mono_image_create_token): Use unique token values
29355         since they will be put into a hash table.
29357         * class.c (mono_class_setup_vtable): If a method occurs in more than
29358         one place in the vtable, and it gets overriden, then change the
29359         other occurances too.
29361         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29362         object as return type.
29364 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29366         * icall.c: Deleted "ToString" implementation for double and float
29367         because they are full implemented in managed code.
29369 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29371         * reflection.c, reflection.h: implemented and exported functions
29372         to retrieve info about custom attributes.
29374 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29376         * appdomain.c: moved Uri handling to assembly.c
29377         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
29378         work when using a file Uri in *nix and windows.
29380         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
29381         GetReferencedAssemblies.
29383 2003-03-18  Dick Porter  <dick@ximian.com>
29385         * icall.c: Rename a couple of internal calls
29387         * threads.c: Set the thread state to Stopped when a thread exits.
29388         Fixes bug 39377.
29390 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
29392         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
29393         New icall.
29395         * object.c (mono_class_vtable): fix warning.
29397 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
29399         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
29401         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
29402         memory.
29403         (method_encode_clauses): Create exception info structures in the right
29404         order.
29405         (mono_reflection_setup_internal_class): Initialize supertypes field.
29407         * class.c object.c: Handle interfaces which implement other interfaces 
29408         correctly.
29410         * class.h class.c: Move the supertypes array initialization code into 
29411         a separate function so it can be used for dynamic types too. Also call
29412         it earlier, in mono_class_init(), since it can be used before the
29413         type is initialized.
29415 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29417         * Makefile.am:
29418         * assembly.c:
29419         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
29421         * appdomain.c:
29422         * appdomain.h:
29423         * marshal.c:
29424         * object.c: remove warnings.
29426 2003-03-13  Martin Baulig  <martin@ximian.com>
29428         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
29429         (MonoDebugLexicalBlockEntry): New types.
29431         * debug-mono-symfile.c
29432         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
29434 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29436         * process.c: ret can be any non-zero value accroding to MS doc.
29438 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
29440         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
29441         fixing a warning for a miss-used prototype, would have cause
29442         random memory corruption.
29444 2003-03-07  Martin Baulig  <martin@ximian.com>
29446         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
29447         getting really annoying ....
29449 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
29451         * reflection.c (fixup_method): added support for array methods.
29453 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
29455         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
29456         (pointed out by Michael Adams).
29458 2003-03-04  Dick Porter  <dick@ximian.com>
29460         * icall.c: Temporarily reverted the Double and Single ToString()
29461         change, because it broke nunit.
29463 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
29465         * object.h, threads.h: make include files compatible with C++
29466         (patch by Jerome Laban <jlaban@wanadoo.fr>).
29468 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29470         * icall.c: Erased ToString helper functions for Double and Single.
29471         Now, that implementations ar all in managed code (Double and Single
29472         Formatters).
29474 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
29476         * appdomain.c: Added method for initializing the default context of
29477         a domain. Added internal call for getting the default context.
29478         * appdomain.h: Added context variable in MonoDomain struct.
29479         * domain.c: mono_domain_set also sets the default context of the domain
29480         * icall.c: Mapped internal method InternalGetDefaultContext.
29481         * object.c: mono_object_get_virtual_method returns always a remoting
29482         wrapper if the object is a transparent proxy.
29483         mono_runtime_invoke_array: when creating an object by calling the
29484         constructor, if the created object is a proxy, then the constructor should
29485         be called using the a remoting wrapper.
29487 2003-03-03  Dick Porter  <dick@ximian.com>
29489         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
29490         variable so it compiles on solaris.  Problem spotted by
29491         Christopher Taylor <ct@cs.clemson.edu>
29493 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29495         * appdomain.c:
29496         (get_info_from_assembly_name): don't leak value.
29498         * icall.c:
29499         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
29500         result.
29502 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
29504         * assembly.c: export mono_image_load_references ().
29505         * class.c: handle function pointers. mono_class_from_name() now
29506         supports nested type names directly.
29508 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
29510         * reflection.h reflection.c: Encode already created dynamic methods 
29511         and fields correctly as a DEF instead of a REF.
29513         * reflection.c: Get rid of the force_ref argument to 
29514         mono_image_typedef_or_ref since it was wrong in the first place.
29516         * string-icalls.c: add error checking to string constructors according
29517         to the MSDN docs.
29519         * reflection.c: Emit types in the order their TypeBuilders were 
29520         created. Previously, a new table index was assigned to each type before
29521         the tables were emitted. This was wrong because the signature blob
29522         might already refer to a type by its original table index.
29524 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
29526         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
29527         change.
29528         
29529 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29531         * Makefile.am: make assemblies dir have \ instead of / on windows.
29533 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
29535         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
29536         iterate over the NESTEDCLASS table using a linear search since the
29537         table is not guaranteed to be sorted by the secondary key.
29539         * class.c (mono_class_create_from_typedef): fixed up call to
29540         mono_metadata_nesting_typedef.
29541         
29542 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
29544         * marshal.c (mono_string_to_byvalstr): clear the memory as
29545         suggested by Jerome Laban <jlaban@wanadoo.fr>
29547 2003-02-26  Dick Porter  <dick@ximian.com>
29549         * process.c: Cope with padding in .rsrc blocks
29551 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29553         * metadata.h: reverted the filter_len change, it breaks reflection
29554         
29555 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29557         * metadata.h: added a new field to store the filter_len
29558         
29560 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
29562         * reflection.c: handle custom attributes for types and members
29563         created with Reflection.Emit (bug#38422).
29565 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
29567         * reflection.c: define RTSpecialName automatically for constructors for
29568         compatibility with MS.NET.
29570         * reflection.c (mono_reflection_create_runtime_class): initialize
29571         nested_in field of dynamically created classes.
29573 2003-02-22  Martin Baulig  <martin@ximian.com>
29575         * debug-mono-symfile.h: Incremented version number.
29577 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29579         * object.h icall.c process.c: fix warnings.
29581 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29583         * appdomain.h appdomain.c:
29584         (mono_domain_try_type_resolve): split the 
29585         name_or_tb argument into a name and a tb argument.
29586         (mono_domain_has_type_resolve): new function to check whenever the
29587         application has registered a TypeResolve event handler.
29588         
29589         * icall.c reflection.h reflection.c: move the type resolve logic into
29590         mono_reflection_get_type () so it will be invoked when 
29591         Assembly::GetType () is called.
29593         * reflection.c:
29594         (mono_reflection_get_type): renamed to get_type_internal.
29595         (mono_reflection_get_type): fixed type name generation so it works 
29596         for nested types too.
29597         (mono_reflection_get_type): call has_type_resolve () to avoid the 
29598         costly type name generation if there is no resolve event handler.
29600 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29602         * class.c, image.c: load exported types from file references.
29604 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
29606         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
29607           used to cache the managed methods used to create proxies and make 
29608           remote invocation of methods.
29609         * class.h: Added in MonoVTable a flag to indicate that a class needs 
29610           to be remotely created.
29611         * object.c: Modified the method mono_class_vtable(). It now initializes 
29612           the remote flag of the vtable. Modified mono_object_new_specific(), 
29613           so now it checks the remote flag.
29614         * icall.c: Added a couple of internal methods, one for enabling instance 
29615           creation interception for a type, and one for creating objects bypassing
29616           the remote check.
29618 2003-02-18  Martin Baulig  <martin@ximian.com>
29620         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
29621         New interncall to get a method's metadata token.
29623         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
29624         New interncall for the debugger.
29626 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
29628         * class.c (mono_class_setup_vtable): allocate supertype array
29630 2003-02-18  Martin Baulig  <martin@ximian.com>
29632         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
29634 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29636         * reflection.c:
29637         (assembly_name_to_aname): jump over unknown properties (i've found
29638         something like: 'type, assembly, version=xxx, custom=null, public...',
29639         so now will ignore custom=null and still get the rest of the values).
29641 2003-02-17  Dick Porter  <dick@ximian.com>
29643         * threads.c: Have Thread.Start() wait for a semaphore to signal
29644         that the thread has set up all its local data.  This fixes bug
29645         34323, where Abort() raced the new thread's TLS data.
29647         Also removes the handle_store() call from start_wrapper, because
29648         threads are now always created suspended and there is no longer a
29649         race between the parent and child threads to store the info.
29651 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
29653         * image.c: explain the #- heap issue in a message, hopefully
29654         avoiding FAQs on mono-list.
29656 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29658         * icall.c:
29659         (GetEntryAssembly): if the domain has not invoked
29660         AppDomain.ExecuteAssembly yet, return the assembly of the default
29661         AppDomain.
29663 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
29665         * class.c (mono_ldtoken): make it work in dynamic assemblies.
29667 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
29669         * metadata.c, reflection.c: simple speedup to type hash
29670         and equals code.
29672 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
29674         * image.c, image.h, class.c, assembly.c: move module loading
29675         to MonoImage. When loading metadata, consider alignemnet from
29676         the start of metadata, not from the metadata address in memory.
29678 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
29680         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
29681         AssemblyBuilder objects. Factored out custom attribute creation into
29682         a separate function.
29683         (create_custom_attr): new function to create custom attributes.
29685 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
29687         * Makefile.am: Got tired of typing the full pathname to pedump.
29688         Until there is another option, am installing this.
29690 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
29692         * class.c (class_compute_field_layout): always set field->parent 
29693         (mono_ldtoken): use mono_defaults.fieldhandle_class;
29695 2003-02-11  Dick Porter  <dick@ximian.com>
29697         * threads-types.h:
29698         * monitor.c: Rewrote Monitor, making lock much faster and
29699         Pulse/Wait work as specified.  Also uses much fewer handles, and only
29700         creates them as needed.
29702         * exception.c: Added SynchronizationLockException
29704         * threads.c: Deleted old Monitor implementation.  The new one is
29705         in a new file.
29707 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
29709         * class.c: handled TypedReference type code. Set the correct size for
29710         class data. Setup interface_offsets for interface classes, too.
29712 2003-02-09  Martin Baulig  <martin@ximian.com>
29714         * debug-mono-symfile.h: Reflect latest symbol writer changes.
29716 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
29718         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
29719         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
29720         * object.c: fixed mono_object_get_virtual_method () for interfaces.
29721         * verify.c: check for code that runs after the end of the method.
29723 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29725         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
29726         "System.Math::Round2".
29727         * sysmath.h: Added Floor, Round and Round2 definitions.
29728         * sysmath.c: Modified certain functions that were not 100% compliant
29729         with MS.NET (math precision) and added the implementation of Floor,
29730         Round and Round2.
29732 2003-02-07  Martin Baulig  <martin@ximian.com>
29734         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
29736 2003-02-07  Martin Baulig  <martin@ximian.com>
29738         * debug-mono-symfile.c: Reflected latest symwriter changes.
29739         (mono_debug_create_mono_symbol_file): Removed.
29740         (mono_debug_open_mono_symbol_file): Take an argument which
29741         specifies whether to create a dynamic symbol file.
29743 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
29745         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
29747 2003-02-05  Martin Baulig  <martin@ximian.com>
29749         * reflection.c (mono_image_build_metadata): Make this public,
29750         protect it against being called multiple times, don't create
29751         resources and don't build the compressed metadata here.
29752         (mono_image_create_pefile): Do this here.
29754         * icall.c
29755         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
29757 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29759         * socket-io.c: fixed bug #36322.
29761 2003-02-06  Piers Haken <piersh@friskit.com>
29763         * appdomain.[ch]:
29764         * class.h:
29765         * debug-mono-symfile.c:
29766         * icall.c:
29767         * loader.c:
29768         * mono-config.c:
29769         * monosn.c:
29770         * reflection.c:
29771         * socket-io.c: warning cleanups
29773 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
29775         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
29776         function. works like remoting invoke, but does a check for the Proxy first.
29778 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
29780         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
29782 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
29784         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
29785         array of pointers.
29786         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
29787         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
29789         * object.c (mono_store_remote_field_new): used by the new jit
29790         instead of mono_store_remote_field
29791         (mono_load_remote_field_new): used by the new jit
29792         instead of mono_load_remote_field
29794 2003-02-05  Patrik Torstensson
29796         * appdomain.c: changed unload to take the domain id instead
29797         of domain
29798         
29799         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
29802 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29804         * appdomain.c: don't look for assemblies in ApplicationBase if
29805         PrivateBinPathProbe is set.
29807 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29809         * object.c: make the first argument in main_args contain the absolute
29810         path to the assembly. Fixes bug #37511.
29812 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29814         * icall.c: get correct UTC offset for countries not using daylight
29815         time saving. Fixes bug #30030.
29817 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29819         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
29820         and 1 are the family).
29822 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
29824         * icall.c (ves_icall_InternalExecute): removed wrong assertion
29826         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
29828 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
29830         * reflection.c: added support for SignatureHelper tokens, which is
29831         needed by the Calli opcode.
29833         * reflection.h: track changes to SignatureHelper class.
29835         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
29837 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29839         * appdomain.c: fixed loading assemblies from PrivateBinPath.
29841 2003-02-03  Patrik Torstensson
29842         * appdomain.[c|h], domain.c : 
29843          - Added support for getting a domain via domain id
29844          - Support for setting and getting domain from System.AppDomain 
29845            (used in cross appdomain channel)
29846          - Added support for get/set for a MonoAppContext on a thread 
29847            (Context class in System.Runtime.Remoting.Contexts),
29848          - Removed hack in Get/SetData and ExecuteAssembly.
29849         
29850         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
29851         the managed world to get control when a proxy is created.
29853         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
29854         
29855 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
29857         * icall.c
29858         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29859         Populate the codebase field as well.
29861 2003-02-02  Martin Baulig  <martin@ximian.com>
29863         * debug-mono-symfile.c
29864         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
29865         (mono_debug_symfile_add_method): Allow interncalls.
29867 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29869         * icall.c: throw parse exception if strtod fails or the string is empty.
29871 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
29873         * marshal.c: handle object type separately from defined
29874         class types.
29876 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
29878         * marshal.c: handle NATIVE_LPSTR for strings when it's
29879         explicitly specified.
29881 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
29883         * reflection.c, reflection.h, icall.c: setup the reflection
29884         handle cache for ModuleBuilders and AssemblyBuilders.
29886 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
29888         * reflection.c (reflection_methodbuilder_to_mono_method): set
29889         pinvoke flag
29891 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29893         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
29895 2003-01-29  Dick Porter  <dick@ximian.com>
29897         * threads.c: No need for the fake_thread kludge now that Thread
29898         doesn't run a class constructor
29899         
29900 2003-01-29  Dick Porter  <dick@ximian.com>
29902         * threads.c: Use g_direct_hash instead of the rather bogus
29903         g_int_hash
29905 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
29907         * marshal.c (mono_marshal_get_native_wrapper): add check for null
29908         (fix pinvoke12.exe)
29909         (mono_marshal_get_struct_to_ptr): generate valid IL code
29910         (mono_marshal_get_ptr_to_struct): generate valid IL code
29911         (*): correctly set sig->pinvoke, we need to memdup the signature
29912         to do that
29914 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29916         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
29917         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
29919 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
29921         * profiler.c: provide more callers information.
29923 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
29925         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
29927         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
29929         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
29931 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29933         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
29934         exception instead of going into an infinite loop on dates which it 
29935         can't yet handle.
29937         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
29938         out-of-range exception if needed.
29940         * class.c (mono_class_setup_vtable): allow a virtual method to provide
29941         an implementation for an interface method and to override an inherited
29942         method at the same time. 
29943         Imagine a scenario when a virtual method is used to override a
29944         virtual abstract method in a parent class, and this same method 
29945         provides an implementation for an method inherited from an interface. 
29946         In this case, the interface resolution code will set im->slot, which 
29947         means that the virtual method override pass will skip this method 
29948         which means a pointer to the abstract method inherited from the parent
29949         will remain in the vtable of this non-abstract class.
29951         * class.c: (mono_class_setup_vtable): continue search for a real 
29952         method if only an abstract method is found.     
29954 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
29956         * reflection.c: add size to encoding for ByValStr and ByValArray
29957         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
29959 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29961         * class.c (mono_class_setup_vtable): pass the override info as an
29962         argument.
29964         * class.c (mono_class_setup_vtable): set the slot of overriding methods
29965         correctly.
29966         
29967         * reflection.c (ensure_runtime_vtable); add support for method 
29968         overrides.
29969         
29970 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29972         * reflection.c (resolution_scope_from_image): Hack to work to work with
29973         dynamic assemblies.
29975         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
29976         added a 'force_ref' argument to force this function to allways return 
29977         a TypeRef. This is needed by mono_image_get_memberref_token ().
29978         
29979 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29981         * reflection.c (mono_image_get_type_info): interfaces really don't have
29982         a parent.
29984         * reflection.c (mono_image_basic_init): fill out missing fields of
29985         image structure.
29987         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
29988         dynamic assemblies. This is required so dynamic assemblies show up in
29989         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
29990         Type::GetType() etc. This is consistent with MS behaviour.
29992         * image.c image.h reflection.c: add newly created classes to the name 
29993         cache so mono_class_get () will find them.      
29995 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29997         First part of changes to get IKVM.NET running under mono.
29998         
29999         * appdomain.h, appdomain.c: added new function 
30000         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30001         This function will call AppDomain::DoTypeResolve to do the actual work.
30003         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30004         moved existing code dealing with dynamic tokens to a new function 
30005         called mono_reflection_lookup_dynamic_token (). This function will 
30006         raise TypeResolve events when appropriate. Since reflection.c is not 
30007         part of libmetadata, a new hook function called 
30008         mono_lookup_dynamic_token() is added to class.c which will call this.
30010         * assembly.h assembly.c: make the invoke_load_hook function public,
30011         so it can be called for dynamic assemblies.
30013         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30015         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30016         type isn't found.
30018         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30019         MonoGHashTable, since it contains pointers to objects which the GC 
30020         needs to track.
30022         * assembly.c (search_loaded): remove unused variable.
30023         
30024 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30026         * object.c: fixed issue exposed by gcc-generated IL programs
30027         that use RVA data for pointers.
30029 2003-01-25  Martin Baulig  <martin@ximian.com>
30031         * threads.c (start_wrapper): Moved the initialization of
30032         `start_func' above the mono_new_thread_init() call to which we
30033         pass it as argument.
30035 2003-01-24  Martin Baulig  <martin@ximian.com>
30037         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30038         the MonoThread pointer.
30040 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30042         * icall.c: Rename `PowImpl' to Pow.
30044 2003-01-23  Dick Porter  <dick@ximian.com>
30046         * threads.c (start_wrapper): Create a Thread object if needed, so
30047         the Main() thread can do the class initialisation in a subthread
30048         that has been set up to allow managed code execution.
30050         Pass the thread ID instead of the MonoThread pointer to the thread
30051         start and attach callbacks.  This change is required, because the
30052         jit thread start callback must be called _before_ the Thread
30053         object can be created.
30054         
30055         (mono_thread_init): Removed much object creation code that is no
30056         longer needed.  No managed code is called from here now.
30058         * object.c (mono_runtime_exec_managed_code): Create a subthread
30059         for Main, and call back to the runtime to use it.
30060         Set the exit code when Main exits.
30062         * gc.c: Make sure domain finalisation happens in a subthread.
30063         Re-enable threaded GC, fixing bug 31333 (again).
30065         * environment.c: System.Environment internall calls (so far just
30066         ExitCode is here, the others are still in icall.c)
30068         * appdomain.c (mono_runtime_cleanup): All threads running managed
30069         code should have finished before mono_runtime_cleanup() is
30070         reached, so no need to clean up threads.
30072 2003-01-22  Martin Baulig  <martin@ximian.com>
30074         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30075         `gpointer func' arguments.      
30076         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30077         but added `MonoThread *thread' argument.
30078         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30080         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30081         and pass it to the mono_thread_start_cb callback.
30082         (mono_install_thread_callbacks): New public function to install a
30083         set of callbacks which are set by the debugger.
30084         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30086 2003-01-22  Martin Baulig  <martin@ximian.com>
30088         * Makefile.am: Install debug-mono-symfile.h.
30090 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30092         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30094 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30096         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30097         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30098         (mono_array_class_get): correctly set access levels of arrays
30100 2003-01-20      Patrik Torstensson
30101         * image.h (MonoAssemblyName): changed major, minor, build, revision
30102         from signed to unsigned.
30104 2003-01-20  sean kasun <skasun@azstarnet.com>
30106         * reflection.c (load_cattr_value): Now this handles
30107         MONO_TYPE_SZARRAY.  Fixes bug #35629
30109 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30111         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30112         integer value
30114 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30116         * decimal.c: fixed bug #26056.
30118 2003-01-17  Martin Baulig  <martin@ximian.com>
30120         * gc.c: Raise an ExecutionEngineException instead of using g_error().
30122 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30124         * exception.[ch]:
30125         (mono_get_exception_type_initialization): new function.
30127         * object.c: throw a TypeInitializationException when an exception is
30128         thrown invoking the class constructor.
30130 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30132         * reflection.c: fixed attribute reading.
30134 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30136         * icall.c:
30137         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
30138         provided, look for the type in the calling assembly and then in
30139         mscorlib; if the assembly name is provided, only try that one.
30141 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
30143         * object.c: register the vtable before there is a chance it's
30144         queried again recursively.
30146 2003-01-13  Duncan Mak  <duncan@ximian.com>
30148         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
30149         gc-internal.h. 
30150         
30151 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
30153         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
30155 2003-01-11  Martin Baulig  <martin@ximian.com>
30157         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
30158         this to 20 for the release.
30160 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
30162         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
30164         * loader.c (mono_method_get_marshal_info): bug fix
30166         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
30167         structures with explicit layout
30169 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30171         * profiler.c: made the output more readable (and sorted). 
30172         Added caller information for the allocation profiler.
30174 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
30176         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
30178 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30180         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
30181         to get value types.
30182         
30183 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
30185         * object.c, profiler.h, profiler.c, profiler-private.h:
30186         Added object allocation profiler.
30188 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
30190         * reflection.h, reflection.c: handle global methods.
30191         Compress blob entries.
30193 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
30195         * marshal.c: fix compilation.
30197 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
30199         * loader.c (mono_method_get_marshal_info): impl.
30201         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
30203 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30205         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
30206         for reference types.
30208 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
30210         * loader.c: fixed off by one error in loaded parameter names.
30212 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
30214         * marshal.c (mono_marshal_get_icall_wrapper): like
30215         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
30216         instead of a MonoMethod.
30218 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30220         * decimal.c: fixed bug #36537.
30222 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
30224         * marshal.c: throw a missing method exception if a
30225         P/Invoke method is not found.
30227 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30229         * icall.c: allow a null this for constructors.
30231 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
30233         * icall.c: raise the proper exceptions if the arguments to the
30234         internal Invoke are incorrect.
30236 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
30238         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
30240 2003-01-03  Martin Baulig  <martin@ximian.com>
30242         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30244 2002-12-31  Martin Baulig  <martin@ximian.com>
30246         * debug-mono-symfile.c: Completely rewrote the type section.
30247         Instead of using individual malloc()ed fields, we use one big
30248         continuous memory area and offsets into this area.
30249         See the comments in the source code for details.
30251 2002-12-30  Martin Baulig  <martin@ximian.com>
30253         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
30255 2002-12-30  Martin Baulig  <martin@ximian.com>
30257         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
30258         line number table in this data blob instead of using an external
30259         pointer.
30261 2002-12-28  Martin Baulig  <martin@ximian.com>
30263         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30265 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
30267         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
30268         as a boxed return type.
30270 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
30272         * appdomain.c
30273         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
30274         g_build_filename to properly get separators on the filename created.
30276         * object.h: Small change, introduce MonoMarshalByRefObject to
30277         track the layout of that structure in the C# universe as we make
30278         changes there.
30280 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
30282         * object.c: removed assert to allow static fields on interfaces.
30283         * loader.c: a TypeSpec may be used for any type, not just arrays.
30285 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30287         * class.c, class.h: added mono_class_array_element_size ().
30288         Ignore static methods in interfaces.
30290 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30292         * threads.c: fixed the build under cygwin.
30294 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30296         * reflection.c: handle nullref constants. Allocate keys for
30297         reflection handles with the GC.
30299 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30301         * threads.c, threads.h: added mono_thread_get_abort_signal()
30302         to get a suitable signal for thread abort.
30304 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30306         * metadata.c: fix handling of ExportedType table.
30308 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30310         * icall.c: added WriteWindowsDebugString internal call.
30312 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30314         * reflection.h: added fields to match C# implementation.
30316 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30318         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
30320 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
30322         * gc.h, gc-internal.h: Rename header for GC internal calls to
30323         gc-internal.h from gc.h as to not clash with Boehm GC having its
30324         header installed as <gc.h> in outside include paths.
30325         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
30326         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
30328 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30330         * icall.c: assign minor, build and revision in FillName.
30332 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
30334         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
30335         Added support for running code generated by Reflection.Emit.
30337 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30339         * appdomain.c: check for NULL argument in LoadFrom.
30341 2002-12-10  Dick Porter  <dick@ximian.com>
30343         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
30345 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30347         * appdomain.c: fix buglet when building exe file name.  Handle full
30348         assembly name (needed after latest changes to AssemblyName).
30349         * image.c:
30350         (mono_image_close): free some hashtables.
30352 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
30354         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
30355         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
30356         on some systems (redhat 7.3) 
30358 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
30360         * threads.c: delete the critical section of a sync block,
30361         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
30363 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
30365         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
30367 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30369         * appdomain.[ch]: handle the assembly preload event to try loading the
30370         assemblies using the paths we have in the current domain.
30372         * assembly.[ch]: created an assembly preload hook that is called to try
30373         loading the assembly by other means that the ones provided here.
30375         * domain.c: initialize the domain search path.
30377         From now on, assemblies (TODO: except corlib and System) are loaded
30378         according to these rules when using mono_assembly_load ():
30380                 1. It tries to load the assembly from the ApplicationBase
30381                 of the current domain appending .dll and .exe (TODO: have to
30382                 try loading from name/name.dll and name/name.exe).
30384                 2. It tries the search path specified in PrivateBinPath for the
30385                 current domain (if any).
30387                 3. Previous behavior.
30389 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
30391         * icall.c: implemented GetInterfaceMap() related icall.
30392         * domain.c, loader.h: load MethodInfo in mono_defaults.
30394 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30396         * gc.c: disable the finalizer thread for now, untill all the issues
30397         with it are resolved.
30399 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30401         * string-icalls.c: handle embedded nulls in string ctor when the
30402         length is specified.
30404 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30406         * class.c: look for explicit interface implementation in parent
30407         classes, too.
30409 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
30411         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
30413 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30415         * gc.c: protect handles with a critical section.
30417 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30419         * icall.c:
30420         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
30421         parameters. If no assembly specified, try getting the type from all
30422         the assemblies in the current domain, else, load the assembly and get
30423         the type from it.
30425 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30427         * marshal.c: applied patch from Aleksey Demakov that fixes
30428         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
30430 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30432         * icall.c: fixed get_location.
30434 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
30436         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
30437         declarations to make it work with older gcc. 
30439         * loader.c (mono_get_method): set signature->pinvoke for native calls
30441 2002-11-20  Dick Porter  <dick@ximian.com>
30443         * threads.c (mono_thread_init): Set the main thread's handle
30445 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30447         * gc.c: allow compilation without GC support. Changed to match the
30448         mono coding style.
30450 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30452         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
30454 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
30456         * reflection.c: set a public key token on the core assemblies.
30458 2002-11-18  Dick Porter  <dick@ximian.com>
30460         * threads.c: Split out some thread initialisation so that other
30461         files can set the start callback function.
30463         * gc.c: Run finalisers in a separate thread, to avoid stack
30464         overflow.  Fixes bug 31333.
30466         * appdomain.c: Set up GC finalisation thread.
30468         * reflection.c: 
30469         * object.c: 
30470         * domain.c: Use gc.h macros for GC_malloc
30471         
30472 2002-11-15  Dick Porter  <dick@ximian.com>
30474         * threadpool.c: 
30475         * threads.c:
30476         * appdomain.c: Removed mono_runtime_init_with_attach(),
30477         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
30478         merging the extra parameter with the existing function.  Removed
30479         unneeded code in mono_thread_attach().
30481 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
30483         * image.c (mono_image_loaded_by_guid): a method to get loaded
30484         images by guid. 
30485         (load_metadata_ptrs): we store the guid as string.
30487 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
30489         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
30491         * metadata.c (mono_guid_to_string): imported method form Zoltan
30492         Varga (slightly modified)
30494         * assembly.c (mono_assembly_open): load precompiled code
30496         * loader.h (MonoMethod): we store the method token for use in the
30497         aot compiler. 
30499 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30501         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
30502         the hook function called when an assembly is loaded.
30503         
30504         * domain.c: Modified file.
30505         (mono_domain_assembly_load): removed hash table insertion of assemblies.
30507         Fixes bug #33196.
30509 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
30511         * reflection.c: Map PEFileKind to the value expected by the WinNT
30512         image loader. 
30514 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30516         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
30517         Read until the buffer is filled completely.
30519 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30521         * icall.c: implemented MonoType.InternalGetEvent ().
30523 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30525         * appdomain.c: implemented InitAppDomainSetup. Delayed
30526         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
30527         the entry_assembly.
30529         * assembly.c: base_dir is now an absolute path ending with
30530         G_DIR_SEPARATOR.
30532         * icall.c: modified get_location according to the above changes.
30534         * object.c: init AppDomain.SetupInformation for the default domain after
30535         we have the entry assembly.
30537         * domain.c: when unloading a domain, setup = NULL.
30539 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
30541         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
30543 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
30545         * object.h, object.c: introduced mono_object_get_virtual_method ()
30546         to lookup the method invoked on an object when a callvirt is done on
30547         a method.
30548         * icall.c: make MethodInfo::Invoke() always do a virtual call.
30550 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30552         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
30553         current domain when loaded an assembly and failed to load it.
30555         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
30557 2002-10-31  Dick Porter  <dick@ximian.com>
30559         * icall.c: 
30560         * file-io.h: 
30561         * file-io.c: Return the error status in a parameter, as the
30562         GetLastError() value has long since been blown away if we try and
30563         look it up in a subsequent internal call invocation.  Delete the
30564         GetLastError() internal call, because it's useless.
30566 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
30568         * class.[ch]: added cast_class to fix bug 29517
30570 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
30572         * marshal.c: create valid IL code in the filter clause:
30573         the new JIT is less forgiving:-)
30575 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30577         * icall.c: removed get_property internal call.
30579 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
30581         * appdomain.h domain.c: Added an ID to appdomains.
30582         
30583         * threads.c threads.h icall.c: Implement icall
30584         Thread:GetDomainID(), and remove unused icall 
30585         CurrentThreadDomain_internal.
30587 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30589         * icall.c: Don't recurse through the base types in GetConstructor.
30590         Fixes bug #32063. 
30592 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
30594         * mempool.h, mempool.c: added mono_mempool_empty() and
30595         mono_mempool_stats().
30597 2002-10-23  Dick Porter  <dick@ximian.com>
30599         * file-io.c: 
30600         * file-io.h: 
30601         * icall.c: Added MonoIO.GetFileType internal call
30603 2002-10-17  Dick Porter  <dick@ximian.com>
30605         * appdomain.c (mono_runtime_cleanup): Don't signal the async
30606         delegate semaphore before waiting for all threads to finish,
30607         because new threads can also call async delegates.  Fixes bug
30608         32004.
30610         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
30611         of 3 seconds, in case another async job is queued.  (This part is
30612         needed because the bug fix reintroduced the 3s exit lag.)  This
30613         makes the mono_runtime_shutdown flag superfluous.
30615 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
30617         * reflection.c: include ehader size in method section headers.
30618         Really check for suplicated modules entries.
30620 2002-10-17  Martin Baulig  <martin@gnome.org>
30622         * debug-mono-symfile.c: Added back support for locals.
30624 2002-10-14  Martin Baulig  <martin@gnome.org>
30626         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
30627         MONO_TYPE_VOID.
30629 2002-10-14  Martin Baulig  <martin@gnome.org>
30631         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
30632         mono_class_get() instead of looking in the class cache. 
30634 2002-10-13  Martin Baulig  <martin@gnome.org>
30636         * debug-mono-symfile.c: Set version number to 28, include the
30637         signature in method names.
30639 2002-10-13  Martin Baulig  <martin@gnome.org>
30641         * debug-mono-symfile.h: Set version number to 27.
30643 2002-10-11  Martin Baulig  <martin@gnome.org>
30645         * gc.c: Don't register/unregister NULL pointers as disappearing links.
30647 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
30649         * metadata.c, metadata.h: added helper function to allocate signatures.
30651 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30653         * icall.c: added internal call to get the location of machine.config.
30655 2002-10-08  Martin Baulig  <martin@gnome.org>
30657         * debug-mono-symfile.c: Ignore classes with a pending init for the
30658         moment.
30660 2002-10-03  Dick Porter  <dick@ximian.com>
30662         * threads.c: Freebsd pthread_t is a pointer
30664 2002-10-03  Dick Porter  <dick@ximian.com>
30666         * socket-io.c: Implemented GetHostName_internal
30668 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30670         * mono-config.c:
30671         (mono_config_parse_file): don't leak the text.
30673 2002-10-02  Martin Baulig  <martin@gnome.org>
30675         * debug-mono-symfile.c: Added support for methods.
30677 2002-10-01  Martin Baulig  <martin@gnome.org>
30679         * debug-mono-symfile.c: Don't emit methods and line numbers for
30680         the dynamic symbol file, just write the type table.  We can easily
30681         have an external helper program which creates a symbol file for an
30682         IL file.        
30684 2002-10-01  Dick Porter  <dick@ximian.com>
30686         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
30687         Only add the handle to the cleanup array when we're about to
30688         launch the thread.  Bug 31425 deadlocked when the test was run on
30689         mono under w32.
30691 2002-10-01  Martin Baulig  <martin@gnome.org>
30693         * debug-mono-symfile.c: Added support for properties.
30695 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
30697         * reflection.c: unaligned store fix from Mark Crichton
30698         <crichton@gimp.org>.
30700 2002-09-27  Martin Baulig  <martin@gnome.org>
30702         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
30703         New interncall.
30705 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
30707         * assembly.h, assembly.c: use a sane API to hook into the assembly
30708         loading process instead of a useless special-purpouse hack
30709         (ngen needs a hook, too, for example).
30711 2002-09-27  Dick Porter  <dick@ximian.com>
30713         * threads.c (mono_thread_init): Call GetCurrentProcess() so
30714         io-layer can set up some process handle info.  Not needed on w32,
30715         but doesn't hurt either.
30717         * process.c: Pass the program name in the second parameter to
30718         CreateProcess, so the path is searched.  Include the working
30719         directory. Implemented process name, process enumeration, and some
30720         process detail internal calls.
30721         
30722         * icall.c: Added internal calls for process lookup, and some
30723         process details
30725 2002-09-26  Martin Baulig  <martin@gnome.org>
30727         * assembly.c (mono_install_open_assembly_hook): New global
30728         function to install a function to be invoked each time a new
30729         assembly is loaded.
30730         (mono_assembly_open): Run this callback function if set.
30732         * debug-mono-symfile.c: Put back line numbers for the dynamic
30733         symbol file and also record the .il file as source file.  This
30734         allows us to install the temporary symbol file as `file.dbg' just
30735         like a compiler-generated one.
30737 2002-09-26  Nick Zigarovich <nick@chemlab.org>
30739         * Corrected typo in gc.c (BOHEM vs BOEHM).
30741 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30743         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
30744         GetProperties. Also avoid calling g_slist_length in GetProperties and
30745         GetMethods.
30747 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
30749         * reflection.c: avoid unaligned stores (bug spotted by
30750         Mark Crichton  <crichton@gimp.org>).
30752 2002-09-25  Martin Baulig  <martin@gnome.org>
30754         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
30755         instead of guint64 for addresses and added prologue/epilogue info.
30757 2002-09-25  Martin Baulig  <martin@gnome.org>
30759         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
30760         store line number info.  For the dynamic symbol file, we only need
30761         to provide the JIT generated dynamic line number info for the dynamic
30762         symbol file.
30764 2002-09-25  Martin Baulig  <martin@gnome.org>
30766         * debug-mono-symfile.h: Incremented version number.
30768 2002-09-24  Martin Baulig  <martin@gnome.org>
30770         * class.c (mono_debugger_class_init_func): New global function
30771         pointer variable.
30772         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
30773         call it.
30775         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
30776         function.  This is called via the mono_debugger_class_init_func
30777         hook to add all types to the dynamic type table.
30778         (ves_icall_MonoDebugger_GetType): New interncall to get a class
30779         from its metadata token.
30781         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
30782         New interncall for the debugger.
30784 2002-09-24  Nick Drochak <ndrochak@gol.com>
30786         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
30787         before using it in case it is null.
30788         
30789 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
30791         * metadata.c: allow custom modifiers in local var signatures
30792         (bug spotted by Zoltan Varga).
30794 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
30796         * class.c: deal with the <Module> class that may have a NULL vtable.
30797         Eliminate warnings.
30799 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
30801         * image.c, image.h: more strong name helpers.
30802         * monosn.c: more work: convert pem keys to cryptoapi format.
30804 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
30806         * string-icalls.c: speedup IndexOf.
30808 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
30810         * icall.c: updates from Zoltan.2.Varga@nokia.com.
30812 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
30814         * icall.c: cleanup: use mono_object_domain ().
30816 2002-09-23  Martin Baulig  <martin@gnome.org>
30818         * debug-mono-symfile.c: Improved type support.
30820 2002-09-22  Martin Baulig  <martin@gnome.org>
30822         * debug-mono-symfile.c: Added support for reference types and strings.
30824 2002-09-22  Martin Baulig  <martin@gnome.org>
30826         * debug-mono-symfile.c: Started to work on the type table.
30828 2002-09-21  Martin Baulig  <martin@gnome.org>
30830         * debug-mono-symfile.c: Largely reworked the symbol table format.
30831         The symbol table is now incrementally updated each time a new
30832         method is added.  We're now also using our own magic and version
30833         so that you don't need to recompile all your classes if the
30834         dynamic table changes.
30835         (mono_debug_update_mono_symbol_file): Removed.
30836         (mono_debug_symfile_add_method): New function to add a method.
30838 2002-09-21  Martin Baulig  <martin@gnome.org>
30840         * icall.c
30841         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
30842         New interncall.
30844         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
30845         New interncall to get a method from its metadata token.
30847 2002-09-21  Martin Baulig  <martin@gnome.org>
30849         * debug-mono-symfile.c: Create type table.
30851 2002-09-20  Martin Baulig  <martin@gnome.org>
30853         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
30855 2002-09-20  Martin Baulig  <martin@gnome.org>
30857         * debug-mono-symfile.c: Provide information about params and locals.
30859 2002-09-20  Martin Baulig  <martin@gnome.org>
30861         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
30862         New interncall.
30864         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
30865         interncall to get a method from its metadata token.
30867 2002-09-20  Martin Baulig  <martin@gnome.org>
30869         * debug-mono-symfile.c: Added a few checks for method->header
30870         being non-NULL.  This should never happen, but for the moment
30871         let's use a g_warning() rather than a g_assert().
30873 2002-09-19  Mark Crichton  <crichton@gimp.org>
30875         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
30876         even if support for it isn't present.  Added an #ifdef to fix this.
30878         * socket-io.c: Added checks back for Solaris support.
30880 2002-09-19  Martin Baulig  <martin@gnome.org>
30882         * debug-mono-symfile.c (read_string, write_string): Reflect latest
30883         changes in the symbol file format.
30885 2002-09-18  Martin Baulig  <martin@gnome.org>
30887         * debug-mono-symfile.c: Set version number to 21.
30889 2002-09-18  Dick Porter  <dick@ximian.com>
30891         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
30892         on netbsd.  Fixes bug 30051.
30894 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30896         * reflection.c:
30897         (set_version_from_string): little fix.
30899 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
30901         * monosn.c, Makefile.am: added strong name utility.
30902         * reflection.h, reflection.c: implemented delayed signing,
30903         locale, version and hash id assembly attributes.
30905 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
30907         * loader.c, metadata.c: load param attributes in signatures.
30909 2002-09-16  Martin Baulig  <martin@gnome.org>
30911         * debug-mono-symfile.c: Added string table with all method names.
30913 2002-09-14  Martin Baulig  <martin@gnome.org>
30915         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
30916         fast method lookup.
30918 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
30920         * reflection.c: record the public key token of referenced assemblies.
30922 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
30924         * image.c, image.h: added functions to get the strong name and the
30925         public key of an assembly.
30926         * pedump.c: use them.
30928 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
30930         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
30932 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
30934         * marshal.c (mono_marshal_get_managed_wrapper): Added
30935         MONO_TYPE_BOOLEAN 
30937 2002-09-11  Martin Baulig  <martin@gnome.org>
30939         * gc.c: Call GC_unregister_disappearing_link() on all links when
30940         finalizing them, this is necessary to aviod a crash in boehm's
30941         finalize handler.
30943 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
30945         * gc.c: handle GetTarget for finalized objects spotted and fixed by
30946         nick@chemlab.org.
30948 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
30950         * icall.c: implemented MonoType::Module.
30951         * reflection.c, reflection.h: mono_module_get_object () from
30952         Tomi Pakarinen <tomi.pakarinen@welho.com>.
30954 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
30956         * icall.c: ignore overridden methods in GetMethods ().
30957         Fix for FieldInfo::SetValue().
30958         * object.c: handle float/double in runtime invoke.
30960 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
30962         * object.c: allow a constructor to be called again on an object.
30964 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
30966         * class.h, class.c: move field layout code to it's own function and
30967         export it. Get an interface id earlier. Move fields in MonoClass
30968         so they are more cache friendly and align the bitfields.
30969         * loader.c: temporary handle get_param_names() for a runtime method.
30970         * reflection.c, reflection.h: more code to handle runtime creation of
30971         types.
30973 2002-09-09  Martin Baulig  <martin@gnome.org>
30975         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
30976         signature with the pinvoke field being set for the actual call.
30978 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
30980         * icall.c: removed some unused icalls. Start of map of glib charsets
30981         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
30983 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
30985         * debug-helpers.c: break infinite loop (found and fixed by
30986         Holger Arnold <harnold@gmx.de>).
30988 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
30990         * icall.c: target may be null in create_delegate.
30992 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
30994         * marshal.c: handle a boolean return type.
30996 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
30998         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31000 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31002         * gc.c: fix weakreferences.
31004 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31006         * icall.c: added icall to get default codepage.
31008 2002-09-03  Dick Porter  <dick@ximian.com>
31010         * threads.h: 
31011         * threads.c: Use MonoThread instead of MonoObject where
31012         apropriate.
31014         Store running thread objects in a hash table, so that we have all
31015         the info to hand when waiting for them to finish
31016         (means we don't need OpenThread() any more, so mingw builds should
31017         be fully functional again.)
31019         * verify.c:
31020         * object.h: Added thread ID to MonoThread
31022 2002-09-03  Martin Baulig  <martin@gnome.org>
31024         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31026 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31028         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31030 2002-09-03  Martin Baulig  <martin@gnome.org>
31032         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31033         argument to store the end address of the disassembled instruction.
31035         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31036         here from debug-symfile.h.
31037         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31038         JIT into this struct.
31039         (MonoSymbolFile): Added `char *image_file' field.
31040         (MonoDebugGetMethodFunc): Removed.
31041         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31042         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31043         (mono_debug_find_method): New method.
31045         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31046         create a full symbol file.
31047         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31048         and static symbol files.
31049         (mono_debug_find_method): The symbol file keeps an internal method hash,
31050         call this to get a MonoDebugMethodInfo from a MonoMethod.
31052         * debug-symfile.[ch]: Removed.
31054 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31056         * image.c (do_mono_image_open): Remove linker version check.
31058 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31060         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31061         wrappers for instance methods.
31062         
31063 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31065         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31067 2002-08-28  Dick Porter  <dick@ximian.com>
31069         * Makefile.am: Export HOST_CC for w32 builds
31071 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31073         * file-io.c process.c: MonoString are null terminated, no
31074         need for mono_string_to_utf16() anymore.
31076 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31078         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31080 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31082         * icall.c, reflection.h: speedup System.MonoType.
31084 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31086         * reflection.c: allow null as the value of a string argument in
31087         custom attributes constructors.
31089 2002-08-27  Martin Baulig  <martin@gnome.org>
31091         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31092         `trampoline_address' field.
31094 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31096         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31097         check (fixes bug #29486) 
31099 2002-08-27  Martin Baulig  <martin@gnome.org>
31101         * debug-mono-symfile.c: Changed the file format in a way that allows us
31102         open it read-only and to use a specially malloced area for all the
31103         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31104         debugging IL code and there is no MCS generated symbol file for it.
31106 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31108         * object.c: added a define for a good string and array
31109         creation speedup (not enabled by default because we need to deal with
31110         the synch stuff).
31112 2002-08-26  Martin Baulig  <martin@gnome.org>
31114         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
31115         function to create a dynamic symbol file.  This is used by the
31116         debugger to create a symbol file for IL code on-the-fly.
31118 2002-08-26  Martin Baulig  <martin@gnome.org>
31120         * loader.c (mono_lookup_pinvoke_call): Include the error message
31121         from g_module_error() in the error message.
31123 2002-08-24  Martin Baulig  <martin@gnome.org>
31125         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
31126         function to update the symbol file.  The symbol file is mmap()ed
31127         writable, but private.  This allows us to install the symbol file
31128         together with the assembly.
31130 2002-08-24  Martin Baulig  <martin@gnome.org>
31132         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
31133         but they can read the new symbol file format which mcs is now creating.
31135         * debug-symfile.c (mono_debug_find_source_location): Moved to
31136         debug-mono-symfile.c; this is now operating on the new symbol file.
31138 2002-08-23  Martin Baulig  <martin@gnome.org>
31140         * debug-helpers.c (mono_method_desc_from_method): New function to get
31141         a MonoMethodDesc from a MonoMethod.
31143 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31145         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
31146         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
31148 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31150         * string-icalls.[ch]: make helper methods static.
31152 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31154         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
31155         types to it and to SetValueInternal.
31157         * object.c: Moved handle_enum label to its proper place. This was the
31158         f... bug! ;-)
31160         This time i compiled mcs and gtk-sharp and they both work.
31162 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31164         * icall.c: reverted partially my previous patch until 
31165         object.c:set_value handles enums correcly.
31167 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31169         * icall.c:
31170         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
31171         (ves_icall_System_Environment_get_MachineName): removed warning when
31172         compiling under cygwin.
31174 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31176         * object.c: fixed field_get_value() for reference types.
31178 2002-08-22  Dick Porter  <dick@ximian.com>
31180         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
31181         Don't free a buffer while it's still needed.  Patch from Jonathan
31182         Liger <Jonathan.liger@wanadoo.fr>
31184 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
31186         * icall.c (ves_icall_System_Environment_get_Platform): Add new
31187         internal call.
31189 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
31191         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
31192         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
31194         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
31195         we call unmanaged code which throws exceptions.
31197 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31199         * appdomain.h: added per-domain entry_assembly.
31200         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
31201         arguments.
31202         * icall.c: Assembly::GetEntryAssembly icall.
31203         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
31204         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
31206 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31208         * appdomain.h, gc.c: added mono_domain_finalize ().
31210 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31212         * object.c:
31213         (mono_print_unhandled_exception): changed g_warning by g_printerr
31214         because g_log has a 1024 characters limit (yeah, i got a big stack
31215         trace). Don't print exception name, that should be in ToString 
31216         returned string.
31218 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31220         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
31221         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
31223 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31225         * object.c:
31226         (mono_print_unhandled_exception): after previous commit, i realized
31227         that MS calls ToString on the exception. I changed this function to
31228         do that. This way we get stack_trace for free.
31230 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31232         * object.c:
31233         (mono_print_unhandled_exception): invoke Message property instead of
31234         getting 'message' field from Exception. Don't allocate memory for
31235         'trace' and 'message' if not needed.
31237 2002-08-18  Dick Porter  <dick@ximian.com>
31239         * unicode.c: Fix asserts to match Encoder.cs checks
31241 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31243         * marshal.c: fix unaligned store issue and a few wrong
31244         opcode argument types.
31246 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31248         * icall.c: added GetUninitializedObjectInternal internal call.
31250 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
31252         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
31253         to the right domain.
31255 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
31257         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
31259         * class.c (class_compute_field_layout): set blittable to false for Strings
31261         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
31263 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31265         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
31266         first chunk of code to create types at runtime. Code to
31267         handle ReflectedType/DeclaringType. Make reflection handles
31268         domain specific.
31270 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
31272         * class.c: set correct name in arrays.
31274 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
31276         * appdomain.c (mono_domain_transfer_object): make it work with
31277         valuetypes. bug fixes.
31279 2002-08-12  Dick Porter  <dick@ximian.com>
31281         * object.h: Rename some parameters to avoid c++ keywords (Patch
31282         from Joseph Wenninger <kde@jowenn.at>)
31284 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
31286         * icall.c: added icall to implement Assembly.GetFile*.
31288 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31290         * reflection.h, reflection.c: code to embed managed resources.
31292 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31294         * class.c: move all the type size stuff into
31295         class_compute_field_layout().
31297 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31299         * class.c: ensure enums have always the correct instance size.
31300         * unicode.c: remove wrong assert.
31302 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
31304         * assembly.c: fix mem corruption issue.
31305         * image.h, image.c: added mono_image_get_resource () to access
31306         managed resources.
31307         * icall.c: implemented Assembly.EntryPoint property and some
31308         Managed Resources related internalcalls.
31311 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31313         * image.c, image.h: impemented mono_image_get_entry_point ().
31314         * appdomain.c: use mono_image_get_entry_point.
31316 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31318         * reflection.c: support the object type argument when loading
31319         custom attributes.
31321 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
31323         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
31324         String as return type.
31326 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
31328         * reflection.c: fix encoding of named args for custom attrs to match
31329         the ms implementation. Read them back when instantiating custom
31330         attributes.
31332 2002-08-02  Radek Doulik  <rodo@ximian.com>
31334         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
31335         by Dietmar as quick fix
31336         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
31337         16 as stack size, used on more places as quick fix before Dietmar
31338         will fix it properly
31340 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31342         * object.h, object.c: added accessors for fields and properties.
31344 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31346         * class.c, class.h: made mono_class_get_field_from_name ()
31347         loop on parent types.
31348         Added mono_class_get_property_from_name ().
31350 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31352         * class.c, class.h: move the code to setup the type vtable in its own
31353         function so that it can be reused also for types created at runtime.
31354         Eliminate the "class" identifier from the header file.
31355         * reflection.c: setup the vtable for enums so that we can create
31356         objects for use in SetConstant ().
31358 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
31360         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
31361         instead of the delegate itself as this pointer (bug #28383)
31363 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
31365         * marshal.c (mono_marshal_get_managed_wrapper): added return type
31366         conversions.
31368 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31370         * loader.c: don't set the pinvoke bit on icalls.
31372 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
31374         * debug-helpers.c (mono_method_full_name): only print a number to
31375         indicate wrapper type (so that the output is more readable in traces).
31377 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
31379         * class.c (mono_class_init): include method override patch from Paolo
31381 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
31383         * icall.c: fixed GetTypeCode().
31385 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
31387         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
31388         use real delegate invoke function to make it work with multicast
31389         delegates (fix bug# 28291).
31391 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
31393         * object.c: load constant strings.
31395 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31397         * reflection.c: no magic numbers.
31398         * tabledefs.h: security action enum.
31400 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31402         * assembly.c: fix possible memory corruption.
31404 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31406         * reflection.h, reflection.c: added support for linking resources.
31407         * verify.c: check we have an updated corlib.
31409 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
31411         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
31412         string arrays.
31413         (mono_marshal_string_array): null terminate unmanaged string arrays.
31414         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
31416 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31418         * icall.c: Type.GetType () can now return also types from the
31419         calling assembly.
31421 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31423         * loader.h, loader.c: stack walking support.
31424         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
31425         GetCallingAssembly.
31427 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
31429         * marshal.c: added optimisations for blittable types 
31431         * class.c (mono_array_class_get): do not set blittable attribute on arrays
31432         (mono_class_setup_mono_type): set blittable attribute for single
31433         and double.
31435         * marshal.c (mono_string_utf8_to_builder): impl.
31436         (mono_string_builder_to_utf8): impl.
31437         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
31439 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
31441         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
31442         (mono_marshal_get_managed_wrapper): impl. byref types
31444 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31446         * icall.c:
31447         (search_method): don't display debug message. 
31449 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31451         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
31453 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31455         * appdomain.c: set the missing filename when throwing exception.
31457 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31459         * metadata.c (mono_type_size): code cleanup
31460         (mono_type_stack_size): removed some test code
31462 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
31464         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
31465         mono_get_exception_file_not_found now.
31467         * exception.c (mono_exception_from_name_two_strings): New version
31468         that will call a constructor with two string arguments. 
31469         (mono_get_exception_file_not_found): New helper routine, used to
31470         report file-not-found errors.
31472 2002-07-20  Dick Porter  <dick@ximian.com>
31474         * process.h:
31475         * process.c: Pass file handles to CreateProcess
31476         
31477         * icall.c:
31478         * file-io.h:
31479         * file-io.c: Implemented CreatePipe
31481 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31483         * metadata.c (mono_get_param_info): set alignment for value types
31485 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31487         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
31488         Constify mono_domain_assembly_open().
31489         * loader.c: handle null namespace in icalls.
31491 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31493         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
31494         (emit_str_to_ptr_conv): marshal object as structs
31496         * metadata.c (mono_type_to_unmanaged): marshal object as structs
31498         * marshal.c (mono_marshal_get_runtime_invoke): support value types
31500 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
31502         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
31503         (mono_marshal_get_native_wrapper): we an now return value types
31505 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31507         * verify.c: more checks implemented.
31509 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
31511         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
31512         (fix bug #27695)
31513         (mono_marshal_get_native_wrapper): allow byref arguments
31514         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
31515         impl. PtrToStringXXX methods
31516         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
31517         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
31518         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
31519         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
31520         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
31522 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31524         * reflection.c: fix buglet in parsing an assembly name.
31526 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31528         * marshal.c (emit_ptr_to_str_conv): first impl.
31530 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
31532         * object.c, class.h: cache the vtable in the class as suggested by
31533         vargaz@freemail.hu (Zoltan Varga).
31535 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31537         * class.h, loader.c: added mono_field_from_token().
31538         * verify.c: first cut of type checking code.
31540 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31542         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
31544 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
31546         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
31547         (fix bug #27782)
31548         (mono_marshal_get_remoting_invoke): impl.
31549         (mono_delegate_begin_invoke): impl.
31550         (mono_mb_emit_save_args): impl.
31551         (mono_delegate_end_invoke): impl.
31552         (mono_marshal_get_delegate_begin_invoke):
31553         (mono_marshal_get_delegate_end_invoke):
31554         (mono_marshal_get_delegate_invoke): generate a special name for
31555         those methods (including the signature) and associate them whith
31556         the delegate class. 
31558 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
31560         * reflection.[ch]: 
31561         (mono_reflection_type_from_name): now it has a MonoImage parameter
31562         which is used as the default image to search the type in. If the image
31563         is NULL or getting the type from it fails, it defaults to corlib.
31565         * icall.c: changed 1 call to mono_reflection_type_from_name to match
31566         new parameter.
31568 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31570         * reflection.c: update the parameter table index.
31572 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31574         * domain.c: don't include the mark byte in the string hash.
31576 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31578         * icall.cs: icall for Type.GetTypeCode ().
31579         * verify: a couple of fixes and disabled local initialization checks.
31581 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
31583         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
31585         * debug-helpers.c (mono_method_full_name): print the type of the
31586         runtime wrapper
31588         * metadata.c (mono_signature_hash): a hash function for signatures
31589         (mono_signature_hash): better hash algorithm
31591         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
31593         * debug-helpers.c (mono_method_full_name): this can now generate
31594         method names with signatures
31596         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
31597         method dont have this pointers.
31599 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
31601         * reflection.c: fixup typebuilder tokens.
31602         * image.c: fix buglet.
31603         * marshal.h: remove whitespace.
31604         * metadata.h, metadata.c: reinstate code that was removed.
31605         * verify.c: handle catch directives and fix another couple of bugs.
31607 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
31609         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
31610         (mono_marshal_get_native_wrapper): make it comp. with the old code
31611         (mono_marshal_get_native_wrapper): support boolean
31612         (mono_marshal_get_managed_wrapper): support more types
31614 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
31616         * class.c (class_compute_field_layout): compute class->blittable attribute.
31618 2002-07-09  Dick Porter  <dick@ximian.com>
31620         * threads.c: Make the thread cleaning up cope with threads that
31621         call ExitThread()
31623 2002-07-08  Radek Doulik  <rodo@ximian.com>
31625         * reflection.c (method_encode_code): use non-translated values to
31626         compute finally_start, this fixes exception handling on ppc, yay!
31628         * decimal.h (struct signscale): fix endianess
31630 2002-07-07  Radek Doulik  <rodo@ximian.com>
31632         * reflection.c: swap box_val and not val
31634 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
31636         * reflection.c, reflection.h: handle full assembly info in type name.
31637         Handle Type arguments when loading custom attributes.
31638         * icall.c: updated to use new mono_reflection_type_from_name () method.
31640 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31642         * loader.c:
31643         (method_from_memberref): also print assembly name when method not found.
31645 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31647         * icall.c:
31648         (ves_icall_TypeGetProperties): fixed bug #27473. 
31650 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31652         * reflection.c: display image name and token when cannot find the
31653         .ctor for an attribute.
31655 2002-07-05  Martin Baulig  <martin@gnome.org>
31657         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31659 2002-07-04  Dick Porter  <dick@ximian.com>
31661         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
31662         compile on mingw.  This will cause mingw builds to not wait for
31663         subthreads to terminate after the main thread does.  I've lodged a
31664         bug with the mingw developers for them to wrap OpenThread().
31666 2002-07-03  Dick Porter  <dick@ximian.com>
31668         * threads.c: Store thread IDs instead of handles, because
31669         GetCurrentThread() returns a pseudohandle and therefore stores
31670         useless values.  mono_thread_cleanup() continues checking the
31671         array of threads until it is empty, to cope with subthreads
31672         spawning new threads after the main thread has finished.
31674         * profiler.h:
31675         * profiler.c:
31676         * profiler-private.h: Pass the thread ID to thread profiler
31677         functions, instead of a handle
31679 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31681         * verify.c: fixes to make it more usable.
31682         * pedump.c: added --verify code to verify IL code in an assembly.
31684 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31686         * reflection.c: turn errors into warnings to allow compiling corlib.
31688 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31690         * reflection.c: add special cases to compile corlib.
31692 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31694         * reflection.c: handle properties with only a set method.
31696 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31698         * opcodes.h: add enum with opcodes in opval order.
31700 2002-07-01  Dick Porter  <dick@ximian.com>
31701         
31702         * object.h:
31703         * object.c (mono_runtime_run_main): Removed unneeded argument
31705 2002-06-28  Martin Baulig  <martin@gnome.org>
31707         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31709 2002-06-27  Dick Porter  <dick@ximian.com>
31711         * threads.c: Store the handle in both the parent thread and in the
31712         subthread, to minimise the time between starting a new thread and
31713         storing its ID.
31715 2002-06-26  Dick Porter  <dick@ximian.com>
31717         * appdomain.c (mono_runtime_cleanup): Close the socket library
31718         after all the threads have finished, not before
31720 2002-06-26  Martin Baulig  <martin@gnome.org>
31722         * debug-symfile.c (mono_debug_find_source_location): Added
31723         `guint32 *line_number' argument.  If it's not NULL, store the line number
31724         there and return the file name without the line number.
31726 2002-06-25  Dick Porter  <dick@ximian.com>
31728         * icall.c:
31729         * process.h:
31730         * process.c: Process forking and other support functions
31732 2002-06-25  Dick Porter  <dick@ximian.com>
31734         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
31735         things dont happen when the image is closed.
31736         (mono_image_lookup_resource): Walk the resource section looking
31737         for a particular entry
31739         * cil-coff.h: PE resource section decoding
31741 2002-06-25  Dick Porter  <dick@ximian.com>
31742         
31743         * assembly.h:
31744         * assembly.c: 
31745         (mono_assembly_foreach): Accessor functions to walk the list of
31746         loaded assemblies
31747         (mono_assembly_set_main):
31748         (mono_assembly_get_main): Process methods need to know which
31749         assembly is the "main" one
31751         * object.c (mono_runtime_run_main): Record the main assembly
31753         * debug-helpers.c: Fix typo
31755 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
31757         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
31758         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
31760 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
31762         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
31764 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
31766         * image.c (do_mono_image_open): Initialize reference count,
31767         otherwise we leak the MonoImage.
31769 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31771         * reflection.c: small tweak to handle self-hosting.
31773 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31775         * reflection.c: fix type name parse code.
31777 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31779         * reflection.c: break out of the loop.
31780         * image.c: special case corlib.
31782 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31784         * reflection.c: add all the custom attrs at the end to ensure the
31785         ctors have been properly initialized when the attributes are defined
31786         in the current assembly.
31788 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31790         * reflection.c: handle correctly multiple-nested types.
31792 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31794         * row-indexes.h: fix typos.
31795         * reflection.c: adjust for typos and fix method_def_or_ref
31796         encoding in MethodImpl table.
31798 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
31800         * reflection.c: fix entry point patching (thanks Serge!).
31802 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
31804         * verify.c: add check for System.Exception
31806 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31808         * image.c, class.c: minifix for code just c&p'ed.
31809         * reflection.c: warning fix.
31810         * object.h, loader.h, domain.c: load also StringBuilder.
31812 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31814         * marshal.h, marshal.c: some support code to handle complex marshaling.
31816 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31818         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
31819         Better signatures with vtable error dump.
31821 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
31823         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
31825 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
31827         * icall.c (ves_icall_Type_GetField): impl.
31829 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31831         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
31832         to retrieve a marshal description blob for a field or param.
31834 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31836         * reflection.h, reflection.c: change order of nested type emission
31837         to avoid table corruption. The NestedTypes table is sorted.
31838         * icall.c: change order of GetConstructor results to workaround mcs bug.
31840 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
31842         * reflection.h, reflection.c: handle field and param marshal
31843         information.
31845 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31847         * icall.c, marshal.c marshal.h: more Marshal class implementation.
31849 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31851         * reflection.c: fix call convention.
31853 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31855         * reflection.h, reflection.c: mono_image_get_memberref_token()
31856         takes a type instead of a class, now. Added
31857         mono_image_get_array_token() to create tokens for the special
31858         multi-dim array methods.
31860 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31862         * assembly.c: handle modules (no assembly table). Split
31863         loading references in its own function.
31864         * class.c: handle moduleref resolution scope.
31865         * image.c, image.h: cache module name in image.
31867 2002-06-07  Martin Baulig  <martin@gnome.org>
31869         * reflection.c (mono_image_get_type_info): Only add a class layout entry
31870         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
31872 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
31874         * icall.c: more signature fixes that used uint instead of int.
31876 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31878         * reflection.c: fixed signature of field refs.
31880 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31882         * class.c, reflection.c: handle typerefs of nested types
31883         (both on read and when writing files).
31885 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31887         * icall.c: fix method signatures that tried to workaround the previous
31888         typo, d'oh!
31890 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
31892         * debug-helpers.c: fix typo.
31894 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
31896         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
31897         rewrote the PE/COFF writing code (our programs are understood by the
31898         ms runtime, now).
31900 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31902         * gc.c, gc.h, icall.c: weakreference support.
31904 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31906         * Makefile.am, mono-config.c: use $(sysconfdir).
31908 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31910         * icall.c: changed default precision of Double.ToString() to 15.
31911         Fixed memory leak. Unified with Single.ToString.
31913 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31915         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
31917 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31919         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
31920         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
31921         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
31922         and myself.
31924 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31926         * debug-symfile.c, sysmath.c: yet more compilation fixes.
31928 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31930         * reflection.c, socket-io.c: more compilation fixes.
31932 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
31934         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
31935         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
31936         unicode.c: warning and compiler compatibility fixes.
31938 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31940         * class.h, metadata.c: fixed warnings/compilation errors.
31942 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
31944         * Makefile.am, mono-config.c, mono-config.h: configuration file
31945         support routines.
31946         * loader.c, loader.h: make Dll mapping configurable at runtime in the
31947         config file. Export methods to insert and lookup mappings.
31949 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31951         * reflection.c: handle types and boxed objects in custom attr
31952         constructors.
31954 2002-05-30  Martin Baulig  <martin@gnome.org>
31956         * debug-symfile.c
31957         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
31959 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
31961         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
31962         to lookup the implmap row for a P/Invoke method.
31963         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
31964         P/Invoke method from the runtime on an as needed basis.
31966 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
31968         * metadata.c (mono_metadata_parse_signature): impl.
31970 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31972         * class.c: handle .pack directive.
31974 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31976         * object.c: initialize static fields with RVA data.
31978 2002-05-25  Martin Baulig  <martin@gnome.org>
31980         * debug-symfile.c
31981         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
31983 2002-05-24  Martin Baulig  <martin@gnome.org>
31985         * debug-symfile.c
31986         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
31987         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
31988         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
31990 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31992         * object.c: special case string ctros in invoke.
31993         * gc.c: silly whitespace changes.
31995 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
31997         * threadpool.[ch]: impl. a threadpool that can
31998         be used by mint and mono.
32000 2002-05-22  Martin Baulig  <martin@gnome.org>
32002         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32003         The first argument is now a `MonoReflectionModuleBuilder *', the return
32004         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32005         `methods' field to get the method builder.  The `token' argument is the
32006         unfixed token.
32008         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32009         invalid characters instead of g_assert_not_reached()ing.  This seems
32010         to be the behaviour of mscorlib.
32012 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32014         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32015         Hestilow to fix bug #25104
32017 2002-05-21  Martin Baulig  <martin@gnome.org>
32019         * debug-symfile.c (mono_debug_find_source_location): New function.
32020         Looks up an IL offset in the line number table and returns the source
32021         location as a string.
32023 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32025         * icall.c:
32026         (mono_double_ToStringImpl): changed %f by %g until we have something
32027         better.
32029 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32031         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32032         parameters first in C#.
32034 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32036         * icall.c, reflection.h: added icall to get info about an event.
32038 2002-05-20  Radek Doulik  <rodo@ximian.com>
32040         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32041         endian
32042         (mono_value_box): don't use memcpy for small sizes on
32043         architectures with unaligned access
32045 2002-05-20  Martin Baulig  <martin@gnome.org>
32047         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32048         if `tb->parent == NULL'.
32049         (mono_reflection_create_internal_class): New function.  This is
32050         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32051         for enum types.
32053         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32054         New interncall.
32056 2002-05-19  Martin Baulig  <martin@gnome.org>
32058         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32059         argument to get the length, don't default to the array length.
32061 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32063         * assembly.c (mono_assembly_setrootdir): New function used to
32064         override the MONO_ASSEMBLIES directory.
32066 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32068         * icall.c: ValueType_GetHashCode() initialize local var.
32070 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32072         * reflection.c: sort custom attributes table.
32074 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32076         * reflection.c: support named args in custom attributes (write support).
32078 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32080         * reflection.c: fix finally position calculation.
32082 2002-05-15  Radek Doulik  <rodo@ximian.com>
32084         * reflection.c: fixed endianess at many places
32086         * icall.c (ves_icall_InitializeArray): comment out debug msg
32088 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32090         * object.c (mono_unhandled_exception): new function to handle
32091         unhandled exceptions.
32092         (mono_unhandled_exception): call the UnhandledException event.
32093         (mono_runtime_delegate_invoke): impl.
32095 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32097         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32098         returns the RVA, not the direct pointer to the data. Handle the case
32099         when the class size is fixed.
32101 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32103         * reflection.c: fix some endianess issues.
32105 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32107         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32109         * threads.c (mono_thread_init): added a callback which is invoked
32110         at thread start.
32112 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32113         
32114         * icall.c: make GetHashCode return non-negative values.
32116 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32118         * object.c, icall.c, gc.c: revert to address-based hashcode.
32120 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
32122         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
32124 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32126         * icall.c, class.c: special case <Module>.
32128 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
32130         * icall.c: fix bug in GetNow().
32132 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
32134         * object.c (mono_runtime_class_init): make sure that we call all
32135         static class constructors.
32137 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32139         * reflection.c: sort methodsemantics table.
32141 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32143         * reflection.h, reflection.c: honour init locals setting.
32145 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
32147         * icall.c: copied Double ToStringImpl for Single ToStringImpl
32149 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32151         * reflection.c: support ContructorBuilders in attribute blob creation.
32153 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32155         * reflection.c: some changes to build a binary that can be run
32156         directly in windows.
32158 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32160         * loader.c: print a big message when an icall can't be found.
32162 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32164         * string-icalls.c: fix bug 24248.
32166 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32168         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
32169         icall.c, reflection.h: separate assembly loading by pathname and by
32170         assembly name. Use the MONO_PATH env var to search for assemblies.
32172 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32174         * assembly.c, image.h: add some support for assemblies
32175         with multiple modules.
32176         * class.c, class.h: export mono_class_from_typeref().
32177         * loader.c: remove duplicated code and use mono_class_from_typeref(),
32178         instead.
32180 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32182         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
32183         documentation says (the ECMA one is correct).
32185 2002-05-02  Dick Porter  <dick@ximian.com>
32187         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
32188         Don't name the synchronisation mutex.
32190 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
32192         * rand.c
32193         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
32194         Make the prototypes match.
32195         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
32196         Same.
32198         * icall.c
32199         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
32200         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
32201         all systems have tm.tm_zone, so use strftime() with %Z to print
32202         the timezone abreviation into a temp string.
32204         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
32205         rather than mono_array_addr() on a MonoString on Big Endian
32206         machines.
32208 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
32210         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
32211         fix bug 24041
32213 2002-04-30  Dick Porter  <dick@ximian.com>
32215         * socket-io.c: Cope with SOCKET being an integer rather than a
32216         pointer now.
32218         * threads.c: Added Thread_free_internal, to deal with thread
32219         handle cleanup.  Moved calls to handle_store() and handle_remove()
32220         to start_wrapper(), so each can only be called once.  Allocate
32221         synchronisation blocks with GC_malloc(), and use GC finalisation
32222         to close the handles.
32224         * icall.c: added System.Threading.Thread::Thread_free_internal
32226 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32228         * icall.c: support Environment.Exit, CommandLineArgs().
32230 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32232         * object.c, object.h: added mono_runtime_run_main () and
32233         mono_runtime_get_main_args () for use in System.Environment.
32235 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32237         * gc.c: fix thinko, enable actual finalization since the jit is now
32238         fixed.
32240 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32242         * gc.c, object.c: take into account that an object may be offset wrt the address
32243         returned by GC_malloc().
32245 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32247         * image.c: handle files without entries in the assembly table (modules).
32249 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
32251         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
32252         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
32253         allowed to be null when it's System.Object class setup.
32255 2002-04-27  Martin Baulig  <martin@gnome.org>
32257         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
32258         if `tb->parent == NULL' rather than crashing.
32260 2002-04-28  Nick Drochak  <ndrochak@gol.com>
32262         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
32263         calling acos() where asin() should have been called.
32265 2002-04-26  Martin Baulig  <martin@gnome.org>
32267         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
32268         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
32269         there's a subdirectory called `System', but we don't want to read that
32270         subdirectory as an assembly.
32272 2002-04-25  Martin Baulig  <martin@gnome.org>
32274         * debug-symfile.c: Reflect latest MonoString changes.
32276 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32278         * rand.c, rand.h: instance method icalls need to have an explicit
32279         this pointer as first argument in the C implementation.
32281 2002-04-25  Nick Drochak <ndrochak@gol.com>
32283         * icall.c: Fix typo in map for GetNonZeroBytes
32285 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32287         * string-icalls.c : String does now passes unit tests without any 
32288         errors, the following changes has been made:
32289         
32290         Implemented replace methods.
32291         Renaming of methods to (try) follow the standard.
32292         Fixed compare ordinal
32293         Made all memory allocated directly to function instead of via icall function.
32294         Small performance fix in is_in_array function
32295                         
32296  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
32298         c (mono_string_Internal_ctor_charp_int_int):
32299         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
32300         sindex < 0, throw ArgumentOutOfRangeException instead of
32301         ArgumentNullException.
32303         Added new check for length == 0, however
32304         I need to make it return String.Empty from the C code.
32305         
32306         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
32307         that calculate the length for us here.
32308         
32309         (mono_string_Internal_ctor_sbytep_int_int): Replaced
32310         mono_string_new_utf16 with mono_string_new, since value is utf8.
32312 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32314         * object.c: register the object for finalization if needed.
32315         Allocate one more char in the string for the terminating 0 char.
32317 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32319         * class.c, class.h, image.c: check if a type implemenst a destructor.
32320         Use the proper key for array class lookups.
32321         * icall.c: register the icalls in the System.GC class.
32322         * gc.c, gc.h: GC-related functions and icalls.
32324 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32326         * icall.c:
32327         * socket-io.c:
32328         * unicode.c: free some strings gotten from mono_string_to_utf8 and
32329         changed a couple of free () by g_free ().
32331         * decimal.c: one-liner in the comments for decimal2string ().
32333 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32335         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
32337 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32339         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
32340         * object.c (mono_runtime_invoke_array) : handle null in params
32342 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32344         * string-icalls.c: fixed bug in split (one off bug)
32346 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32348         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
32349         * icalls.c: added String::Equals as internal method
32351 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32353         * threads.c: fixed bug in the double interlocked functions
32355 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
32357         * threads.c: implemented all of the new interlocked icalls.
32358         * string-icalls.c: fix a bug in insert.
32359         * icalls.c: added the icalls for interlocked, removed old string functions.
32360         
32361 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32363         * loader.c: fix off-by-one error when reading argument names.
32365 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32367         * profiler.c: win32 counter implementation (untested).
32368         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
32369         (the latter needs testing and more complete impl. from win32 folks).
32371 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
32373         * object.c: mono_array_new_full workaround mono_array_class_get
32374         problem.
32376 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32378         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
32379         * object.h (mono_string_chars): Changed casting type.
32381 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32383         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
32384                            method signatures to use gunichar2 instead of gint16.
32386 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
32388         * object.h, object.c: domain-specific versions of mono_object_new and
32389         mono_array_new.
32391 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
32393         * object.c: changed String layout
32395         * string-icalls.c (mono_string_Internal_ctor_chara): added
32396         internal string constructors.
32398 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
32400         * threads.c: pass 'this' to the thread start routine.
32402 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32404         * string-icalls.c: fix IndexOf and LastIndexOf. Now
32405         InternalCompareStr don't call twice mono_string_cmp_char for the last
32406         character. Improved performance in mono_string_cmp_char.
32408 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32410         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
32411         code into its own library: libmonoruntime.
32413 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
32415         * object.h, object.c: changed array format so that szarrays do not
32416         require a bounds structure.
32417         * icall.c, appdomain.c: support for new szarray format.
32419 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32421         * metadata.c: compare also the retuns type when comparing signatures:
32422         we didn't do this as an optimization since really overloaded methods
32423         must differ also in the arguments, but this doesn't work with
32424         low-level IL code (or when using explicit conversion operators: see
32425         bug#23498 for an example).
32427 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32429         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
32431 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32433         * icall.c: make MonoType::GetElementType its own icall.
32435 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32437         * icall.c: remove MonoMethod_get_Name().
32438         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
32439         object.
32441 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32443         * string-icalls.c: optimized a few methods.
32445 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32447         * icall.c: added all new string internal calls
32448         * string-icalls.c: added, new string internal call implementation.
32449         * object.c: added mono_string_new_size for allocating a string a size
32451 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
32453         * object.c (mono_object_isinst): use the same code as in the
32454         optimized x86 version.
32456 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32458         * profiler.c: TSC-based timer code (faster and more accurate).
32459         Not hooked up in configure, yet (set USE_X86TSC to 1).
32461 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
32463         * profiler.c, profiler.h: track time spent compiling methods.
32464         * threads.c: track thread creation/destruction.
32466 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
32468         * profiler.c, profiler.h, profiler-private.h: profiling interface
32469         and sample implementation. Moved here so that it can be used also by
32470         the jit.
32472 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
32474         * reflection.c, reflection.h: keep types and other handles separate in
32475         the hash tables for referred tokens. Add guid for modules.
32477 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32479         * assembly.c: fix bugs found with valgrind.
32480         * metadata.h, metadata.c: added mono_metadata_guid_heap().
32482 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
32484         * threads: added icall support for getting current domain for
32485                    the thread.
32487 2002-04-13  Martin Baulig  <martin@gnome.org>
32489         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
32490         (MonoDebugVarInfo): Added `index' field for register based addresses.
32491         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
32492         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
32493         `MonoDebugVarInfo *params' and `guint32 this_offset' with
32494         `MonoDebugVarInfo *this_var'.
32496         * debug-symfile.c (relocate_variable): New static function to write
32497         a location description for a local variable or method parameter.
32499 2002-04-12  Martin Baulig  <martin@gnome.org>
32501         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
32502         stack offset and begin/end scope address of a local variable.
32503         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
32504         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
32505         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
32507         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
32508         Added new relocation types for start/end scope of a local variable.
32510 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32512         * object.h: add mono_object_domain() macro.
32513         * reflection.c: handle typespecs.
32514         * icall.c: MonoMethod::get_Name() implementation.
32516 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32518         * icall.c: String::GetHashCode() icall implementation.
32520 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32522         * icall.c: String::IndexOfAny icall.
32523         * object.c, object.h: make array->max_length more useful.
32524         Intrduced mono_object_class() and mono_string_length() macros.
32526 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32528         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
32529         instead of g_unichar_isdigit.
32531 2002-04-11  Nick Drochak  <ndrochak@gol.com>
32533         * icall.c: Implement a simple Double.ToString().
32535 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32537         * appdomain.h: only io-layer.h is supposed to be included.
32538         * icall.c: explicitly import environ. Fix warning.
32540 2002-04-10  Nick Drochak  <ndrochak@gol.com>
32542         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
32543                 return true even if it's not Daylight Savings time.
32544                 Only return false for the case where the function isn't
32545                 implemented for a plaform (read Windows).
32547 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32549         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
32550         data with a mutex.
32552 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
32554         * mempool.c (mono_mempool_alloc): only use g_malloc when
32555         absolutely necessary.
32557 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32559         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
32561         * class.c (mono_class_vtable): use domain mempool to allocate vtable
32562         (mono_class_proxy_vtable): use domain mempool
32564 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32566         * appdomain.h, appdomain.c: split initialization that requires the
32567         execution engine support into mono_runtime_init().
32569 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32571         * class.c (mono_class_init): don't include vtable inside MonoClass
32572         to save some memory, gather some statistics.
32573         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
32575 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32577         * icall.c: internalcall implementation for ValueType.Equals().
32579 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
32581         * object.c (mono_message_init): moved 
32582         (mono_runtime_exec_main): new arch. independent impl.
32583         (mono_runtime_invoke_array): new method - like
32584         mono_runtime_invoke, but you can pass an array of objects.
32585         (mono_remoting_invoke): new arch. independent impl.
32586         (mono_message_invoke): new arch. independent impl.
32587         (mono_runtime_class_init): new arch. independent impl.
32588         (mono_runtime_object_init): new arch. independent impl.
32590 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32592         * metadata.c, object.c, reflection.c: documented the exported
32593         functions.
32595 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32597         * icall.c: simpler code to pass the assembly builder data to corlib.
32598         Implement GetNestedTypes() internalcall.
32600 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32602         * class.c: warn if a type can't be loaded.
32604 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
32606         * image.h: typedef MonoImageOpenStatus
32607         * types.h: removed unused file
32608         
32609 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
32611         * icall.c: Enum_ToObject accepts enum value arguments.
32613 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32615         * class.c: move initialization of properties, events and nested
32616         classes, so that they happen for interfaces, too.
32618 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32620         * icall.c: cleanup some ugly casts in Array_SetValue*.
32622 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32624         * icall.c: the values array fro enums is of the correct type, now.
32625         Implement (correctly) getFullName instead of assQualifiedName for
32626         MonoType.
32627         * reflection.h, reflection.c: added mono_type_get_name ().
32629 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32631         * assembly.c, image.h: for each MonoImage, record from wich assembly
32632         it was loaded.
32633         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
32634         Make Type.Assembly work.
32636 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
32638         * debug-symfile.h: use char* instead of gpointer to avoid
32639         unnecessary casts.
32641         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
32643         * icall.c (ves_icall_InternalExecute): impl. FielSetter
32644         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
32646 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
32648         * icall.c (mono_message_init): impl. (code cleanup)
32649         (ves_icall_InternalExecute): impl. FieldGetter
32651         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
32652         defined we call all (non-static)methods through the vtable. 
32654 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
32656         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
32657         finalizer even though the memory is still referenced (and the chunk of
32658         memory is not freed).
32660 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
32662         * assembly.c: fix brokeness.
32664 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
32666         * class.c: kill some warnings. Check explicit interface method
32667         implementation also without considering the namespace.
32668         Load also literal strings in static class data.
32670 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
32672         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
32673         (default_assembly_name_resolver): Make the resolver take the
32674         "base" directory where the assembly was originally defined, so we
32675         can load DLLs that are in the same directory as the assembly that
32676         is being referenced.
32678 2002-03-28  Dick Porter  <dick@ximian.com>
32680         * file-io.h: 
32681         * file-io.c:
32682         * socket-io.c: 
32683         * unicode.h: 
32684         * unicode.c: Warning cleanups
32686 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
32688         * object.h, reflection.h: use the correct type instead of MonoObject.
32690 2002-03-28  Martin Baulig  <martin@gnome.org>
32692         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
32693         (mono_debug_update_symbol_file): Initialize classes if necessary.
32695 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
32697         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
32698         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
32700 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
32702         * assembly.h: fix function prototype.
32703         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
32704         * mono-endian.h: use const cast.
32706 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32708         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
32710 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
32712         * loader.c: don't assert when a typeref can't be loaded, give
32713         a chance to the runtime to trow an exception instead.
32714         * loader.h: fix warning.
32716 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32718         * class.c (mono_class_proxy_vtable): added proxy support
32720 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
32722         * icall.c: removed last of PAL calls, added System.Environment
32723         * file-io.h, file-io.c: MonoIO implementation
32724         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
32726 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
32728         * appdomain.c: do not use the byte marker in ldstr table lookup.
32729         * debug-helpers.c: allow two ':' to separate class and method name.
32730         * object.c: allocate arrays bounds with the GC, too.
32731         * verify: add a few more checks.
32733 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
32735         * reflection.c: output also literal strings. Allocate parameter data
32736         with GC_malloc() (thanks, Martin, for catching this!).
32738 2002-03-26  Martin Baulig  <martin@gnome.org>
32740         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
32741         include the `this' offset in the `param_offsets'.
32743 2002-03-25  Martin Baulig  <martin@gnome.org>
32745         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
32746         mono_debug_get_class() function to get the classes. Added new
32747         relocation types for arrays and strings.
32748         (mono_debug_get_class): New static function to search in all
32749         referenced assemblies for a metadata token.
32751         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
32753 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32755         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
32756         hold gc-allocated objects. Make the string heap a stream like the
32757         others. Removed duplicated code when writing stream info.
32758         Added asserts to catch possible buffer overflows. Set the sorted map
32759         for tables that need sorting. Added some documentation.
32761 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
32763         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
32764         for interned strings and vtables.
32766 2002-03-24  Martin Baulig  <martin@gnome.org>
32768         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
32769         it in the array since it was created with g_slist_prepend().
32771 2002-03-24  Martin Baulig  <martin@gnome.org>
32773         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
32774         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
32775         (mono_debug_method_from_token): Renamed to
32776         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
32777         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
32779         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
32780         relocation types.
32782         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
32784 2002-03-24  Martin Baulig  <martin@gnome.org>
32786         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
32787         (mono_debug_method_from_token): New func.
32789         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
32790         New interncall, calls mono_debug_local_type_from_signature().
32791         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
32792         calls mono_debug_method_from_token().
32794 2002-03-23  Martin Baulig  <martin@gnome.org>
32796         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
32797         specifies the number of bytes to be converted, not the array size.
32798         Return the number of chars, not the number of bytes.
32799         (ves_icall_iconv_get_chars): The `byteCount' argument
32800         specifies the number of bytes to be converted, not the array size.
32802 2002-03-23  Martin Baulig  <martin@gnome.org>
32804         * reflection.h (MonoReflectionSigHelper): New type.
32806         * reflection.c (mono_reflection_sighelper_get_signature_local),
32807         (mono_reflection_sighelper_get_signature_local): New functions.
32809         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
32810         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
32811         interncalls.
32813 2002-03-23  Martin Baulig  <martin@gnome.org>
32815         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
32816         is_writeable is set.
32817         (mono_raw_buffer_update): New function to write the modified map
32818         back to disk.
32820         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
32822         * debug-symfile.c (mono_debug_update_symbol_file): Call
32823         mono_raw_buffer_update() when done writing.
32825 2002-03-23  Martin Baulig  <martin@gnome.org>
32827         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
32829         * debug-symfile.c: Added support for arguments and local variables.
32831 2002-03-23  Dick Porter  <dick@ximian.com>
32833         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
32834         protected by ifdefs, hence breaking the w32 build.
32836 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32838         * object.c: implement is_interned() the right way.
32840 2002-03-21  Martin Baulig  <martin@gnome.org>
32842         * debug-symfile.[ch]: New files to handle debugging information
32843         files. There's also support to dynamically update these symbol
32844         files to include machine dependent information.
32846 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
32848         * threads.c (mono_thread_create): new function to create thread
32849         from C
32851 2002-03-20  Martin Baulig  <martin@gnome.org>
32853         * icall.c (ves_icall_InternalInvoke): Create a new object if the
32854         method is a constructor.
32855         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
32856         points to ves_icall_InternalInvoke().
32858 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
32860         * file-io.c: Flush shouldn't throw exceptions.
32862 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
32864         * file-io.c: FileStream flush support; FileSetLength now
32865         restores file pointer.
32867 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
32869         * class.c: set image for pointer classes.
32871 2002/03/19  Nick Drochak <ndrochak@gol.com>
32873         * sysmath.c: Forgot one.
32875 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
32877         * sysmath.c: Avoid redefining existing names.
32879 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
32881         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
32882         handled by runtime as icall rather than dllimport from libm.so
32883         * file-io.c, file-io.h: fixed handle argument type.
32885 2002-03-18  Dick Porter  <dick@ximian.com>
32887         * reflection.c (mono_image_get_type_info): rename interface to
32888         iface, because of "#define interface struct" on windows.
32890 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
32892         * class.c, class.h: rename and export mono_ptr_class_get().
32893         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
32894         * reflection.c, reflection.h, icall.c: better/saner type name
32895         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
32896         method signatures.
32898 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
32900         * class.c (mono_class_init): removed hardcoded GHC_SLOT
32902         * icall.c (ves_icall_InternalInvoke): impl.
32904 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32906         * reflection.c: output the interface map table, too.
32908 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
32910         * class.c (class_compute_field_layout): separate computation of 
32911         static field layout
32913 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
32915         * icall.c: added System.Buffer support.
32916         * file-io.c: moved file icalls from PAL to FileStream.
32918 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
32920         * icall.c (ves_icall_System_Object_GetHashCode): impl.
32922 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
32924         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
32926 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32928         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
32930 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
32932         * debug-helpers.{c,h}: moved here from monograph some useful functions
32933         to locate a method by name/signature in a class or image. Included
32934         also a small and flexible IL disassembler.
32936 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
32938         * reflection.c: fixup tokens in methods with small header size, too.
32940 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
32942         * object.c (mono_string_to_utf8): remove assert(!error), instead
32943         print a warning. 
32945 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
32947         * icall.c: update to the new mono_Array_class_get interface.
32949 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
32951         * appdomain.c, object.c: Boehm-GC enable.
32952         * icall.c: make get_data_chunk() support split data requests.
32953         Ensure a class is initialized in more cases. Return only the first
32954         property found in GetProperties() or the compiler gets confused. 
32955         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
32956         * reflection.h, reflection.c: add fixup mechanism for field and method
32957         tokens. Initialize assembly->typeref in a single place. Output
32958         properties after events. Support custom attributes for events, too.
32959         Typo fix for paramter custom attrs.
32961 2002-03-07  Martin Baulig  <martin@gnome.org>
32963         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
32965 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
32967         * class.c (mono_array_class_get): fix. for multi. dim. arrays
32969 2002-03-06  Martin Baulig  <martin@gnome.org>
32971         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
32972         non-zero lower bounds. See testcases #F10-#F13.
32974 2002-03-05  Martin Baulig  <martin@gnome.org>
32976         * exception.c (mono_get_exception_argument_out_of_range): New exception.
32978         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
32979         ves_icall_System_Array_GetValue(), only calculate the absolute array position
32980         here.
32981         (ves_icall_System_Array_SetValue): Likewise.
32982         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
32983         as argument and does the actual work. This function is used when copying a
32984         multi-dimensional array.
32985         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
32986         now do all the widening conversions of value types.
32987         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
32989 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32991         * class.c: remove some magic numbers and use the smbolic names,
32992         instead. Added init_events() to load event info at class init time.
32993         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
32994         and mono_metadata_methods_from_event().
32995         * reflection.h, reflection.c: added support for writing out the evnets
32996         related information.
32998 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33000         * reflection.h, icall.c: use a different method (GetInterfaces)
33001         to gather interface info and add isbyref, isprimitive and
33002         ispointer to the ves_icall_get_type_info() return value.
33004 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33006         * class.h: stared adding support for events.
33007         * icall.c: split find_members implementation. Added debug icall to get
33008         the address of an object.
33009         * reflection.c: handle TypeBuilders in mono_type_get_object().
33011 2002-03-01  Martin Baulig  <martin@gnome.org>
33013         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33014         ArgumentOutOfRangeException(), not an ArgumentException().
33015         (ves_icall_System_Array_GetLowerBound): Likewise.
33016         (ves_icall_System_Array_GetValue): Improved argument checking.
33017         (ves_icall_System_Array_SetValue): Improved argument checking.
33019 2002-03-01  Martin Baulig  <martin@gnome.org>
33021         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33022         called with invalid arguments rather than just dying with g_assert().
33023         (ves_icall_System_Array_SetValue): Likewise.
33024         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33025         raise a NotImplementedException instead.
33026         (ves_icall_System_Array_GetLength): Added argument checking.
33027         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33029 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33031         * object.h (mono_assert): new macros mono_assert and
33032         mono_assert_not_reached
33034 2002-02-28  Martin Baulig  <martin@gnome.org>
33036         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33037         and "System::String::IsInterned" to "System::String::_IsInterned".
33039 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33041         * icall.c: remove hacks for typebuilder. Added icall to create a
33042         modified type from a tybebuilder.
33043         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33044         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33045         to create a backing MonoClass for a TypeBuilder.
33047 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33049         * class.c, class.h: more refactoring of class init.
33050         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33052 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33054         * marshal.c, marshal.h: start of marshaling interface.
33056 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33058         * icall.c: fix order in assembly qualified name icall.
33060 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33062         * class.c: do not free str, since we store it in the hash table.
33063         * reflection.h: add label field to MonoILExceptionInfo.
33064         * reflection.c: handle references to more than one assembly. Handle
33065         case when there isn't a module created in the assembly.
33067 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33069         * class.c: Fix typo. Start refactoring of class init code.
33071 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33073         * appdomain.c: exit with 1 on error.
33074         * class.c: we already have the name in MonoClassField.
33075         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33076         MonoStreamHeader instead of an offset of image->raw_metadata.
33078 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33080         * appdomain.c (mono_init): Be even more descriptive about the error.
33082 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33084         * appdomain.c: give the user an informative message when corlib can't
33085         be loaded.
33087 2002-02-26  Martin Baulig  <martin@gnome.org>
33089         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33090         New icall to get the time zone data.
33092 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33094         * reflection.c: set virtual and raw size of section correctly.
33095         * threads.c: transfer domain information to newly created threads.
33097 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33099         * class.c: when instancing a class in a domain, load the default
33100         vaules for static fields from the constant table. Fix System.Enum to
33101         not be an enum.
33102         * icall.c: implement Object::GetType() internalcall. Implemented
33103         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33104         Fixed checking of binding flags in find_members().
33105         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33106         * reflection.c: handle enumerations when writing to the constant
33107         table. Use a different object cache for types.
33110 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33112         * object.c (mono_object_isinst): fix for arrays
33114         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
33116 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33118         * object.c: don't use mprotect ()  and fix intern pool hash table
33119         lookup for big endian systems.
33121 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33123         * icall.c: change type_is_subtype_of () signature.
33125 2002-02-21  Mark Crichton  <crichton@gimp.org>
33127         * rand.c, rand.h: Added random number generator for
33128         System.Security.Cryptography classes.
33130         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
33132         * icall.c: Added System.Security.Cryptography calls.
33134 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33136         * class.c, icall.c, metadata.c: better support for pointer types.
33137         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
33138         * reflection.c: Add support for getting custom attrs for properties
33139         and simplify some code.
33141 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33143         * icall.c: change getToken () and add custom attribute GetBlob()helper
33144         method.
33145         * reflection.h: add custom attrs array to the reflection builder structures.
33146         * reflection.c: encode and emit custom attributes for all the relevant
33147         reflection objects. Cache fieldref and methodref tokens. Change
33148         mono_image_create_token() interface to take a MonoDynamicAssembly.
33149         More complete custom attributes decoder. Load custom attributes for
33150         Assembly, Field, Method and Constructor objects, too. Make the
33151         returned array an Attribute[] one, not object[]. Added
33152         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
33153         custom attribute constructor.
33155 2002-02-20  Dick Porter  <dick@ximian.com>
33157         * icall.c:
33158         * rawbuffer.c:
33159         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
33160         problem code out for now).
33162 2002-02-19  Radek Doulik  <rodo@ximian.com>
33164         * object.c (mono_ldstr): use hash table to avoid multiple swapping
33166 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
33168         * icall.c: register the GetCustomAttributes method.
33169         * object.c, object.h: add mono_string_new_len ().
33170         * reflection.h, reflection.c: added mono_runtime_invoke(),
33171         mono_install_runtime_invoke(). Added
33172         mono_reflection_get_custom_attrs () to load custom attributes and
33173         create the attribute objects.
33175 2002-02-19  Dick Porter  <dick@ximian.com>
33176         * threads-dummy-types.c:
33177         * threads-dummy-types.h:
33178         * threads-dummy.c:
33179         * threads-dummy.h:
33180         * threads-pthread-types.c:
33181         * threads-pthread-types.h:
33182         * threads-pthread.c:
33183         * threads-pthread.h:  Deleted obsolete files
33185 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
33187         * class.c (mono_class_vtable): runtime init the class when we
33188         allocate static class data.
33190         * icall.c (ves_icall_System_Array_SetValue): check for null values.
33192         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
33193         and String - but we will need generic marshalling support in the
33194         future. 
33195         (mono_init): set the domain name in a ms compatible way
33197         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
33198         String[].
33200 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
33202         * object.c (mono_array_clone): use alloca() instead of g_malloc  
33203         for sizes
33205         * appdomain.c (mono_domain_unload): impl.
33207 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33209         * appdomain.c, object.c: fix intern pool implementation.
33210         * class.c: fix alignment code.
33212 2002-02-16  Radek Doulik  <rodo@ximian.com>
33214         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
33215         and s2 > s1, just copy lower bytes to be compatible with little
33216         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
33217         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
33219         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
33220         force big_endian to be 1 for big endian machines 
33221         (ves_icall_iconv_new_decoder): ditto
33223 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
33225         * socket-io.c (convert_sockopt_level_and_name): If the system
33226         doesn't define SOL_IP or SOL_TCP, get them by hand using
33227         getprotobyname() and caching the values (because this could be a
33228         slow operation).
33229         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
33230         Use the appropriate struct when the system does support it. Ie,
33231         not all systems have struct ip_mreqn so use struct ip_mreq when
33232         appropriate.
33234 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
33236         * reflection.c: handle finally clauses.
33238 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
33240         * socket-io.c: use g_snprintf() instead of snprintf.
33242 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33244         * reflection.c (mono_param_get_objects): Cast second argument to
33245         mono_method_get_param_names to a const char** to silence the
33246         compiler warning.
33248         * appdomain.c (mono_domain_assembly_open): Put parens around the
33249         truth statement in the for-loop.
33251         * unicode.c (iconv_convert): Got rid of a compiler warning about
33252         int i being unused when the system has a new iconv.
33253         (iconv_get_length): Same.
33255         * image.c (load_class_names): Cast the second argument to
33256         g_hash_table_insert() to char* to hush compiler warnings about the
33257         arg being a const.
33258         (mono_image_open): Same here.
33260         * socket-io.c: Don't conditionally include sys/filio.h or
33261         sys/sockio.h here anymore since we now get them from
33262         io-layer/io-layer.h
33263         (inet_pton): If the system doesn't support inet_aton, implement
33264         using inet_addr and also #define INADDR_NONE if it isn't defined
33265         by the system.
33267 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33269         * metadata.c, metadata.h: added function to get packing and size info
33270         of a typedef.
33271         * reflection.h, reflection.c: handle field RVA data. Save info about
33272         the table layout if needed. Assign typedef indexes to all the types
33273         before dumping the info about them to avoid forward reference problems.
33275 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
33277         * socket-io.c (convert_sockopt_level_and_name): ifdef
33278         SO_ACCEPTCONN because it is not defined on my system (old debian)
33280 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33282         * opcode.c: use stddef.h to get NULL.
33284 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33286         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
33287         for FIONBIO, FIONREAD and SIOCATMARK.
33288         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
33289         define INADDR_NONE and besides, inet_addr() is deprecated and
33290         should not be used. Use inet_pton() instead - it also has the
33291         added bonus that it can easily handle IPv6 addresses as well.
33292         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
33294 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33296         * decimal.c: remove _MSC_VER conditional.
33298 2002-02-13  Dick Porter  <dick@ximian.com>
33300         * socket-io.c: 
33301         * icall.c: Internal calls for Blocking, Select, Shutdown,
33302         GetSocketOption and SetSocketOption
33304 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33306         * assembly.cs: better resolver: use it instead of some kludgy
33307         code.
33309 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
33311         * reflection.c: the best way to speed-up the compiler is to avoid
33312         infinite loops.
33314 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
33316         * class.c (mono_class_vtable): changed the object layout
33317         (obj->vtable->class). 
33318         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
33320 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33322         * assembly.c: look for assemblies in the assembly dir, too.
33324 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33326         * class.c: fix thinko in mono_class_from_type().
33328 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33330         * exception.h, exception.c: added TypeLoadException.
33331         * object.h, object.c: added mono_array_clone ().
33332         * icall.c: handle throwOnError in AssemblyGetType().
33333         Added Array.Clone().
33334         * opcode.h, opcode.c: use a single value for the opcode val.
33335         Compile fix for non-gcc compilers.
33337 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
33339         * opcodes.c, opcodes.h: export interesting info about opcodes.
33341 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
33343         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
33344         icalls. 
33346         * class.c (class_compute_field_layout): set element_class for enums
33347         (mono_class_create_from_typedef): set element_class for normal classes
33349         * icall.c (ves_icall_System_Enum_get_value): impl.
33351         * class.c (mono_class_create_from_typedef): do not set valuetype
33352         flag for System.ValueType and System.Enum
33354 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
33356         * unicode.c (iconv_convert): fix big endian problem.
33358 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33360         * class.c: add asserts if we are ever going to scribble over memory.
33361         * socket-io.c: not all systems have AF_IRDA defined.
33363 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
33365         * class.c (class_compute_field_layout): do not consider static
33366         fields to compute alignment
33368 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
33370         * appdomain.c (mono_appdomain_get): impl.
33371         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
33373 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33375         * icall.c: ignore "file://" prefix when loading an assembly.
33377 2002-01-23  Dick Porter  <dick@ximian.com>
33379         * socket-io.c:
33380         * icall.c:
33381         * Makefile.am: Added socket support
33383 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33385         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
33386         code back.  This should return the assemblies that are loaded by
33387         the runtime on behalf of an application domain. 
33389         The current implementation is still broken, it just returns every
33390         assembly loaded, but until we get real applications domain this
33391         will do.
33393 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
33395         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
33396         AppDomain object.
33398 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33400         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
33401         the mono_class_from_name lookup.
33402         (ves_icall_get_parameter_info): ditto.
33403         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
33404         method.
33405         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
33407 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33409         * class.c: load also nested classes on class init.
33410         System.ValueType instance methods gets passed boxed
33411         values, unless methods in derived classed that get a pointer to the
33412         data.
33413         * icall.c: use better name parsing code in GetType().
33414         * image.c, image.h: add mono_image_loaded ().
33415         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
33416         * reflection.c, reflection.h: added mono_reflection_parse_type().
33418 2002-01-22  Veronica De Santis <veron78@interfree.it>
33420         * icall.c : Added mapping of internal calls for Manual and Auto reset events
33421         * threads.c : Added the implementation of internal calls for events
33422         * threads.h : Added prototypes of internal calls for events
33423         
33424 2002-01-21  Radek Doulik  <rodo@ximian.com>
33426         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
33428 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
33430         * class.c (mono_class_init): set min_align to 1 (instead of 0)
33431         (mono_class_value_size): use min_align
33433 2002-01-20  Dick Porter  <dick@ximian.com>
33435         * threads.h:
33436         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
33437         so it compiles on w32.
33439 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
33441         * metadata.c (mono_type_stack_size): impl.
33443         * class.c (mono_class_get_field): impl. memberref token
33445 2002-01-16 Veronica De Santis <veron78@@interfree.it>
33447         * icall.h : Added the internal calls mapping for CreateMutex_internal
33448                     and ReleaseMutex_internal.
33449         * threads.h : Added the prototype of mutexes internal calls.
33450         * threads.c : Added the implementations of mutexes internal calls.
33452 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33454         * metaparse.h: removed unused file.
33455         * reflection.c, reflection.h: added stream_data_align () function 
33456         to align data in streams and keep stream aligned. Add support for
33457         exception support in method headers.
33459 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
33461         * unicode.c: make iconv_convert () return the number of bytess written
33462         in the output buffer.
33464 2002-01-15  Dick Porter  <dick@ximian.com>
33465         * threads.c: Make the runtime's idea of infinite timeouts coincide
33466         with the class library's
33468         Fix a particularly egregious bug in mono_thread_cleanup(). That
33469         code was so utterly bogus it must have been written on a Monday.
33471 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33473         * reflection.h: add subtypes field to TypeBuilder.
33474         * reflection.c: encode constants for literal fields.
33475         Handle subtypes. Fix user string token (and add a zero byte)
33476         at the end.
33477         
33478 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
33480         * class.c (mono_class_init): bug fix: assign slot numbers for
33481         abstract methods.
33483 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33485         * reflection.c: don't try to output a code RVA for abstract methods.
33486         Small fixes for method header format. Output parameter info to the
33487         ParamDef table. Save method overriding info to MethodImpl table.
33488         Fix property support. Allow typedef.extends to be a type in the
33489         building assembly.
33490         * verify.c: fix off-by-one error.
33492 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
33494         * class.c: fix mono_class_from_mono_type () for szarray types.
33495         Remove unused cache check in mono_class_from_type_spec().
33496         * icall.c: *type_from_name () functions handle simple arrays and byref.
33497         * reflection.c: handle byref and szarray types. Handle methods without
33498         body (gets P/Invoke compilation working). Handle types and fields in
33499         get_token ().
33500         * reflection.h: add rank to MonoTypeInfo.
33502 2002-01-10  Dick Porter  <dick@ximian.com>
33504         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
33505         internal calls
33507 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33509         * icall.c: initialize class in type_from_handle ().
33510         Loop also in parent classes for get_method ().
33511         * reflection.c: properly encode class and valuetype types.
33512         Start on encoding TypeBuilder types. Handle fieldrefs.
33513         Use correct length when registering a user string.
33514         Handle ConstructorBuilder and MonoMethod in get_token ().
33515         Make mono_type_get_object () aware of cached types.
33516         * object.c: back out change to mono_string_new ().
33518 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
33519         * object.c: mono_string_new should return a NULL when the string 
33520         passed in is NULL -- not try to deference it.
33521         
33522 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33524         * icall.c: hack to make IsSubType work for TypeBuilders.
33525         * reflection.c: emit constructors before methods.
33526         Retrieve param names in mono_param_get_objects().
33528 2002/01/05  Nick Drochak  <ndrochak@gol.com>
33530         * Makefile.am: fix list of headers and sources so automake 1.5
33531         doesn't complain. Removed \# at end of list.
33533 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33535         * reflection.c: get token for a method ref. Set return type of
33536         constructor to void.
33537         * loader.c: debug message.
33538         * class.c: typo fix.
33540 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
33542         * icall.c: fix array init with rank > 1. FindMembers
33543         loops in parent class as well.
33544         * image.c: do not insert nested types in name cache.
33545         * reflection.c: warning fix.
33546         * reflection.h: add override method (for interface impl).
33548 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
33550         * metadata.c: fix customattr decoding.
33552 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
33554         * rawbuffer.cs: Added native Win32 implementation, avoids using
33555         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
33557 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
33559         * class.c: make the low-level routines handle the cache.
33561 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
33563         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
33565 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
33567         * class.c: fix mono_array_element_size() for objects.
33568         * class.h, class.c: add properties to MonoClass and load them
33569         at init time.
33570         * icall.c: check with isinst() when assigning a value to an array
33571         instead of requiring the classes to match exactly.
33572         Implemented icall for System.Type::GetType().
33573         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
33574         enums. Handle bindingflags when looking for methods and fields.
33575         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
33576         and mono_metadata_methods_from_property().
33577         * reflection.h, reflection.c: added structures for propreties,
33578         parameters and enums. Implemented mono_property_get_object() and
33579         mono_param_get_objects().
33581 2001-12-18  Dick Porter  <dick@ximian.com>
33583         * file-io.c: Use mono_string_to_utf16() instead of
33584         mono_string_chars()
33586         * object.c: Added mono_string_to_utf16(), which copies the non
33587         NULL-terminated MonoString into a new double-null-terminated
33588         buffer.
33590 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
33592         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
33594 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
33596         * file-io.c: raise exceptions if handle is invalid.
33598 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
33600         * assembly.c: yet another check for mscorlib.
33601         * class.c, class.h: load nesting info for classes.
33602         * icall.c: many new functions to support the Reflection classes.
33603         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
33604         * reflection.h, reflection.c: mono_image_create_token(),
33605         mono_assembly_get_object(), mono_type_get_object(),
33606         mono_method_get_object(), mono_field_get_object(): methods to return
33607         objects that parallel the C representation of assemblies, types,
33608         methods, fields.
33610 2001-12-11  Dick Porter  <dick@ximian.com>
33612         * icall.c:
33613         * file-io.c: Internal calls for file IO.
33615 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
33617         * tabledefs.h: missing FileAttributes.
33618         * verify.h, verify.c: use is_valid_string () to simplify and check for
33619         valid strings more correctly. Fix warnings and speeling.
33620         Check more tables: Filed, File, ModuleRef, StandAloneSig.
33621         Check code: branches, maxstack, method calls.
33623 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
33625         * object.c (mono_object_allocate): removed static, so that the jit
33626         can allocate value types.
33628         * icall.c (ves_icall_System_DateTime_GetNow): impl.
33630 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33632         * class.c: init enum types right away and register the
33633         token->MonoClass map in mono_class_create_from_typedef ().
33634         * verify.h, verify.c: first cut of the verifier.
33635         * pedump.c: add --verify switch to verify metadata tables.
33636         * tabledefs.h: add some missing enums.
33638 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
33640         * class.c (mono_install_runtime_class_init): impl.
33641         (mono_class_init): renamed mono_class_metadata_init to
33642         mono_class_init, also removed the metadata_inited flag
33644         * object.c (mono_object_isinst): use faster algorithm
33646 2001-11-30  Radek Doulik  <rodo@ximian.com>
33648         * mono-endian.h: reverted last change
33649         added function prototypes
33651         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
33652         add mono-endian.c back
33654         * mono-endian.c: returned back, as Paolo pointed out, it's needed
33655         for unaligned access, I've mistaked it with endianess. I am
33656         sorry.
33657         (mono_read16): fix reverted endianess
33658         (mono_read64): ditto
33659         (mono_read32): ditto
33661 2001-11-30  Dick Porter  <dick@ximian.com>
33663         * exception.c: Implement mono_exception_from_name()
33665 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
33667         * metadata.h, metadata.c: remove params_size and locals_size and their
33668         calculation from the metadata code: they are only usefult to the
33669         interp.
33671 2001-11-29  Radek Doulik  <rodo@ximian.com>
33673         * object.c (mono_ldstr): swap bytes here, it's probably not the
33674         best place, but works for me now, I'll redo it once I know mono
33675         better, also note that I add PROT_WRITE and don't reset back, also
33676         note that it's only affects big endians, so x86 should be OK
33678         * mono-endian.h (read16): use just glib macros for both endians
33680         * mono-endian.c: removed as glib macros are used in in
33681         mono-endian.h so we don't need to care about endianess for read
33682         macros as glib does that for us already
33684 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
33686         * class.h, class.h: take minimum alignment into consideration so
33687         that the fields of a class remain aligned also when in an array.
33689 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33691         * loader.h, loader.c: add mono_method_get_param_names().
33692         * class.c: 0-init class fields.
33694 2001-11-26  Dick Porter  <dick@ximian.com>
33696         * icall.c:
33697         * threads-types.h:
33698         * threads.c: New file that handles System.Threading on all platforms
33700         * object.c: 
33701         * object.h: Remove the synchronisation struct from MonoObject,
33702         replace it with a pointer that gets initialised on demand
33704         * Makefile.am: Replace all the system-specific threading code with
33705         a single file that uses the new wrapper library
33707 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
33709         * class.c, class.h: add mono_install_trampoline() so that the runtime
33710         can register a function to create a trampoline: removes the ugly
33711         requirement that a runtime needed to export arch_create_jit_trampoline.
33712         * object.h, object.c: added mono_install_handler() so that the runtime
33713         can install an handler for exceptions generated in C code (with
33714         mono_raise_exception()). Added C struct for System.Delegate.
33715         * pedump.c: removed arch_create_jit_trampoline.
33716         * reflection.c: some cleanups to allow registering user strings and
33717         later getting a token for methodrefs and fieldrefs before the assembly
33718         is built.
33719         * row-indexes.h: updates and fixes from the new ECMA specs.
33721 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
33723         * class.h, class.c: add enum_basetype field to MonoClass.
33724         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
33725         to get index in the constant table reated to a field, param or
33726         property.
33727         * reflection.h, reflection.c: handle constructors. Set public-key and
33728         version number of the built assembly to 0.
33729         * row-indexes.h: update from new ECMA spec.
33731 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
33733         * class.h, class.c: add a max_interface_id to MonoClass.
33734         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
33735         since it's used to do that. Added mono_type_type_from_obj().
33736         Make GetType() return NULL instead of segfaulting if the type was not
33737         found. Handle simple arrays in assQualifiedName.
33738         * object.h: add a struct to represent an Exception.
33739         * reflection.c: output call convention in method signature.
33740         Add code to support P/Invoke methods and fixed offsets for fields.
33742 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
33744         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
33745         the value.
33746         * icall.c: use mono_array_addr instead of array->vector: fixes the
33747         reflection image writing.
33748         * reflection.c: init call convention byte to 0 in method signature.
33749         Encode the property signature. Don't output property-related methods
33750         twice. Really process the properties for a type (don't cast a field to
33751         a property, my mom always told me that).
33752         Fix 64 bit issues in pointer alignment in a different and more
33753         readable way.
33755 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
33757         * loader.h: Removed type class from MonoDefaults, added monotype
33759         * loader.c: Loaded MonoType, removed loading of Type
33761         * icall.c (my_mono_new_object): Now returns a System.MonoType,
33762         and fills in System.Type._impl with a RuntimeTypeHandle rather
33763         than the actual MonoClass *
33765         (ves_icall_type_from_handle): change from type_class to
33766         monotype_class
33768         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
33769         implemented
33771         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
33772         implemented
33774         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
33776         (ves_icall_System_Reflection_Assembly_GetType): implemented
33778         (ves_icall_System_MonoType_assQualifiedName): implemented
33780         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
33782 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
33784         * assembly.c (mono_assembly_open): Implement a cache for the
33785         assemblies. 
33787         (mono_assembly_close): only destroy the assembly when the last
33788         reference is gone.
33789         
33790 2001-11-09  Dick Porter  <dick@ximian.com>
33792         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
33794 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
33796         * class.c (mono_class_metadata_init): bug fix: compute the right slot
33798 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
33800         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
33801         from Martin Weindel.
33802         * object.h: add mono_string_chars ().
33804 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
33806         * reflection.c (build_compressed_metadata): Eliminates warnings
33807         and uses 64-bit clean code.
33809         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
33810         (mono_type_equal): Change signature to eliminate warnings.
33812 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33814         * icall.c, loader.c: remove the internalcall array constructors.
33815         Changes to match the new MonoArray structure.
33816         * object.h, object.c: an array object doesn't allocate an extra
33817         vector. Add mono_array_new_full () to create jagged arrays easily.
33819 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
33821         * metadata.h, metadata.c: add mono_metadata_field_info () to
33822         retreive all the info about a field from vairous tables.
33823         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
33824         * class.h, class.c: augment MonoClassField with more info.
33825         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
33826         policy and load a field's RVA if needed.
33828 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
33830         * class.c (mono_class_metadata_init): create a trampoline for all
33831         virtual functions instead of actually compiling them.
33833 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
33835         * class.h, class.c: include name in MonoClassField.
33836         * class.c: fix fundamental type of System.Object and System.String.
33837         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
33838         tokens in ldtoken.
33839         * icall.c: remove internalcalls for the Reflection stuff that is now
33840         done in C# code.
33841         * loader.c: mono_field_from_memberref () implementation.
33842         * mono-endian.c: thinko (s/struct/union/g).
33843         * object.c, object.h: make the mono_string_* prototypes actually use
33844         MonoString instead of MonoObject.
33845         * reflection.c, reflection.h: updates for changes in the reflection
33846         code in corlib: we use C structures that map to the actual C# classes.
33847         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
33848         fat method header if needed and use the info from the ILGenerator for
33849         methods. Handle fields in types. Misc fixes.
33851 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
33853         * class.c (mono_class_metadata_init): bug fix: always allocate
33854         space for static class data
33856 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
33858         * class.c (mono_compute_relative_numbering): use relative
33859         numbering to support fast runtime type checks.
33861 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
33863         * class.c (mono_class_create_from_typeref): added debugging output
33864         to print class name when MonoDummy is returned instead of real class
33866 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
33868         * class.c (mono_class_metadata_init): interface offset table now
33869         contains pointers into the vtable - this is more efficient for the jit
33871 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
33873         * class.c (mono_class_metadata_init): use a temporary vtable (the
33874         old algorithm only worked for the interpreter, but not for the jit)
33876 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
33878         * loader.c (method_from_memberref): use mono_class_get to get the
33879         class of an array instead of using System.Array directly.
33880         (mono_get_method): also add MEMBERREF methods to the method cache
33881         which usefull for arrays.
33883 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
33885         * pedump.c (arch_compile_method): added to compute vtable entry
33887         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
33888         number of interfaces.
33889         
33890         * class.h: merged MonoArrayClass into MonoClass
33892         * class.c (mono_class_create_from_typedef): compute the vtable size and
33893         allocate space to include the vtable inside MonoClass
33894         (mono_class_metadata_init): initialize the vtable
33896 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
33898         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
33899         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
33900         * image.c: endian fixes by Laurent Rioux.
33901         * object.h, object.c: rename MonoStringObject to MonoString and
33902         MonoArrayObject to MonoArray. Change some function names to conform to
33903         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
33904         guint16* as first argument, so don't use char*.
33905         Provide macros to do the interesting things on arrays in a portable way.
33906         * threads-pthread.c: updates for the API changes and #include <sched.h>
33907         (required for sched_yield()).
33908         * icall.c: updates for the API changes above.
33909         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
33910         platforms that need them.
33912 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
33914         * class.c: set the correct type for all the fundamental
33915         type when loading the class.
33917 2001-10-05  Dick Porter  <dick@ximian.com>
33919         * threads-pthread.c (pthread_mutex_timedlock): Simple
33920         compatibility version for C libraries that lack this call.
33922 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
33924         * class.c: MonoTypes stored in MonoClass are stored as
33925         fundamental MonoTypes when the class represents a
33926         fundamental type (System.Int32, ...).
33927         The TypeHandle return by ldtoken is a MonoType*.
33928         * icall.c: ves_icall_get_data_chunk () write out all the
33929         PE/COFF stuff. Implement ves_icall_define_method (),
33930         ves_icall_set_method_body (), ves_icall_type_from_handle ().
33931         * image.c: properly skip unknown streams.
33932         * loader.h, loader.c: add type_class to mono_defaults.
33933         * metadata.c, metadata.h: export compute_size () as
33934         mono_metadata_compute_size () with a better interface.
33935         Typo and C&P fixes.
33936         * pedump.c: don't try to print the entry point RVA if there is no entry point.
33937         * reflection.c, reflection.h: many cleanups, fixes, output method
33938         signatures and headers, typedef and typeref info, compress the metadata
33939         tables, output all the heap streams, cli header etc.
33940         * row-indexes.h: typo fixes.
33942 2001-10-04  Dick Porter  <dick@ximian.com>
33944         * object.h: Add a synchronisation mutex struct to MonoObject
33946         * object.c (mono_new_object): Initialise the object
33947         synchronisation mutexes
33949         * icall.c: System.Threading.Monitor internal calls
33950         
33951         * threads-pthread.h:
33952         * threads-pthread.c: System.Threading.Monitor internal calls
33954         * threads-types.h: New file, includes the system-specific thread
33955         structures
33956         
33957         * threads-pthread-types.h:
33958         * threads-pthread-types.c: New files, handle pthread-specific
33959         synchronisation types
33961         * threads-dummy-types.h: 
33962         * threads-dummy-types.c: New files of dummy support for
33963         thread-specific types
33965         * metadata.c:
33966         * image.c:
33967         * pedump.c: include mono-endian.h not endian.h
33968         
33969         * Makefile.am: More threads files.
33970         Name mono-endian.h not endian.h
33972 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
33974         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
33975         stuff and implement a few more bits.
33976         * icall.c: a field needs to be dereferenced twice. Do not use the same
33977         name for two variables in the same scope.
33978         * image.c, image.h: cleanups.
33980 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
33982         * class.c (mono_class_metadata_init): bug fix: compute the right size
33984 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
33986         * icall.c: implemented some of the Reflection internalcalls.
33987         * image.c, image.h: start writing out the PE/COFF image.
33988         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
33989         that does the reverse than decode_blob_size ().
33990         * object.c: use mono_metadata_encode_value (). Move here
33991         temporary implementation of mono_string_to_utf8 ().
33992         * rawbuffer.c: make malloc_map static.
33994 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
33996         * metadata.c: fix type comparison for arrays.
33997         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
33998         Added a couple of new classes to monodefaults.
33999         * icall.c: added a couple of Reflection-related internalcalls.
34000         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34001         Added a byval_arg MonoType to MonoClass.
34003 2001-09-28  Dick Porter  <dick@ximian.com>
34005         * icall.c:
34006         * threads-pthread.h: 
34007         * threads-pthread.c: Implemented internal calls for
34008         LocalDataStoreSlot operations.  Applied mutexes around all shared
34009         data.  Reworked the thread creation and Start() operations to
34010         avoid a race condition.
34011         
34012         * threads-dummy.h:
34013         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34015 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34017         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34019 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34021         * class.c, loader.c: warn and return NULL instead of erroring out.
34022         * icall.c: added System.AppDomain::getCurDomain().
34023         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34025 2001-09-25  Dick Porter  <dick@ximian.com>
34027         * threads-pthread.h:
34028         * threads-pthread.c: Implemented timed thread joining and added
34029         System.Threading.Thread::Join_internal internal call
34031         * icall.c: Added System.Threading.Thread::Join_internal internal call
34033         * threads-dummy.h:
34034         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34036 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34038         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34039         mono_string_intern () to implement the semantics of the ldstr opcode
34040         and the interning of System.Strings.
34041         * icall.c: provide hooks to make String::IsIntern and String::Intern
34042         internalcalls.
34044 2001-09-23  Dick Porter  <dick@ximian.com>
34046         * threads-dummy.c: 
34047         * threads-dummy.h: New files of dummy threading routines
34049         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34050         support code based on system specifics
34052         Rename PTHREAD_LIBS to THREAD_LIBS
34053         
34054 2001-09-23  Dick Porter  <dick@ximian.com>
34056         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34057         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34058         internal calls.
34059         (mono_thread_init): Set up a Thread object instance to return when
34060         the main thread calls Thread.CurrentThread
34061         (mono_thread_cleanup): Wait for all subthreads to exit
34063         * icall.c: New internal calls for System.Threading.Thread::Sleep
34064         (including Schedule) and CurrentThread
34066         * threads.h: New file, to insulate thread-specific stuff from the
34067         rest of the code
34069 2001-09-21  Dick Porter  <dick@ximian.com>
34071         * threads-pthread.h: 
34072         * threads-pthread.c: New file, for handling pthreads-style
34073         threading support.  Start() now starts a new thread and executes
34074         the ThreadStart delegate instance.
34076         * icall.c: Added the internalcall for
34077         System.Threading.Thread::Start_internal
34079         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34081 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34083         * loader.c: work around the different signatures for delegates
34084         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34086 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34088         * class.h, class.c: add mono_class_get_field_from_name ().
34089         * *: Fix C comments and other ANSI C issues.
34091 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34093         * endian.h, assembly.c: fix some endianness issues.
34095 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34097         * loader.h, load.c: add delegate_class to mono_defaults.
34098         Handle runtime provided methods in mono_get_method ().
34100 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34102         * loader.c (mono_get_method): use pinvoke for internal call
34104         * icall.c: use pinvoke for internal call
34106         * loader.c (method_from_memberref): set the method name
34108 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34110         * metadata.c: help the compiler generate better code for
34111         mono_class_from_mono_type ().
34113 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
34115         * class.c (mono_class_metadata_init): delayed computing of the
34116         class size to mono_class_metadata_init ()
34118 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
34120         * class.c, class.h: add an interfaces member to MonoClass.
34121         * image.c, image.h: add assembly_name field to MonoImage
34122         from the assembly table.
34123         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
34125 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34127         * class.c: Handle Array in mono_class_from_mono_type ().
34128         * metadata.c, pedump.c: some endian fixes.
34130 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34132         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
34133         * metadata.c: fix small problem introduced with the latest commit.
34135 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
34137         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
34138         We don't need a MonoMetadata pointer anymore to compare signatures in
34139         mono_metadata_signature_equal (), update callers.
34140         Reduced memory usage an number of allocations for MonoMethodHeader and
34141         MonoMethodSignature.
34143 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
34145         * metadata.c: added compare for szarray.
34147 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
34149         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
34150         and add a couple more types to it and mono_defaults. Give an hint on
34151         classes that need implementing in our corlib and are referenced
34152         in mscorlib.
34154 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
34156         * class.h, class.c: keep track if a class is also an Enum.
34157         * loader.c: Implement a couple more types for use in libffi
34158         marshalling. Gives better diagnostics when failing to dlopen
34159         a library. Set method->klass for P/Invoke methods, too.
34161 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
34163         * class.c, class.h: add a MonoType this_arg to MonoClass that
34164         represents a pointer to an object of the class' type that
34165         can be used by the interpreter and later the type cache.
34166         Add best guess alignment info for valuetype objects.
34168 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
34170         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
34171         into MonoType: one less level of indirection and allocation and
34172         simplifies quite a bit of code. Added cache for MonoTypes that are
34173         used frequently, so that we don't need to allocate them all the time.
34175 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
34177         * class.c (mono_class_create_from_typedef): System.Enum is also a
34178         value type, although it does not derive from System.ValueType
34179         (maybe a bug in the ms compiler?)
34181         * metadata.c (mono_type_size): return the right size for value types
34183         * loader.c (mono_get_method): only initialize method header if not abstract
34185         * class.c (mono_class_from_mono_type): use mono_default values. 
34187 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
34189         * *: use MonoClass pointers instead of <type_tokens>
34190         
34191         * class.h: new flag: metadata_inited.
34193         * class.c (mono_class_metadata_init): impl.
34194         (mono_class_instance_size): impl.
34195         (mono_class_data_size): impl.
34197 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34199         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
34200         MonoClass now has the name and name_space fields. 
34201         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
34202         mono_get_method () takes and optional MonoClass as argument.
34203         Removed mono_typedef_from_name() and added mono_class_token_from_name()
34204         instead that takes advantage of a map from class names to typedef
34205         tokens in MonoImage.
34207 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
34209         * metadata.c: zero is not a valid alignment boundary.
34210         Merge MONO_TYPE_VOID in default decoding code.
34212 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
34214         * image.h: merged MonoMetadata into MonoImage
34216         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
34217         identify the type of elements.
34219 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
34221         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
34222         * cil-coff.h: split MonoMSDOSHeader and add size info.
34223         * image.c: add some consistency checks.
34224         * metadata.c: fix row size computation: one programmer
34225         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
34226         add explanation for the locator routine.
34227         Fix decoding of size in method header.
34228         
34229 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
34231         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
34232         (g_concat_dir_and_file): Bring g_concat_dir_and_file
34233         function from gnome-libs.  This uses the right path separator
34234         based on the OS, and also works around a bug in some systems where
34235         a double slash is not allowed. 
34236         (default_assembly_name_resolver): Use g_concat_dir_and_file
34237         (mono_assembly_open): ditto.
34239 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
34241         * metadata.c (mono_metadata_signature_equal): impl.
34243         * *: void is now a realy MonoType (instead of using NULL)
34244         
34245         * metadata.c (do_mono_metadata_parse_type): use
34246         mono_metadata_parse_type to parse void value.
34248 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
34250         * metadata.c, metadata.h: in the signature and method header store
34251         only the space required for holding the loca vars and incoming arguments.
34253 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
34255         * metadata.c (do_mono_metadata_parse_type): treat void like any
34256         other type (instead of assigning NULL);
34258 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
34260         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
34262 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
34264         * image.c (do_mono_image_open): added a cache for arrays.
34266 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34268         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
34269         decode a single column from a row in a metadata table and changes
34270         to take advantage of it in the typedef locator (gives a nice speed up).
34271         Store offset info for function params.
34273 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
34275         * image.h (MONO_IMAGE_IS_CORLIB): removed 
34277 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
34279         * assembly.c: how could mono_assembly_close () had ever worked?
34280         * metadata.c, metadata.h: provide offset info for local vars.
34281         Implement mono_type_size () to take care of alignment as well
34282         as size (it was mono_field_type_size in cli/class.c before).
34284 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
34286         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
34288         * assembly.h (CORLIB_NAME): set to corlib.dll
34290         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
34292 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34294         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
34295         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
34296         tokentype.h: massive namespace cleanup.
34298 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34300         * metadata.h, metadata.c: decode exception clauses when parsing method header.
34302 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
34304         * metadata.c (mono_metadata_free_type): added check for type !=
34305         NULL (void) before calling mono_metadata_free_type()
34307 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
34309         * metadata.h, row_indexes.h: added header with enumerations to use
34310         to index in the columns from tables in metadata and to decode coded
34311         tokens: we should start using this instead of embedding magic numbers
34312         all over the code.
34314 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
34316         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
34317         Move metadata_t info from cli_image_info_t to MonoImage, where
34318         it's easily accessible. Changed all the uses accordingly.
34319         Added the method and class caches to MonoImage.
34320         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
34321         and mono_metadata_decode_value () signature to be more consistent
34322         with the other parse functions (and simplify code). Taken advantage
34323         of zero-length array allocation with GCC. Removed reduntant (and
34324         wrong) MonoFieldType struct and use MonoParam instead. Changed
34325         mono_metadata_parse_field_type () to use common code for parsing.
34326         Added mono_metadata_typedef_from_field () and
34327         mono_metadata_typedef_from_method () to lookup a typedef index from a
34328         field or method token.
34329         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
34331 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
34333         * metadata.c (mono_metadata_parse_field_type): Implement. 
34334         (do_mono_metadata_parse_type): Split engine from
34335         mono_metadata_parse_type, so that we can create smaller structures
34336         for things that just have one pointer to the MonoType (look at
34337         the MonoFieldType)
34339 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
34341         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
34342         as Jan Gray found out, it is incorrect. 
34344 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
34346         * assembly.c: Implement asssembly loading.  This loads an image
34347         and loads all the referenced assemblies.  Come to think of it, we
34348         could always do lazy loading of the assemblies. 
34350         * image.c (mono_image_open): Keep loaded images in a hashtable.
34352         * image.h (MonoImage): Add reference count.
34354 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
34356         * assembly.c (mono_assembly_open): Keep track of the file name in
34357         case the assembly has no ASSEMBLY table.
34359         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
34360         from get.c here.
34362 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
34364         * metadata.c, metadata.h: decode local vars in method header
34365         parse function. Change callers accordingly.
34367 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
34369         * metadata.h, cil-coff.h: protect against multiple inclusion.
34370         Added some new structures to hold information decoded from metadata:
34371         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
34372         and relevant decoding/free functions.
34373         * metadata.c: implement decoding functions. Add warning for out of bounds
34374         index in mono_metadata_locate(). Implement mono_get_method () to retreive
34375         all the info about a method signature and invocation. Remove check on
34376         uninitialized local var in parse_mh() and fix memory leak.
34378 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
34380         * metadata.h: More macros.
34382         * tokentype.h: New file.
34384 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
34386         * assembly.c: added a consistency check and initialize
34387         some structures with g_new0().
34388         * metadata.c: fixed a couple more bugs in table size computation
34389         and add other checks for out-of bound access to metadata.
34391 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
34393         * metatada.c: fix bugs computing table sizes. Spew a
34394         warning when index in string heap is out of bounds.
34396 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
34398         * metadata.h: Add a couple of macros to manipulate tokens. 
34400 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34402         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
34403         cli_section_tables).
34405 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
34407         * metadata.c (mono_metadata_user_string): New function, provides
34408         access to the UserString heap. 
34410 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
34412         * metadata.c: Add inline documentation.
34414 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
34416         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
34417         files. 
34419 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
34421         * typeattr.h: New file, TypeAttribute flags. 
34423 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
34425         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
34426         mono_assembly_ensure_section): Section loading code.
34427         (load_section_tables): Load the sections.
34429         * mono/metadata/metadata.c (mono_metadata_locate_token,
34430         mono_metadata_locate): Functions to locate the information
34431         definition given a token or a table and an index.
34432         (mono_metadata_compute_table_bases): New.
34433         (compute_size): New function to compute the sizes of the various
34434         tables.
34436         * mono/metadata/metadata.h: Finish listing the different index
34437         types. 
34439         * mono/metadata/pedump.c: Improve to dump new information.
34441 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
34443         * mono/metadata/metadata.c: Entered all the tables matching
34444         Beta2. 
34446         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2